From 6fae6dd7b4d6e5c7444531748d8d2b4f2d43ba07 Mon Sep 17 00:00:00 2001 From: David Michon Date: Fri, 16 Aug 2024 00:14:34 +0000 Subject: [PATCH 1/8] [rush] Add `afterInstall` hook --- ...sh-resolver-cache-plugin_2024-08-16-00-14.json | 10 ++++++++++ common/reviews/api/rush-lib.api.md | 3 ++- .../rush-lib/src/cli/actions/InstallAction.ts | 5 ++++- .../rush-lib/src/cli/actions/UpdateAction.ts | 5 ++++- .../src/cli/scriptActions/PhasedScriptAction.ts | 6 +++++- .../rush-lib/src/logic/base/BaseInstallManager.ts | 8 +++++++- .../src/logic/base/BaseInstallManagerTypes.ts | 7 ++++++- .../logic/installManager/doBasicInstallAsync.ts | 7 ++++++- .../rush-lib/src/pluginFramework/RushLifeCycle.ts | 15 +++++++++++---- 9 files changed, 55 insertions(+), 11 deletions(-) create mode 100644 common/changes/@microsoft/rush/rush-resolver-cache-plugin_2024-08-16-00-14.json diff --git a/common/changes/@microsoft/rush/rush-resolver-cache-plugin_2024-08-16-00-14.json b/common/changes/@microsoft/rush/rush-resolver-cache-plugin_2024-08-16-00-14.json new file mode 100644 index 00000000000..562df7f381c --- /dev/null +++ b/common/changes/@microsoft/rush/rush-resolver-cache-plugin_2024-08-16-00-14.json @@ -0,0 +1,10 @@ +{ + "changes": [ + { + "packageName": "@microsoft/rush", + "comment": "Add `afterInstall` plugin hook, which runs after any install finishes.", + "type": "none" + } + ], + "packageName": "@microsoft/rush" +} \ No newline at end of file diff --git a/common/reviews/api/rush-lib.api.md b/common/reviews/api/rush-lib.api.md index 95f430832c7..9e659294629 100644 --- a/common/reviews/api/rush-lib.api.md +++ b/common/reviews/api/rush-lib.api.md @@ -1379,7 +1379,8 @@ export class _RushInternals { // @beta export class RushLifecycleHooks { - readonly beforeInstall: AsyncSeriesHook; + readonly afterInstall: AsyncSeriesHook<[IRushCommand, Subspace]>; + readonly beforeInstall: AsyncSeriesHook<[IGlobalCommand, Subspace]>; readonly flushTelemetry: AsyncParallelHook<[ReadonlyArray]>; readonly initialize: AsyncSeriesHook; readonly runAnyGlobalCustomCommand: AsyncSeriesHook; diff --git a/libraries/rush-lib/src/cli/actions/InstallAction.ts b/libraries/rush-lib/src/cli/actions/InstallAction.ts index 63925b70fc6..ceb55884326 100644 --- a/libraries/rush-lib/src/cli/actions/InstallAction.ts +++ b/libraries/rush-lib/src/cli/actions/InstallAction.ts @@ -8,6 +8,7 @@ import type { IInstallManagerOptions } from '../../logic/base/BaseInstallManager import type { RushCommandLineParser } from '../RushCommandLineParser'; import { SelectionParameterSet } from '../parsing/SelectionParameterSet'; import type { RushConfigurationProject } from '../../api/RushConfigurationProject'; +import type { Subspace } from '../../api/Subspace'; export class InstallAction extends BaseInstallAction { private readonly _checkOnlyParameter: CommandLineFlagParameter; @@ -80,7 +81,9 @@ export class InstallAction extends BaseInstallAction { (await this._selectionParameters?.getPnpmFilterArgumentValuesAsync(this._terminal)) ?? [], checkOnly: this._checkOnlyParameter.value, resolutionOnly: this._resolutionOnlyParameter?.value, - beforeInstallAsync: () => this.rushSession.hooks.beforeInstall.promise(this), + beforeInstallAsync: (subspace: Subspace) => + this.rushSession.hooks.beforeInstall.promise(this, subspace), + afterInstallAsync: (subspace: Subspace) => this.rushSession.hooks.afterInstall.promise(this, subspace), terminal: this._terminal }; } diff --git a/libraries/rush-lib/src/cli/actions/UpdateAction.ts b/libraries/rush-lib/src/cli/actions/UpdateAction.ts index 584295aff20..9cb780bf50f 100644 --- a/libraries/rush-lib/src/cli/actions/UpdateAction.ts +++ b/libraries/rush-lib/src/cli/actions/UpdateAction.ts @@ -8,6 +8,7 @@ import type { IInstallManagerOptions } from '../../logic/base/BaseInstallManager import type { RushCommandLineParser } from '../RushCommandLineParser'; import { SelectionParameterSet } from '../parsing/SelectionParameterSet'; import type { RushConfigurationProject } from '../../api/RushConfigurationProject'; +import type { Subspace } from '../../api/Subspace'; export class UpdateAction extends BaseInstallAction { private readonly _fullParameter: CommandLineFlagParameter; @@ -102,7 +103,9 @@ export class UpdateAction extends BaseInstallAction { pnpmFilterArgumentValues: (await this._selectionParameters?.getPnpmFilterArgumentValuesAsync(this._terminal)) ?? [], checkOnly: false, - beforeInstallAsync: () => this.rushSession.hooks.beforeInstall.promise(this), + beforeInstallAsync: (subspace: Subspace) => + this.rushSession.hooks.beforeInstall.promise(this, subspace), + afterInstallAsync: (subspace: Subspace) => this.rushSession.hooks.afterInstall.promise(this, subspace), terminal: this._terminal }; } diff --git a/libraries/rush-lib/src/cli/scriptActions/PhasedScriptAction.ts b/libraries/rush-lib/src/cli/scriptActions/PhasedScriptAction.ts index cd22b5e3a29..96270c35b5e 100644 --- a/libraries/rush-lib/src/cli/scriptActions/PhasedScriptAction.ts +++ b/libraries/rush-lib/src/cli/scriptActions/PhasedScriptAction.ts @@ -11,6 +11,7 @@ import type { CommandLineStringParameter } from '@rushstack/ts-command-line'; +import type { Subspace } from '../../api/Subspace'; import type { IPhasedCommand } from '../../pluginFramework/RushLifeCycle'; import { PhasedCommandHooks, @@ -297,7 +298,10 @@ export class PhasedScriptAction extends BaseScriptAction { terminal: this._terminal, rushConfiguration: this.rushConfiguration, rushGlobalFolder: this.rushGlobalFolder, - isDebug: this.parser.isDebug + isDebug: this.parser.isDebug, + beforeInstallAsync: (subspace: Subspace) => + this.rushSession.hooks.beforeInstall.promise(this, subspace), + afterInstallAsync: (subspace: Subspace) => this.rushSession.hooks.afterInstall.promise(this, subspace) }); } diff --git a/libraries/rush-lib/src/logic/base/BaseInstallManager.ts b/libraries/rush-lib/src/logic/base/BaseInstallManager.ts index f781e34b766..d3298648700 100644 --- a/libraries/rush-lib/src/logic/base/BaseInstallManager.ts +++ b/libraries/rush-lib/src/logic/base/BaseInstallManager.ts @@ -231,7 +231,7 @@ export abstract class BaseInstallManager { // Give plugins an opportunity to act before invoking the installation process if (this.options.beforeInstallAsync !== undefined) { - await this.options.beforeInstallAsync(); + await this.options.beforeInstallAsync(subspace); } await Promise.all([ @@ -344,9 +344,15 @@ export abstract class BaseInstallManager { // Perform any post-install work the install manager requires await this.postInstallAsync(subspace); + // Create the marker file to indicate a successful install await commonTempInstallFlag.createAsync(); + // Give plugins an opportunity to act after a successful install + if (this.options.afterInstallAsync !== undefined) { + await this.options.afterInstallAsync(subspace); + } + // eslint-disable-next-line no-console console.log(''); } diff --git a/libraries/rush-lib/src/logic/base/BaseInstallManagerTypes.ts b/libraries/rush-lib/src/logic/base/BaseInstallManagerTypes.ts index 051c96105d6..044667e2e2c 100644 --- a/libraries/rush-lib/src/logic/base/BaseInstallManagerTypes.ts +++ b/libraries/rush-lib/src/logic/base/BaseInstallManagerTypes.ts @@ -107,7 +107,12 @@ export interface IInstallManagerOptions { /** * Callback to invoke between preparing the common/temp folder and running installation. */ - beforeInstallAsync?: () => Promise; + beforeInstallAsync?: (subspace: Subspace) => Promise; + + /** + * Callback to invoke after a successful installation. + */ + afterInstallAsync?: (subspace: Subspace) => Promise; /** * The specific subspace to install. diff --git a/libraries/rush-lib/src/logic/installManager/doBasicInstallAsync.ts b/libraries/rush-lib/src/logic/installManager/doBasicInstallAsync.ts index b44cd5d1f99..952f85dd525 100644 --- a/libraries/rush-lib/src/logic/installManager/doBasicInstallAsync.ts +++ b/libraries/rush-lib/src/logic/installManager/doBasicInstallAsync.ts @@ -6,12 +6,15 @@ import type { ITerminal } from '@rushstack/terminal'; import type { RushConfiguration } from '../../api/RushConfiguration'; import type { RushGlobalFolder } from '../../api/RushGlobalFolder'; import type { BaseInstallManager } from '../base/BaseInstallManager'; +import type { IInstallManagerOptions } from '../base/BaseInstallManagerTypes'; import { InstallManagerFactory } from '../InstallManagerFactory'; import { SetupChecks } from '../SetupChecks'; import { PurgeManager } from '../PurgeManager'; import { VersionMismatchFinder } from '../versionMismatch/VersionMismatchFinder'; export interface IRunInstallOptions { + afterInstallAsync?: IInstallManagerOptions['afterInstallAsync']; + beforeInstallAsync?: IInstallManagerOptions['beforeInstallAsync']; rushConfiguration: RushConfiguration; rushGlobalFolder: RushGlobalFolder; isDebug: boolean; @@ -45,7 +48,9 @@ export async function doBasicInstallAsync(options: IRunInstallOptions): Promise< maxInstallAttempts: 1, networkConcurrency: undefined, subspace: rushConfiguration.defaultSubspace, - terminal: options.terminal + terminal: options.terminal, + afterInstallAsync: options.afterInstallAsync, + beforeInstallAsync: options.beforeInstallAsync } ); diff --git a/libraries/rush-lib/src/pluginFramework/RushLifeCycle.ts b/libraries/rush-lib/src/pluginFramework/RushLifeCycle.ts index b06d693b259..a371be204f7 100644 --- a/libraries/rush-lib/src/pluginFramework/RushLifeCycle.ts +++ b/libraries/rush-lib/src/pluginFramework/RushLifeCycle.ts @@ -5,6 +5,7 @@ import { AsyncParallelHook, AsyncSeriesHook, HookMap } from 'tapable'; import type { ITelemetryData } from '../logic/Telemetry'; import type { PhasedCommandHooks } from './PhasedCommandHooks'; +import type { Subspace } from '../api/Subspace'; /** * Information about the currently executing command provided to plugins. @@ -85,10 +86,16 @@ export class RushLifecycleHooks { /** * The hook to run between preparing the common/temp folder and invoking the package manager during "rush install" or "rush update". */ - public readonly beforeInstall: AsyncSeriesHook = new AsyncSeriesHook( - ['command'], - 'beforeInstall' - ); + public readonly beforeInstall: AsyncSeriesHook<[IGlobalCommand, Subspace]> = new AsyncSeriesHook< + [IGlobalCommand, Subspace] + >(['command', 'subspace'], 'beforeInstall'); + + /** + * The hook to run after a successful install. + */ + public readonly afterInstall: AsyncSeriesHook<[IRushCommand, Subspace]> = new AsyncSeriesHook< + [IRushCommand, Subspace] + >(['command', 'subspace'], 'afterInstall'); /** * A hook to allow plugins to hook custom logic to process telemetry data. From f87c055eb37807b0d38525f3e9991b599822eb20 Mon Sep 17 00:00:00 2001 From: David Michon Date: Fri, 16 Aug 2024 00:15:17 +0000 Subject: [PATCH 2/8] [rush] Update types in pnpm lockfile --- .../src/logic/pnpm/PnpmShrinkwrapFile.ts | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/libraries/rush-lib/src/logic/pnpm/PnpmShrinkwrapFile.ts b/libraries/rush-lib/src/logic/pnpm/PnpmShrinkwrapFile.ts index 38f68c9e887..d285e6f7e92 100644 --- a/libraries/rush-lib/src/logic/pnpm/PnpmShrinkwrapFile.ts +++ b/libraries/rush-lib/src/logic/pnpm/PnpmShrinkwrapFile.ts @@ -52,9 +52,11 @@ export type IPnpmVersionSpecifier = IPnpmV7VersionSpecifier | IPnpmV8VersionSpec export interface IPnpmShrinkwrapDependencyYaml { /** Information about the resolved package */ resolution?: { + /** The directory this package should clone, for injected dependencies */ + directory?: string; /** The hash of the tarball, to ensure archive integrity */ - integrity: string; - /** The name of the tarball, if this was from a TGX file */ + integrity?: string; + /** The name of the tarball, if this was from a TGZ file */ tarball?: string; }; /** The list of dependencies and the resolved version */ @@ -68,6 +70,16 @@ export interface IPnpmShrinkwrapDependencyYaml { * https://github.com/yarnpkg/rfcs/blob/master/accepted/0000-optional-peer-dependencies.md */ peerDependenciesMeta?: Record; + /** The name of the package, if the package is a local tarball */ + name?: string; + /** If this is an optional dependency */ + optional?: boolean; + /** The values of process.platform supported by this package */ + os?: readonly string[]; + /** The values of process.arch supported by this package */ + cpu?: readonly string[]; + /** The libc runtimes supported by this package */ + libc?: readonly string[]; } export interface IPnpmShrinkwrapImporterYaml { From 4abfbddbea022bbbe37e8e5e763d3b52614cf652 Mon Sep 17 00:00:00 2001 From: David Michon Date: Thu, 22 Aug 2024 01:03:39 +0000 Subject: [PATCH 3/8] (chore) Inject all cross-subspace workspace dependencies --- .../rush-lib-test/package.json | 7 ++- .../rush-sdk-test/package.json | 7 ++- .../build-tests-subspace/pnpm-lock.yaml | 48 ++++++++++++------- .../build-tests-subspace/repo-state.json | 4 +- 4 files changed, 46 insertions(+), 20 deletions(-) diff --git a/build-tests-subspace/rush-lib-test/package.json b/build-tests-subspace/rush-lib-test/package.json index a546d9a0fcf..17969a1eea2 100644 --- a/build-tests-subspace/rush-lib-test/package.json +++ b/build-tests-subspace/rush-lib-test/package.json @@ -17,12 +17,17 @@ "@rushstack/eslint-config": "workspace:*", "@rushstack/heft": "workspace:*", "@types/node": "18.17.15", - "local-node-rig": "workspace:*" + "eslint": "~8.57.0", + "local-node-rig": "workspace:*", + "typescript": "~5.4.2" }, "dependenciesMeta": { "@microsoft/rush-lib": { "injected": true }, + "@rushstack/eslint-config": { + "injected": true + }, "@rushstack/terminal": { "injected": true }, diff --git a/build-tests-subspace/rush-sdk-test/package.json b/build-tests-subspace/rush-sdk-test/package.json index f582688ff9c..6f0c5ab86f3 100644 --- a/build-tests-subspace/rush-sdk-test/package.json +++ b/build-tests-subspace/rush-sdk-test/package.json @@ -17,12 +17,17 @@ "@rushstack/eslint-config": "workspace:*", "@rushstack/heft": "workspace:*", "@types/node": "18.17.15", - "local-node-rig": "workspace:*" + "eslint": "~8.57.0", + "local-node-rig": "workspace:*", + "typescript": "~5.4.2" }, "dependenciesMeta": { "@microsoft/rush-lib": { "injected": true }, + "@rushstack/eslint-config": { + "injected": true + }, "@rushstack/rush-sdk": { "injected": true }, diff --git a/common/config/subspaces/build-tests-subspace/pnpm-lock.yaml b/common/config/subspaces/build-tests-subspace/pnpm-lock.yaml index d6c26f8e701..74652788e8d 100644 --- a/common/config/subspaces/build-tests-subspace/pnpm-lock.yaml +++ b/common/config/subspaces/build-tests-subspace/pnpm-lock.yaml @@ -23,20 +23,28 @@ importers: version: file:../../../libraries/terminal(@types/node@18.17.15) devDependencies: '@rushstack/eslint-config': - specifier: link:../../eslint/eslint-config - version: link:../../eslint/eslint-config + specifier: file:../../eslint/eslint-config + version: file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@5.4.5) '@rushstack/heft': specifier: file:../../apps/heft version: file:../../../apps/heft(@types/node@18.17.15) '@types/node': specifier: 18.17.15 version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0 local-node-rig: specifier: file:../../rigs/local-node-rig version: file:../../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.5 dependenciesMeta: '@microsoft/rush-lib': injected: true + '@rushstack/eslint-config': + injected: true '@rushstack/heft': injected: true '@rushstack/terminal': @@ -54,20 +62,28 @@ importers: specifier: file:../../libraries/rush-lib version: file:../../../libraries/rush-lib(@types/node@18.17.15) '@rushstack/eslint-config': - specifier: link:../../eslint/eslint-config - version: link:../../eslint/eslint-config + specifier: file:../../eslint/eslint-config + version: file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@5.4.5) '@rushstack/heft': specifier: file:../../apps/heft version: file:../../../apps/heft(@types/node@18.17.15) '@types/node': specifier: 18.17.15 version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0 local-node-rig: specifier: file:../../rigs/local-node-rig version: file:../../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.5 dependenciesMeta: '@microsoft/rush-lib': injected: true + '@rushstack/eslint-config': + injected: true '@rushstack/heft': injected: true '@rushstack/rush-sdk': @@ -110,10 +126,10 @@ importers: version: file:../../../apps/heft(@types/node@18.17.15) '@rushstack/heft-lint-plugin': specifier: file:../../heft-plugins/heft-lint-plugin - version: file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15) + version: file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) '@rushstack/heft-typescript-plugin': specifier: file:../../heft-plugins/heft-typescript-plugin - version: file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15) + version: file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) eslint: specifier: ~8.57.0 version: 8.57.0 @@ -6224,7 +6240,7 @@ packages: - typescript dev: true - file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15): + file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15): resolution: {directory: ../../../heft-plugins/heft-api-extractor-plugin, type: directory} id: file:../../../heft-plugins/heft-api-extractor-plugin name: '@rushstack/heft-api-extractor-plugin' @@ -6239,7 +6255,7 @@ packages: - '@types/node' dev: true - file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15)(jest-environment-node@29.5.0): + file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15)(jest-environment-node@29.5.0): resolution: {directory: ../../../heft-plugins/heft-jest-plugin, type: directory} id: file:../../../heft-plugins/heft-jest-plugin name: '@rushstack/heft-jest-plugin' @@ -6273,7 +6289,7 @@ packages: - ts-node dev: true - file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15): + file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15): resolution: {directory: ../../../heft-plugins/heft-lint-plugin, type: directory} id: file:../../../heft-plugins/heft-lint-plugin name: '@rushstack/heft-lint-plugin' @@ -6287,7 +6303,7 @@ packages: - '@types/node' dev: true - file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15): + file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15): resolution: {directory: ../../../heft-plugins/heft-typescript-plugin, type: directory} id: file:../../../heft-plugins/heft-typescript-plugin name: '@rushstack/heft-typescript-plugin' @@ -6511,7 +6527,7 @@ packages: transitivePeerDependencies: - '@types/node' - file:../../../rigs/heft-node-rig(@rushstack/heft@0.66.25)(@types/node@18.17.15): + file:../../../rigs/heft-node-rig(@rushstack/heft@0.67.0)(@types/node@18.17.15): resolution: {directory: ../../../rigs/heft-node-rig, type: directory} id: file:../../../rigs/heft-node-rig name: '@rushstack/heft-node-rig' @@ -6521,10 +6537,10 @@ packages: '@microsoft/api-extractor': file:../../../apps/api-extractor(@types/node@18.17.15) '@rushstack/eslint-config': file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@5.4.5) '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) - '@rushstack/heft-api-extractor-plugin': file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15) - '@rushstack/heft-jest-plugin': file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15)(jest-environment-node@29.5.0) - '@rushstack/heft-lint-plugin': file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15) - '@rushstack/heft-typescript-plugin': file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.66.25)(@types/node@18.17.15) + '@rushstack/heft-api-extractor-plugin': file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) + '@rushstack/heft-jest-plugin': file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15)(jest-environment-node@29.5.0) + '@rushstack/heft-lint-plugin': file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) + '@rushstack/heft-typescript-plugin': file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) '@types/heft-jest': 1.0.1 eslint: 8.57.0 jest-environment-node: 29.5.0 @@ -6544,7 +6560,7 @@ packages: dependencies: '@microsoft/api-extractor': file:../../../apps/api-extractor(@types/node@18.17.15) '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) - '@rushstack/heft-node-rig': file:../../../rigs/heft-node-rig(@rushstack/heft@0.66.25)(@types/node@18.17.15) + '@rushstack/heft-node-rig': file:../../../rigs/heft-node-rig(@rushstack/heft@0.67.0)(@types/node@18.17.15) '@types/heft-jest': 1.0.1 '@types/node': 18.17.15 eslint: 8.57.0 diff --git a/common/config/subspaces/build-tests-subspace/repo-state.json b/common/config/subspaces/build-tests-subspace/repo-state.json index ce7ace18d6e..4e006690ab0 100644 --- a/common/config/subspaces/build-tests-subspace/repo-state.json +++ b/common/config/subspaces/build-tests-subspace/repo-state.json @@ -1,6 +1,6 @@ // DO NOT MODIFY THIS FILE MANUALLY BUT DO COMMIT IT. It is generated and used by Rush. { - "pnpmShrinkwrapHash": "d6b1ce506a173cc0f198bbab8f6bb322eb8b6889", + "pnpmShrinkwrapHash": "1ecf2af7374b58143367470c7de41e0fdea42488", "preferredVersionsHash": "ce857ea0536b894ec8f346aaea08cfd85a5af648", - "packageJsonInjectedDependenciesHash": "e120d817d8c972401ab79549dd270a1ff8beed7f" + "packageJsonInjectedDependenciesHash": "8aa35461d7c050f5de780154b4584a6261955a98" } From 8a7444998f0420e9e1043484524e71e2a7267838 Mon Sep 17 00:00:00 2001 From: David Michon Date: Thu, 22 Aug 2024 00:52:20 +0000 Subject: [PATCH 4/8] [rush] Add rush-resolver-cache-plugin --- README.md | 1 + .../rush/nonbrowser-approved-packages.json | 8 + .../config/subspaces/default/pnpm-lock.yaml | 19 + .../api/rush-resolver-cache-plugin.api.md | 22 ++ .../rush-resolver-cache-plugin/.eslintrc.js | 13 + .../rush-resolver-cache-plugin/.npmignore | 34 ++ .../rush-resolver-cache-plugin/LICENSE | 24 ++ .../rush-resolver-cache-plugin/README.md | 7 + .../config/api-extractor.json | 19 + .../config/jest.config.json | 3 + .../config/rig.json | 7 + .../rush-resolver-cache-plugin/package.json | 40 ++ .../rush-plugin-manifest.json | 10 + .../src/afterInstallAsync.ts | 363 ++++++++++++++++++ .../src/externals.ts | 50 +++ .../rush-resolver-cache-plugin/src/index.ts | 54 +++ .../rush-resolver-cache-plugin/tsconfig.json | 3 + rush.json | 6 + 18 files changed, 683 insertions(+) create mode 100644 common/reviews/api/rush-resolver-cache-plugin.api.md create mode 100644 rush-plugins/rush-resolver-cache-plugin/.eslintrc.js create mode 100644 rush-plugins/rush-resolver-cache-plugin/.npmignore create mode 100644 rush-plugins/rush-resolver-cache-plugin/LICENSE create mode 100644 rush-plugins/rush-resolver-cache-plugin/README.md create mode 100644 rush-plugins/rush-resolver-cache-plugin/config/api-extractor.json create mode 100644 rush-plugins/rush-resolver-cache-plugin/config/jest.config.json create mode 100644 rush-plugins/rush-resolver-cache-plugin/config/rig.json create mode 100644 rush-plugins/rush-resolver-cache-plugin/package.json create mode 100644 rush-plugins/rush-resolver-cache-plugin/rush-plugin-manifest.json create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/externals.ts create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/index.ts create mode 100644 rush-plugins/rush-resolver-cache-plugin/tsconfig.json diff --git a/README.md b/README.md index 85ba79f0b12..9eaf4245527 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,7 @@ These GitHub repositories provide supplementary resources for Rush Stack: | [/rush-plugins/rush-azure-storage-build-cache-plugin](./rush-plugins/rush-azure-storage-build-cache-plugin/) | [![npm version](https://badge.fury.io/js/%40rushstack%2Frush-azure-storage-build-cache-plugin.svg)](https://badge.fury.io/js/%40rushstack%2Frush-azure-storage-build-cache-plugin) | | [@rushstack/rush-azure-storage-build-cache-plugin](https://www.npmjs.com/package/@rushstack/rush-azure-storage-build-cache-plugin) | | [/rush-plugins/rush-http-build-cache-plugin](./rush-plugins/rush-http-build-cache-plugin/) | [![npm version](https://badge.fury.io/js/%40rushstack%2Frush-http-build-cache-plugin.svg)](https://badge.fury.io/js/%40rushstack%2Frush-http-build-cache-plugin) | | [@rushstack/rush-http-build-cache-plugin](https://www.npmjs.com/package/@rushstack/rush-http-build-cache-plugin) | | [/rush-plugins/rush-redis-cobuild-plugin](./rush-plugins/rush-redis-cobuild-plugin/) | [![npm version](https://badge.fury.io/js/%40rushstack%2Frush-redis-cobuild-plugin.svg)](https://badge.fury.io/js/%40rushstack%2Frush-redis-cobuild-plugin) | | [@rushstack/rush-redis-cobuild-plugin](https://www.npmjs.com/package/@rushstack/rush-redis-cobuild-plugin) | +| [/rush-plugins/rush-resolver-cache-plugin](./rush-plugins/rush-resolver-cache-plugin/) | [![npm version](https://badge.fury.io/js/%40rushstack%2Frush-resolver-cache-plugin.svg)](https://badge.fury.io/js/%40rushstack%2Frush-resolver-cache-plugin) | | [@rushstack/rush-resolver-cache-plugin](https://www.npmjs.com/package/@rushstack/rush-resolver-cache-plugin) | | [/rush-plugins/rush-serve-plugin](./rush-plugins/rush-serve-plugin/) | [![npm version](https://badge.fury.io/js/%40rushstack%2Frush-serve-plugin.svg)](https://badge.fury.io/js/%40rushstack%2Frush-serve-plugin) | | [@rushstack/rush-serve-plugin](https://www.npmjs.com/package/@rushstack/rush-serve-plugin) | | [/webpack/hashed-folder-copy-plugin](./webpack/hashed-folder-copy-plugin/) | [![npm version](https://badge.fury.io/js/%40rushstack%2Fhashed-folder-copy-plugin.svg)](https://badge.fury.io/js/%40rushstack%2Fhashed-folder-copy-plugin) | [changelog](./webpack/hashed-folder-copy-plugin/CHANGELOG.md) | [@rushstack/hashed-folder-copy-plugin](https://www.npmjs.com/package/@rushstack/hashed-folder-copy-plugin) | | [/webpack/loader-load-themed-styles](./webpack/loader-load-themed-styles/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Floader-load-themed-styles.svg)](https://badge.fury.io/js/%40microsoft%2Floader-load-themed-styles) | [changelog](./webpack/loader-load-themed-styles/CHANGELOG.md) | [@microsoft/loader-load-themed-styles](https://www.npmjs.com/package/@microsoft/loader-load-themed-styles) | diff --git a/common/config/rush/nonbrowser-approved-packages.json b/common/config/rush/nonbrowser-approved-packages.json index 47146fb6bde..6aa58323b73 100644 --- a/common/config/rush/nonbrowser-approved-packages.json +++ b/common/config/rush/nonbrowser-approved-packages.json @@ -250,6 +250,10 @@ "name": "@rushstack/rush-redis-cobuild-plugin", "allowedCategories": [ "tests" ] }, + { + "name": "@rushstack/rush-resolver-cache-plugin", + "allowedCategories": [ "libraries" ] + }, { "name": "@rushstack/rush-sdk", "allowedCategories": [ "libraries", "tests", "vscode-extensions" ] @@ -290,6 +294,10 @@ "name": "@rushstack/webpack-preserve-dynamic-require-plugin", "allowedCategories": [ "libraries", "vscode-extensions" ] }, + { + "name": "@rushstack/webpack-workspace-resolve-plugin", + "allowedCategories": [ "libraries" ] + }, { "name": "@rushstack/webpack4-localization-plugin", "allowedCategories": [ "tests" ] diff --git a/common/config/subspaces/default/pnpm-lock.yaml b/common/config/subspaces/default/pnpm-lock.yaml index 28c5be93e60..a75ff1e303a 100644 --- a/common/config/subspaces/default/pnpm-lock.yaml +++ b/common/config/subspaces/default/pnpm-lock.yaml @@ -4128,6 +4128,25 @@ importers: specifier: workspace:* version: link:../../rigs/local-node-rig + ../../../rush-plugins/rush-resolver-cache-plugin: + dependencies: + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + devDependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@rushstack/webpack-workspace-resolve-plugin': + specifier: workspace:* + version: link:../../webpack/webpack-workspace-resolve-plugin + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + ../../../rush-plugins/rush-serve-plugin: dependencies: '@rushstack/debug-certificate-manager': diff --git a/common/reviews/api/rush-resolver-cache-plugin.api.md b/common/reviews/api/rush-resolver-cache-plugin.api.md new file mode 100644 index 00000000000..2ea472f1340 --- /dev/null +++ b/common/reviews/api/rush-resolver-cache-plugin.api.md @@ -0,0 +1,22 @@ +## API Report File for "@rushstack/rush-resolver-cache-plugin" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts + +import type { IRushPlugin } from '@rushstack/rush-sdk'; +import type { RushConfiguration } from '@rushstack/rush-sdk'; +import type { RushSession } from '@rushstack/rush-sdk'; + +// @beta +class RushResolverCachePlugin implements IRushPlugin { + // (undocumented) + apply(rushSession: RushSession, rushConfiguration: RushConfiguration): void; + // (undocumented) + readonly pluginName: 'RushResolverCachePlugin'; +} +export default RushResolverCachePlugin; + +// (No @packageDocumentation comment for this package) + +``` diff --git a/rush-plugins/rush-resolver-cache-plugin/.eslintrc.js b/rush-plugins/rush-resolver-cache-plugin/.eslintrc.js new file mode 100644 index 00000000000..0b04796d1ee --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/.eslintrc.js @@ -0,0 +1,13 @@ +// This is a workaround for https://github.com/eslint/eslint/issues/3458 +require('local-node-rig/profiles/default/includes/eslint/patch/modern-module-resolution'); +// This is a workaround for https://github.com/microsoft/rushstack/issues/3021 +require('local-node-rig/profiles/default/includes/eslint/patch/custom-config-package-names'); + +module.exports = { + extends: [ + 'local-node-rig/profiles/default/includes/eslint/profile/node', + 'local-node-rig/profiles/default/includes/eslint/mixins/friendly-locals', + 'local-node-rig/profiles/default/includes/eslint/mixins/tsdoc' + ], + parserOptions: { tsconfigRootDir: __dirname } +}; diff --git a/rush-plugins/rush-resolver-cache-plugin/.npmignore b/rush-plugins/rush-resolver-cache-plugin/.npmignore new file mode 100644 index 00000000000..ffb155d74e6 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/.npmignore @@ -0,0 +1,34 @@ +# THIS IS A STANDARD TEMPLATE FOR .npmignore FILES IN THIS REPO. + +# Ignore all files by default, to avoid accidentally publishing unintended files. +* + +# Use negative patterns to bring back the specific things we want to publish. +!/bin/** +!/lib/** +!/lib-*/** +!/dist/** + +!CHANGELOG.md +!CHANGELOG.json +!heft-plugin.json +!rush-plugin-manifest.json +!ThirdPartyNotice.txt + +# Ignore certain patterns that should not get published. +/dist/*.stats.* +/lib/**/test/ +/lib-*/**/test/ +*.test.js + +# NOTE: These don't need to be specified, because NPM includes them automatically. +# +# package.json +# README.md +# LICENSE + +# --------------------------------------------------------------------------- +# DO NOT MODIFY ABOVE THIS LINE! Add any project-specific overrides below. +# --------------------------------------------------------------------------- + +!/includes/** diff --git a/rush-plugins/rush-resolver-cache-plugin/LICENSE b/rush-plugins/rush-resolver-cache-plugin/LICENSE new file mode 100644 index 00000000000..fd436a75bda --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/LICENSE @@ -0,0 +1,24 @@ +@rushstack/rush-pnpm-resolver-cache-plugin + +Copyright (c) Microsoft Corporation. All rights reserved. + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/rush-plugins/rush-resolver-cache-plugin/README.md b/rush-plugins/rush-resolver-cache-plugin/README.md new file mode 100644 index 00000000000..bca8a5265f3 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/README.md @@ -0,0 +1,7 @@ +# @rushstack/rush-resolver-cache-plugin + +A Rush plugin that runs after successful dependency installation and generates a cache file to optimize node module resolution. + +When this plugin is installed, it will produce a file called `resolver-cache.json` in the temp directory of the default subspace, e.g. `/common/temp/default/resolver-cache.json` + +To use this file, load it, call JSON.parse, and pass the result as the `cacheData` property to the `WorkspaceLayoutCache` constructor from `@rushstack/webpack-workspace-resolve-plugin`. The `workspaceRoot` property should be set to the path ``. \ No newline at end of file diff --git a/rush-plugins/rush-resolver-cache-plugin/config/api-extractor.json b/rush-plugins/rush-resolver-cache-plugin/config/api-extractor.json new file mode 100644 index 00000000000..fba8a2992f6 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/config/api-extractor.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", + + "mainEntryPointFilePath": "/lib/index.d.ts", + + "apiReport": { + "enabled": true, + "reportFolder": "../../../common/reviews/api" + }, + + "docModel": { + "enabled": false, + "apiJsonFilePath": "../../../common/temp/api/.api.json" + }, + + "dtsRollup": { + "enabled": true + } +} diff --git a/rush-plugins/rush-resolver-cache-plugin/config/jest.config.json b/rush-plugins/rush-resolver-cache-plugin/config/jest.config.json new file mode 100644 index 00000000000..d1749681d90 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/config/jest.config.json @@ -0,0 +1,3 @@ +{ + "extends": "local-node-rig/profiles/default/config/jest.config.json" +} diff --git a/rush-plugins/rush-resolver-cache-plugin/config/rig.json b/rush-plugins/rush-resolver-cache-plugin/config/rig.json new file mode 100644 index 00000000000..165ffb001f5 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/config/rig.json @@ -0,0 +1,7 @@ +{ + // The "rig.json" file directs tools to look for their config files in an external package. + // Documentation for this system: https://www.npmjs.com/package/@rushstack/rig-package + "$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json", + + "rigPackageName": "local-node-rig" +} diff --git a/rush-plugins/rush-resolver-cache-plugin/package.json b/rush-plugins/rush-resolver-cache-plugin/package.json new file mode 100644 index 00000000000..c33c97aa839 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/package.json @@ -0,0 +1,40 @@ +{ + "name": "@rushstack/rush-resolver-cache-plugin", + "version": "5.131.4", + "description": "A Rush plugin that generates a resolver cache file after successful install.", + "license": "MIT", + "repository": { + "url": "https://github.com/microsoft/rushstack.git", + "type": "git", + "directory": "rush-plugins/rush-resolver-cache-plugin" + }, + "main": "lib-commonjs/index.js", + "types": "dist/index.d.ts", + "scripts": { + "build": "heft test --clean", + "_phase:build": "heft run --only build -- --clean", + "_phase:test": "heft run --only test -- --clean" + }, + "dependencies": { + "@rushstack/rush-sdk": "workspace:*" + }, + "devDependencies": { + "@rushstack/node-core-library": "workspace:*", + "@rushstack/terminal": "workspace:*", + "@rushstack/webpack-workspace-resolve-plugin": "workspace:*", + "local-node-rig": "workspace:*" + }, + "exports": { + ".": { + "require": "./lib/index.js", + "types": "./dist/rush-resolver-cache-plugin.d.ts" + } + }, + "typesVersions": { + "*": { + ".": [ + "dist/rush-serve-plugin.d.ts" + ] + } + } +} diff --git a/rush-plugins/rush-resolver-cache-plugin/rush-plugin-manifest.json b/rush-plugins/rush-resolver-cache-plugin/rush-plugin-manifest.json new file mode 100644 index 00000000000..8911f040259 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/rush-plugin-manifest.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush-plugin-manifest.schema.json", + "plugins": [ + { + "pluginName": "rush-resolver-cache-plugin", + "description": "Rush plugin for generating a resolver cache file after successful install.", + "entryPoint": "lib/index.js" + } + ] +} diff --git a/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts b/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts new file mode 100644 index 00000000000..fc657315bc6 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts @@ -0,0 +1,363 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. +// See LICENSE in the project root for license information. + +import { createHash } from 'node:crypto'; +import * as path from 'node:path'; + +import type { + RushSession, + RushConfiguration, + RushConfigurationProject, + ILogger, + LookupByPath, + Subspace +} from '@rushstack/rush-sdk'; +import type { + ISerializedResolveContext, + IResolverCacheFile +} from '@rushstack/webpack-workspace-resolve-plugin'; + +import { Async, FileSystem, PnpmShrinkwrapFile } from './externals'; + +const MAX_LENGTH_WITHOUT_HASH: number = 120 - 26 - 1; +const BASE32: string[] = 'abcdefghijklmnopqrstuvwxyz234567'.split(''); + +// https://github.com/swansontec/rfc4648.js/blob/ead9c9b4b68e5d4a529f32925da02c02984e772c/src/codec.ts#L82-L118 +function createBase32Hash(input: string): string { + const data: Buffer = createHash('md5').update(input).digest(); + + const mask: 0x1f = 0x1f; + let out: string = ''; + + let bits: number = 0; // Number of bits currently in the buffer + let buffer: number = 0; // Bits waiting to be written out, MSB first + for (let i: number = 0; i < data.length; ++i) { + // eslint-disable-next-line no-bitwise + buffer = (buffer << 8) | (0xff & data[i]); + bits += 8; + + // Write out as much as we can: + while (bits > 5) { + bits -= 5; + // eslint-disable-next-line no-bitwise + out += BASE32[mask & (buffer >> bits)]; + } + } + + // Partial character: + if (bits) { + // eslint-disable-next-line no-bitwise + out += BASE32[mask & (buffer << (5 - bits))]; + } + + return out; +} + +// https://github.com/pnpm/pnpm/blob/f394cfccda7bc519ceee8c33fc9b68a0f4235532/packages/dependency-path/src/index.ts#L167-L189 +function depPathToFilename(depPath: string): string { + let filename: string = depPathToFilenameUnescaped(depPath).replace(/[\\/:*?"<>|]/g, '+'); + if (filename.includes('(')) { + filename = filename.replace(/(\)\()|\(/g, '_').replace(/\)$/, ''); + } + if (filename.length > 120 || (filename !== filename.toLowerCase() && !filename.startsWith('file+'))) { + return `${filename.substring(0, MAX_LENGTH_WITHOUT_HASH)}_${createBase32Hash(filename)}`; + } + return filename; +} + +function depPathToFilenameUnescaped(depPath: string): string { + if (depPath.indexOf('file:') !== 0) { + if (depPath.startsWith('/')) { + depPath = depPath.slice(1); + } + return depPath; + } + return depPath.replace(':', '+'); +} + +interface IResolverContext { + descriptionFileRoot: string; + descriptionFileHash: string | undefined; + name: string; + deps: Map; + isProject: boolean; + ordinal: number; + optional?: boolean; + files?: string[]; +} + +type IDependencyEntry = + | string + | { + version: string; + specifier: string; + }; + +export async function afterInstallAsync( + rushSession: RushSession, + rushConfiguration: RushConfiguration, + subspace: Subspace, + logger: ILogger +): Promise { + const { terminal } = logger; + const rushRoot: string = `${rushConfiguration.rushJsonFolder}/`; + + const lockFile: string = subspace.getCommittedShrinkwrapFilename(); + const workspaceRoot: string = subspace.getSubspaceTempFolderPath(); + + /** + * + * @param key - The key of the dependency + * @param specifier - The specifier in the lockfile for the dependency + * @param context - The owning package + * @returns The identifier for the dependency + */ + function resolveDependencyKey(key: string, specifier: string, context: IResolverContext): string { + if (specifier.startsWith('/')) { + return getDescriptionFileRootFromKey(specifier); + } else if (specifier.startsWith('link:')) { + if (context.isProject) { + return path.resolve(context.descriptionFileRoot, specifier.slice(5)); + } else { + return path.resolve(workspaceRoot, specifier.slice(5)); + } + } else if (specifier.startsWith('file:')) { + return getDescriptionFileRootFromKey(specifier, key); + } else { + return getDescriptionFileRootFromKey(`/${key}@${specifier}`); + } + } + + function resolveDependencies( + collection: Record, + context: IResolverContext + ): void { + for (const [key, value] of Object.entries(collection)) { + const version: string = typeof value === 'string' ? value : value.version; + const resolved: string = resolveDependencyKey(key, version, context); + + context.deps.set(key, resolved); + } + } + + const pnpmStoreDir: string = `${rushConfiguration.pnpmOptions.pnpmStorePath}/v3/files/`; + const installRoot: string = `${workspaceRoot}/node_modules/.pnpm`; + + function getDescriptionFileRootFromKey(key: string, name?: string): string { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + const packageName: string = key.startsWith('file:') ? name! : key.slice(1, key.indexOf('@', 2)); + + const originFolder: string = `${installRoot}/${depPathToFilename(key)}/node_modules`; + const descriptionFileRoot: string = `${originFolder}/${packageName}`; + return descriptionFileRoot; + } + + terminal.writeLine(`Using pnpm-lock from: ${lockFile}`); + terminal.writeLine(`Using pnpm store folder: ${pnpmStoreDir}`); + + const shrinkwrapFile: PnpmShrinkwrapFile | undefined = PnpmShrinkwrapFile.loadFromFile(lockFile, { + withCaching: true + }); + if (!shrinkwrapFile) { + throw new Error(`Failed to load shrinkwrap file: ${lockFile}`); + } + + const cacheFilePath: string = `${workspaceRoot}/resolver-cache.json`; + + terminal.writeLine(`Resolver cache will be written at ${cacheFilePath}`); + + const contexts: Map = new Map(); + const missingOptionalDependencies: Set = new Set(); + + const projectByImporterPath: LookupByPath = + rushConfiguration.getProjectLookupForRoot(workspaceRoot); + + // Acquiring the libc version is a bit more obnoxious than platform and arch, + // but all of them are ultimately on the same object. + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const { platform, arch, glibcVersionRuntime } = (process.report?.getReport() as any)?.header ?? process; + const libc: string = glibcVersionRuntime ? 'glibc' : 'musl'; + + // Enumerate external dependencies first, to simplify looping over them for store data + for (const [key, pack] of shrinkwrapFile.packages) { + let name: string | undefined = pack.name; + const descriptionFileRoot: string = getDescriptionFileRootFromKey(key, name); + + // Skip optional dependencies that are incompatible with the current environment + if (pack.optional) { + if (pack.os && !pack.os.some((value) => value.toLowerCase() === platform)) { + missingOptionalDependencies.add(descriptionFileRoot); + continue; + } + if (pack.cpu && !pack.cpu.some((value) => value.toLowerCase() === arch)) { + missingOptionalDependencies.add(descriptionFileRoot); + continue; + } + if (pack.libc && !pack.libc.some((value) => value.toLowerCase() === libc)) { + missingOptionalDependencies.add(descriptionFileRoot); + continue; + } + } + + const integrity: string | undefined = pack.resolution?.integrity; + + if (!name && key.startsWith('/')) { + const versionIndex: number = key.indexOf('@', 2); + name = key.slice(1, versionIndex); + } + + if (!name) { + throw new Error(`Missing name for ${key}`); + } + + const context: IResolverContext = { + descriptionFileRoot, + descriptionFileHash: integrity, + isProject: false, + name, + deps: new Map(), + ordinal: contexts.size, + optional: pack.optional + }; + + contexts.set(descriptionFileRoot, context); + + if (pack.dependencies) { + resolveDependencies(pack.dependencies, context); + } + if (pack.optionalDependencies) { + resolveDependencies(pack.optionalDependencies, context); + } + } + + // For external packages, update the contexts with data from the pnpm store + // This gives us the list of nested package.json files, as well as the actual package name + // We could also cache package.json contents, but that proves to be inefficient. + await Async.forEachAsync( + contexts.values(), + async (context: IResolverContext) => { + const { descriptionFileRoot, descriptionFileHash } = context; + + if (descriptionFileHash === undefined) { + // Assume this package has no nested package json files for now. + terminal.writeDebugLine( + `Package at ${descriptionFileRoot} does not having a file list. Assuming no nested "package.json" files.` + ); + return; + } + + // Convert an integrity hash like + // sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw== + // To its hex representation, e.g. + // 0baba219027e1ade11c875d762dfaff5ff92375bfcdf1ebc511c20c4d43df1cbc7f24c62bb2c1618fe1778d675a5a3b367adda6377137220844093455258e52f + const prefixIndex: number = descriptionFileHash.indexOf('-'); + const hash: string = Buffer.from(descriptionFileHash.slice(prefixIndex + 1), 'base64').toString('hex'); + + // The pnpm store directory has index files of package contents at paths: + // /v3/files//-index.json + // See https://github.com/pnpm/pnpm/blob/f394cfccda7bc519ceee8c33fc9b68a0f4235532/store/cafs/src/getFilePathInCafs.ts#L33 + const indexPath: string = `${pnpmStoreDir}${hash.slice(0, 2)}/${hash.slice(2)}-index.json`; + + try { + const indexContent: string = await FileSystem.readFileAsync(indexPath); + const { files } = JSON.parse(indexContent); + + const filteredFiles: string[] = Object.keys(files).filter((file) => file.endsWith('/package.json')); + if (filteredFiles.length > 0) { + // eslint-disable-next-line require-atomic-updates + context.files = filteredFiles.map((x) => x.slice(0, -13)); + } + } catch (error) { + if (!context.optional) { + throw new Error( + `Error reading index file for: "${context.descriptionFileRoot}" (${descriptionFileHash})` + ); + } else { + terminal.writeLine(`Trimming missing optional dependency at: ${descriptionFileRoot}`); + contexts.delete(descriptionFileRoot); + missingOptionalDependencies.add(descriptionFileRoot); + } + } + }, + { + concurrency: 20 + } + ); + + // Add the data for workspace projects + for (const [importerPath, importer] of shrinkwrapFile.importers) { + // Ignore the root project. This plugin assumes you don't have one. + // A non-empty root project results in global dependency hoisting, and that's bad for strictness. + if (importerPath === '.') { + continue; + } + + const project: RushConfigurationProject | undefined = projectByImporterPath.findChildPath(importerPath); + if (!project) { + throw new Error(`Missing project for importer ${importerPath}`); + } + + const context: IResolverContext = { + descriptionFileRoot: project.projectFolder, + descriptionFileHash: undefined, // Not needed anymore + name: project.packageJson.name, + isProject: true, + deps: new Map(), + ordinal: contexts.size + }; + + contexts.set(project.projectFolder, context); + + if (importer.dependencies) { + resolveDependencies(importer.dependencies, context); + } + if (importer.devDependencies) { + resolveDependencies(importer.devDependencies, context); + } + if (importer.optionalDependencies) { + resolveDependencies(importer.optionalDependencies, context); + } + } + + // Convert the intermediate representation to the final cache file + const serializedContexts: ISerializedResolveContext[] = Array.from( + contexts, + ([descriptionFileRoot, context]: [string, IResolverContext]): ISerializedResolveContext => { + const deps: ISerializedResolveContext['deps'] = {}; + for (const [key, contextRoot] of context.deps) { + if (missingOptionalDependencies.has(contextRoot)) { + continue; + } + + const resolutionContext: IResolverContext | undefined = contexts.get(contextRoot); + if (!resolutionContext) { + throw new Error(`Missing context for ${contextRoot}!`); + } + deps[key] = resolutionContext.ordinal; + } + + if (!context.name) { + throw new Error(`Missing name for ${descriptionFileRoot}`); + } + + const serializedContext: ISerializedResolveContext = { + name: context.name, + root: descriptionFileRoot.slice(rushRoot.length), + dirInfoFiles: context.files, + deps + }; + + return serializedContext; + } + ); + + const cacheFile: IResolverCacheFile = { + contexts: serializedContexts + }; + + const serialized: string = JSON.stringify(cacheFile); + + await FileSystem.writeFileAsync(cacheFilePath, serialized, { + ensureFolderExists: true + }); +} diff --git a/rush-plugins/rush-resolver-cache-plugin/src/externals.ts b/rush-plugins/rush-resolver-cache-plugin/src/externals.ts new file mode 100644 index 00000000000..714a67f2c39 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/externals.ts @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. +// See LICENSE in the project root for license information. + +import type Module from 'node:module'; + +import type { Operation as OperationType, OperationStatus as OperationStatusType } from '@rushstack/rush-sdk'; +import type { PnpmShrinkwrapFile as PnpmShrinkwrapFileType } from '@rushstack/rush-sdk/lib/logic/pnpm/PnpmShrinkwrapFile'; +import type * as rushSdkType from '@rushstack/rush-sdk'; + +// Ultra-cheap "I am a Rush plugin" import of rush-lib +// eslint-disable-next-line @typescript-eslint/naming-convention +declare const ___rush___rushLibModule: typeof rushSdkType; + +const { Operation, OperationStatus } = ___rush___rushLibModule; +// eslint-disable-next-line @typescript-eslint/no-redeclare +type Operation = OperationType; +// eslint-disable-next-line @typescript-eslint/no-redeclare +type OperationStatus = OperationStatusType; + +export { Operation, OperationStatus }; + +// Support this plugin being webpacked. +// eslint-disable-next-line @typescript-eslint/naming-convention +declare const __non_webpack_require__: typeof require; +const req: typeof require = typeof __non_webpack_require__ === 'function' ? __non_webpack_require__ : require; + +const entryModule: Module | undefined = req.main; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function getExternal(name: string): TResult { + const externalPath: string = req.resolve(name, { + paths: entryModule?.paths + }); + + return req(externalPath); +} + +// Private Rush APIs +export const { PnpmShrinkwrapFile } = getExternal< + typeof import('@rushstack/rush-sdk/lib/logic/pnpm/PnpmShrinkwrapFile') +>('@microsoft/rush-lib/lib/logic/pnpm/PnpmShrinkwrapFile'); +// eslint-disable-next-line @typescript-eslint/no-redeclare +export type PnpmShrinkwrapFile = PnpmShrinkwrapFileType; + +// Avoid bundling expensive stuff that's already part of Rush. +export const { Async } = getExternal( + `@rushstack/node-core-library/lib/Async` +); +export const { FileSystem } = getExternal( + `@rushstack/node-core-library/lib/FileSystem` +); diff --git a/rush-plugins/rush-resolver-cache-plugin/src/index.ts b/rush-plugins/rush-resolver-cache-plugin/src/index.ts new file mode 100644 index 00000000000..b90fcae88c8 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/index.ts @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. +// See LICENSE in the project root for license information. + +import type { + IRushPlugin, + RushSession, + RushConfiguration, + IRushCommand, + ILogger, + Subspace +} from '@rushstack/rush-sdk'; + +/** + * Plugin that caches information from the package manager after installation to speed up resolution of imports. + * @beta + */ +export default class RushResolverCachePlugin implements IRushPlugin { + public readonly pluginName: 'RushResolverCachePlugin' = 'RushResolverCachePlugin'; + + public apply(rushSession: RushSession, rushConfiguration: RushConfiguration): void { + rushSession.hooks.afterInstall.tapPromise( + this.pluginName, + async (command: IRushCommand, subspace: Subspace) => { + const logger: ILogger = rushSession.getLogger('RushResolverCachePlugin'); + + if (rushConfiguration.packageManager !== 'pnpm') { + logger.emitError( + new Error('The RushResolverCachePlugin currently only supports the "pnpm" package manager') + ); + return; + } + + const pnpmMajorVersion: number = parseInt( + rushConfiguration.packageManagerToolVersion.split('.')[0], + /* radix */ 10 + ); + // Lockfile format parsing logic changed in pnpm v8. + if (pnpmMajorVersion < 8) { + logger.emitError(new Error('The RushResolverCachePlugin currently only supports pnpm version >=8')); + return; + } + + // This plugin is not currently webpacked, but these comments are here for future proofing. + const { afterInstallAsync } = await import( + /* webpackChunkMode: 'eager' */ + /* webpackExports: ["afterInstallAsync"] */ + './afterInstallAsync' + ); + + await afterInstallAsync(rushSession, rushConfiguration, subspace, logger); + } + ); + } +} diff --git a/rush-plugins/rush-resolver-cache-plugin/tsconfig.json b/rush-plugins/rush-resolver-cache-plugin/tsconfig.json new file mode 100644 index 00000000000..dac21d04081 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "./node_modules/local-node-rig/profiles/default/tsconfig-base.json" +} diff --git a/rush.json b/rush.json index b0977f05e42..d0c4ba8ce61 100644 --- a/rush.json +++ b/rush.json @@ -1223,6 +1223,12 @@ "reviewCategory": "libraries", "versionPolicyName": "rush" }, + { + "packageName": "@rushstack/rush-resolver-cache-plugin", + "projectFolder": "rush-plugins/rush-resolver-cache-plugin", + "reviewCategory": "libraries", + "versionPolicyName": "rush" + }, { "packageName": "@rushstack/rush-serve-plugin", "projectFolder": "rush-plugins/rush-serve-plugin", From ee2b805d9189052bbf60a13875987eb1407d7991 Mon Sep 17 00:00:00 2001 From: David Michon Date: Thu, 22 Aug 2024 19:42:19 +0000 Subject: [PATCH 5/8] [rush] Add unit tests for resolver-cache-plugin --- .../config/subspaces/default/pnpm-lock.yaml | 6 + .../rush-resolver-cache-plugin/package.json | 6 +- .../src/afterInstallAsync.ts | 337 +- .../computeResolverCacheFromLockfileAsync.ts | 197 + .../rush-resolver-cache-plugin/src/helpers.ts | 174 + ...esolverCacheFromLockfileAsync.test.ts.snap | 31894 ++++++++++++++ .../test/__snapshots__/helpers.test.ts.snap | 39 + ...puteResolverCacheFromLockfileAsync.test.ts | 69 + .../src/test/helpers.test.ts | 54 + .../rush-resolver-cache-plugin/src/types.ts | 20 + .../test-collateral/build-tests-subspace.yaml | 9016 ++++ .../test-collateral/default-subspace.yaml | 36668 ++++++++++++++++ .../rush-resolver-cache-plugin/tsconfig.json | 6 +- 13 files changed, 78212 insertions(+), 274 deletions(-) create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/computeResolverCacheFromLockfileAsync.ts create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/helpers.ts create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/test/__snapshots__/computeResolverCacheFromLockfileAsync.test.ts.snap create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/test/__snapshots__/helpers.test.ts.snap create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/test/computeResolverCacheFromLockfileAsync.test.ts create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/test/helpers.test.ts create mode 100644 rush-plugins/rush-resolver-cache-plugin/src/types.ts create mode 100644 rush-plugins/rush-resolver-cache-plugin/test-collateral/build-tests-subspace.yaml create mode 100644 rush-plugins/rush-resolver-cache-plugin/test-collateral/default-subspace.yaml diff --git a/common/config/subspaces/default/pnpm-lock.yaml b/common/config/subspaces/default/pnpm-lock.yaml index a75ff1e303a..e8d57eb7f96 100644 --- a/common/config/subspaces/default/pnpm-lock.yaml +++ b/common/config/subspaces/default/pnpm-lock.yaml @@ -4134,6 +4134,9 @@ importers: specifier: workspace:* version: link:../../libraries/rush-sdk devDependencies: + '@rushstack/lookup-by-path': + specifier: workspace:* + version: link:../../libraries/lookup-by-path '@rushstack/node-core-library': specifier: workspace:* version: link:../../libraries/node-core-library @@ -4143,6 +4146,9 @@ importers: '@rushstack/webpack-workspace-resolve-plugin': specifier: workspace:* version: link:../../webpack/webpack-workspace-resolve-plugin + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 local-node-rig: specifier: workspace:* version: link:../../rigs/local-node-rig diff --git a/rush-plugins/rush-resolver-cache-plugin/package.json b/rush-plugins/rush-resolver-cache-plugin/package.json index c33c97aa839..300f01c5e32 100644 --- a/rush-plugins/rush-resolver-cache-plugin/package.json +++ b/rush-plugins/rush-resolver-cache-plugin/package.json @@ -9,7 +9,7 @@ "directory": "rush-plugins/rush-resolver-cache-plugin" }, "main": "lib-commonjs/index.js", - "types": "dist/index.d.ts", + "types": "dist/rush-resolver-cache-plugin.d.ts", "scripts": { "build": "heft test --clean", "_phase:build": "heft run --only build -- --clean", @@ -19,9 +19,11 @@ "@rushstack/rush-sdk": "workspace:*" }, "devDependencies": { + "@rushstack/lookup-by-path": "workspace:*", "@rushstack/node-core-library": "workspace:*", "@rushstack/terminal": "workspace:*", "@rushstack/webpack-workspace-resolve-plugin": "workspace:*", + "@types/webpack-env": "1.18.0", "local-node-rig": "workspace:*" }, "exports": { @@ -33,7 +35,7 @@ "typesVersions": { "*": { ".": [ - "dist/rush-serve-plugin.d.ts" + "dist/rush-resolver-cache-plugin.d.ts" ] } } diff --git a/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts b/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts index fc657315bc6..9dd15c374e5 100644 --- a/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts +++ b/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts @@ -1,9 +1,6 @@ // Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. // See LICENSE in the project root for license information. -import { createHash } from 'node:crypto'; -import * as path from 'node:path'; - import type { RushSession, RushConfiguration, @@ -12,87 +9,44 @@ import type { LookupByPath, Subspace } from '@rushstack/rush-sdk'; -import type { - ISerializedResolveContext, - IResolverCacheFile -} from '@rushstack/webpack-workspace-resolve-plugin'; +import type { IResolverCacheFile } from '@rushstack/webpack-workspace-resolve-plugin'; import { Async, FileSystem, PnpmShrinkwrapFile } from './externals'; - -const MAX_LENGTH_WITHOUT_HASH: number = 120 - 26 - 1; -const BASE32: string[] = 'abcdefghijklmnopqrstuvwxyz234567'.split(''); - -// https://github.com/swansontec/rfc4648.js/blob/ead9c9b4b68e5d4a529f32925da02c02984e772c/src/codec.ts#L82-L118 -function createBase32Hash(input: string): string { - const data: Buffer = createHash('md5').update(input).digest(); - - const mask: 0x1f = 0x1f; - let out: string = ''; - - let bits: number = 0; // Number of bits currently in the buffer - let buffer: number = 0; // Bits waiting to be written out, MSB first - for (let i: number = 0; i < data.length; ++i) { - // eslint-disable-next-line no-bitwise - buffer = (buffer << 8) | (0xff & data[i]); - bits += 8; - - // Write out as much as we can: - while (bits > 5) { - bits -= 5; - // eslint-disable-next-line no-bitwise - out += BASE32[mask & (buffer >> bits)]; - } - } - - // Partial character: - if (bits) { - // eslint-disable-next-line no-bitwise - out += BASE32[mask & (buffer << (5 - bits))]; - } - - return out; -} - -// https://github.com/pnpm/pnpm/blob/f394cfccda7bc519ceee8c33fc9b68a0f4235532/packages/dependency-path/src/index.ts#L167-L189 -function depPathToFilename(depPath: string): string { - let filename: string = depPathToFilenameUnescaped(depPath).replace(/[\\/:*?"<>|]/g, '+'); - if (filename.includes('(')) { - filename = filename.replace(/(\)\()|\(/g, '_').replace(/\)$/, ''); - } - if (filename.length > 120 || (filename !== filename.toLowerCase() && !filename.startsWith('file+'))) { - return `${filename.substring(0, MAX_LENGTH_WITHOUT_HASH)}_${createBase32Hash(filename)}`; - } - return filename; -} - -function depPathToFilenameUnescaped(depPath: string): string { - if (depPath.indexOf('file:') !== 0) { - if (depPath.startsWith('/')) { - depPath = depPath.slice(1); - } - return depPath; - } - return depPath.replace(':', '+'); -} - -interface IResolverContext { - descriptionFileRoot: string; - descriptionFileHash: string | undefined; - name: string; - deps: Map; - isProject: boolean; - ordinal: number; - optional?: boolean; - files?: string[]; +import { + computeResolverCacheFromLockfileAsync, + type IPlatformInfo +} from './computeResolverCacheFromLockfileAsync'; +import type { IResolverContext } from './types'; + +/** + * Gets information used to determine compatibility of optional dependencies. + * @returns Information about the platform Rush is running on + */ +function getPlatformInfo(): IPlatformInfo { + // Acquiring the libc version is a bit more obnoxious than platform and arch, + // but all of them are ultimately on the same object. + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const { + platform: os, + arch: cpu, + glibcVersionRuntime + } = (process.report?.getReport() as any)?.header ?? process; + const libc: 'glibc' | 'musl' = glibcVersionRuntime ? 'glibc' : 'musl'; + + return { + os, + cpu, + libc + }; } -type IDependencyEntry = - | string - | { - version: string; - specifier: string; - }; - +/** + * Plugin entry point for after install. + * @param rushSession - The Rush Session + * @param rushConfiguration - The Rush Configuration + * @param subspace - The subspace that was just installed + * @param logger - The initialized logger + */ export async function afterInstallAsync( rushSession: RushSession, rushConfiguration: RushConfiguration, @@ -102,140 +56,39 @@ export async function afterInstallAsync( const { terminal } = logger; const rushRoot: string = `${rushConfiguration.rushJsonFolder}/`; - const lockFile: string = subspace.getCommittedShrinkwrapFilename(); + const lockFilePath: string = subspace.getCommittedShrinkwrapFilename(); const workspaceRoot: string = subspace.getSubspaceTempFolderPath(); - /** - * - * @param key - The key of the dependency - * @param specifier - The specifier in the lockfile for the dependency - * @param context - The owning package - * @returns The identifier for the dependency - */ - function resolveDependencyKey(key: string, specifier: string, context: IResolverContext): string { - if (specifier.startsWith('/')) { - return getDescriptionFileRootFromKey(specifier); - } else if (specifier.startsWith('link:')) { - if (context.isProject) { - return path.resolve(context.descriptionFileRoot, specifier.slice(5)); - } else { - return path.resolve(workspaceRoot, specifier.slice(5)); - } - } else if (specifier.startsWith('file:')) { - return getDescriptionFileRootFromKey(specifier, key); - } else { - return getDescriptionFileRootFromKey(`/${key}@${specifier}`); - } - } - - function resolveDependencies( - collection: Record, - context: IResolverContext - ): void { - for (const [key, value] of Object.entries(collection)) { - const version: string = typeof value === 'string' ? value : value.version; - const resolved: string = resolveDependencyKey(key, version, context); - - context.deps.set(key, resolved); - } - } + const projectByImporterPath: LookupByPath = + rushConfiguration.getProjectLookupForRoot(workspaceRoot); const pnpmStoreDir: string = `${rushConfiguration.pnpmOptions.pnpmStorePath}/v3/files/`; - const installRoot: string = `${workspaceRoot}/node_modules/.pnpm`; - - function getDescriptionFileRootFromKey(key: string, name?: string): string { - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - const packageName: string = key.startsWith('file:') ? name! : key.slice(1, key.indexOf('@', 2)); - - const originFolder: string = `${installRoot}/${depPathToFilename(key)}/node_modules`; - const descriptionFileRoot: string = `${originFolder}/${packageName}`; - return descriptionFileRoot; - } - terminal.writeLine(`Using pnpm-lock from: ${lockFile}`); + terminal.writeLine(`Using pnpm-lock from: ${lockFilePath}`); terminal.writeLine(`Using pnpm store folder: ${pnpmStoreDir}`); - const shrinkwrapFile: PnpmShrinkwrapFile | undefined = PnpmShrinkwrapFile.loadFromFile(lockFile, { + const lockFile: PnpmShrinkwrapFile | undefined = PnpmShrinkwrapFile.loadFromFile(lockFilePath, { withCaching: true }); - if (!shrinkwrapFile) { - throw new Error(`Failed to load shrinkwrap file: ${lockFile}`); + if (!lockFile) { + throw new Error(`Failed to load shrinkwrap file: ${lockFilePath}`); } const cacheFilePath: string = `${workspaceRoot}/resolver-cache.json`; terminal.writeLine(`Resolver cache will be written at ${cacheFilePath}`); - const contexts: Map = new Map(); - const missingOptionalDependencies: Set = new Set(); - - const projectByImporterPath: LookupByPath = - rushConfiguration.getProjectLookupForRoot(workspaceRoot); - - // Acquiring the libc version is a bit more obnoxious than platform and arch, - // but all of them are ultimately on the same object. - // eslint-disable-next-line @typescript-eslint/no-explicit-any - const { platform, arch, glibcVersionRuntime } = (process.report?.getReport() as any)?.header ?? process; - const libc: string = glibcVersionRuntime ? 'glibc' : 'musl'; - - // Enumerate external dependencies first, to simplify looping over them for store data - for (const [key, pack] of shrinkwrapFile.packages) { - let name: string | undefined = pack.name; - const descriptionFileRoot: string = getDescriptionFileRootFromKey(key, name); - - // Skip optional dependencies that are incompatible with the current environment - if (pack.optional) { - if (pack.os && !pack.os.some((value) => value.toLowerCase() === platform)) { - missingOptionalDependencies.add(descriptionFileRoot); - continue; - } - if (pack.cpu && !pack.cpu.some((value) => value.toLowerCase() === arch)) { - missingOptionalDependencies.add(descriptionFileRoot); - continue; - } - if (pack.libc && !pack.libc.some((value) => value.toLowerCase() === libc)) { - missingOptionalDependencies.add(descriptionFileRoot); - continue; - } - } - - const integrity: string | undefined = pack.resolution?.integrity; - - if (!name && key.startsWith('/')) { - const versionIndex: number = key.indexOf('@', 2); - name = key.slice(1, versionIndex); - } - - if (!name) { - throw new Error(`Missing name for ${key}`); - } - - const context: IResolverContext = { - descriptionFileRoot, - descriptionFileHash: integrity, - isProject: false, - name, - deps: new Map(), - ordinal: contexts.size, - optional: pack.optional - }; - - contexts.set(descriptionFileRoot, context); - - if (pack.dependencies) { - resolveDependencies(pack.dependencies, context); - } - if (pack.optionalDependencies) { - resolveDependencies(pack.optionalDependencies, context); - } - } - - // For external packages, update the contexts with data from the pnpm store - // This gives us the list of nested package.json files, as well as the actual package name - // We could also cache package.json contents, but that proves to be inefficient. - await Async.forEachAsync( - contexts.values(), - async (context: IResolverContext) => { + async function afterExternalPackagesAsync( + contexts: Map, + missingOptionalDependencies: Set + ): Promise { + /** + * Loads the index file from the pnpm store to discover nested package.json files in an external package + * For internal packages, assumes there are no nested package.json files. + * @param context - The context to find nested package.json files for + * @returns A promise that resolves when the nested package.json files are found, if applicable + */ + async function findNestedPackageJsonsForContextAsync(context: IResolverContext): Promise { const { descriptionFileRoot, descriptionFileHash } = context; if (descriptionFileHash === undefined) { @@ -278,82 +131,24 @@ export async function afterInstallAsync( missingOptionalDependencies.add(descriptionFileRoot); } } - }, - { - concurrency: 20 } - ); - // Add the data for workspace projects - for (const [importerPath, importer] of shrinkwrapFile.importers) { - // Ignore the root project. This plugin assumes you don't have one. - // A non-empty root project results in global dependency hoisting, and that's bad for strictness. - if (importerPath === '.') { - continue; - } - - const project: RushConfigurationProject | undefined = projectByImporterPath.findChildPath(importerPath); - if (!project) { - throw new Error(`Missing project for importer ${importerPath}`); - } - - const context: IResolverContext = { - descriptionFileRoot: project.projectFolder, - descriptionFileHash: undefined, // Not needed anymore - name: project.packageJson.name, - isProject: true, - deps: new Map(), - ordinal: contexts.size - }; - - contexts.set(project.projectFolder, context); - - if (importer.dependencies) { - resolveDependencies(importer.dependencies, context); - } - if (importer.devDependencies) { - resolveDependencies(importer.devDependencies, context); - } - if (importer.optionalDependencies) { - resolveDependencies(importer.optionalDependencies, context); - } + // For external packages, update the contexts with data from the pnpm store + // This gives us the list of nested package.json files, as well as the actual package name + // We could also cache package.json contents, but that proves to be inefficient. + await Async.forEachAsync(contexts.values(), findNestedPackageJsonsForContextAsync, { + concurrency: 20 + }); } - // Convert the intermediate representation to the final cache file - const serializedContexts: ISerializedResolveContext[] = Array.from( - contexts, - ([descriptionFileRoot, context]: [string, IResolverContext]): ISerializedResolveContext => { - const deps: ISerializedResolveContext['deps'] = {}; - for (const [key, contextRoot] of context.deps) { - if (missingOptionalDependencies.has(contextRoot)) { - continue; - } - - const resolutionContext: IResolverContext | undefined = contexts.get(contextRoot); - if (!resolutionContext) { - throw new Error(`Missing context for ${contextRoot}!`); - } - deps[key] = resolutionContext.ordinal; - } - - if (!context.name) { - throw new Error(`Missing name for ${descriptionFileRoot}`); - } - - const serializedContext: ISerializedResolveContext = { - name: context.name, - root: descriptionFileRoot.slice(rushRoot.length), - dirInfoFiles: context.files, - deps - }; - - return serializedContext; - } - ); - - const cacheFile: IResolverCacheFile = { - contexts: serializedContexts - }; + const cacheFile: IResolverCacheFile = await computeResolverCacheFromLockfileAsync({ + workspaceRoot, + commonPrefixToTrim: rushRoot, + platformInfo: getPlatformInfo(), + projectByImporterPath, + lockfile: lockFile, + afterExternalPackagesAsync + }); const serialized: string = JSON.stringify(cacheFile); diff --git a/rush-plugins/rush-resolver-cache-plugin/src/computeResolverCacheFromLockfileAsync.ts b/rush-plugins/rush-resolver-cache-plugin/src/computeResolverCacheFromLockfileAsync.ts new file mode 100644 index 00000000000..f5d5402861b --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/computeResolverCacheFromLockfileAsync.ts @@ -0,0 +1,197 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. +// See LICENSE in the project root for license information. + +import type { LookupByPath } from '@rushstack/rush-sdk'; +import type { IPnpmShrinkwrapDependencyYaml } from '@rushstack/rush-sdk/lib/logic/pnpm/PnpmShrinkwrapFile'; +import type { + ISerializedResolveContext, + IResolverCacheFile +} from '@rushstack/webpack-workspace-resolve-plugin'; + +import type { PnpmShrinkwrapFile } from './externals'; +import { getDescriptionFileRootFromKey, resolveDependencies, createContextSerializer } from './helpers'; +import type { IResolverContext } from './types'; + +/** + * The only parts of a RushConfigurationProject needed by this tool. + * Reduced for unit test typings. + */ +export interface IPartialRushProject { + projectFolder: string; + packageJson: { + name: string; + }; +} + +export interface IPlatformInfo { + os: typeof process.platform; + cpu: typeof process.arch; + libc: 'glibc' | 'musl'; +} + +function isPackageCompatible( + pack: Pick, + platformInfo: IPlatformInfo +): boolean { + if (pack.os?.every((value) => value.toLowerCase() !== platformInfo.os)) { + return false; + } + if (pack.cpu?.every((value) => value.toLowerCase() !== platformInfo.cpu)) { + return false; + } + if (pack.libc?.every((value) => value.toLowerCase() !== platformInfo.libc)) { + return false; + } + return true; +} + +/** + * Options for computing the resolver cache from a lockfile. + */ +export interface IComputeResolverCacheFromLockfileOptions { + /** + * The root folder of the workspace being installed + */ + workspaceRoot: string; + /** + * The common root path to trim from the description file roots for brevity + */ + commonPrefixToTrim: string; + /** + * Information about the platform Rush is running on + */ + platformInfo: IPlatformInfo; + /** + * A lookup of projects by their importer path + */ + projectByImporterPath: Pick, 'findChildPath'>; + /** + * The lockfile to compute the cache from + */ + lockfile: PnpmShrinkwrapFile; + /** + * A callback to process external packages after they have been enumerated. + * Broken out as a separate function to facilitate testing without hitting the disk. + * @remarks This is useful for fetching additional data from the pnpm store + * @param contexts - The current context information per description file root + * @param missingOptionalDependencies - The set of optional dependencies that were not installed + * @returns A promise that resolves when the external packages have been processed + */ + afterExternalPackagesAsync?: ( + contexts: Map, + missingOptionalDependencies: Set + ) => Promise; +} + +/** + * Given a lockfile and information about the workspace and platform, computes the resolver cache file. + * @param params - The options for computing the resolver cache + * @returns A promise that resolves with the resolver cache file + */ +export async function computeResolverCacheFromLockfileAsync( + params: IComputeResolverCacheFromLockfileOptions +): Promise { + const { + workspaceRoot, + commonPrefixToTrim, + platformInfo, + projectByImporterPath, + lockfile, + afterExternalPackagesAsync + } = params; + const contexts: Map = new Map(); + const missingOptionalDependencies: Set = new Set(); + + // Enumerate external dependencies first, to simplify looping over them for store data + for (const [key, pack] of lockfile.packages) { + let name: string | undefined = pack.name; + const descriptionFileRoot: string = getDescriptionFileRootFromKey(workspaceRoot, key, name); + + // Skip optional dependencies that are incompatible with the current environment + if (pack.optional && !isPackageCompatible(pack, platformInfo)) { + missingOptionalDependencies.add(descriptionFileRoot); + continue; + } + + const integrity: string | undefined = pack.resolution?.integrity; + + if (!name && key.startsWith('/')) { + const versionIndex: number = key.indexOf('@', 2); + name = key.slice(1, versionIndex); + } + + if (!name) { + throw new Error(`Missing name for ${key}`); + } + + const context: IResolverContext = { + descriptionFileRoot, + descriptionFileHash: integrity, + isProject: false, + name, + deps: new Map(), + ordinal: contexts.size, + optional: pack.optional + }; + + contexts.set(descriptionFileRoot, context); + + if (pack.dependencies) { + resolveDependencies(workspaceRoot, pack.dependencies, context); + } + if (pack.optionalDependencies) { + resolveDependencies(workspaceRoot, pack.optionalDependencies, context); + } + } + + if (afterExternalPackagesAsync) { + await afterExternalPackagesAsync(contexts, missingOptionalDependencies); + } + + // Add the data for workspace projects + for (const [importerPath, importer] of lockfile.importers) { + // Ignore the root project. This plugin assumes you don't have one. + // A non-empty root project results in global dependency hoisting, and that's bad for strictness. + if (importerPath === '.') { + continue; + } + + const project: IPartialRushProject | undefined = projectByImporterPath.findChildPath(importerPath); + if (!project) { + throw new Error(`Missing project for importer ${importerPath}`); + } + + const context: IResolverContext = { + descriptionFileRoot: project.projectFolder, + descriptionFileHash: undefined, // Not needed anymore + name: project.packageJson.name, + isProject: true, + deps: new Map(), + ordinal: contexts.size + }; + + contexts.set(project.projectFolder, context); + + if (importer.dependencies) { + resolveDependencies(workspaceRoot, importer.dependencies, context); + } + if (importer.devDependencies) { + resolveDependencies(workspaceRoot, importer.devDependencies, context); + } + if (importer.optionalDependencies) { + resolveDependencies(workspaceRoot, importer.optionalDependencies, context); + } + } + + // Convert the intermediate representation to the final cache file + const serializedContexts: ISerializedResolveContext[] = Array.from( + contexts, + createContextSerializer(missingOptionalDependencies, contexts, commonPrefixToTrim) + ); + + const cacheFile: IResolverCacheFile = { + contexts: serializedContexts + }; + + return cacheFile; +} diff --git a/rush-plugins/rush-resolver-cache-plugin/src/helpers.ts b/rush-plugins/rush-resolver-cache-plugin/src/helpers.ts new file mode 100644 index 00000000000..b5c1fe84f8e --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/helpers.ts @@ -0,0 +1,174 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. +// See LICENSE in the project root for license information. + +import { createHash } from 'node:crypto'; +import * as path from 'node:path'; + +import type { ISerializedResolveContext } from '@rushstack/webpack-workspace-resolve-plugin'; + +import type { IDependencyEntry, IResolverContext } from './types'; + +const MAX_LENGTH_WITHOUT_HASH: number = 120 - 26 - 1; +const BASE32: string[] = 'abcdefghijklmnopqrstuvwxyz234567'.split(''); + +// https://github.com/swansontec/rfc4648.js/blob/ead9c9b4b68e5d4a529f32925da02c02984e772c/src/codec.ts#L82-L118 +export function createBase32Hash(input: string): string { + const data: Buffer = createHash('md5').update(input).digest(); + + const mask: 0x1f = 0x1f; + let out: string = ''; + + let bits: number = 0; // Number of bits currently in the buffer + let buffer: number = 0; // Bits waiting to be written out, MSB first + for (let i: number = 0; i < data.length; ++i) { + // eslint-disable-next-line no-bitwise + buffer = (buffer << 8) | (0xff & data[i]); + bits += 8; + + // Write out as much as we can: + while (bits > 5) { + bits -= 5; + // eslint-disable-next-line no-bitwise + out += BASE32[mask & (buffer >> bits)]; + } + } + + // Partial character: + if (bits) { + // eslint-disable-next-line no-bitwise + out += BASE32[mask & (buffer << (5 - bits))]; + } + + return out; +} + +// https://github.com/pnpm/pnpm/blob/f394cfccda7bc519ceee8c33fc9b68a0f4235532/packages/dependency-path/src/index.ts#L167-L189 +export function depPathToFilename(depPath: string): string { + let filename: string = depPathToFilenameUnescaped(depPath).replace(/[\\/:*?"<>|]/g, '+'); + if (filename.includes('(')) { + filename = filename.replace(/(\)\()|\(/g, '_').replace(/\)$/, ''); + } + if (filename.length > 120 || (filename !== filename.toLowerCase() && !filename.startsWith('file+'))) { + return `${filename.substring(0, MAX_LENGTH_WITHOUT_HASH)}_${createBase32Hash(filename)}`; + } + return filename; +} + +/** + * Computes the root folder for a dependency from a reference to it in another package + * @param lockfileFolder - The folder that contains the lockfile + * @param key - The key of the dependency + * @param specifier - The specifier in the lockfile for the dependency + * @param context - The owning package + * @returns The identifier for the dependency + */ +export function resolveDependencyKey( + lockfileFolder: string, + key: string, + specifier: string, + context: IResolverContext +): string { + if (specifier.startsWith('/')) { + return getDescriptionFileRootFromKey(lockfileFolder, specifier); + } else if (specifier.startsWith('link:')) { + if (context.isProject) { + return path.resolve(context.descriptionFileRoot, specifier.slice(5)); + } else { + return path.resolve(lockfileFolder, specifier.slice(5)); + } + } else if (specifier.startsWith('file:')) { + return getDescriptionFileRootFromKey(lockfileFolder, specifier, key); + } else { + return getDescriptionFileRootFromKey(lockfileFolder, `/${key}@${specifier}`); + } +} + +/** + * Computes the physical path to a dependency based on its entry + * @param lockfileFolder - The folder that contains the lockfile during installation + * @param key - The key of the dependency + * @param name - The name of the dependency, if provided + * @returns The physical path to the dependency + */ +export function getDescriptionFileRootFromKey(lockfileFolder: string, key: string, name?: string): string { + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + if (!key.startsWith('file:')) { + name = key.slice(1, key.indexOf('@', 2)); + } + if (!name) { + throw new Error(`Missing package name for ${key}`); + } + + const originFolder: string = `${lockfileFolder}/node_modules/.pnpm/${depPathToFilename(key)}/node_modules`; + const descriptionFileRoot: string = `${originFolder}/${name}`; + return descriptionFileRoot; +} + +export function resolveDependencies( + lockfileFolder: string, + collection: Record, + context: IResolverContext +): void { + for (const [key, value] of Object.entries(collection)) { + const version: string = typeof value === 'string' ? value : value.version; + const resolved: string = resolveDependencyKey(lockfileFolder, key, version, context); + + context.deps.set(key, resolved); + } +} + +/** + * + * @param depPath - The path to the dependency + * @returns The folder name for the dependency + */ +export function depPathToFilenameUnescaped(depPath: string): string { + if (depPath.indexOf('file:') !== 0) { + if (depPath.startsWith('/')) { + depPath = depPath.slice(1); + } + return depPath; + } + return depPath.replace(':', '+'); +} + +/** + * + * @param missingOptionalDependencies - The set of optional dependencies that were not installed + * @param contexts - The map of context roots to their respective contexts + * @param commonPathPrefix - The common root path to trim + * @returns A function that serializes a context into a format that can be written to disk + */ +export function createContextSerializer( + missingOptionalDependencies: Set, + contexts: Map, + commonPathPrefix: string +): (entry: [string, IResolverContext]) => ISerializedResolveContext { + return ([descriptionFileRoot, context]: [string, IResolverContext]): ISerializedResolveContext => { + const deps: ISerializedResolveContext['deps'] = {}; + for (const [key, contextRoot] of context.deps) { + if (missingOptionalDependencies.has(contextRoot)) { + continue; + } + + const resolutionContext: IResolverContext | undefined = contexts.get(contextRoot); + if (!resolutionContext) { + throw new Error(`Missing context for ${contextRoot}!`); + } + deps[key] = resolutionContext.ordinal; + } + + if (!context.name) { + throw new Error(`Missing name for ${descriptionFileRoot}`); + } + + const serializedContext: ISerializedResolveContext = { + name: context.name, + root: descriptionFileRoot.slice(commonPathPrefix.length), + dirInfoFiles: context.files, + deps + }; + + return serializedContext; + }; +} diff --git a/rush-plugins/rush-resolver-cache-plugin/src/test/__snapshots__/computeResolverCacheFromLockfileAsync.test.ts.snap b/rush-plugins/rush-resolver-cache-plugin/src/test/__snapshots__/computeResolverCacheFromLockfileAsync.test.ts.snap new file mode 100644 index 00000000000..4910113a5a0 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/test/__snapshots__/computeResolverCacheFromLockfileAsync.test.ts.snap @@ -0,0 +1,31894 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`computeResolverCacheFromLockfileAsync matches snapshot behavior: build-tests-subspace.yaml 1`] = ` +Object { + "contexts": Array [ + Object { + "deps": Object { + "@jridgewell/gen-mapping": 64, + "@jridgewell/trace-mapping": 68, + }, + "name": "@ampproject/remapping", + "root": "/common/temp/build-tests/node_modules/.pnpm/@ampproject+remapping@2.3.0/node_modules/@ampproject/remapping", + }, + Object { + "deps": Object { + "@babel/highlight": 18, + "picocolors": 618, + }, + "name": "@babel/code-frame", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+code-frame@7.24.2/node_modules/@babel/code-frame", + }, + Object { + "deps": Object {}, + "name": "@babel/compat-data", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+compat-data@7.24.4/node_modules/@babel/compat-data", + }, + Object { + "deps": Object { + "@ampproject/remapping": 0, + "@babel/code-frame": 1, + "@babel/generator": 4, + "@babel/helper-compilation-targets": 5, + "@babel/helper-module-transforms": 10, + "@babel/helpers": 17, + "@babel/parser": 19, + "@babel/template": 34, + "@babel/traverse": 35, + "@babel/types": 36, + "convert-source-map": 243, + "debug": 253, + "gensync": 348, + "json5": 508, + "semver": 688, + }, + "name": "@babel/core", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+core@7.24.5/node_modules/@babel/core", + }, + Object { + "deps": Object { + "@babel/types": 36, + "@jridgewell/gen-mapping": 64, + "@jridgewell/trace-mapping": 68, + "jsesc": 501, + }, + "name": "@babel/generator", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+generator@7.24.5/node_modules/@babel/generator", + }, + Object { + "deps": Object { + "@babel/compat-data": 2, + "@babel/helper-validator-option": 16, + "browserslist": 197, + "lru-cache": 529, + "semver": 688, + }, + "name": "@babel/helper-compilation-targets", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-compilation-targets@7.23.6/node_modules/@babel/helper-compilation-targets", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-environment-visitor", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-environment-visitor@7.22.20/node_modules/@babel/helper-environment-visitor", + }, + Object { + "deps": Object { + "@babel/template": 34, + "@babel/types": 36, + }, + "name": "@babel/helper-function-name", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-function-name@7.23.0/node_modules/@babel/helper-function-name", + }, + Object { + "deps": Object { + "@babel/types": 36, + }, + "name": "@babel/helper-hoist-variables", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-hoist-variables@7.22.5/node_modules/@babel/helper-hoist-variables", + }, + Object { + "deps": Object { + "@babel/types": 36, + }, + "name": "@babel/helper-module-imports", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-module-imports@7.24.3/node_modules/@babel/helper-module-imports", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-environment-visitor": 6, + "@babel/helper-module-imports": 9, + "@babel/helper-simple-access": 12, + "@babel/helper-split-export-declaration": 13, + "@babel/helper-validator-identifier": 15, + }, + "name": "@babel/helper-module-transforms", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-module-transforms@7.24.5_@babel+core@7.24.5/node_modules/@babel/helper-module-transforms", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-plugin-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-plugin-utils@7.24.5/node_modules/@babel/helper-plugin-utils", + }, + Object { + "deps": Object { + "@babel/types": 36, + }, + "name": "@babel/helper-simple-access", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-simple-access@7.24.5/node_modules/@babel/helper-simple-access", + }, + Object { + "deps": Object { + "@babel/types": 36, + }, + "name": "@babel/helper-split-export-declaration", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-split-export-declaration@7.24.5/node_modules/@babel/helper-split-export-declaration", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-string-parser", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-string-parser@7.24.1/node_modules/@babel/helper-string-parser", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-validator-identifier", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-validator-identifier@7.24.5/node_modules/@babel/helper-validator-identifier", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-validator-option", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helper-validator-option@7.23.5/node_modules/@babel/helper-validator-option", + }, + Object { + "deps": Object { + "@babel/template": 34, + "@babel/traverse": 35, + "@babel/types": 36, + }, + "name": "@babel/helpers", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+helpers@7.24.5/node_modules/@babel/helpers", + }, + Object { + "deps": Object { + "@babel/helper-validator-identifier": 15, + "chalk": 214, + "js-tokens": 496, + "picocolors": 618, + }, + "name": "@babel/highlight", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+highlight@7.24.5/node_modules/@babel/highlight", + }, + Object { + "deps": Object {}, + "name": "@babel/parser", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+parser@7.24.5/node_modules/@babel/parser", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-async-generators", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-async-generators@7.8.4_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-async-generators", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-bigint", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-bigint@7.8.3_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-bigint", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-class-properties", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-class-properties@7.12.13_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-class-properties", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-import-meta", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-import-meta@7.10.4_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-import-meta", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-json-strings", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-json-strings@7.8.3_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-json-strings", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-jsx", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-jsx@7.24.1_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-jsx", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-logical-assignment-operators", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-logical-assignment-operators@7.10.4_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-logical-assignment-operators", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-nullish-coalescing-operator", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-nullish-coalescing-operator@7.8.3_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-nullish-coalescing-operator", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-numeric-separator", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-numeric-separator@7.10.4_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-numeric-separator", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-object-rest-spread", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-object-rest-spread@7.8.3_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-object-rest-spread", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-optional-catch-binding", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-optional-catch-binding@7.8.3_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-optional-catch-binding", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-optional-chaining", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-optional-chaining@7.8.3_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-optional-chaining", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-top-level-await", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-top-level-await@7.14.5_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-top-level-await", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/helper-plugin-utils": 11, + }, + "name": "@babel/plugin-syntax-typescript", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+plugin-syntax-typescript@7.24.1_@babel+core@7.24.5/node_modules/@babel/plugin-syntax-typescript", + }, + Object { + "deps": Object { + "@babel/code-frame": 1, + "@babel/parser": 19, + "@babel/types": 36, + }, + "name": "@babel/template", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+template@7.24.0/node_modules/@babel/template", + }, + Object { + "deps": Object { + "@babel/code-frame": 1, + "@babel/generator": 4, + "@babel/helper-environment-visitor": 6, + "@babel/helper-function-name": 7, + "@babel/helper-hoist-variables": 8, + "@babel/helper-split-export-declaration": 13, + "@babel/parser": 19, + "@babel/types": 36, + "debug": 253, + "globals": 367, + }, + "name": "@babel/traverse", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+traverse@7.24.5/node_modules/@babel/traverse", + }, + Object { + "deps": Object { + "@babel/helper-string-parser": 14, + "@babel/helper-validator-identifier": 15, + "to-fast-properties": 744, + }, + "name": "@babel/types", + "root": "/common/temp/build-tests/node_modules/.pnpm/@babel+types@7.24.5/node_modules/@babel/types", + }, + Object { + "deps": Object {}, + "name": "@bcoe/v8-coverage", + "root": "/common/temp/build-tests/node_modules/.pnpm/@bcoe+v8-coverage@0.2.3/node_modules/@bcoe/v8-coverage", + }, + Object { + "deps": Object { + "stackframe": 710, + }, + "name": "@devexpress/error-stack-parser", + "root": "/common/temp/build-tests/node_modules/.pnpm/@devexpress+error-stack-parser@2.0.6/node_modules/@devexpress/error-stack-parser", + }, + Object { + "deps": Object { + "comment-parser": 240, + "esquery": 315, + "jsdoc-type-pratt-parser": 500, + }, + "name": "@es-joy/jsdoccomment", + "root": "/common/temp/build-tests/node_modules/.pnpm/@es-joy+jsdoccomment@0.17.0/node_modules/@es-joy/jsdoccomment", + }, + Object { + "deps": Object { + "eslint": 312, + "eslint-visitor-keys": 311, + }, + "name": "@eslint-community/eslint-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/@eslint-community+eslint-utils@4.4.0_eslint@8.57.0/node_modules/@eslint-community/eslint-utils", + }, + Object { + "deps": Object {}, + "name": "@eslint-community/regexpp", + "root": "/common/temp/build-tests/node_modules/.pnpm/@eslint-community+regexpp@4.10.0/node_modules/@eslint-community/regexpp", + }, + Object { + "deps": Object { + "ajv": 157, + "debug": 253, + "espree": 313, + "globals": 368, + "ignore": 400, + "import-fresh": 402, + "js-yaml": 499, + "minimatch": 551, + "strip-json-comments": 728, + }, + "name": "@eslint/eslintrc", + "root": "/common/temp/build-tests/node_modules/.pnpm/@eslint+eslintrc@2.1.4/node_modules/@eslint/eslintrc", + }, + Object { + "deps": Object {}, + "name": "@eslint/js", + "root": "/common/temp/build-tests/node_modules/.pnpm/@eslint+js@8.57.0/node_modules/@eslint/js", + }, + Object { + "deps": Object { + "@humanwhocodes/object-schema": 46, + "debug": 253, + "minimatch": 551, + }, + "name": "@humanwhocodes/config-array", + "root": "/common/temp/build-tests/node_modules/.pnpm/@humanwhocodes+config-array@0.11.14/node_modules/@humanwhocodes/config-array", + }, + Object { + "deps": Object {}, + "name": "@humanwhocodes/module-importer", + "root": "/common/temp/build-tests/node_modules/.pnpm/@humanwhocodes+module-importer@1.0.1/node_modules/@humanwhocodes/module-importer", + }, + Object { + "deps": Object {}, + "name": "@humanwhocodes/object-schema", + "root": "/common/temp/build-tests/node_modules/.pnpm/@humanwhocodes+object-schema@2.0.3/node_modules/@humanwhocodes/object-schema", + }, + Object { + "deps": Object { + "camelcase": 211, + "find-up": 334, + "get-package-type": 351, + "js-yaml": 498, + "resolve-from": 668, + }, + "name": "@istanbuljs/load-nyc-config", + "root": "/common/temp/build-tests/node_modules/.pnpm/@istanbuljs+load-nyc-config@1.1.0/node_modules/@istanbuljs/load-nyc-config", + }, + Object { + "deps": Object {}, + "name": "@istanbuljs/schema", + "root": "/common/temp/build-tests/node_modules/.pnpm/@istanbuljs+schema@0.1.3/node_modules/@istanbuljs/schema", + }, + Object { + "deps": Object { + "@jest/types": 63, + "@types/node": 113, + "chalk": 215, + "jest-message-util": 478, + "jest-util": 490, + "slash": 698, + }, + "name": "@jest/console", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+console@29.7.0/node_modules/@jest/console", + }, + Object { + "deps": Object { + "@jest/console": 49, + "@jest/reporters": 56, + "@jest/test-result": 59, + "@jest/transform": 61, + "@jest/types": 63, + "@types/node": 113, + "ansi-escapes": 161, + "chalk": 215, + "ci-info": 220, + "exit": 321, + "graceful-fs": 373, + "jest-changed-files": 465, + "jest-config": 467, + "jest-haste-map": 474, + "jest-message-util": 478, + "jest-regex-util": 482, + "jest-resolve": 484, + "jest-resolve-dependencies": 483, + "jest-runner": 486, + "jest-runtime": 487, + "jest-snapshot": 488, + "jest-util": 490, + "jest-validate": 491, + "jest-watcher": 492, + "micromatch": 542, + "pretty-format": 632, + "slash": 698, + "strip-ansi": 722, + }, + "name": "@jest/core", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+core@29.5.0/node_modules/@jest/core", + }, + Object { + "deps": Object { + "@jest/fake-timers": 54, + "@jest/types": 63, + "@types/node": 113, + "jest-mock": 479, + }, + "name": "@jest/environment", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+environment@29.7.0/node_modules/@jest/environment", + }, + Object { + "deps": Object { + "jest-get-type": 473, + }, + "name": "@jest/expect-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils", + }, + Object { + "deps": Object { + "expect": 323, + "jest-snapshot": 489, + }, + "name": "@jest/expect", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+expect@29.7.0/node_modules/@jest/expect", + }, + Object { + "deps": Object { + "@jest/types": 63, + "@sinonjs/fake-timers": 90, + "@types/node": 113, + "jest-message-util": 478, + "jest-mock": 479, + "jest-util": 490, + }, + "name": "@jest/fake-timers", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+fake-timers@29.7.0/node_modules/@jest/fake-timers", + }, + Object { + "deps": Object { + "@jest/environment": 51, + "@jest/expect": 53, + "@jest/types": 63, + "jest-mock": 479, + }, + "name": "@jest/globals", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+globals@29.7.0/node_modules/@jest/globals", + }, + Object { + "deps": Object { + "@bcoe/v8-coverage": 37, + "@jest/console": 49, + "@jest/test-result": 59, + "@jest/transform": 61, + "@jest/types": 63, + "@jridgewell/trace-mapping": 68, + "@types/istanbul-lib-coverage": 101, + "@types/node": 113, + "chalk": 215, + "collect-v8-coverage": 232, + "exit": 321, + "glob": 361, + "graceful-fs": 373, + "istanbul-lib-coverage": 459, + "istanbul-lib-instrument": 460, + "istanbul-lib-report": 461, + "istanbul-lib-source-maps": 462, + "istanbul-reports": 463, + "jest-message-util": 478, + "jest-util": 490, + "jest-worker": 493, + "slash": 698, + "string-length": 713, + "strip-ansi": 722, + "v8-to-istanbul": 780, + }, + "name": "@jest/reporters", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+reporters@29.5.0/node_modules/@jest/reporters", + }, + Object { + "deps": Object { + "@sinclair/typebox": 87, + }, + "name": "@jest/schemas", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas", + }, + Object { + "deps": Object { + "@jridgewell/trace-mapping": 68, + "callsites": 209, + "graceful-fs": 373, + }, + "name": "@jest/source-map", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+source-map@29.6.3/node_modules/@jest/source-map", + }, + Object { + "deps": Object { + "@jest/console": 49, + "@jest/types": 63, + "@types/istanbul-lib-coverage": 102, + "collect-v8-coverage": 232, + "jest-haste-map": 474, + "jest-resolve": 485, + }, + "name": "@jest/test-result", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+test-result@29.7.0_@types+node@18.17.15/node_modules/@jest/test-result", + }, + Object { + "deps": Object { + "@jest/test-result": 59, + "graceful-fs": 373, + "jest-haste-map": 474, + "slash": 698, + }, + "name": "@jest/test-sequencer", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+test-sequencer@29.7.0_@types+node@18.17.15/node_modules/@jest/test-sequencer", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@jest/types": 63, + "@jridgewell/trace-mapping": 68, + "babel-plugin-istanbul": 185, + "chalk": 215, + "convert-source-map": 243, + "fast-json-stable-stringify": 327, + "graceful-fs": 373, + "jest-haste-map": 474, + "jest-regex-util": 482, + "jest-util": 490, + "micromatch": 542, + "pirates": 623, + "slash": 698, + "write-file-atomic": 800, + }, + "name": "@jest/transform", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+transform@29.5.0/node_modules/@jest/transform", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@jest/types": 63, + "@jridgewell/trace-mapping": 68, + "babel-plugin-istanbul": 185, + "chalk": 215, + "convert-source-map": 243, + "fast-json-stable-stringify": 327, + "graceful-fs": 373, + "jest-haste-map": 474, + "jest-regex-util": 482, + "jest-util": 490, + "micromatch": 542, + "pirates": 623, + "slash": 698, + "write-file-atomic": 800, + }, + "name": "@jest/transform", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+transform@29.7.0/node_modules/@jest/transform", + }, + Object { + "deps": Object { + "@jest/schemas": 57, + "@types/istanbul-lib-coverage": 102, + "@types/istanbul-reports": 104, + "@types/node": 113, + "@types/yargs": 122, + "chalk": 215, + }, + "name": "@jest/types", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jest+types@29.6.3/node_modules/@jest/types", + }, + Object { + "deps": Object { + "@jridgewell/set-array": 66, + "@jridgewell/sourcemap-codec": 67, + "@jridgewell/trace-mapping": 68, + }, + "name": "@jridgewell/gen-mapping", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jridgewell+gen-mapping@0.3.5/node_modules/@jridgewell/gen-mapping", + }, + Object { + "deps": Object {}, + "name": "@jridgewell/resolve-uri", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jridgewell+resolve-uri@3.1.2/node_modules/@jridgewell/resolve-uri", + }, + Object { + "deps": Object {}, + "name": "@jridgewell/set-array", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jridgewell+set-array@1.2.1/node_modules/@jridgewell/set-array", + }, + Object { + "deps": Object {}, + "name": "@jridgewell/sourcemap-codec", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jridgewell+sourcemap-codec@1.4.15/node_modules/@jridgewell/sourcemap-codec", + }, + Object { + "deps": Object { + "@jridgewell/resolve-uri": 65, + "@jridgewell/sourcemap-codec": 67, + }, + "name": "@jridgewell/trace-mapping", + "root": "/common/temp/build-tests/node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping", + }, + Object { + "deps": Object { + "@microsoft/tsdoc": 70, + "ajv": 158, + "jju": 494, + "resolve": 670, + }, + "name": "@microsoft/tsdoc-config", + "root": "/common/temp/build-tests/node_modules/.pnpm/@microsoft+tsdoc-config@0.17.0/node_modules/@microsoft/tsdoc-config", + }, + Object { + "deps": Object {}, + "name": "@microsoft/tsdoc", + "root": "/common/temp/build-tests/node_modules/.pnpm/@microsoft+tsdoc@0.15.0/node_modules/@microsoft/tsdoc", + }, + Object { + "deps": Object { + "@nodelib/fs.stat": 72, + "run-parallel": 678, + }, + "name": "@nodelib/fs.scandir", + "root": "/common/temp/build-tests/node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir", + }, + Object { + "deps": Object {}, + "name": "@nodelib/fs.stat", + "root": "/common/temp/build-tests/node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat", + }, + Object { + "deps": Object { + "@nodelib/fs.scandir": 71, + "fastq": 329, + }, + "name": "@nodelib/fs.walk", + "root": "/common/temp/build-tests/node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk", + }, + Object { + "deps": Object { + "rfc4648": 675, + }, + "name": "@pnpm/crypto.base32-hash", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+crypto.base32-hash@1.0.1/node_modules/@pnpm/crypto.base32-hash", + }, + Object { + "deps": Object { + "rfc4648": 675, + }, + "name": "@pnpm/crypto.base32-hash", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+crypto.base32-hash@2.0.0/node_modules/@pnpm/crypto.base32-hash", + }, + Object { + "deps": Object { + "@pnpm/crypto.base32-hash": 75, + "@pnpm/types": 85, + "encode-registry": 283, + "semver": 689, + }, + "name": "@pnpm/dependency-path", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+dependency-path@2.1.8/node_modules/@pnpm/dependency-path", + }, + Object { + "deps": Object {}, + "name": "@pnpm/error", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+error@1.4.0/node_modules/@pnpm/error", + }, + Object { + "deps": Object { + "@pnpm/error": 77, + "@pnpm/package-bins": 79, + "@pnpm/read-modules-dir": 80, + "@pnpm/read-package-json": 81, + "@pnpm/read-project-manifest": 82, + "@pnpm/types": 83, + "@zkochan/cmd-shim": 151, + "is-subdir": 446, + "is-windows": 454, + "mz": 567, + "normalize-path": 576, + "p-settle": 606, + "ramda": 642, + }, + "name": "@pnpm/link-bins", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+link-bins@5.3.25/node_modules/@pnpm/link-bins", + }, + Object { + "deps": Object { + "@pnpm/types": 83, + "fast-glob": 326, + "is-subdir": 446, + }, + "name": "@pnpm/package-bins", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+package-bins@4.1.0/node_modules/@pnpm/package-bins", + }, + Object { + "deps": Object { + "mz": 567, + }, + "name": "@pnpm/read-modules-dir", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+read-modules-dir@2.0.3/node_modules/@pnpm/read-modules-dir", + }, + Object { + "deps": Object { + "@pnpm/error": 77, + "@pnpm/types": 83, + "load-json-file": 520, + "normalize-package-data": 575, + }, + "name": "@pnpm/read-package-json", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+read-package-json@4.0.0/node_modules/@pnpm/read-package-json", + }, + Object { + "deps": Object { + "@pnpm/error": 77, + "@pnpm/types": 83, + "@pnpm/write-project-manifest": 86, + "detect-indent": 271, + "fast-deep-equal": 325, + "graceful-fs": 374, + "is-windows": 454, + "json5": 508, + "parse-json": 611, + "read-yaml-file": 651, + "sort-keys": 699, + "strip-bom": 724, + }, + "name": "@pnpm/read-project-manifest", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+read-project-manifest@1.1.7/node_modules/@pnpm/read-project-manifest", + }, + Object { + "deps": Object {}, + "name": "@pnpm/types", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+types@6.4.0/node_modules/@pnpm/types", + }, + Object { + "deps": Object {}, + "name": "@pnpm/types", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+types@8.9.0/node_modules/@pnpm/types", + }, + Object { + "deps": Object {}, + "name": "@pnpm/types", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+types@9.4.2/node_modules/@pnpm/types", + }, + Object { + "deps": Object { + "@pnpm/types": 83, + "json5": 508, + "mz": 567, + "write-file-atomic": 799, + "write-yaml-file": 801, + }, + "name": "@pnpm/write-project-manifest", + "root": "/common/temp/build-tests/node_modules/.pnpm/@pnpm+write-project-manifest@1.1.7/node_modules/@pnpm/write-project-manifest", + }, + Object { + "deps": Object {}, + "name": "@sinclair/typebox", + "root": "/common/temp/build-tests/node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox", + }, + Object { + "deps": Object {}, + "name": "@sindresorhus/is", + "root": "/common/temp/build-tests/node_modules/.pnpm/@sindresorhus+is@4.6.0/node_modules/@sindresorhus/is", + }, + Object { + "deps": Object { + "type-detect": 758, + }, + "name": "@sinonjs/commons", + "root": "/common/temp/build-tests/node_modules/.pnpm/@sinonjs+commons@3.0.1/node_modules/@sinonjs/commons", + }, + Object { + "deps": Object { + "@sinonjs/commons": 89, + }, + "name": "@sinonjs/fake-timers", + "root": "/common/temp/build-tests/node_modules/.pnpm/@sinonjs+fake-timers@10.3.0/node_modules/@sinonjs/fake-timers", + }, + Object { + "deps": Object { + "defer-to-connect": 263, + }, + "name": "@szmarczak/http-timer", + "root": "/common/temp/build-tests/node_modules/.pnpm/@szmarczak+http-timer@4.0.6/node_modules/@szmarczak/http-timer", + }, + Object { + "deps": Object {}, + "name": "@types/argparse", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+argparse@1.0.38/node_modules/@types/argparse", + }, + Object { + "deps": Object { + "@babel/parser": 19, + "@babel/types": 36, + "@types/babel__generator": 94, + "@types/babel__template": 95, + "@types/babel__traverse": 96, + }, + "name": "@types/babel__core", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core", + }, + Object { + "deps": Object { + "@babel/types": 36, + }, + "name": "@types/babel__generator", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+babel__generator@7.6.8/node_modules/@types/babel__generator", + }, + Object { + "deps": Object { + "@babel/parser": 19, + "@babel/types": 36, + }, + "name": "@types/babel__template", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template", + }, + Object { + "deps": Object { + "@babel/types": 36, + }, + "name": "@types/babel__traverse", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+babel__traverse@7.20.5/node_modules/@types/babel__traverse", + }, + Object { + "deps": Object { + "@types/http-cache-semantics": 100, + "@types/keyv": 108, + "@types/node": 113, + "@types/responselike": 117, + }, + "name": "@types/cacheable-request", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+cacheable-request@6.0.3/node_modules/@types/cacheable-request", + }, + Object { + "deps": Object { + "@types/node": 113, + }, + "name": "@types/graceful-fs", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+graceful-fs@4.1.9/node_modules/@types/graceful-fs", + }, + Object { + "deps": Object { + "@types/jest": 105, + }, + "name": "@types/heft-jest", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+heft-jest@1.0.1/node_modules/@types/heft-jest", + }, + Object { + "deps": Object {}, + "name": "@types/http-cache-semantics", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+http-cache-semantics@4.0.4/node_modules/@types/http-cache-semantics", + }, + Object { + "deps": Object {}, + "name": "@types/istanbul-lib-coverage", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.4/node_modules/@types/istanbul-lib-coverage", + }, + Object { + "deps": Object {}, + "name": "@types/istanbul-lib-coverage", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.6/node_modules/@types/istanbul-lib-coverage", + }, + Object { + "deps": Object { + "@types/istanbul-lib-coverage": 102, + }, + "name": "@types/istanbul-lib-report", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+istanbul-lib-report@3.0.3/node_modules/@types/istanbul-lib-report", + }, + Object { + "deps": Object { + "@types/istanbul-lib-report": 103, + }, + "name": "@types/istanbul-reports", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+istanbul-reports@3.0.4/node_modules/@types/istanbul-reports", + }, + Object { + "deps": Object { + "expect": 323, + "pretty-format": 632, + }, + "name": "@types/jest", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+jest@29.5.12/node_modules/@types/jest", + }, + Object { + "deps": Object {}, + "name": "@types/json-schema", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema", + }, + Object { + "deps": Object {}, + "name": "@types/json5", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+json5@0.0.29/node_modules/@types/json5", + }, + Object { + "deps": Object { + "@types/node": 113, + }, + "name": "@types/keyv", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+keyv@3.1.4/node_modules/@types/keyv", + }, + Object { + "deps": Object {}, + "name": "@types/lodash", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+lodash@4.17.1/node_modules/@types/lodash", + }, + Object { + "deps": Object {}, + "name": "@types/minimatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch", + }, + Object { + "deps": Object {}, + "name": "@types/minimist", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+minimist@1.2.5/node_modules/@types/minimist", + }, + Object { + "deps": Object { + "@types/node": 113, + "form-data": 341, + }, + "name": "@types/node-fetch", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+node-fetch@2.6.2/node_modules/@types/node-fetch", + }, + Object { + "deps": Object {}, + "name": "@types/node", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+node@18.17.15/node_modules/@types/node", + }, + Object { + "deps": Object {}, + "name": "@types/normalize-package-data", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+normalize-package-data@2.4.4/node_modules/@types/normalize-package-data", + }, + Object { + "deps": Object {}, + "name": "@types/parse-json", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+parse-json@4.0.2/node_modules/@types/parse-json", + }, + Object { + "deps": Object {}, + "name": "@types/prettier", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+prettier@2.7.3/node_modules/@types/prettier", + }, + Object { + "deps": Object { + "@types/node": 113, + }, + "name": "@types/responselike", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+responselike@1.0.3/node_modules/@types/responselike", + }, + Object { + "deps": Object {}, + "name": "@types/semver", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+semver@7.5.8/node_modules/@types/semver", + }, + Object { + "deps": Object {}, + "name": "@types/stack-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+stack-utils@2.0.3/node_modules/@types/stack-utils", + }, + Object { + "deps": Object {}, + "name": "@types/tapable", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+tapable@1.0.6/node_modules/@types/tapable", + }, + Object { + "deps": Object {}, + "name": "@types/yargs-parser", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+yargs-parser@21.0.3/node_modules/@types/yargs-parser", + }, + Object { + "deps": Object { + "@types/yargs-parser": 121, + }, + "name": "@types/yargs", + "root": "/common/temp/build-tests/node_modules/.pnpm/@types+yargs@17.0.32/node_modules/@types/yargs", + }, + Object { + "deps": Object { + "@eslint-community/regexpp": 41, + "@typescript-eslint/parser": 125, + "@typescript-eslint/scope-manager": 128, + "@typescript-eslint/type-utils": 130, + "@typescript-eslint/utils": 139, + "@typescript-eslint/visitor-keys": 142, + "eslint": 312, + "graphemer": 375, + "ignore": 400, + "natural-compare": 569, + "ts-api-utils": 749, + "typescript": 769, + }, + "name": "@typescript-eslint/eslint-plugin", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+eslint-plugin@8.1.0_@typescript-eslint+parser@8.1.0_eslint@8.57.0_typescript@4.9.5/node_modules/@typescript-eslint/eslint-plugin", + }, + Object { + "deps": Object { + "@eslint-community/regexpp": 41, + "@typescript-eslint/parser": 126, + "@typescript-eslint/scope-manager": 129, + "@typescript-eslint/type-utils": 131, + "@typescript-eslint/utils": 140, + "@typescript-eslint/visitor-keys": 143, + "eslint": 312, + "graphemer": 375, + "ignore": 400, + "natural-compare": 569, + "ts-api-utils": 750, + "typescript": 771, + }, + "name": "@typescript-eslint/eslint-plugin", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+eslint-plugin@8.1.0_@typescript-eslint+parser@8.1.0_eslint@8.57.0_typescript@5.4.5/node_modules/@typescript-eslint/eslint-plugin", + }, + Object { + "deps": Object { + "@typescript-eslint/scope-manager": 128, + "@typescript-eslint/types": 133, + "@typescript-eslint/typescript-estree": 136, + "@typescript-eslint/visitor-keys": 142, + "debug": 253, + "eslint": 312, + "typescript": 769, + }, + "name": "@typescript-eslint/parser", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+parser@8.1.0_eslint@8.57.0_typescript@4.9.5/node_modules/@typescript-eslint/parser", + }, + Object { + "deps": Object { + "@typescript-eslint/scope-manager": 129, + "@typescript-eslint/types": 134, + "@typescript-eslint/typescript-estree": 137, + "@typescript-eslint/visitor-keys": 143, + "debug": 253, + "eslint": 312, + "typescript": 771, + }, + "name": "@typescript-eslint/parser", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+parser@8.1.0_eslint@8.57.0_typescript@5.4.5/node_modules/@typescript-eslint/parser", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 132, + "@typescript-eslint/visitor-keys": 141, + }, + "name": "@typescript-eslint/scope-manager", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+scope-manager@6.21.0_typescript@5.4.5/node_modules/@typescript-eslint/scope-manager", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 133, + "@typescript-eslint/visitor-keys": 142, + }, + "name": "@typescript-eslint/scope-manager", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+scope-manager@8.1.0_typescript@4.9.5/node_modules/@typescript-eslint/scope-manager", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 134, + "@typescript-eslint/visitor-keys": 143, + }, + "name": "@typescript-eslint/scope-manager", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+scope-manager@8.1.0_typescript@5.4.5/node_modules/@typescript-eslint/scope-manager", + }, + Object { + "deps": Object { + "@typescript-eslint/typescript-estree": 136, + "@typescript-eslint/utils": 139, + "debug": 253, + "ts-api-utils": 749, + "typescript": 769, + }, + "name": "@typescript-eslint/type-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+type-utils@8.1.0_eslint@8.57.0_typescript@4.9.5/node_modules/@typescript-eslint/type-utils", + }, + Object { + "deps": Object { + "@typescript-eslint/typescript-estree": 137, + "@typescript-eslint/utils": 140, + "debug": 253, + "ts-api-utils": 750, + "typescript": 771, + }, + "name": "@typescript-eslint/type-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+type-utils@8.1.0_eslint@8.57.0_typescript@5.4.5/node_modules/@typescript-eslint/type-utils", + }, + Object { + "deps": Object { + "typescript": 771, + }, + "name": "@typescript-eslint/types", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+types@6.21.0_typescript@5.4.5/node_modules/@typescript-eslint/types", + }, + Object { + "deps": Object { + "typescript": 769, + }, + "name": "@typescript-eslint/types", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+types@8.1.0_typescript@4.9.5/node_modules/@typescript-eslint/types", + }, + Object { + "deps": Object { + "typescript": 771, + }, + "name": "@typescript-eslint/types", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+types@8.1.0_typescript@5.4.5/node_modules/@typescript-eslint/types", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 132, + "@typescript-eslint/visitor-keys": 141, + "debug": 253, + "globby": 370, + "is-glob": 429, + "minimatch": 553, + "semver": 690, + "ts-api-utils": 750, + "typescript": 771, + }, + "name": "@typescript-eslint/typescript-estree", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+typescript-estree@6.21.0_typescript@5.4.5/node_modules/@typescript-eslint/typescript-estree", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 133, + "@typescript-eslint/visitor-keys": 142, + "debug": 253, + "globby": 370, + "is-glob": 429, + "minimatch": 554, + "semver": 690, + "ts-api-utils": 749, + "typescript": 769, + }, + "name": "@typescript-eslint/typescript-estree", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+typescript-estree@8.1.0_typescript@4.9.5/node_modules/@typescript-eslint/typescript-estree", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 134, + "@typescript-eslint/visitor-keys": 143, + "debug": 253, + "globby": 370, + "is-glob": 429, + "minimatch": 554, + "semver": 690, + "ts-api-utils": 750, + "typescript": 771, + }, + "name": "@typescript-eslint/typescript-estree", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+typescript-estree@8.1.0_typescript@5.4.5/node_modules/@typescript-eslint/typescript-estree", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 40, + "@types/json-schema": 106, + "@types/semver": 118, + "@typescript-eslint/scope-manager": 127, + "@typescript-eslint/types": 132, + "@typescript-eslint/typescript-estree": 135, + "eslint": 312, + "semver": 690, + }, + "name": "@typescript-eslint/utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+utils@6.21.0_eslint@8.57.0_typescript@5.4.5/node_modules/@typescript-eslint/utils", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 40, + "@typescript-eslint/scope-manager": 128, + "@typescript-eslint/types": 133, + "@typescript-eslint/typescript-estree": 136, + "eslint": 312, + }, + "name": "@typescript-eslint/utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+utils@8.1.0_eslint@8.57.0_typescript@4.9.5/node_modules/@typescript-eslint/utils", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 40, + "@typescript-eslint/scope-manager": 129, + "@typescript-eslint/types": 134, + "@typescript-eslint/typescript-estree": 137, + "eslint": 312, + }, + "name": "@typescript-eslint/utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+utils@8.1.0_eslint@8.57.0_typescript@5.4.5/node_modules/@typescript-eslint/utils", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 132, + "eslint-visitor-keys": 311, + }, + "name": "@typescript-eslint/visitor-keys", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+visitor-keys@6.21.0_typescript@5.4.5/node_modules/@typescript-eslint/visitor-keys", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 133, + "eslint-visitor-keys": 311, + }, + "name": "@typescript-eslint/visitor-keys", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+visitor-keys@8.1.0_typescript@4.9.5/node_modules/@typescript-eslint/visitor-keys", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 134, + "eslint-visitor-keys": 311, + }, + "name": "@typescript-eslint/visitor-keys", + "root": "/common/temp/build-tests/node_modules/.pnpm/@typescript-eslint+visitor-keys@8.1.0_typescript@5.4.5/node_modules/@typescript-eslint/visitor-keys", + }, + Object { + "deps": Object {}, + "name": "@ungap/structured-clone", + "root": "/common/temp/build-tests/node_modules/.pnpm/@ungap+structured-clone@1.2.0/node_modules/@ungap/structured-clone", + }, + Object { + "deps": Object { + "@babel/parser": 19, + "@vue/shared": 149, + "entities": 285, + "estree-walker": 318, + "source-map-js": 700, + }, + "name": "@vue/compiler-core", + "root": "/common/temp/build-tests/node_modules/.pnpm/@vue+compiler-core@3.4.27/node_modules/@vue/compiler-core", + }, + Object { + "deps": Object { + "@vue/compiler-core": 145, + "@vue/shared": 149, + }, + "name": "@vue/compiler-dom", + "root": "/common/temp/build-tests/node_modules/.pnpm/@vue+compiler-dom@3.4.27/node_modules/@vue/compiler-dom", + }, + Object { + "deps": Object { + "@babel/parser": 19, + "@vue/compiler-core": 145, + "@vue/compiler-dom": 146, + "@vue/compiler-ssr": 148, + "@vue/shared": 149, + "estree-walker": 318, + "magic-string": 531, + "postcss": 629, + "source-map-js": 700, + }, + "name": "@vue/compiler-sfc", + "root": "/common/temp/build-tests/node_modules/.pnpm/@vue+compiler-sfc@3.4.27/node_modules/@vue/compiler-sfc", + }, + Object { + "deps": Object { + "@vue/compiler-dom": 146, + "@vue/shared": 149, + }, + "name": "@vue/compiler-ssr", + "root": "/common/temp/build-tests/node_modules/.pnpm/@vue+compiler-ssr@3.4.27/node_modules/@vue/compiler-ssr", + }, + Object { + "deps": Object {}, + "name": "@vue/shared", + "root": "/common/temp/build-tests/node_modules/.pnpm/@vue+shared@3.4.27/node_modules/@vue/shared", + }, + Object { + "deps": Object {}, + "name": "@yarnpkg/lockfile", + "root": "/common/temp/build-tests/node_modules/.pnpm/@yarnpkg+lockfile@1.0.2/node_modules/@yarnpkg/lockfile", + }, + Object { + "deps": Object { + "cmd-extension": 230, + "graceful-fs": 373, + "is-windows": 454, + }, + "name": "@zkochan/cmd-shim", + "root": "/common/temp/build-tests/node_modules/.pnpm/@zkochan+cmd-shim@5.4.1/node_modules/@zkochan/cmd-shim", + }, + Object { + "deps": Object { + "acorn": 153, + }, + "name": "acorn-jsx", + "root": "/common/temp/build-tests/node_modules/.pnpm/acorn-jsx@5.3.2_acorn@8.11.3/node_modules/acorn-jsx", + }, + Object { + "deps": Object {}, + "name": "acorn", + "root": "/common/temp/build-tests/node_modules/.pnpm/acorn@8.11.3/node_modules/acorn", + }, + Object { + "deps": Object { + "debug": 253, + }, + "name": "agent-base", + "root": "/common/temp/build-tests/node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base", + }, + Object { + "deps": Object { + "ajv": 159, + }, + "name": "ajv-draft-04", + "root": "/common/temp/build-tests/node_modules/.pnpm/ajv-draft-04@1.0.0_ajv@8.13.0/node_modules/ajv-draft-04", + }, + Object { + "deps": Object { + "ajv": 159, + }, + "name": "ajv-formats", + "root": "/common/temp/build-tests/node_modules/.pnpm/ajv-formats@3.0.1/node_modules/ajv-formats", + }, + Object { + "deps": Object { + "fast-deep-equal": 325, + "fast-json-stable-stringify": 327, + "json-schema-traverse": 504, + "uri-js": 777, + }, + "name": "ajv", + "root": "/common/temp/build-tests/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv", + }, + Object { + "deps": Object { + "fast-deep-equal": 325, + "json-schema-traverse": 505, + "require-from-string": 663, + "uri-js": 777, + }, + "name": "ajv", + "root": "/common/temp/build-tests/node_modules/.pnpm/ajv@8.12.0/node_modules/ajv", + }, + Object { + "deps": Object { + "fast-deep-equal": 325, + "json-schema-traverse": 505, + "require-from-string": 663, + "uri-js": 777, + }, + "name": "ajv", + "root": "/common/temp/build-tests/node_modules/.pnpm/ajv@8.13.0/node_modules/ajv", + }, + Object { + "deps": Object { + "string-width": 714, + }, + "name": "ansi-align", + "root": "/common/temp/build-tests/node_modules/.pnpm/ansi-align@3.0.1/node_modules/ansi-align", + }, + Object { + "deps": Object { + "type-fest": 761, + }, + "name": "ansi-escapes", + "root": "/common/temp/build-tests/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes", + }, + Object { + "deps": Object {}, + "name": "ansi-regex", + "root": "/common/temp/build-tests/node_modules/.pnpm/ansi-regex@4.1.1/node_modules/ansi-regex", + }, + Object { + "deps": Object {}, + "name": "ansi-regex", + "root": "/common/temp/build-tests/node_modules/.pnpm/ansi-regex@5.0.1/node_modules/ansi-regex", + }, + Object { + "deps": Object { + "color-convert": 233, + }, + "name": "ansi-styles", + "root": "/common/temp/build-tests/node_modules/.pnpm/ansi-styles@3.2.1/node_modules/ansi-styles", + }, + Object { + "deps": Object { + "color-convert": 234, + }, + "name": "ansi-styles", + "root": "/common/temp/build-tests/node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles", + }, + Object { + "deps": Object {}, + "name": "ansi-styles", + "root": "/common/temp/build-tests/node_modules/.pnpm/ansi-styles@5.2.0/node_modules/ansi-styles", + }, + Object { + "deps": Object {}, + "name": "any-promise", + "root": "/common/temp/build-tests/node_modules/.pnpm/any-promise@1.3.0/node_modules/any-promise", + }, + Object { + "deps": Object { + "normalize-path": 576, + "picomatch": 619, + }, + "name": "anymatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch", + }, + Object { + "deps": Object { + "sprintf-js": 707, + }, + "name": "argparse", + "root": "/common/temp/build-tests/node_modules/.pnpm/argparse@1.0.10/node_modules/argparse", + }, + Object { + "deps": Object {}, + "name": "argparse", + "root": "/common/temp/build-tests/node_modules/.pnpm/argparse@2.0.1/node_modules/argparse", + }, + Object { + "deps": Object { + "call-bind": 206, + "is-array-buffer": 413, + }, + "name": "array-buffer-byte-length", + "root": "/common/temp/build-tests/node_modules/.pnpm/array-buffer-byte-length@1.0.1/node_modules/array-buffer-byte-length", + }, + Object { + "deps": Object {}, + "name": "array-differ", + "root": "/common/temp/build-tests/node_modules/.pnpm/array-differ@3.0.0/node_modules/array-differ", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-object-atoms": 291, + "get-intrinsic": 350, + "is-string": 445, + }, + "name": "array-includes", + "root": "/common/temp/build-tests/node_modules/.pnpm/array-includes@3.1.8/node_modules/array-includes", + }, + Object { + "deps": Object {}, + "name": "array-union", + "root": "/common/temp/build-tests/node_modules/.pnpm/array-union@2.1.0/node_modules/array-union", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-shim-unscopables": 293, + }, + "name": "array.prototype.flat", + "root": "/common/temp/build-tests/node_modules/.pnpm/array.prototype.flat@1.3.2/node_modules/array.prototype.flat", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-shim-unscopables": 293, + }, + "name": "array.prototype.flatmap", + "root": "/common/temp/build-tests/node_modules/.pnpm/array.prototype.flatmap@1.3.2/node_modules/array.prototype.flatmap", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-errors": 289, + "es-shim-unscopables": 293, + }, + "name": "array.prototype.tosorted", + "root": "/common/temp/build-tests/node_modules/.pnpm/array.prototype.tosorted@1.1.3/node_modules/array.prototype.tosorted", + }, + Object { + "deps": Object { + "array-buffer-byte-length": 171, + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-errors": 289, + "get-intrinsic": 350, + "is-array-buffer": 413, + "is-shared-array-buffer": 443, + }, + "name": "arraybuffer.prototype.slice", + "root": "/common/temp/build-tests/node_modules/.pnpm/arraybuffer.prototype.slice@1.0.3/node_modules/arraybuffer.prototype.slice", + }, + Object { + "deps": Object {}, + "name": "arrify", + "root": "/common/temp/build-tests/node_modules/.pnpm/arrify@1.0.1/node_modules/arrify", + }, + Object { + "deps": Object {}, + "name": "arrify", + "root": "/common/temp/build-tests/node_modules/.pnpm/arrify@2.0.1/node_modules/arrify", + }, + Object { + "deps": Object {}, + "name": "asap", + "root": "/common/temp/build-tests/node_modules/.pnpm/asap@2.0.6/node_modules/asap", + }, + Object { + "deps": Object {}, + "name": "asynckit", + "root": "/common/temp/build-tests/node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit", + }, + Object { + "deps": Object { + "possible-typed-array-names": 628, + }, + "name": "available-typed-arrays", + "root": "/common/temp/build-tests/node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@jest/transform": 62, + "@types/babel__core": 93, + "babel-plugin-istanbul": 185, + "babel-preset-jest": 188, + "chalk": 215, + "graceful-fs": 373, + "slash": 698, + }, + "name": "babel-jest", + "root": "/common/temp/build-tests/node_modules/.pnpm/babel-jest@29.7.0_@babel+core@7.24.5/node_modules/babel-jest", + }, + Object { + "deps": Object { + "@babel/helper-plugin-utils": 11, + "@istanbuljs/load-nyc-config": 47, + "@istanbuljs/schema": 48, + "istanbul-lib-instrument": 460, + "test-exclude": 736, + }, + "name": "babel-plugin-istanbul", + "root": "/common/temp/build-tests/node_modules/.pnpm/babel-plugin-istanbul@6.1.1/node_modules/babel-plugin-istanbul", + }, + Object { + "deps": Object { + "@babel/template": 34, + "@babel/types": 36, + "@types/babel__core": 93, + "@types/babel__traverse": 96, + }, + "name": "babel-plugin-jest-hoist", + "root": "/common/temp/build-tests/node_modules/.pnpm/babel-plugin-jest-hoist@29.6.3/node_modules/babel-plugin-jest-hoist", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/plugin-syntax-async-generators": 20, + "@babel/plugin-syntax-bigint": 21, + "@babel/plugin-syntax-class-properties": 22, + "@babel/plugin-syntax-import-meta": 23, + "@babel/plugin-syntax-json-strings": 24, + "@babel/plugin-syntax-logical-assignment-operators": 26, + "@babel/plugin-syntax-nullish-coalescing-operator": 27, + "@babel/plugin-syntax-numeric-separator": 28, + "@babel/plugin-syntax-object-rest-spread": 29, + "@babel/plugin-syntax-optional-catch-binding": 30, + "@babel/plugin-syntax-optional-chaining": 31, + "@babel/plugin-syntax-top-level-await": 32, + }, + "name": "babel-preset-current-node-syntax", + "root": "/common/temp/build-tests/node_modules/.pnpm/babel-preset-current-node-syntax@1.0.1_@babel+core@7.24.5/node_modules/babel-preset-current-node-syntax", + }, + Object { + "deps": Object { + "@babel/core": 3, + "babel-plugin-jest-hoist": 186, + "babel-preset-current-node-syntax": 187, + }, + "name": "babel-preset-jest", + "root": "/common/temp/build-tests/node_modules/.pnpm/babel-preset-jest@29.6.3_@babel+core@7.24.5/node_modules/babel-preset-jest", + }, + Object { + "deps": Object {}, + "name": "balanced-match", + "root": "/common/temp/build-tests/node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match", + }, + Object { + "deps": Object {}, + "name": "base64-js", + "root": "/common/temp/build-tests/node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js", + }, + Object { + "deps": Object { + "is-windows": 454, + }, + "name": "better-path-resolve", + "root": "/common/temp/build-tests/node_modules/.pnpm/better-path-resolve@1.0.0/node_modules/better-path-resolve", + }, + Object { + "deps": Object { + "buffer": 200, + "inherits": 408, + "readable-stream": 653, + }, + "name": "bl", + "root": "/common/temp/build-tests/node_modules/.pnpm/bl@4.1.0/node_modules/bl", + }, + Object { + "deps": Object { + "ansi-align": 160, + "camelcase": 212, + "chalk": 215, + "cli-boxes": 222, + "string-width": 714, + "type-fest": 760, + "widest-line": 795, + "wrap-ansi": 797, + }, + "name": "boxen", + "root": "/common/temp/build-tests/node_modules/.pnpm/boxen@5.1.2/node_modules/boxen", + }, + Object { + "deps": Object { + "balanced-match": 189, + "concat-map": 241, + }, + "name": "brace-expansion", + "root": "/common/temp/build-tests/node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion", + }, + Object { + "deps": Object { + "balanced-match": 189, + }, + "name": "brace-expansion", + "root": "/common/temp/build-tests/node_modules/.pnpm/brace-expansion@2.0.1/node_modules/brace-expansion", + }, + Object { + "deps": Object { + "fill-range": 333, + }, + "name": "braces", + "root": "/common/temp/build-tests/node_modules/.pnpm/braces@3.0.2/node_modules/braces", + }, + Object { + "deps": Object { + "caniuse-lite": 213, + "electron-to-chromium": 280, + "node-releases": 573, + "update-browserslist-db": 775, + }, + "name": "browserslist", + "root": "/common/temp/build-tests/node_modules/.pnpm/browserslist@4.23.0/node_modules/browserslist", + }, + Object { + "deps": Object { + "node-int64": 572, + }, + "name": "bser", + "root": "/common/temp/build-tests/node_modules/.pnpm/bser@2.1.1/node_modules/bser", + }, + Object { + "deps": Object {}, + "name": "buffer-from", + "root": "/common/temp/build-tests/node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from", + }, + Object { + "deps": Object { + "base64-js": 190, + "ieee754": 397, + }, + "name": "buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/buffer@5.7.1/node_modules/buffer", + }, + Object { + "deps": Object {}, + "name": "builtin-modules", + "root": "/common/temp/build-tests/node_modules/.pnpm/builtin-modules@1.1.1/node_modules/builtin-modules", + }, + Object { + "deps": Object {}, + "name": "builtin-modules", + "root": "/common/temp/build-tests/node_modules/.pnpm/builtin-modules@3.1.0/node_modules/builtin-modules", + }, + Object { + "deps": Object {}, + "name": "builtins", + "root": "/common/temp/build-tests/node_modules/.pnpm/builtins@1.0.3/node_modules/builtins", + }, + Object { + "deps": Object {}, + "name": "cacheable-lookup", + "root": "/common/temp/build-tests/node_modules/.pnpm/cacheable-lookup@5.0.4/node_modules/cacheable-lookup", + }, + Object { + "deps": Object { + "clone-response": 228, + "get-stream": 352, + "http-cache-semantics": 392, + "keyv": 513, + "lowercase-keys": 528, + "normalize-url": 577, + "responselike": 672, + }, + "name": "cacheable-request", + "root": "/common/temp/build-tests/node_modules/.pnpm/cacheable-request@7.0.4/node_modules/cacheable-request", + }, + Object { + "deps": Object { + "es-define-property": 288, + "es-errors": 289, + "function-bind": 345, + "get-intrinsic": 350, + "set-function-length": 691, + }, + "name": "call-bind", + "root": "/common/temp/build-tests/node_modules/.pnpm/call-bind@1.0.7/node_modules/call-bind", + }, + Object { + "deps": Object { + "@devexpress/error-stack-parser": 38, + "@types/lodash": 109, + "callsite": 208, + "chalk": 214, + "highlight-es": 387, + "lodash": 525, + "pinkie-promise": 621, + }, + "name": "callsite-record", + "root": "/common/temp/build-tests/node_modules/.pnpm/callsite-record@4.1.5/node_modules/callsite-record", + }, + Object { + "deps": Object {}, + "name": "callsite", + "root": "/common/temp/build-tests/node_modules/.pnpm/callsite@1.0.0/node_modules/callsite", + }, + Object { + "deps": Object {}, + "name": "callsites", + "root": "/common/temp/build-tests/node_modules/.pnpm/callsites@3.1.0/node_modules/callsites", + }, + Object { + "deps": Object { + "camelcase": 211, + "map-obj": 537, + "quick-lru": 640, + }, + "name": "camelcase-keys", + "root": "/common/temp/build-tests/node_modules/.pnpm/camelcase-keys@6.2.2/node_modules/camelcase-keys", + }, + Object { + "deps": Object {}, + "name": "camelcase", + "root": "/common/temp/build-tests/node_modules/.pnpm/camelcase@5.3.1/node_modules/camelcase", + }, + Object { + "deps": Object {}, + "name": "camelcase", + "root": "/common/temp/build-tests/node_modules/.pnpm/camelcase@6.3.0/node_modules/camelcase", + }, + Object { + "deps": Object {}, + "name": "caniuse-lite", + "root": "/common/temp/build-tests/node_modules/.pnpm/caniuse-lite@1.0.30001618/node_modules/caniuse-lite", + }, + Object { + "deps": Object { + "ansi-styles": 164, + "escape-string-regexp": 297, + "supports-color": 729, + }, + "name": "chalk", + "root": "/common/temp/build-tests/node_modules/.pnpm/chalk@2.4.2/node_modules/chalk", + }, + Object { + "deps": Object { + "ansi-styles": 165, + "supports-color": 730, + }, + "name": "chalk", + "root": "/common/temp/build-tests/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk", + }, + Object { + "deps": Object {}, + "name": "char-regex", + "root": "/common/temp/build-tests/node_modules/.pnpm/char-regex@1.0.2/node_modules/char-regex", + }, + Object { + "deps": Object {}, + "name": "chardet", + "root": "/common/temp/build-tests/node_modules/.pnpm/chardet@0.7.0/node_modules/chardet", + }, + Object { + "deps": Object {}, + "name": "chownr", + "root": "/common/temp/build-tests/node_modules/.pnpm/chownr@2.0.0/node_modules/chownr", + }, + Object { + "deps": Object {}, + "name": "ci-info", + "root": "/common/temp/build-tests/node_modules/.pnpm/ci-info@2.0.0/node_modules/ci-info", + }, + Object { + "deps": Object {}, + "name": "ci-info", + "root": "/common/temp/build-tests/node_modules/.pnpm/ci-info@3.9.0/node_modules/ci-info", + }, + Object { + "deps": Object {}, + "name": "cjs-module-lexer", + "root": "/common/temp/build-tests/node_modules/.pnpm/cjs-module-lexer@1.3.1/node_modules/cjs-module-lexer", + }, + Object { + "deps": Object {}, + "name": "cli-boxes", + "root": "/common/temp/build-tests/node_modules/.pnpm/cli-boxes@2.2.1/node_modules/cli-boxes", + }, + Object { + "deps": Object { + "restore-cursor": 673, + }, + "name": "cli-cursor", + "root": "/common/temp/build-tests/node_modules/.pnpm/cli-cursor@3.1.0/node_modules/cli-cursor", + }, + Object { + "deps": Object {}, + "name": "cli-spinners", + "root": "/common/temp/build-tests/node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners", + }, + Object { + "deps": Object { + "colors": 237, + }, + "name": "cli-table", + "root": "/common/temp/build-tests/node_modules/.pnpm/cli-table@0.3.11/node_modules/cli-table", + }, + Object { + "deps": Object {}, + "name": "cli-width", + "root": "/common/temp/build-tests/node_modules/.pnpm/cli-width@3.0.0/node_modules/cli-width", + }, + Object { + "deps": Object { + "string-width": 714, + "strip-ansi": 722, + "wrap-ansi": 797, + }, + "name": "cliui", + "root": "/common/temp/build-tests/node_modules/.pnpm/cliui@7.0.4/node_modules/cliui", + }, + Object { + "deps": Object { + "mimic-response": 547, + }, + "name": "clone-response", + "root": "/common/temp/build-tests/node_modules/.pnpm/clone-response@1.0.3/node_modules/clone-response", + }, + Object { + "deps": Object {}, + "name": "clone", + "root": "/common/temp/build-tests/node_modules/.pnpm/clone@1.0.4/node_modules/clone", + }, + Object { + "deps": Object {}, + "name": "cmd-extension", + "root": "/common/temp/build-tests/node_modules/.pnpm/cmd-extension@1.0.2/node_modules/cmd-extension", + }, + Object { + "deps": Object {}, + "name": "co", + "root": "/common/temp/build-tests/node_modules/.pnpm/co@4.6.0/node_modules/co", + }, + Object { + "deps": Object { + "@types/node": 113, + }, + "name": "collect-v8-coverage", + "root": "/common/temp/build-tests/node_modules/.pnpm/collect-v8-coverage@1.0.2_@types+node@18.17.15/node_modules/collect-v8-coverage", + }, + Object { + "deps": Object { + "color-name": 235, + }, + "name": "color-convert", + "root": "/common/temp/build-tests/node_modules/.pnpm/color-convert@1.9.3/node_modules/color-convert", + }, + Object { + "deps": Object { + "color-name": 236, + }, + "name": "color-convert", + "root": "/common/temp/build-tests/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert", + }, + Object { + "deps": Object {}, + "name": "color-name", + "root": "/common/temp/build-tests/node_modules/.pnpm/color-name@1.1.3/node_modules/color-name", + }, + Object { + "deps": Object {}, + "name": "color-name", + "root": "/common/temp/build-tests/node_modules/.pnpm/color-name@1.1.4/node_modules/color-name", + }, + Object { + "deps": Object {}, + "name": "colors", + "root": "/common/temp/build-tests/node_modules/.pnpm/colors@1.0.3/node_modules/colors", + }, + Object { + "deps": Object { + "delayed-stream": 266, + }, + "name": "combined-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/combined-stream@1.0.8/node_modules/combined-stream", + }, + Object { + "deps": Object {}, + "name": "commander", + "root": "/common/temp/build-tests/node_modules/.pnpm/commander@2.20.3/node_modules/commander", + }, + Object { + "deps": Object {}, + "name": "comment-parser", + "root": "/common/temp/build-tests/node_modules/.pnpm/comment-parser@1.3.0/node_modules/comment-parser", + }, + Object { + "deps": Object {}, + "name": "concat-map", + "root": "/common/temp/build-tests/node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map", + }, + Object { + "deps": Object { + "dot-prop": 279, + "graceful-fs": 373, + "make-dir": 532, + "unique-string": 773, + "write-file-atomic": 799, + "xdg-basedir": 802, + }, + "name": "configstore", + "root": "/common/temp/build-tests/node_modules/.pnpm/configstore@5.0.1/node_modules/configstore", + }, + Object { + "deps": Object {}, + "name": "convert-source-map", + "root": "/common/temp/build-tests/node_modules/.pnpm/convert-source-map@2.0.0/node_modules/convert-source-map", + }, + Object { + "deps": Object {}, + "name": "core-util-is", + "root": "/common/temp/build-tests/node_modules/.pnpm/core-util-is@1.0.3/node_modules/core-util-is", + }, + Object { + "deps": Object { + "@types/parse-json": 115, + "import-fresh": 402, + "parse-json": 611, + "path-type": 617, + "yaml": 808, + }, + "name": "cosmiconfig", + "root": "/common/temp/build-tests/node_modules/.pnpm/cosmiconfig@7.1.0/node_modules/cosmiconfig", + }, + Object { + "deps": Object { + "path-key": 615, + "shebang-command": 694, + "which": 794, + }, + "name": "cross-spawn", + "root": "/common/temp/build-tests/node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn", + }, + Object { + "deps": Object {}, + "name": "crypto-random-string", + "root": "/common/temp/build-tests/node_modules/.pnpm/crypto-random-string@2.0.0/node_modules/crypto-random-string", + }, + Object { + "deps": Object { + "call-bind": 206, + "es-errors": 289, + "is-data-view": 421, + }, + "name": "data-view-buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/data-view-buffer@1.0.1/node_modules/data-view-buffer", + }, + Object { + "deps": Object { + "call-bind": 206, + "es-errors": 289, + "is-data-view": 421, + }, + "name": "data-view-byte-length", + "root": "/common/temp/build-tests/node_modules/.pnpm/data-view-byte-length@1.0.1/node_modules/data-view-byte-length", + }, + Object { + "deps": Object { + "call-bind": 206, + "es-errors": 289, + "is-data-view": 421, + }, + "name": "data-view-byte-offset", + "root": "/common/temp/build-tests/node_modules/.pnpm/data-view-byte-offset@1.0.0/node_modules/data-view-byte-offset", + }, + Object { + "deps": Object { + "ms": 562, + }, + "name": "debug", + "root": "/common/temp/build-tests/node_modules/.pnpm/debug@2.6.9/node_modules/debug", + }, + Object { + "deps": Object { + "ms": 564, + }, + "name": "debug", + "root": "/common/temp/build-tests/node_modules/.pnpm/debug@3.2.7/node_modules/debug", + }, + Object { + "deps": Object { + "ms": 563, + }, + "name": "debug", + "root": "/common/temp/build-tests/node_modules/.pnpm/debug@4.3.4/node_modules/debug", + }, + Object { + "deps": Object {}, + "name": "debuglog", + "root": "/common/temp/build-tests/node_modules/.pnpm/debuglog@1.0.1/node_modules/debuglog", + }, + Object { + "deps": Object { + "decamelize": 256, + "map-obj": 536, + }, + "name": "decamelize-keys", + "root": "/common/temp/build-tests/node_modules/.pnpm/decamelize-keys@1.1.1/node_modules/decamelize-keys", + }, + Object { + "deps": Object {}, + "name": "decamelize", + "root": "/common/temp/build-tests/node_modules/.pnpm/decamelize@1.2.0/node_modules/decamelize", + }, + Object { + "deps": Object { + "mimic-response": 548, + }, + "name": "decompress-response", + "root": "/common/temp/build-tests/node_modules/.pnpm/decompress-response@6.0.0/node_modules/decompress-response", + }, + Object { + "deps": Object {}, + "name": "dedent", + "root": "/common/temp/build-tests/node_modules/.pnpm/dedent@1.5.3/node_modules/dedent", + }, + Object { + "deps": Object {}, + "name": "deep-extend", + "root": "/common/temp/build-tests/node_modules/.pnpm/deep-extend@0.6.0/node_modules/deep-extend", + }, + Object { + "deps": Object {}, + "name": "deep-is", + "root": "/common/temp/build-tests/node_modules/.pnpm/deep-is@0.1.4/node_modules/deep-is", + }, + Object { + "deps": Object {}, + "name": "deepmerge", + "root": "/common/temp/build-tests/node_modules/.pnpm/deepmerge@4.3.1/node_modules/deepmerge", + }, + Object { + "deps": Object { + "clone": 229, + }, + "name": "defaults", + "root": "/common/temp/build-tests/node_modules/.pnpm/defaults@1.0.4/node_modules/defaults", + }, + Object { + "deps": Object {}, + "name": "defer-to-connect", + "root": "/common/temp/build-tests/node_modules/.pnpm/defer-to-connect@2.0.1/node_modules/defer-to-connect", + }, + Object { + "deps": Object { + "es-define-property": 288, + "es-errors": 289, + "gopd": 371, + }, + "name": "define-data-property", + "root": "/common/temp/build-tests/node_modules/.pnpm/define-data-property@1.1.4/node_modules/define-data-property", + }, + Object { + "deps": Object { + "define-data-property": 264, + "has-property-descriptors": 380, + "object-keys": 586, + }, + "name": "define-properties", + "root": "/common/temp/build-tests/node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties", + }, + Object { + "deps": Object {}, + "name": "delayed-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/delayed-stream@1.0.0/node_modules/delayed-stream", + }, + Object { + "deps": Object { + "@babel/parser": 19, + "@babel/traverse": 35, + "@vue/compiler-sfc": 147, + "callsite": 208, + "camelcase": 212, + "cosmiconfig": 245, + "debug": 253, + "deps-regex": 269, + "findup-sync": 337, + "ignore": 400, + "is-core-module": 420, + "js-yaml": 498, + "json5": 508, + "lodash": 525, + "minimatch": 552, + "multimatch": 565, + "please-upgrade-node": 626, + "readdirp": 655, + "require-package-name": 664, + "resolve": 670, + "resolve-from": 668, + "semver": 689, + "yargs": 811, + }, + "name": "depcheck", + "root": "/common/temp/build-tests/node_modules/.pnpm/depcheck@1.4.7/node_modules/depcheck", + }, + Object { + "deps": Object { + "@pnpm/crypto.base32-hash": 74, + "@pnpm/types": 84, + "encode-registry": 283, + "semver": 689, + }, + "name": "dependency-path", + "root": "/common/temp/build-tests/node_modules/.pnpm/dependency-path@9.2.8/node_modules/dependency-path", + }, + Object { + "deps": Object {}, + "name": "deps-regex", + "root": "/common/temp/build-tests/node_modules/.pnpm/deps-regex@0.2.0/node_modules/deps-regex", + }, + Object { + "deps": Object {}, + "name": "detect-file", + "root": "/common/temp/build-tests/node_modules/.pnpm/detect-file@1.0.0/node_modules/detect-file", + }, + Object { + "deps": Object {}, + "name": "detect-indent", + "root": "/common/temp/build-tests/node_modules/.pnpm/detect-indent@6.1.0/node_modules/detect-indent", + }, + Object { + "deps": Object {}, + "name": "detect-newline", + "root": "/common/temp/build-tests/node_modules/.pnpm/detect-newline@3.1.0/node_modules/detect-newline", + }, + Object { + "deps": Object { + "asap": 181, + "wrappy": 798, + }, + "name": "dezalgo", + "root": "/common/temp/build-tests/node_modules/.pnpm/dezalgo@1.0.4/node_modules/dezalgo", + }, + Object { + "deps": Object {}, + "name": "diff-sequences", + "root": "/common/temp/build-tests/node_modules/.pnpm/diff-sequences@29.6.3/node_modules/diff-sequences", + }, + Object { + "deps": Object {}, + "name": "diff", + "root": "/common/temp/build-tests/node_modules/.pnpm/diff@4.0.2/node_modules/diff", + }, + Object { + "deps": Object { + "path-type": 617, + }, + "name": "dir-glob", + "root": "/common/temp/build-tests/node_modules/.pnpm/dir-glob@3.0.1/node_modules/dir-glob", + }, + Object { + "deps": Object { + "esutils": 319, + }, + "name": "doctrine", + "root": "/common/temp/build-tests/node_modules/.pnpm/doctrine@2.1.0/node_modules/doctrine", + }, + Object { + "deps": Object { + "esutils": 319, + }, + "name": "doctrine", + "root": "/common/temp/build-tests/node_modules/.pnpm/doctrine@3.0.0/node_modules/doctrine", + }, + Object { + "deps": Object { + "is-obj": 437, + }, + "name": "dot-prop", + "root": "/common/temp/build-tests/node_modules/.pnpm/dot-prop@5.3.0/node_modules/dot-prop", + }, + Object { + "deps": Object {}, + "name": "electron-to-chromium", + "root": "/common/temp/build-tests/node_modules/.pnpm/electron-to-chromium@1.4.770/node_modules/electron-to-chromium", + }, + Object { + "deps": Object {}, + "name": "emittery", + "root": "/common/temp/build-tests/node_modules/.pnpm/emittery@0.13.1/node_modules/emittery", + }, + Object { + "deps": Object {}, + "name": "emoji-regex", + "root": "/common/temp/build-tests/node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex", + }, + Object { + "deps": Object { + "mem": 538, + }, + "name": "encode-registry", + "root": "/common/temp/build-tests/node_modules/.pnpm/encode-registry@3.0.1/node_modules/encode-registry", + }, + Object { + "deps": Object { + "once": 592, + }, + "name": "end-of-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/end-of-stream@1.4.4/node_modules/end-of-stream", + }, + Object { + "deps": Object {}, + "name": "entities", + "root": "/common/temp/build-tests/node_modules/.pnpm/entities@4.5.0/node_modules/entities", + }, + Object { + "deps": Object { + "is-arrayish": 414, + }, + "name": "error-ex", + "root": "/common/temp/build-tests/node_modules/.pnpm/error-ex@1.3.2/node_modules/error-ex", + }, + Object { + "deps": Object { + "array-buffer-byte-length": 171, + "arraybuffer.prototype.slice": 178, + "available-typed-arrays": 183, + "call-bind": 206, + "data-view-buffer": 248, + "data-view-byte-length": 249, + "data-view-byte-offset": 250, + "es-define-property": 288, + "es-errors": 289, + "es-object-atoms": 291, + "es-set-tostringtag": 292, + "es-to-primitive": 294, + "function.prototype.name": 346, + "get-intrinsic": 350, + "get-symbol-description": 354, + "globalthis": 369, + "gopd": 371, + "has-property-descriptors": 380, + "has-proto": 381, + "has-symbols": 382, + "hasown": 386, + "internal-slot": 412, + "is-array-buffer": 413, + "is-callable": 418, + "is-data-view": 421, + "is-negative-zero": 433, + "is-regex": 441, + "is-shared-array-buffer": 443, + "is-string": 445, + "is-typed-array": 448, + "is-weakref": 452, + "object-inspect": 585, + "object-keys": 586, + "object.assign": 587, + "regexp.prototype.flags": 658, + "safe-array-concat": 680, + "safe-regex-test": 683, + "string.prototype.trim": 716, + "string.prototype.trimend": 717, + "string.prototype.trimstart": 718, + "typed-array-buffer": 764, + "typed-array-byte-length": 765, + "typed-array-byte-offset": 766, + "typed-array-length": 767, + "unbox-primitive": 772, + "which-typed-array": 792, + }, + "name": "es-abstract", + "root": "/common/temp/build-tests/node_modules/.pnpm/es-abstract@1.23.3/node_modules/es-abstract", + }, + Object { + "deps": Object { + "get-intrinsic": 350, + }, + "name": "es-define-property", + "root": "/common/temp/build-tests/node_modules/.pnpm/es-define-property@1.0.0/node_modules/es-define-property", + }, + Object { + "deps": Object {}, + "name": "es-errors", + "root": "/common/temp/build-tests/node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-errors": 289, + "es-set-tostringtag": 292, + "function-bind": 345, + "get-intrinsic": 350, + "globalthis": 369, + "has-property-descriptors": 380, + "has-proto": 381, + "has-symbols": 382, + "internal-slot": 412, + "iterator.prototype": 464, + "safe-array-concat": 680, + }, + "name": "es-iterator-helpers", + "root": "/common/temp/build-tests/node_modules/.pnpm/es-iterator-helpers@1.0.19/node_modules/es-iterator-helpers", + }, + Object { + "deps": Object { + "es-errors": 289, + }, + "name": "es-object-atoms", + "root": "/common/temp/build-tests/node_modules/.pnpm/es-object-atoms@1.0.0/node_modules/es-object-atoms", + }, + Object { + "deps": Object { + "get-intrinsic": 350, + "has-tostringtag": 383, + "hasown": 386, + }, + "name": "es-set-tostringtag", + "root": "/common/temp/build-tests/node_modules/.pnpm/es-set-tostringtag@2.0.3/node_modules/es-set-tostringtag", + }, + Object { + "deps": Object { + "hasown": 386, + }, + "name": "es-shim-unscopables", + "root": "/common/temp/build-tests/node_modules/.pnpm/es-shim-unscopables@1.0.2/node_modules/es-shim-unscopables", + }, + Object { + "deps": Object { + "is-callable": 418, + "is-date-object": 422, + "is-symbol": 447, + }, + "name": "es-to-primitive", + "root": "/common/temp/build-tests/node_modules/.pnpm/es-to-primitive@1.2.1/node_modules/es-to-primitive", + }, + Object { + "deps": Object {}, + "name": "escalade", + "root": "/common/temp/build-tests/node_modules/.pnpm/escalade@3.1.2/node_modules/escalade", + }, + Object { + "deps": Object {}, + "name": "escape-goat", + "root": "/common/temp/build-tests/node_modules/.pnpm/escape-goat@2.1.1/node_modules/escape-goat", + }, + Object { + "deps": Object {}, + "name": "escape-string-regexp", + "root": "/common/temp/build-tests/node_modules/.pnpm/escape-string-regexp@1.0.5/node_modules/escape-string-regexp", + }, + Object { + "deps": Object {}, + "name": "escape-string-regexp", + "root": "/common/temp/build-tests/node_modules/.pnpm/escape-string-regexp@2.0.0/node_modules/escape-string-regexp", + }, + Object { + "deps": Object {}, + "name": "escape-string-regexp", + "root": "/common/temp/build-tests/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp", + }, + Object { + "deps": Object { + "debug": 252, + "is-core-module": 420, + "resolve": 670, + }, + "name": "eslint-import-resolver-node", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-import-resolver-node@0.3.9/node_modules/eslint-import-resolver-node", + }, + Object { + "deps": Object { + "debug": 252, + "eslint": 312, + }, + "name": "eslint-module-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-module-utils@2.8.1_eslint@8.57.0/node_modules/eslint-module-utils", + }, + Object { + "deps": Object { + "@typescript-eslint/utils": 138, + "eslint": 312, + "tslib": 753, + "tsutils": 756, + "typescript": 771, + }, + "name": "eslint-plugin-deprecation", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-plugin-deprecation@2.0.0_eslint@8.57.0_typescript@5.4.5/node_modules/eslint-plugin-deprecation", + }, + Object { + "deps": Object { + "eslint": 312, + }, + "name": "eslint-plugin-header", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-plugin-header@3.1.1_eslint@8.57.0/node_modules/eslint-plugin-header", + }, + Object { + "deps": Object { + "array-includes": 173, + "array.prototype.flat": 175, + "debug": 251, + "doctrine": 277, + "eslint": 312, + "eslint-import-resolver-node": 300, + "eslint-module-utils": 301, + "has": 385, + "is-core-module": 420, + "is-glob": 429, + "minimatch": 551, + "object.values": 591, + "resolve": 670, + "tsconfig-paths": 751, + }, + "name": "eslint-plugin-import", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-plugin-import@2.25.4_eslint@8.57.0/node_modules/eslint-plugin-import", + }, + Object { + "deps": Object { + "@es-joy/jsdoccomment": 39, + "comment-parser": 240, + "debug": 253, + "escape-string-regexp": 299, + "eslint": 312, + "esquery": 315, + "regextras": 659, + "semver": 690, + "spdx-expression-parse": 705, + }, + "name": "eslint-plugin-jsdoc", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-plugin-jsdoc@37.6.1_eslint@8.57.0/node_modules/eslint-plugin-jsdoc", + }, + Object { + "deps": Object { + "eslint": 312, + }, + "name": "eslint-plugin-promise", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-plugin-promise@6.1.1_eslint@8.57.0/node_modules/eslint-plugin-promise", + }, + Object { + "deps": Object { + "eslint": 312, + }, + "name": "eslint-plugin-react-hooks", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-plugin-react-hooks@4.3.0_eslint@8.57.0/node_modules/eslint-plugin-react-hooks", + }, + Object { + "deps": Object { + "array-includes": 173, + "array.prototype.flatmap": 176, + "array.prototype.tosorted": 177, + "doctrine": 277, + "es-iterator-helpers": 290, + "eslint": 312, + "estraverse": 317, + "jsx-ast-utils": 511, + "minimatch": 551, + "object.entries": 588, + "object.fromentries": 589, + "object.hasown": 590, + "object.values": 591, + "prop-types": 634, + "resolve": 671, + "semver": 688, + "string.prototype.matchall": 715, + }, + "name": "eslint-plugin-react", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-plugin-react@7.33.2_eslint@8.57.0/node_modules/eslint-plugin-react", + }, + Object { + "deps": Object { + "@microsoft/tsdoc": 70, + "@microsoft/tsdoc-config": 69, + }, + "name": "eslint-plugin-tsdoc", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-plugin-tsdoc@0.3.0/node_modules/eslint-plugin-tsdoc", + }, + Object { + "deps": Object { + "esrecurse": 316, + "estraverse": 317, + }, + "name": "eslint-scope", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-scope@7.2.2/node_modules/eslint-scope", + }, + Object { + "deps": Object {}, + "name": "eslint-visitor-keys", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint-visitor-keys@3.4.3/node_modules/eslint-visitor-keys", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 40, + "@eslint-community/regexpp": 41, + "@eslint/eslintrc": 42, + "@eslint/js": 43, + "@humanwhocodes/config-array": 44, + "@humanwhocodes/module-importer": 45, + "@nodelib/fs.walk": 73, + "@ungap/structured-clone": 144, + "ajv": 157, + "chalk": 215, + "cross-spawn": 246, + "debug": 253, + "doctrine": 278, + "escape-string-regexp": 299, + "eslint-scope": 310, + "eslint-visitor-keys": 311, + "espree": 313, + "esquery": 315, + "esutils": 319, + "fast-deep-equal": 325, + "file-entry-cache": 332, + "find-up": 335, + "glob-parent": 359, + "globals": 368, + "graphemer": 375, + "ignore": 400, + "imurmurhash": 405, + "is-glob": 429, + "is-path-inside": 438, + "js-yaml": 499, + "json-stable-stringify-without-jsonify": 506, + "levn": 517, + "lodash.merge": 524, + "minimatch": 551, + "natural-compare": 569, + "optionator": 594, + "strip-ansi": 722, + "text-table": 737, + }, + "name": "eslint", + "root": "/common/temp/build-tests/node_modules/.pnpm/eslint@8.57.0/node_modules/eslint", + }, + Object { + "deps": Object { + "acorn": 153, + "acorn-jsx": 152, + "eslint-visitor-keys": 311, + }, + "name": "espree", + "root": "/common/temp/build-tests/node_modules/.pnpm/espree@9.6.1/node_modules/espree", + }, + Object { + "deps": Object {}, + "name": "esprima", + "root": "/common/temp/build-tests/node_modules/.pnpm/esprima@4.0.1/node_modules/esprima", + }, + Object { + "deps": Object { + "estraverse": 317, + }, + "name": "esquery", + "root": "/common/temp/build-tests/node_modules/.pnpm/esquery@1.5.0/node_modules/esquery", + }, + Object { + "deps": Object { + "estraverse": 317, + }, + "name": "esrecurse", + "root": "/common/temp/build-tests/node_modules/.pnpm/esrecurse@4.3.0/node_modules/esrecurse", + }, + Object { + "deps": Object {}, + "name": "estraverse", + "root": "/common/temp/build-tests/node_modules/.pnpm/estraverse@5.3.0/node_modules/estraverse", + }, + Object { + "deps": Object {}, + "name": "estree-walker", + "root": "/common/temp/build-tests/node_modules/.pnpm/estree-walker@2.0.2/node_modules/estree-walker", + }, + Object { + "deps": Object {}, + "name": "esutils", + "root": "/common/temp/build-tests/node_modules/.pnpm/esutils@2.0.3/node_modules/esutils", + }, + Object { + "deps": Object { + "cross-spawn": 246, + "get-stream": 353, + "human-signals": 395, + "is-stream": 444, + "merge-stream": 540, + "npm-run-path": 583, + "onetime": 593, + "signal-exit": 697, + "strip-final-newline": 725, + }, + "name": "execa", + "root": "/common/temp/build-tests/node_modules/.pnpm/execa@5.1.1/node_modules/execa", + }, + Object { + "deps": Object {}, + "name": "exit", + "root": "/common/temp/build-tests/node_modules/.pnpm/exit@0.1.2/node_modules/exit", + }, + Object { + "deps": Object { + "homedir-polyfill": 388, + }, + "name": "expand-tilde", + "root": "/common/temp/build-tests/node_modules/.pnpm/expand-tilde@2.0.2/node_modules/expand-tilde", + }, + Object { + "deps": Object { + "@jest/expect-utils": 52, + "jest-get-type": 473, + "jest-matcher-utils": 477, + "jest-message-util": 478, + "jest-util": 490, + }, + "name": "expect", + "root": "/common/temp/build-tests/node_modules/.pnpm/expect@29.7.0/node_modules/expect", + }, + Object { + "deps": Object { + "chardet": 217, + "iconv-lite": 396, + "tmp": 742, + }, + "name": "external-editor", + "root": "/common/temp/build-tests/node_modules/.pnpm/external-editor@3.1.0/node_modules/external-editor", + }, + Object { + "deps": Object {}, + "name": "fast-deep-equal", + "root": "/common/temp/build-tests/node_modules/.pnpm/fast-deep-equal@3.1.3/node_modules/fast-deep-equal", + }, + Object { + "deps": Object { + "@nodelib/fs.stat": 72, + "@nodelib/fs.walk": 73, + "glob-parent": 358, + "merge2": 541, + "micromatch": 542, + }, + "name": "fast-glob", + "root": "/common/temp/build-tests/node_modules/.pnpm/fast-glob@3.3.2/node_modules/fast-glob", + }, + Object { + "deps": Object {}, + "name": "fast-json-stable-stringify", + "root": "/common/temp/build-tests/node_modules/.pnpm/fast-json-stable-stringify@2.1.0/node_modules/fast-json-stable-stringify", + }, + Object { + "deps": Object {}, + "name": "fast-levenshtein", + "root": "/common/temp/build-tests/node_modules/.pnpm/fast-levenshtein@2.0.6/node_modules/fast-levenshtein", + }, + Object { + "deps": Object { + "reusify": 674, + }, + "name": "fastq", + "root": "/common/temp/build-tests/node_modules/.pnpm/fastq@1.17.1/node_modules/fastq", + }, + Object { + "deps": Object { + "bser": 198, + }, + "name": "fb-watchman", + "root": "/common/temp/build-tests/node_modules/.pnpm/fb-watchman@2.0.2/node_modules/fb-watchman", + }, + Object { + "deps": Object { + "escape-string-regexp": 297, + }, + "name": "figures", + "root": "/common/temp/build-tests/node_modules/.pnpm/figures@3.0.0/node_modules/figures", + }, + Object { + "deps": Object { + "flat-cache": 338, + }, + "name": "file-entry-cache", + "root": "/common/temp/build-tests/node_modules/.pnpm/file-entry-cache@6.0.1/node_modules/file-entry-cache", + }, + Object { + "deps": Object { + "to-regex-range": 745, + }, + "name": "fill-range", + "root": "/common/temp/build-tests/node_modules/.pnpm/fill-range@7.0.1/node_modules/fill-range", + }, + Object { + "deps": Object { + "locate-path": 522, + "path-exists": 613, + }, + "name": "find-up", + "root": "/common/temp/build-tests/node_modules/.pnpm/find-up@4.1.0/node_modules/find-up", + }, + Object { + "deps": Object { + "locate-path": 523, + "path-exists": 613, + }, + "name": "find-up", + "root": "/common/temp/build-tests/node_modules/.pnpm/find-up@5.0.0/node_modules/find-up", + }, + Object { + "deps": Object { + "micromatch": 542, + "pkg-dir": 624, + }, + "name": "find-yarn-workspace-root2", + "root": "/common/temp/build-tests/node_modules/.pnpm/find-yarn-workspace-root2@1.2.16/node_modules/find-yarn-workspace-root2", + }, + Object { + "deps": Object { + "detect-file": 270, + "is-glob": 429, + "micromatch": 542, + "resolve-dir": 666, + }, + "name": "findup-sync", + "root": "/common/temp/build-tests/node_modules/.pnpm/findup-sync@5.0.0/node_modules/findup-sync", + }, + Object { + "deps": Object { + "flatted": 339, + "keyv": 513, + "rimraf": 676, + }, + "name": "flat-cache", + "root": "/common/temp/build-tests/node_modules/.pnpm/flat-cache@3.2.0/node_modules/flat-cache", + }, + Object { + "deps": Object {}, + "name": "flatted", + "root": "/common/temp/build-tests/node_modules/.pnpm/flatted@3.3.1/node_modules/flatted", + }, + Object { + "deps": Object { + "is-callable": 418, + }, + "name": "for-each", + "root": "/common/temp/build-tests/node_modules/.pnpm/for-each@0.3.3/node_modules/for-each", + }, + Object { + "deps": Object { + "asynckit": 182, + "combined-stream": 238, + "mime-types": 544, + }, + "name": "form-data", + "root": "/common/temp/build-tests/node_modules/.pnpm/form-data@3.0.1/node_modules/form-data", + }, + Object { + "deps": Object { + "graceful-fs": 373, + "jsonfile": 509, + "universalify": 774, + }, + "name": "fs-extra", + "root": "/common/temp/build-tests/node_modules/.pnpm/fs-extra@7.0.1/node_modules/fs-extra", + }, + Object { + "deps": Object { + "minipass": 557, + }, + "name": "fs-minipass", + "root": "/common/temp/build-tests/node_modules/.pnpm/fs-minipass@2.1.0/node_modules/fs-minipass", + }, + Object { + "deps": Object {}, + "name": "fs.realpath", + "root": "/common/temp/build-tests/node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath", + }, + Object { + "deps": Object {}, + "name": "function-bind", + "root": "/common/temp/build-tests/node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "functions-have-names": 347, + }, + "name": "function.prototype.name", + "root": "/common/temp/build-tests/node_modules/.pnpm/function.prototype.name@1.1.6/node_modules/function.prototype.name", + }, + Object { + "deps": Object {}, + "name": "functions-have-names", + "root": "/common/temp/build-tests/node_modules/.pnpm/functions-have-names@1.2.3/node_modules/functions-have-names", + }, + Object { + "deps": Object {}, + "name": "gensync", + "root": "/common/temp/build-tests/node_modules/.pnpm/gensync@1.0.0-beta.2/node_modules/gensync", + }, + Object { + "deps": Object {}, + "name": "get-caller-file", + "root": "/common/temp/build-tests/node_modules/.pnpm/get-caller-file@2.0.5/node_modules/get-caller-file", + }, + Object { + "deps": Object { + "es-errors": 289, + "function-bind": 345, + "has-proto": 381, + "has-symbols": 382, + "hasown": 386, + }, + "name": "get-intrinsic", + "root": "/common/temp/build-tests/node_modules/.pnpm/get-intrinsic@1.2.4/node_modules/get-intrinsic", + }, + Object { + "deps": Object {}, + "name": "get-package-type", + "root": "/common/temp/build-tests/node_modules/.pnpm/get-package-type@0.1.0/node_modules/get-package-type", + }, + Object { + "deps": Object { + "pump": 635, + }, + "name": "get-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/get-stream@5.2.0/node_modules/get-stream", + }, + Object { + "deps": Object {}, + "name": "get-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/get-stream@6.0.1/node_modules/get-stream", + }, + Object { + "deps": Object { + "call-bind": 206, + "es-errors": 289, + "get-intrinsic": 350, + }, + "name": "get-symbol-description", + "root": "/common/temp/build-tests/node_modules/.pnpm/get-symbol-description@1.0.2/node_modules/get-symbol-description", + }, + Object { + "deps": Object {}, + "name": "git-repo-info", + "root": "/common/temp/build-tests/node_modules/.pnpm/git-repo-info@2.1.1/node_modules/git-repo-info", + }, + Object { + "deps": Object {}, + "name": "giturl", + "root": "/common/temp/build-tests/node_modules/.pnpm/giturl@1.0.3/node_modules/giturl", + }, + Object { + "deps": Object {}, + "name": "glob-escape", + "root": "/common/temp/build-tests/node_modules/.pnpm/glob-escape@0.0.2/node_modules/glob-escape", + }, + Object { + "deps": Object { + "is-glob": 429, + }, + "name": "glob-parent", + "root": "/common/temp/build-tests/node_modules/.pnpm/glob-parent@5.1.2/node_modules/glob-parent", + }, + Object { + "deps": Object { + "is-glob": 429, + }, + "name": "glob-parent", + "root": "/common/temp/build-tests/node_modules/.pnpm/glob-parent@6.0.2/node_modules/glob-parent", + }, + Object { + "deps": Object {}, + "name": "glob-to-regexp", + "root": "/common/temp/build-tests/node_modules/.pnpm/glob-to-regexp@0.4.1/node_modules/glob-to-regexp", + }, + Object { + "deps": Object { + "fs.realpath": 344, + "inflight": 407, + "inherits": 408, + "minimatch": 551, + "once": 592, + "path-is-absolute": 614, + }, + "name": "glob", + "root": "/common/temp/build-tests/node_modules/.pnpm/glob@7.2.3/node_modules/glob", + }, + Object { + "deps": Object { + "ini": 410, + }, + "name": "global-dirs", + "root": "/common/temp/build-tests/node_modules/.pnpm/global-dirs@3.0.1/node_modules/global-dirs", + }, + Object { + "deps": Object { + "global-prefix": 365, + "is-windows": 454, + "resolve-dir": 666, + }, + "name": "global-modules", + "root": "/common/temp/build-tests/node_modules/.pnpm/global-modules@1.0.0/node_modules/global-modules", + }, + Object { + "deps": Object { + "global-prefix": 366, + }, + "name": "global-modules", + "root": "/common/temp/build-tests/node_modules/.pnpm/global-modules@2.0.0/node_modules/global-modules", + }, + Object { + "deps": Object { + "expand-tilde": 322, + "homedir-polyfill": 388, + "ini": 409, + "is-windows": 454, + "which": 793, + }, + "name": "global-prefix", + "root": "/common/temp/build-tests/node_modules/.pnpm/global-prefix@1.0.2/node_modules/global-prefix", + }, + Object { + "deps": Object { + "ini": 409, + "kind-of": 514, + "which": 793, + }, + "name": "global-prefix", + "root": "/common/temp/build-tests/node_modules/.pnpm/global-prefix@3.0.0/node_modules/global-prefix", + }, + Object { + "deps": Object {}, + "name": "globals", + "root": "/common/temp/build-tests/node_modules/.pnpm/globals@11.12.0/node_modules/globals", + }, + Object { + "deps": Object { + "type-fest": 760, + }, + "name": "globals", + "root": "/common/temp/build-tests/node_modules/.pnpm/globals@13.24.0/node_modules/globals", + }, + Object { + "deps": Object { + "define-properties": 265, + "gopd": 371, + }, + "name": "globalthis", + "root": "/common/temp/build-tests/node_modules/.pnpm/globalthis@1.0.4/node_modules/globalthis", + }, + Object { + "deps": Object { + "array-union": 174, + "dir-glob": 276, + "fast-glob": 326, + "ignore": 400, + "merge2": 541, + "slash": 698, + }, + "name": "globby", + "root": "/common/temp/build-tests/node_modules/.pnpm/globby@11.1.0/node_modules/globby", + }, + Object { + "deps": Object { + "get-intrinsic": 350, + }, + "name": "gopd", + "root": "/common/temp/build-tests/node_modules/.pnpm/gopd@1.0.1/node_modules/gopd", + }, + Object { + "deps": Object { + "@sindresorhus/is": 88, + "@szmarczak/http-timer": 91, + "@types/cacheable-request": 97, + "@types/responselike": 117, + "cacheable-lookup": 204, + "cacheable-request": 205, + "decompress-response": 257, + "http2-wrapper": 393, + "lowercase-keys": 528, + "p-cancelable": 599, + "responselike": 672, + }, + "name": "got", + "root": "/common/temp/build-tests/node_modules/.pnpm/got@11.8.6/node_modules/got", + }, + Object { + "deps": Object {}, + "name": "graceful-fs", + "root": "/common/temp/build-tests/node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs", + }, + Object { + "deps": Object {}, + "name": "graceful-fs", + "root": "/common/temp/build-tests/node_modules/.pnpm/graceful-fs@4.2.4/node_modules/graceful-fs", + }, + Object { + "deps": Object {}, + "name": "graphemer", + "root": "/common/temp/build-tests/node_modules/.pnpm/graphemer@1.4.0/node_modules/graphemer", + }, + Object { + "deps": Object {}, + "name": "hard-rejection", + "root": "/common/temp/build-tests/node_modules/.pnpm/hard-rejection@2.1.0/node_modules/hard-rejection", + }, + Object { + "deps": Object {}, + "name": "has-bigints", + "root": "/common/temp/build-tests/node_modules/.pnpm/has-bigints@1.0.2/node_modules/has-bigints", + }, + Object { + "deps": Object {}, + "name": "has-flag", + "root": "/common/temp/build-tests/node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag", + }, + Object { + "deps": Object {}, + "name": "has-flag", + "root": "/common/temp/build-tests/node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag", + }, + Object { + "deps": Object { + "es-define-property": 288, + }, + "name": "has-property-descriptors", + "root": "/common/temp/build-tests/node_modules/.pnpm/has-property-descriptors@1.0.2/node_modules/has-property-descriptors", + }, + Object { + "deps": Object {}, + "name": "has-proto", + "root": "/common/temp/build-tests/node_modules/.pnpm/has-proto@1.0.3/node_modules/has-proto", + }, + Object { + "deps": Object {}, + "name": "has-symbols", + "root": "/common/temp/build-tests/node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols", + }, + Object { + "deps": Object { + "has-symbols": 382, + }, + "name": "has-tostringtag", + "root": "/common/temp/build-tests/node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag", + }, + Object { + "deps": Object {}, + "name": "has-yarn", + "root": "/common/temp/build-tests/node_modules/.pnpm/has-yarn@2.1.0/node_modules/has-yarn", + }, + Object { + "deps": Object {}, + "name": "has", + "root": "/common/temp/build-tests/node_modules/.pnpm/has@1.0.4/node_modules/has", + }, + Object { + "deps": Object { + "function-bind": 345, + }, + "name": "hasown", + "root": "/common/temp/build-tests/node_modules/.pnpm/hasown@2.0.2/node_modules/hasown", + }, + Object { + "deps": Object { + "chalk": 214, + "is-es2016-keyword": 423, + "js-tokens": 495, + }, + "name": "highlight-es", + "root": "/common/temp/build-tests/node_modules/.pnpm/highlight-es@1.0.3/node_modules/highlight-es", + }, + Object { + "deps": Object { + "parse-passwd": 612, + }, + "name": "homedir-polyfill", + "root": "/common/temp/build-tests/node_modules/.pnpm/homedir-polyfill@1.0.3/node_modules/homedir-polyfill", + }, + Object { + "deps": Object {}, + "name": "hosted-git-info", + "root": "/common/temp/build-tests/node_modules/.pnpm/hosted-git-info@2.8.9/node_modules/hosted-git-info", + }, + Object { + "deps": Object { + "lru-cache": 530, + }, + "name": "hosted-git-info", + "root": "/common/temp/build-tests/node_modules/.pnpm/hosted-git-info@4.1.0/node_modules/hosted-git-info", + }, + Object { + "deps": Object {}, + "name": "html-escaper", + "root": "/common/temp/build-tests/node_modules/.pnpm/html-escaper@2.0.2/node_modules/html-escaper", + }, + Object { + "deps": Object {}, + "name": "http-cache-semantics", + "root": "/common/temp/build-tests/node_modules/.pnpm/http-cache-semantics@4.1.1/node_modules/http-cache-semantics", + }, + Object { + "deps": Object { + "quick-lru": 641, + "resolve-alpn": 665, + }, + "name": "http2-wrapper", + "root": "/common/temp/build-tests/node_modules/.pnpm/http2-wrapper@1.0.3/node_modules/http2-wrapper", + }, + Object { + "deps": Object { + "agent-base": 154, + "debug": 253, + }, + "name": "https-proxy-agent", + "root": "/common/temp/build-tests/node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent", + }, + Object { + "deps": Object {}, + "name": "human-signals", + "root": "/common/temp/build-tests/node_modules/.pnpm/human-signals@2.1.0/node_modules/human-signals", + }, + Object { + "deps": Object { + "safer-buffer": 684, + }, + "name": "iconv-lite", + "root": "/common/temp/build-tests/node_modules/.pnpm/iconv-lite@0.4.24/node_modules/iconv-lite", + }, + Object { + "deps": Object {}, + "name": "ieee754", + "root": "/common/temp/build-tests/node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754", + }, + Object { + "deps": Object { + "minimatch": 550, + }, + "name": "ignore-walk", + "root": "/common/temp/build-tests/node_modules/.pnpm/ignore-walk@3.0.4/node_modules/ignore-walk", + }, + Object { + "deps": Object {}, + "name": "ignore", + "root": "/common/temp/build-tests/node_modules/.pnpm/ignore@5.1.9/node_modules/ignore", + }, + Object { + "deps": Object {}, + "name": "ignore", + "root": "/common/temp/build-tests/node_modules/.pnpm/ignore@5.3.1/node_modules/ignore", + }, + Object { + "deps": Object {}, + "name": "immediate", + "root": "/common/temp/build-tests/node_modules/.pnpm/immediate@3.0.6/node_modules/immediate", + }, + Object { + "deps": Object { + "parent-module": 610, + "resolve-from": 667, + }, + "name": "import-fresh", + "root": "/common/temp/build-tests/node_modules/.pnpm/import-fresh@3.3.0/node_modules/import-fresh", + }, + Object { + "deps": Object {}, + "name": "import-lazy", + "root": "/common/temp/build-tests/node_modules/.pnpm/import-lazy@2.1.0/node_modules/import-lazy", + }, + Object { + "deps": Object {}, + "name": "import-lazy", + "root": "/common/temp/build-tests/node_modules/.pnpm/import-lazy@4.0.0/node_modules/import-lazy", + }, + Object { + "deps": Object {}, + "name": "imurmurhash", + "root": "/common/temp/build-tests/node_modules/.pnpm/imurmurhash@0.1.4/node_modules/imurmurhash", + }, + Object { + "deps": Object {}, + "name": "indent-string", + "root": "/common/temp/build-tests/node_modules/.pnpm/indent-string@4.0.0/node_modules/indent-string", + }, + Object { + "deps": Object { + "once": 592, + "wrappy": 798, + }, + "name": "inflight", + "root": "/common/temp/build-tests/node_modules/.pnpm/inflight@1.0.6/node_modules/inflight", + }, + Object { + "deps": Object {}, + "name": "inherits", + "root": "/common/temp/build-tests/node_modules/.pnpm/inherits@2.0.4/node_modules/inherits", + }, + Object { + "deps": Object {}, + "name": "ini", + "root": "/common/temp/build-tests/node_modules/.pnpm/ini@1.3.8/node_modules/ini", + }, + Object { + "deps": Object {}, + "name": "ini", + "root": "/common/temp/build-tests/node_modules/.pnpm/ini@2.0.0/node_modules/ini", + }, + Object { + "deps": Object { + "ansi-escapes": 161, + "chalk": 215, + "cli-cursor": 223, + "cli-width": 226, + "external-editor": 324, + "figures": 331, + "lodash": 525, + "mute-stream": 566, + "run-async": 677, + "rxjs": 679, + "string-width": 714, + "strip-ansi": 722, + "through": 741, + }, + "name": "inquirer", + "root": "/common/temp/build-tests/node_modules/.pnpm/inquirer@7.3.3/node_modules/inquirer", + }, + Object { + "deps": Object { + "es-errors": 289, + "hasown": 386, + "side-channel": 696, + }, + "name": "internal-slot", + "root": "/common/temp/build-tests/node_modules/.pnpm/internal-slot@1.0.7/node_modules/internal-slot", + }, + Object { + "deps": Object { + "call-bind": 206, + "get-intrinsic": 350, + }, + "name": "is-array-buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-array-buffer@3.0.4/node_modules/is-array-buffer", + }, + Object { + "deps": Object {}, + "name": "is-arrayish", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-arrayish@0.2.1/node_modules/is-arrayish", + }, + Object { + "deps": Object { + "has-tostringtag": 383, + }, + "name": "is-async-function", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-async-function@2.0.0/node_modules/is-async-function", + }, + Object { + "deps": Object { + "has-bigints": 377, + }, + "name": "is-bigint", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-bigint@1.0.4/node_modules/is-bigint", + }, + Object { + "deps": Object { + "call-bind": 206, + "has-tostringtag": 383, + }, + "name": "is-boolean-object", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-boolean-object@1.1.2/node_modules/is-boolean-object", + }, + Object { + "deps": Object {}, + "name": "is-callable", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable", + }, + Object { + "deps": Object { + "ci-info": 219, + }, + "name": "is-ci", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-ci@2.0.0/node_modules/is-ci", + }, + Object { + "deps": Object { + "hasown": 386, + }, + "name": "is-core-module", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-core-module@2.13.1/node_modules/is-core-module", + }, + Object { + "deps": Object { + "is-typed-array": 448, + }, + "name": "is-data-view", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-data-view@1.0.1/node_modules/is-data-view", + }, + Object { + "deps": Object { + "has-tostringtag": 383, + }, + "name": "is-date-object", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-date-object@1.0.5/node_modules/is-date-object", + }, + Object { + "deps": Object {}, + "name": "is-es2016-keyword", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-es2016-keyword@1.0.0/node_modules/is-es2016-keyword", + }, + Object { + "deps": Object {}, + "name": "is-extglob", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob", + }, + Object { + "deps": Object { + "call-bind": 206, + }, + "name": "is-finalizationregistry", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-finalizationregistry@1.0.2/node_modules/is-finalizationregistry", + }, + Object { + "deps": Object {}, + "name": "is-fullwidth-code-point", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point", + }, + Object { + "deps": Object {}, + "name": "is-generator-fn", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-generator-fn@2.1.0/node_modules/is-generator-fn", + }, + Object { + "deps": Object { + "has-tostringtag": 383, + }, + "name": "is-generator-function", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function", + }, + Object { + "deps": Object { + "is-extglob": 424, + }, + "name": "is-glob", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob", + }, + Object { + "deps": Object { + "global-dirs": 362, + "is-path-inside": 438, + }, + "name": "is-installed-globally", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-installed-globally@0.4.0/node_modules/is-installed-globally", + }, + Object { + "deps": Object {}, + "name": "is-interactive", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-interactive@1.0.0/node_modules/is-interactive", + }, + Object { + "deps": Object {}, + "name": "is-map", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-map@2.0.3/node_modules/is-map", + }, + Object { + "deps": Object {}, + "name": "is-negative-zero", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-negative-zero@2.0.3/node_modules/is-negative-zero", + }, + Object { + "deps": Object {}, + "name": "is-npm", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-npm@5.0.0/node_modules/is-npm", + }, + Object { + "deps": Object { + "has-tostringtag": 383, + }, + "name": "is-number-object", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-number-object@1.0.7/node_modules/is-number-object", + }, + Object { + "deps": Object {}, + "name": "is-number", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-number@7.0.0/node_modules/is-number", + }, + Object { + "deps": Object {}, + "name": "is-obj", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-obj@2.0.0/node_modules/is-obj", + }, + Object { + "deps": Object {}, + "name": "is-path-inside", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-path-inside@3.0.3/node_modules/is-path-inside", + }, + Object { + "deps": Object {}, + "name": "is-plain-obj", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-plain-obj@1.1.0/node_modules/is-plain-obj", + }, + Object { + "deps": Object {}, + "name": "is-plain-obj", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-plain-obj@2.1.0/node_modules/is-plain-obj", + }, + Object { + "deps": Object { + "call-bind": 206, + "has-tostringtag": 383, + }, + "name": "is-regex", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-regex@1.1.4/node_modules/is-regex", + }, + Object { + "deps": Object {}, + "name": "is-set", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-set@2.0.3/node_modules/is-set", + }, + Object { + "deps": Object { + "call-bind": 206, + }, + "name": "is-shared-array-buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-shared-array-buffer@1.0.3/node_modules/is-shared-array-buffer", + }, + Object { + "deps": Object {}, + "name": "is-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-stream@2.0.1/node_modules/is-stream", + }, + Object { + "deps": Object { + "has-tostringtag": 383, + }, + "name": "is-string", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-string@1.0.7/node_modules/is-string", + }, + Object { + "deps": Object { + "better-path-resolve": 191, + }, + "name": "is-subdir", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-subdir@1.2.0/node_modules/is-subdir", + }, + Object { + "deps": Object { + "has-symbols": 382, + }, + "name": "is-symbol", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-symbol@1.0.4/node_modules/is-symbol", + }, + Object { + "deps": Object { + "which-typed-array": 792, + }, + "name": "is-typed-array", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-typed-array@1.1.13/node_modules/is-typed-array", + }, + Object { + "deps": Object {}, + "name": "is-typedarray", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-typedarray@1.0.0/node_modules/is-typedarray", + }, + Object { + "deps": Object {}, + "name": "is-unicode-supported", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported", + }, + Object { + "deps": Object {}, + "name": "is-weakmap", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-weakmap@2.0.2/node_modules/is-weakmap", + }, + Object { + "deps": Object { + "call-bind": 206, + }, + "name": "is-weakref", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-weakref@1.0.2/node_modules/is-weakref", + }, + Object { + "deps": Object { + "call-bind": 206, + "get-intrinsic": 350, + }, + "name": "is-weakset", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-weakset@2.0.3/node_modules/is-weakset", + }, + Object { + "deps": Object {}, + "name": "is-windows", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-windows@1.0.2/node_modules/is-windows", + }, + Object { + "deps": Object {}, + "name": "is-yarn-global", + "root": "/common/temp/build-tests/node_modules/.pnpm/is-yarn-global@0.3.0/node_modules/is-yarn-global", + }, + Object { + "deps": Object {}, + "name": "isarray", + "root": "/common/temp/build-tests/node_modules/.pnpm/isarray@1.0.0/node_modules/isarray", + }, + Object { + "deps": Object {}, + "name": "isarray", + "root": "/common/temp/build-tests/node_modules/.pnpm/isarray@2.0.5/node_modules/isarray", + }, + Object { + "deps": Object {}, + "name": "isexe", + "root": "/common/temp/build-tests/node_modules/.pnpm/isexe@2.0.0/node_modules/isexe", + }, + Object { + "deps": Object {}, + "name": "istanbul-lib-coverage", + "root": "/common/temp/build-tests/node_modules/.pnpm/istanbul-lib-coverage@3.2.2/node_modules/istanbul-lib-coverage", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/parser": 19, + "@istanbuljs/schema": 48, + "istanbul-lib-coverage": 459, + "semver": 688, + }, + "name": "istanbul-lib-instrument", + "root": "/common/temp/build-tests/node_modules/.pnpm/istanbul-lib-instrument@5.2.1/node_modules/istanbul-lib-instrument", + }, + Object { + "deps": Object { + "istanbul-lib-coverage": 459, + "make-dir": 533, + "supports-color": 730, + }, + "name": "istanbul-lib-report", + "root": "/common/temp/build-tests/node_modules/.pnpm/istanbul-lib-report@3.0.1/node_modules/istanbul-lib-report", + }, + Object { + "deps": Object { + "debug": 253, + "istanbul-lib-coverage": 459, + "source-map": 702, + }, + "name": "istanbul-lib-source-maps", + "root": "/common/temp/build-tests/node_modules/.pnpm/istanbul-lib-source-maps@4.0.1/node_modules/istanbul-lib-source-maps", + }, + Object { + "deps": Object { + "html-escaper": 391, + "istanbul-lib-report": 461, + }, + "name": "istanbul-reports", + "root": "/common/temp/build-tests/node_modules/.pnpm/istanbul-reports@3.1.7/node_modules/istanbul-reports", + }, + Object { + "deps": Object { + "define-properties": 265, + "get-intrinsic": 350, + "has-symbols": 382, + "reflect.getprototypeof": 657, + "set-function-name": 692, + }, + "name": "iterator.prototype", + "root": "/common/temp/build-tests/node_modules/.pnpm/iterator.prototype@1.1.2/node_modules/iterator.prototype", + }, + Object { + "deps": Object { + "execa": 320, + "jest-util": 490, + "p-limit": 602, + }, + "name": "jest-changed-files", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-changed-files@29.7.0/node_modules/jest-changed-files", + }, + Object { + "deps": Object { + "@jest/environment": 51, + "@jest/expect": 53, + "@jest/test-result": 59, + "@jest/types": 63, + "@types/node": 113, + "chalk": 215, + "co": 231, + "dedent": 258, + "is-generator-fn": 427, + "jest-each": 470, + "jest-matcher-utils": 477, + "jest-message-util": 478, + "jest-runtime": 487, + "jest-snapshot": 489, + "jest-util": 490, + "p-limit": 602, + "pretty-format": 632, + "pure-rand": 638, + "slash": 698, + "stack-utils": 709, + }, + "name": "jest-circus", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-circus@29.7.0/node_modules/jest-circus", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@jest/test-sequencer": 60, + "@jest/types": 63, + "@types/node": 113, + "babel-jest": 184, + "chalk": 215, + "ci-info": 220, + "deepmerge": 261, + "glob": 361, + "graceful-fs": 373, + "jest-circus": 466, + "jest-environment-node": 471, + "jest-get-type": 473, + "jest-regex-util": 482, + "jest-resolve": 484, + "jest-runner": 486, + "jest-util": 490, + "jest-validate": 491, + "micromatch": 542, + "parse-json": 611, + "pretty-format": 632, + "slash": 698, + "strip-json-comments": 728, + }, + "name": "jest-config", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-config@29.5.0_@types+node@18.17.15/node_modules/jest-config", + }, + Object { + "deps": Object { + "chalk": 215, + "diff-sequences": 274, + "jest-get-type": 473, + "pretty-format": 632, + }, + "name": "jest-diff", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff", + }, + Object { + "deps": Object { + "detect-newline": 272, + }, + "name": "jest-docblock", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-docblock@29.7.0/node_modules/jest-docblock", + }, + Object { + "deps": Object { + "@jest/types": 63, + "chalk": 215, + "jest-get-type": 473, + "jest-util": 490, + "pretty-format": 632, + }, + "name": "jest-each", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-each@29.7.0/node_modules/jest-each", + }, + Object { + "deps": Object { + "@jest/environment": 51, + "@jest/fake-timers": 54, + "@jest/types": 63, + "@types/node": 113, + "jest-mock": 479, + "jest-util": 490, + }, + "name": "jest-environment-node", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-environment-node@29.5.0/node_modules/jest-environment-node", + }, + Object { + "deps": Object { + "@jest/environment": 51, + "@jest/fake-timers": 54, + "@jest/types": 63, + "@types/node": 113, + "jest-mock": 479, + "jest-util": 490, + }, + "name": "jest-environment-node", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-environment-node@29.7.0/node_modules/jest-environment-node", + }, + Object { + "deps": Object {}, + "name": "jest-get-type", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-get-type@29.6.3/node_modules/jest-get-type", + }, + Object { + "deps": Object { + "@jest/types": 63, + "@types/graceful-fs": 98, + "@types/node": 113, + "anymatch": 168, + "fb-watchman": 330, + "graceful-fs": 373, + "jest-regex-util": 482, + "jest-util": 490, + "jest-worker": 493, + "micromatch": 542, + "walker": 783, + }, + "name": "jest-haste-map", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-haste-map@29.7.0/node_modules/jest-haste-map", + }, + Object { + "deps": Object { + "mkdirp": 561, + "strip-ansi": 721, + "uuid": 779, + "xml": 803, + }, + "name": "jest-junit", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-junit@12.3.0/node_modules/jest-junit", + }, + Object { + "deps": Object { + "jest-get-type": 473, + "pretty-format": 632, + }, + "name": "jest-leak-detector", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-leak-detector@29.7.0/node_modules/jest-leak-detector", + }, + Object { + "deps": Object { + "chalk": 215, + "jest-diff": 468, + "jest-get-type": 473, + "pretty-format": 632, + }, + "name": "jest-matcher-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils", + }, + Object { + "deps": Object { + "@babel/code-frame": 1, + "@jest/types": 63, + "@types/stack-utils": 119, + "chalk": 215, + "graceful-fs": 373, + "micromatch": 542, + "pretty-format": 632, + "slash": 698, + "stack-utils": 709, + }, + "name": "jest-message-util", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-message-util@29.7.0/node_modules/jest-message-util", + }, + Object { + "deps": Object { + "@jest/types": 63, + "@types/node": 113, + "jest-util": 490, + }, + "name": "jest-mock", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-mock@29.7.0/node_modules/jest-mock", + }, + Object { + "deps": Object { + "jest-resolve": 484, + }, + "name": "jest-pnp-resolver", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-pnp-resolver@1.2.3_jest-resolve@29.5.0/node_modules/jest-pnp-resolver", + }, + Object { + "deps": Object { + "jest-resolve": 485, + }, + "name": "jest-pnp-resolver", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-pnp-resolver@1.2.3_jest-resolve@29.7.0/node_modules/jest-pnp-resolver", + }, + Object { + "deps": Object {}, + "name": "jest-regex-util", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-regex-util@29.6.3/node_modules/jest-regex-util", + }, + Object { + "deps": Object { + "jest-regex-util": 482, + "jest-snapshot": 489, + }, + "name": "jest-resolve-dependencies", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-resolve-dependencies@29.7.0/node_modules/jest-resolve-dependencies", + }, + Object { + "deps": Object { + "chalk": 215, + "graceful-fs": 373, + "jest-haste-map": 474, + "jest-pnp-resolver": 480, + "jest-util": 490, + "jest-validate": 491, + "resolve": 670, + "resolve.exports": 669, + "slash": 698, + }, + "name": "jest-resolve", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-resolve@29.5.0/node_modules/jest-resolve", + }, + Object { + "deps": Object { + "chalk": 215, + "graceful-fs": 373, + "jest-haste-map": 474, + "jest-pnp-resolver": 481, + "jest-util": 490, + "jest-validate": 491, + "resolve": 670, + "resolve.exports": 669, + "slash": 698, + }, + "name": "jest-resolve", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-resolve@29.7.0/node_modules/jest-resolve", + }, + Object { + "deps": Object { + "@jest/console": 49, + "@jest/environment": 51, + "@jest/test-result": 59, + "@jest/transform": 62, + "@jest/types": 63, + "@types/node": 113, + "chalk": 215, + "emittery": 281, + "graceful-fs": 373, + "jest-docblock": 469, + "jest-environment-node": 472, + "jest-haste-map": 474, + "jest-leak-detector": 476, + "jest-message-util": 478, + "jest-resolve": 485, + "jest-runtime": 487, + "jest-util": 490, + "jest-watcher": 492, + "jest-worker": 493, + "p-limit": 602, + "source-map-support": 701, + }, + "name": "jest-runner", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-runner@29.7.0/node_modules/jest-runner", + }, + Object { + "deps": Object { + "@jest/environment": 51, + "@jest/fake-timers": 54, + "@jest/globals": 55, + "@jest/source-map": 58, + "@jest/test-result": 59, + "@jest/transform": 62, + "@jest/types": 63, + "@types/node": 113, + "chalk": 215, + "cjs-module-lexer": 221, + "collect-v8-coverage": 232, + "glob": 361, + "graceful-fs": 373, + "jest-haste-map": 474, + "jest-message-util": 478, + "jest-mock": 479, + "jest-regex-util": 482, + "jest-resolve": 485, + "jest-snapshot": 489, + "jest-util": 490, + "slash": 698, + "strip-bom": 724, + }, + "name": "jest-runtime", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-runtime@29.7.0/node_modules/jest-runtime", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/generator": 4, + "@babel/plugin-syntax-jsx": 25, + "@babel/plugin-syntax-typescript": 33, + "@babel/traverse": 35, + "@babel/types": 36, + "@jest/expect-utils": 52, + "@jest/transform": 61, + "@jest/types": 63, + "@types/babel__traverse": 96, + "@types/prettier": 116, + "babel-preset-current-node-syntax": 187, + "chalk": 215, + "expect": 323, + "graceful-fs": 373, + "jest-diff": 468, + "jest-get-type": 473, + "jest-matcher-utils": 477, + "jest-message-util": 478, + "jest-util": 490, + "natural-compare": 569, + "pretty-format": 632, + "semver": 690, + }, + "name": "jest-snapshot", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-snapshot@29.5.0/node_modules/jest-snapshot", + }, + Object { + "deps": Object { + "@babel/core": 3, + "@babel/generator": 4, + "@babel/plugin-syntax-jsx": 25, + "@babel/plugin-syntax-typescript": 33, + "@babel/types": 36, + "@jest/expect-utils": 52, + "@jest/transform": 62, + "@jest/types": 63, + "babel-preset-current-node-syntax": 187, + "chalk": 215, + "expect": 323, + "graceful-fs": 373, + "jest-diff": 468, + "jest-get-type": 473, + "jest-matcher-utils": 477, + "jest-message-util": 478, + "jest-util": 490, + "natural-compare": 569, + "pretty-format": 632, + "semver": 690, + }, + "name": "jest-snapshot", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-snapshot@29.7.0/node_modules/jest-snapshot", + }, + Object { + "deps": Object { + "@jest/types": 63, + "@types/node": 113, + "chalk": 215, + "ci-info": 220, + "graceful-fs": 373, + "picomatch": 619, + }, + "name": "jest-util", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-util@29.7.0/node_modules/jest-util", + }, + Object { + "deps": Object { + "@jest/types": 63, + "camelcase": 212, + "chalk": 215, + "jest-get-type": 473, + "leven": 516, + "pretty-format": 632, + }, + "name": "jest-validate", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-validate@29.7.0/node_modules/jest-validate", + }, + Object { + "deps": Object { + "@jest/test-result": 59, + "@jest/types": 63, + "@types/node": 113, + "ansi-escapes": 161, + "chalk": 215, + "emittery": 281, + "jest-util": 490, + "string-length": 713, + }, + "name": "jest-watcher", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-watcher@29.7.0/node_modules/jest-watcher", + }, + Object { + "deps": Object { + "@types/node": 113, + "jest-util": 490, + "merge-stream": 540, + "supports-color": 731, + }, + "name": "jest-worker", + "root": "/common/temp/build-tests/node_modules/.pnpm/jest-worker@29.7.0/node_modules/jest-worker", + }, + Object { + "deps": Object {}, + "name": "jju", + "root": "/common/temp/build-tests/node_modules/.pnpm/jju@1.4.0/node_modules/jju", + }, + Object { + "deps": Object {}, + "name": "js-tokens", + "root": "/common/temp/build-tests/node_modules/.pnpm/js-tokens@3.0.2/node_modules/js-tokens", + }, + Object { + "deps": Object {}, + "name": "js-tokens", + "root": "/common/temp/build-tests/node_modules/.pnpm/js-tokens@4.0.0/node_modules/js-tokens", + }, + Object { + "deps": Object { + "argparse": 169, + "esprima": 314, + }, + "name": "js-yaml", + "root": "/common/temp/build-tests/node_modules/.pnpm/js-yaml@3.13.1/node_modules/js-yaml", + }, + Object { + "deps": Object { + "argparse": 169, + "esprima": 314, + }, + "name": "js-yaml", + "root": "/common/temp/build-tests/node_modules/.pnpm/js-yaml@3.14.1/node_modules/js-yaml", + }, + Object { + "deps": Object { + "argparse": 170, + }, + "name": "js-yaml", + "root": "/common/temp/build-tests/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml", + }, + Object { + "deps": Object {}, + "name": "jsdoc-type-pratt-parser", + "root": "/common/temp/build-tests/node_modules/.pnpm/jsdoc-type-pratt-parser@2.2.5/node_modules/jsdoc-type-pratt-parser", + }, + Object { + "deps": Object {}, + "name": "jsesc", + "root": "/common/temp/build-tests/node_modules/.pnpm/jsesc@2.5.2/node_modules/jsesc", + }, + Object { + "deps": Object {}, + "name": "json-buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/json-buffer@3.0.1/node_modules/json-buffer", + }, + Object { + "deps": Object {}, + "name": "json-parse-even-better-errors", + "root": "/common/temp/build-tests/node_modules/.pnpm/json-parse-even-better-errors@2.3.1/node_modules/json-parse-even-better-errors", + }, + Object { + "deps": Object {}, + "name": "json-schema-traverse", + "root": "/common/temp/build-tests/node_modules/.pnpm/json-schema-traverse@0.4.1/node_modules/json-schema-traverse", + }, + Object { + "deps": Object {}, + "name": "json-schema-traverse", + "root": "/common/temp/build-tests/node_modules/.pnpm/json-schema-traverse@1.0.0/node_modules/json-schema-traverse", + }, + Object { + "deps": Object {}, + "name": "json-stable-stringify-without-jsonify", + "root": "/common/temp/build-tests/node_modules/.pnpm/json-stable-stringify-without-jsonify@1.0.1/node_modules/json-stable-stringify-without-jsonify", + }, + Object { + "deps": Object { + "minimist": 556, + }, + "name": "json5", + "root": "/common/temp/build-tests/node_modules/.pnpm/json5@1.0.2/node_modules/json5", + }, + Object { + "deps": Object {}, + "name": "json5", + "root": "/common/temp/build-tests/node_modules/.pnpm/json5@2.2.3/node_modules/json5", + }, + Object { + "deps": Object { + "graceful-fs": 373, + }, + "name": "jsonfile", + "root": "/common/temp/build-tests/node_modules/.pnpm/jsonfile@4.0.0/node_modules/jsonfile", + }, + Object { + "deps": Object {}, + "name": "jsonpath-plus", + "root": "/common/temp/build-tests/node_modules/.pnpm/jsonpath-plus@4.0.0/node_modules/jsonpath-plus", + }, + Object { + "deps": Object { + "array-includes": 173, + "array.prototype.flat": 175, + "object.assign": 587, + "object.values": 591, + }, + "name": "jsx-ast-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/jsx-ast-utils@3.3.5/node_modules/jsx-ast-utils", + }, + Object { + "deps": Object { + "lie": 518, + "pako": 609, + "readable-stream": 652, + "set-immediate-shim": 693, + }, + "name": "jszip", + "root": "/common/temp/build-tests/node_modules/.pnpm/jszip@3.8.0/node_modules/jszip", + }, + Object { + "deps": Object { + "json-buffer": 502, + }, + "name": "keyv", + "root": "/common/temp/build-tests/node_modules/.pnpm/keyv@4.5.4/node_modules/keyv", + }, + Object { + "deps": Object {}, + "name": "kind-of", + "root": "/common/temp/build-tests/node_modules/.pnpm/kind-of@6.0.3/node_modules/kind-of", + }, + Object { + "deps": Object { + "package-json": 608, + }, + "name": "latest-version", + "root": "/common/temp/build-tests/node_modules/.pnpm/latest-version@5.1.0/node_modules/latest-version", + }, + Object { + "deps": Object {}, + "name": "leven", + "root": "/common/temp/build-tests/node_modules/.pnpm/leven@3.1.0/node_modules/leven", + }, + Object { + "deps": Object { + "prelude-ls": 631, + "type-check": 757, + }, + "name": "levn", + "root": "/common/temp/build-tests/node_modules/.pnpm/levn@0.4.1/node_modules/levn", + }, + Object { + "deps": Object { + "immediate": 401, + }, + "name": "lie", + "root": "/common/temp/build-tests/node_modules/.pnpm/lie@3.3.0/node_modules/lie", + }, + Object { + "deps": Object {}, + "name": "lines-and-columns", + "root": "/common/temp/build-tests/node_modules/.pnpm/lines-and-columns@1.2.4/node_modules/lines-and-columns", + }, + Object { + "deps": Object { + "graceful-fs": 373, + "parse-json": 611, + "strip-bom": 724, + "type-fest": 762, + }, + "name": "load-json-file", + "root": "/common/temp/build-tests/node_modules/.pnpm/load-json-file@6.2.0/node_modules/load-json-file", + }, + Object { + "deps": Object { + "graceful-fs": 373, + "js-yaml": 497, + "pify": 620, + "strip-bom": 723, + }, + "name": "load-yaml-file", + "root": "/common/temp/build-tests/node_modules/.pnpm/load-yaml-file@0.2.0/node_modules/load-yaml-file", + }, + Object { + "deps": Object { + "p-locate": 603, + }, + "name": "locate-path", + "root": "/common/temp/build-tests/node_modules/.pnpm/locate-path@5.0.0/node_modules/locate-path", + }, + Object { + "deps": Object { + "p-locate": 604, + }, + "name": "locate-path", + "root": "/common/temp/build-tests/node_modules/.pnpm/locate-path@6.0.0/node_modules/locate-path", + }, + Object { + "deps": Object {}, + "name": "lodash.merge", + "root": "/common/temp/build-tests/node_modules/.pnpm/lodash.merge@4.6.2/node_modules/lodash.merge", + }, + Object { + "deps": Object {}, + "name": "lodash", + "root": "/common/temp/build-tests/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash", + }, + Object { + "deps": Object { + "chalk": 215, + "is-unicode-supported": 450, + }, + "name": "log-symbols", + "root": "/common/temp/build-tests/node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols", + }, + Object { + "deps": Object { + "js-tokens": 496, + }, + "name": "loose-envify", + "root": "/common/temp/build-tests/node_modules/.pnpm/loose-envify@1.4.0/node_modules/loose-envify", + }, + Object { + "deps": Object {}, + "name": "lowercase-keys", + "root": "/common/temp/build-tests/node_modules/.pnpm/lowercase-keys@2.0.0/node_modules/lowercase-keys", + }, + Object { + "deps": Object { + "yallist": 806, + }, + "name": "lru-cache", + "root": "/common/temp/build-tests/node_modules/.pnpm/lru-cache@5.1.1/node_modules/lru-cache", + }, + Object { + "deps": Object { + "yallist": 807, + }, + "name": "lru-cache", + "root": "/common/temp/build-tests/node_modules/.pnpm/lru-cache@6.0.0/node_modules/lru-cache", + }, + Object { + "deps": Object { + "@jridgewell/sourcemap-codec": 67, + }, + "name": "magic-string", + "root": "/common/temp/build-tests/node_modules/.pnpm/magic-string@0.30.10/node_modules/magic-string", + }, + Object { + "deps": Object { + "semver": 688, + }, + "name": "make-dir", + "root": "/common/temp/build-tests/node_modules/.pnpm/make-dir@3.1.0/node_modules/make-dir", + }, + Object { + "deps": Object { + "semver": 690, + }, + "name": "make-dir", + "root": "/common/temp/build-tests/node_modules/.pnpm/make-dir@4.0.0/node_modules/make-dir", + }, + Object { + "deps": Object { + "tmpl": 743, + }, + "name": "makeerror", + "root": "/common/temp/build-tests/node_modules/.pnpm/makeerror@1.0.12/node_modules/makeerror", + }, + Object { + "deps": Object { + "p-defer": 600, + }, + "name": "map-age-cleaner", + "root": "/common/temp/build-tests/node_modules/.pnpm/map-age-cleaner@0.1.3/node_modules/map-age-cleaner", + }, + Object { + "deps": Object {}, + "name": "map-obj", + "root": "/common/temp/build-tests/node_modules/.pnpm/map-obj@1.0.1/node_modules/map-obj", + }, + Object { + "deps": Object {}, + "name": "map-obj", + "root": "/common/temp/build-tests/node_modules/.pnpm/map-obj@4.3.0/node_modules/map-obj", + }, + Object { + "deps": Object { + "map-age-cleaner": 535, + "mimic-fn": 546, + }, + "name": "mem", + "root": "/common/temp/build-tests/node_modules/.pnpm/mem@8.1.1/node_modules/mem", + }, + Object { + "deps": Object { + "@types/minimist": 111, + "camelcase-keys": 210, + "decamelize": 256, + "decamelize-keys": 255, + "hard-rejection": 376, + "minimist-options": 555, + "normalize-package-data": 575, + "read-pkg-up": 649, + "redent": 656, + "trim-newlines": 747, + "type-fest": 759, + "yargs-parser": 810, + }, + "name": "meow", + "root": "/common/temp/build-tests/node_modules/.pnpm/meow@9.0.0/node_modules/meow", + }, + Object { + "deps": Object {}, + "name": "merge-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/merge-stream@2.0.0/node_modules/merge-stream", + }, + Object { + "deps": Object {}, + "name": "merge2", + "root": "/common/temp/build-tests/node_modules/.pnpm/merge2@1.4.1/node_modules/merge2", + }, + Object { + "deps": Object { + "braces": 196, + "picomatch": 619, + }, + "name": "micromatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/micromatch@4.0.5/node_modules/micromatch", + }, + Object { + "deps": Object {}, + "name": "mime-db", + "root": "/common/temp/build-tests/node_modules/.pnpm/mime-db@1.52.0/node_modules/mime-db", + }, + Object { + "deps": Object { + "mime-db": 543, + }, + "name": "mime-types", + "root": "/common/temp/build-tests/node_modules/.pnpm/mime-types@2.1.35/node_modules/mime-types", + }, + Object { + "deps": Object {}, + "name": "mimic-fn", + "root": "/common/temp/build-tests/node_modules/.pnpm/mimic-fn@2.1.0/node_modules/mimic-fn", + }, + Object { + "deps": Object {}, + "name": "mimic-fn", + "root": "/common/temp/build-tests/node_modules/.pnpm/mimic-fn@3.1.0/node_modules/mimic-fn", + }, + Object { + "deps": Object {}, + "name": "mimic-response", + "root": "/common/temp/build-tests/node_modules/.pnpm/mimic-response@1.0.1/node_modules/mimic-response", + }, + Object { + "deps": Object {}, + "name": "mimic-response", + "root": "/common/temp/build-tests/node_modules/.pnpm/mimic-response@3.1.0/node_modules/mimic-response", + }, + Object { + "deps": Object {}, + "name": "min-indent", + "root": "/common/temp/build-tests/node_modules/.pnpm/min-indent@1.0.1/node_modules/min-indent", + }, + Object { + "deps": Object { + "brace-expansion": 194, + }, + "name": "minimatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/minimatch@3.0.8/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 194, + }, + "name": "minimatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 195, + }, + "name": "minimatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/minimatch@7.4.6/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 195, + }, + "name": "minimatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 195, + }, + "name": "minimatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch", + }, + Object { + "deps": Object { + "arrify": 179, + "is-plain-obj": 439, + "kind-of": 514, + }, + "name": "minimist-options", + "root": "/common/temp/build-tests/node_modules/.pnpm/minimist-options@4.1.0/node_modules/minimist-options", + }, + Object { + "deps": Object {}, + "name": "minimist", + "root": "/common/temp/build-tests/node_modules/.pnpm/minimist@1.2.8/node_modules/minimist", + }, + Object { + "deps": Object { + "yallist": 807, + }, + "name": "minipass", + "root": "/common/temp/build-tests/node_modules/.pnpm/minipass@3.3.6/node_modules/minipass", + }, + Object { + "deps": Object {}, + "name": "minipass", + "root": "/common/temp/build-tests/node_modules/.pnpm/minipass@5.0.0/node_modules/minipass", + }, + Object { + "deps": Object { + "minipass": 557, + "yallist": 807, + }, + "name": "minizlib", + "root": "/common/temp/build-tests/node_modules/.pnpm/minizlib@2.1.2/node_modules/minizlib", + }, + Object { + "deps": Object { + "minimist": 556, + }, + "name": "mkdirp", + "root": "/common/temp/build-tests/node_modules/.pnpm/mkdirp@0.5.6/node_modules/mkdirp", + }, + Object { + "deps": Object {}, + "name": "mkdirp", + "root": "/common/temp/build-tests/node_modules/.pnpm/mkdirp@1.0.4/node_modules/mkdirp", + }, + Object { + "deps": Object {}, + "name": "ms", + "root": "/common/temp/build-tests/node_modules/.pnpm/ms@2.0.0/node_modules/ms", + }, + Object { + "deps": Object {}, + "name": "ms", + "root": "/common/temp/build-tests/node_modules/.pnpm/ms@2.1.2/node_modules/ms", + }, + Object { + "deps": Object {}, + "name": "ms", + "root": "/common/temp/build-tests/node_modules/.pnpm/ms@2.1.3/node_modules/ms", + }, + Object { + "deps": Object { + "@types/minimatch": 110, + "array-differ": 172, + "array-union": 174, + "arrify": 180, + "minimatch": 551, + }, + "name": "multimatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/multimatch@5.0.0/node_modules/multimatch", + }, + Object { + "deps": Object {}, + "name": "mute-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/mute-stream@0.0.8/node_modules/mute-stream", + }, + Object { + "deps": Object { + "any-promise": 167, + "object-assign": 584, + "thenify-all": 738, + }, + "name": "mz", + "root": "/common/temp/build-tests/node_modules/.pnpm/mz@2.7.0/node_modules/mz", + }, + Object { + "deps": Object {}, + "name": "nanoid", + "root": "/common/temp/build-tests/node_modules/.pnpm/nanoid@3.3.7/node_modules/nanoid", + }, + Object { + "deps": Object {}, + "name": "natural-compare", + "root": "/common/temp/build-tests/node_modules/.pnpm/natural-compare@1.4.0/node_modules/natural-compare", + }, + Object { + "deps": Object { + "lodash": 525, + }, + "name": "node-emoji", + "root": "/common/temp/build-tests/node_modules/.pnpm/node-emoji@1.11.0/node_modules/node-emoji", + }, + Object { + "deps": Object { + "whatwg-url": 787, + }, + "name": "node-fetch", + "root": "/common/temp/build-tests/node_modules/.pnpm/node-fetch@2.6.7/node_modules/node-fetch", + }, + Object { + "deps": Object {}, + "name": "node-int64", + "root": "/common/temp/build-tests/node_modules/.pnpm/node-int64@0.4.0/node_modules/node-int64", + }, + Object { + "deps": Object {}, + "name": "node-releases", + "root": "/common/temp/build-tests/node_modules/.pnpm/node-releases@2.0.14/node_modules/node-releases", + }, + Object { + "deps": Object { + "hosted-git-info": 389, + "resolve": 670, + "semver": 687, + "validate-npm-package-license": 781, + }, + "name": "normalize-package-data", + "root": "/common/temp/build-tests/node_modules/.pnpm/normalize-package-data@2.5.0/node_modules/normalize-package-data", + }, + Object { + "deps": Object { + "hosted-git-info": 390, + "is-core-module": 420, + "semver": 689, + "validate-npm-package-license": 781, + }, + "name": "normalize-package-data", + "root": "/common/temp/build-tests/node_modules/.pnpm/normalize-package-data@3.0.3/node_modules/normalize-package-data", + }, + Object { + "deps": Object {}, + "name": "normalize-path", + "root": "/common/temp/build-tests/node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path", + }, + Object { + "deps": Object {}, + "name": "normalize-url", + "root": "/common/temp/build-tests/node_modules/.pnpm/normalize-url@6.1.0/node_modules/normalize-url", + }, + Object { + "deps": Object { + "npm-normalize-package-bin": 580, + }, + "name": "npm-bundled", + "root": "/common/temp/build-tests/node_modules/.pnpm/npm-bundled@1.1.2/node_modules/npm-bundled", + }, + Object { + "deps": Object { + "callsite-record": 207, + "chalk": 215, + "co": 231, + "depcheck": 267, + "execa": 320, + "giturl": 356, + "global-modules": 364, + "globby": 370, + "inquirer": 411, + "is-ci": 419, + "lodash": 525, + "meow": 539, + "minimatch": 551, + "node-emoji": 570, + "ora": 595, + "package-json": 608, + "path-exists": 613, + "pkg-dir": 625, + "preferred-pm": 630, + "rc-config-loader": 643, + "semver": 689, + "semver-diff": 686, + "strip-ansi": 722, + "text-table": 737, + "throat": 740, + "update-notifier": 776, + "xtend": 804, + }, + "name": "npm-check", + "root": "/common/temp/build-tests/node_modules/.pnpm/npm-check@6.0.1/node_modules/npm-check", + }, + Object { + "deps": Object {}, + "name": "npm-normalize-package-bin", + "root": "/common/temp/build-tests/node_modules/.pnpm/npm-normalize-package-bin@1.0.1/node_modules/npm-normalize-package-bin", + }, + Object { + "deps": Object { + "hosted-git-info": 389, + "osenv": 598, + "semver": 687, + "validate-npm-package-name": 782, + }, + "name": "npm-package-arg", + "root": "/common/temp/build-tests/node_modules/.pnpm/npm-package-arg@6.1.1/node_modules/npm-package-arg", + }, + Object { + "deps": Object { + "glob": 361, + "ignore-walk": 398, + "npm-bundled": 578, + "npm-normalize-package-bin": 580, + }, + "name": "npm-packlist", + "root": "/common/temp/build-tests/node_modules/.pnpm/npm-packlist@2.1.5/node_modules/npm-packlist", + }, + Object { + "deps": Object { + "path-key": 615, + }, + "name": "npm-run-path", + "root": "/common/temp/build-tests/node_modules/.pnpm/npm-run-path@4.0.1/node_modules/npm-run-path", + }, + Object { + "deps": Object {}, + "name": "object-assign", + "root": "/common/temp/build-tests/node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign", + }, + Object { + "deps": Object {}, + "name": "object-inspect", + "root": "/common/temp/build-tests/node_modules/.pnpm/object-inspect@1.13.1/node_modules/object-inspect", + }, + Object { + "deps": Object {}, + "name": "object-keys", + "root": "/common/temp/build-tests/node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "has-symbols": 382, + "object-keys": 586, + }, + "name": "object.assign", + "root": "/common/temp/build-tests/node_modules/.pnpm/object.assign@4.1.5/node_modules/object.assign", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-object-atoms": 291, + }, + "name": "object.entries", + "root": "/common/temp/build-tests/node_modules/.pnpm/object.entries@1.1.8/node_modules/object.entries", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-object-atoms": 291, + }, + "name": "object.fromentries", + "root": "/common/temp/build-tests/node_modules/.pnpm/object.fromentries@2.0.8/node_modules/object.fromentries", + }, + Object { + "deps": Object { + "define-properties": 265, + "es-abstract": 287, + "es-object-atoms": 291, + }, + "name": "object.hasown", + "root": "/common/temp/build-tests/node_modules/.pnpm/object.hasown@1.1.4/node_modules/object.hasown", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-object-atoms": 291, + }, + "name": "object.values", + "root": "/common/temp/build-tests/node_modules/.pnpm/object.values@1.2.0/node_modules/object.values", + }, + Object { + "deps": Object { + "wrappy": 798, + }, + "name": "once", + "root": "/common/temp/build-tests/node_modules/.pnpm/once@1.4.0/node_modules/once", + }, + Object { + "deps": Object { + "mimic-fn": 545, + }, + "name": "onetime", + "root": "/common/temp/build-tests/node_modules/.pnpm/onetime@5.1.2/node_modules/onetime", + }, + Object { + "deps": Object { + "deep-is": 260, + "fast-levenshtein": 328, + "levn": 517, + "prelude-ls": 631, + "type-check": 757, + "word-wrap": 796, + }, + "name": "optionator", + "root": "/common/temp/build-tests/node_modules/.pnpm/optionator@0.9.4/node_modules/optionator", + }, + Object { + "deps": Object { + "bl": 192, + "chalk": 215, + "cli-cursor": 223, + "cli-spinners": 224, + "is-interactive": 431, + "is-unicode-supported": 450, + "log-symbols": 526, + "strip-ansi": 722, + "wcwidth": 785, + }, + "name": "ora", + "root": "/common/temp/build-tests/node_modules/.pnpm/ora@5.4.1/node_modules/ora", + }, + Object { + "deps": Object {}, + "name": "os-homedir", + "root": "/common/temp/build-tests/node_modules/.pnpm/os-homedir@1.0.2/node_modules/os-homedir", + }, + Object { + "deps": Object {}, + "name": "os-tmpdir", + "root": "/common/temp/build-tests/node_modules/.pnpm/os-tmpdir@1.0.2/node_modules/os-tmpdir", + }, + Object { + "deps": Object { + "os-homedir": 596, + "os-tmpdir": 597, + }, + "name": "osenv", + "root": "/common/temp/build-tests/node_modules/.pnpm/osenv@0.1.5/node_modules/osenv", + }, + Object { + "deps": Object {}, + "name": "p-cancelable", + "root": "/common/temp/build-tests/node_modules/.pnpm/p-cancelable@2.1.1/node_modules/p-cancelable", + }, + Object { + "deps": Object {}, + "name": "p-defer", + "root": "/common/temp/build-tests/node_modules/.pnpm/p-defer@1.0.0/node_modules/p-defer", + }, + Object { + "deps": Object { + "p-try": 607, + }, + "name": "p-limit", + "root": "/common/temp/build-tests/node_modules/.pnpm/p-limit@2.3.0/node_modules/p-limit", + }, + Object { + "deps": Object { + "yocto-queue": 812, + }, + "name": "p-limit", + "root": "/common/temp/build-tests/node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit", + }, + Object { + "deps": Object { + "p-limit": 601, + }, + "name": "p-locate", + "root": "/common/temp/build-tests/node_modules/.pnpm/p-locate@4.1.0/node_modules/p-locate", + }, + Object { + "deps": Object { + "p-limit": 602, + }, + "name": "p-locate", + "root": "/common/temp/build-tests/node_modules/.pnpm/p-locate@5.0.0/node_modules/p-locate", + }, + Object { + "deps": Object {}, + "name": "p-reflect", + "root": "/common/temp/build-tests/node_modules/.pnpm/p-reflect@2.1.0/node_modules/p-reflect", + }, + Object { + "deps": Object { + "p-limit": 601, + "p-reflect": 605, + }, + "name": "p-settle", + "root": "/common/temp/build-tests/node_modules/.pnpm/p-settle@4.1.1/node_modules/p-settle", + }, + Object { + "deps": Object {}, + "name": "p-try", + "root": "/common/temp/build-tests/node_modules/.pnpm/p-try@2.2.0/node_modules/p-try", + }, + Object { + "deps": Object { + "got": 372, + "registry-auth-token": 660, + "registry-url": 661, + "semver": 689, + }, + "name": "package-json", + "root": "/common/temp/build-tests/node_modules/.pnpm/package-json@7.0.0/node_modules/package-json", + }, + Object { + "deps": Object {}, + "name": "pako", + "root": "/common/temp/build-tests/node_modules/.pnpm/pako@1.0.11/node_modules/pako", + }, + Object { + "deps": Object { + "callsites": 209, + }, + "name": "parent-module", + "root": "/common/temp/build-tests/node_modules/.pnpm/parent-module@1.0.1/node_modules/parent-module", + }, + Object { + "deps": Object { + "@babel/code-frame": 1, + "error-ex": 286, + "json-parse-even-better-errors": 503, + "lines-and-columns": 519, + }, + "name": "parse-json", + "root": "/common/temp/build-tests/node_modules/.pnpm/parse-json@5.2.0/node_modules/parse-json", + }, + Object { + "deps": Object {}, + "name": "parse-passwd", + "root": "/common/temp/build-tests/node_modules/.pnpm/parse-passwd@1.0.0/node_modules/parse-passwd", + }, + Object { + "deps": Object {}, + "name": "path-exists", + "root": "/common/temp/build-tests/node_modules/.pnpm/path-exists@4.0.0/node_modules/path-exists", + }, + Object { + "deps": Object {}, + "name": "path-is-absolute", + "root": "/common/temp/build-tests/node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute", + }, + Object { + "deps": Object {}, + "name": "path-key", + "root": "/common/temp/build-tests/node_modules/.pnpm/path-key@3.1.1/node_modules/path-key", + }, + Object { + "deps": Object {}, + "name": "path-parse", + "root": "/common/temp/build-tests/node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse", + }, + Object { + "deps": Object {}, + "name": "path-type", + "root": "/common/temp/build-tests/node_modules/.pnpm/path-type@4.0.0/node_modules/path-type", + }, + Object { + "deps": Object {}, + "name": "picocolors", + "root": "/common/temp/build-tests/node_modules/.pnpm/picocolors@1.0.1/node_modules/picocolors", + }, + Object { + "deps": Object {}, + "name": "picomatch", + "root": "/common/temp/build-tests/node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch", + }, + Object { + "deps": Object {}, + "name": "pify", + "root": "/common/temp/build-tests/node_modules/.pnpm/pify@4.0.1/node_modules/pify", + }, + Object { + "deps": Object { + "pinkie": 622, + }, + "name": "pinkie-promise", + "root": "/common/temp/build-tests/node_modules/.pnpm/pinkie-promise@2.0.1/node_modules/pinkie-promise", + }, + Object { + "deps": Object {}, + "name": "pinkie", + "root": "/common/temp/build-tests/node_modules/.pnpm/pinkie@2.0.4/node_modules/pinkie", + }, + Object { + "deps": Object {}, + "name": "pirates", + "root": "/common/temp/build-tests/node_modules/.pnpm/pirates@4.0.6/node_modules/pirates", + }, + Object { + "deps": Object { + "find-up": 334, + }, + "name": "pkg-dir", + "root": "/common/temp/build-tests/node_modules/.pnpm/pkg-dir@4.2.0/node_modules/pkg-dir", + }, + Object { + "deps": Object { + "find-up": 335, + }, + "name": "pkg-dir", + "root": "/common/temp/build-tests/node_modules/.pnpm/pkg-dir@5.0.0/node_modules/pkg-dir", + }, + Object { + "deps": Object { + "semver-compare": 685, + }, + "name": "please-upgrade-node", + "root": "/common/temp/build-tests/node_modules/.pnpm/please-upgrade-node@3.2.0/node_modules/please-upgrade-node", + }, + Object { + "deps": Object { + "@pnpm/dependency-path": 76, + "yaml": 809, + }, + "name": "pnpm-sync-lib", + "root": "/common/temp/build-tests/node_modules/.pnpm/pnpm-sync-lib@0.2.9/node_modules/pnpm-sync-lib", + }, + Object { + "deps": Object {}, + "name": "possible-typed-array-names", + "root": "/common/temp/build-tests/node_modules/.pnpm/possible-typed-array-names@1.0.0/node_modules/possible-typed-array-names", + }, + Object { + "deps": Object { + "nanoid": 568, + "picocolors": 618, + "source-map-js": 700, + }, + "name": "postcss", + "root": "/common/temp/build-tests/node_modules/.pnpm/postcss@8.4.38/node_modules/postcss", + }, + Object { + "deps": Object { + "find-up": 335, + "find-yarn-workspace-root2": 336, + "path-exists": 613, + "which-pm": 791, + }, + "name": "preferred-pm", + "root": "/common/temp/build-tests/node_modules/.pnpm/preferred-pm@3.1.3/node_modules/preferred-pm", + }, + Object { + "deps": Object {}, + "name": "prelude-ls", + "root": "/common/temp/build-tests/node_modules/.pnpm/prelude-ls@1.2.1/node_modules/prelude-ls", + }, + Object { + "deps": Object { + "@jest/schemas": 57, + "ansi-styles": 166, + "react-is": 646, + }, + "name": "pretty-format", + "root": "/common/temp/build-tests/node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format", + }, + Object { + "deps": Object {}, + "name": "process-nextick-args", + "root": "/common/temp/build-tests/node_modules/.pnpm/process-nextick-args@2.0.1/node_modules/process-nextick-args", + }, + Object { + "deps": Object { + "loose-envify": 527, + "object-assign": 584, + "react-is": 645, + }, + "name": "prop-types", + "root": "/common/temp/build-tests/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types", + }, + Object { + "deps": Object { + "end-of-stream": 284, + "once": 592, + }, + "name": "pump", + "root": "/common/temp/build-tests/node_modules/.pnpm/pump@3.0.0/node_modules/pump", + }, + Object { + "deps": Object {}, + "name": "punycode", + "root": "/common/temp/build-tests/node_modules/.pnpm/punycode@2.3.1/node_modules/punycode", + }, + Object { + "deps": Object { + "escape-goat": 296, + }, + "name": "pupa", + "root": "/common/temp/build-tests/node_modules/.pnpm/pupa@2.1.1/node_modules/pupa", + }, + Object { + "deps": Object {}, + "name": "pure-rand", + "root": "/common/temp/build-tests/node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand", + }, + Object { + "deps": Object {}, + "name": "queue-microtask", + "root": "/common/temp/build-tests/node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask", + }, + Object { + "deps": Object {}, + "name": "quick-lru", + "root": "/common/temp/build-tests/node_modules/.pnpm/quick-lru@4.0.1/node_modules/quick-lru", + }, + Object { + "deps": Object {}, + "name": "quick-lru", + "root": "/common/temp/build-tests/node_modules/.pnpm/quick-lru@5.1.1/node_modules/quick-lru", + }, + Object { + "deps": Object {}, + "name": "ramda", + "root": "/common/temp/build-tests/node_modules/.pnpm/ramda@0.27.2/node_modules/ramda", + }, + Object { + "deps": Object { + "debug": 253, + "js-yaml": 499, + "json5": 508, + "require-from-string": 663, + }, + "name": "rc-config-loader", + "root": "/common/temp/build-tests/node_modules/.pnpm/rc-config-loader@4.1.3/node_modules/rc-config-loader", + }, + Object { + "deps": Object { + "deep-extend": 259, + "ini": 409, + "minimist": 556, + "strip-json-comments": 727, + }, + "name": "rc", + "root": "/common/temp/build-tests/node_modules/.pnpm/rc@1.2.8/node_modules/rc", + }, + Object { + "deps": Object {}, + "name": "react-is", + "root": "/common/temp/build-tests/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is", + }, + Object { + "deps": Object {}, + "name": "react-is", + "root": "/common/temp/build-tests/node_modules/.pnpm/react-is@18.3.1/node_modules/react-is", + }, + Object { + "deps": Object { + "glob": 361, + "json-parse-even-better-errors": 503, + "normalize-package-data": 574, + "npm-normalize-package-bin": 580, + }, + "name": "read-package-json", + "root": "/common/temp/build-tests/node_modules/.pnpm/read-package-json@2.1.2/node_modules/read-package-json", + }, + Object { + "deps": Object { + "debuglog": 254, + "dezalgo": 273, + "once": 592, + "read-package-json": 647, + "readdir-scoped-modules": 654, + }, + "name": "read-package-tree", + "root": "/common/temp/build-tests/node_modules/.pnpm/read-package-tree@5.1.6/node_modules/read-package-tree", + }, + Object { + "deps": Object { + "find-up": 334, + "read-pkg": 650, + "type-fest": 763, + }, + "name": "read-pkg-up", + "root": "/common/temp/build-tests/node_modules/.pnpm/read-pkg-up@7.0.1/node_modules/read-pkg-up", + }, + Object { + "deps": Object { + "@types/normalize-package-data": 114, + "normalize-package-data": 574, + "parse-json": 611, + "type-fest": 762, + }, + "name": "read-pkg", + "root": "/common/temp/build-tests/node_modules/.pnpm/read-pkg@5.2.0/node_modules/read-pkg", + }, + Object { + "deps": Object { + "js-yaml": 499, + "strip-bom": 724, + }, + "name": "read-yaml-file", + "root": "/common/temp/build-tests/node_modules/.pnpm/read-yaml-file@2.1.0/node_modules/read-yaml-file", + }, + Object { + "deps": Object { + "core-util-is": 244, + "inherits": 408, + "isarray": 456, + "process-nextick-args": 633, + "safe-buffer": 681, + "string_decoder": 719, + "util-deprecate": 778, + }, + "name": "readable-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream", + }, + Object { + "deps": Object { + "inherits": 408, + "string_decoder": 720, + "util-deprecate": 778, + }, + "name": "readable-stream", + "root": "/common/temp/build-tests/node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream", + }, + Object { + "deps": Object { + "debuglog": 254, + "dezalgo": 273, + "graceful-fs": 373, + "once": 592, + }, + "name": "readdir-scoped-modules", + "root": "/common/temp/build-tests/node_modules/.pnpm/readdir-scoped-modules@1.1.0/node_modules/readdir-scoped-modules", + }, + Object { + "deps": Object { + "picomatch": 619, + }, + "name": "readdirp", + "root": "/common/temp/build-tests/node_modules/.pnpm/readdirp@3.6.0/node_modules/readdirp", + }, + Object { + "deps": Object { + "indent-string": 406, + "strip-indent": 726, + }, + "name": "redent", + "root": "/common/temp/build-tests/node_modules/.pnpm/redent@3.0.0/node_modules/redent", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-errors": 289, + "get-intrinsic": 350, + "globalthis": 369, + "which-builtin-type": 789, + }, + "name": "reflect.getprototypeof", + "root": "/common/temp/build-tests/node_modules/.pnpm/reflect.getprototypeof@1.0.6/node_modules/reflect.getprototypeof", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-errors": 289, + "set-function-name": 692, + }, + "name": "regexp.prototype.flags", + "root": "/common/temp/build-tests/node_modules/.pnpm/regexp.prototype.flags@1.5.2/node_modules/regexp.prototype.flags", + }, + Object { + "deps": Object {}, + "name": "regextras", + "root": "/common/temp/build-tests/node_modules/.pnpm/regextras@0.8.0/node_modules/regextras", + }, + Object { + "deps": Object { + "rc": 644, + }, + "name": "registry-auth-token", + "root": "/common/temp/build-tests/node_modules/.pnpm/registry-auth-token@4.2.2/node_modules/registry-auth-token", + }, + Object { + "deps": Object { + "rc": 644, + }, + "name": "registry-url", + "root": "/common/temp/build-tests/node_modules/.pnpm/registry-url@5.1.0/node_modules/registry-url", + }, + Object { + "deps": Object {}, + "name": "require-directory", + "root": "/common/temp/build-tests/node_modules/.pnpm/require-directory@2.1.1/node_modules/require-directory", + }, + Object { + "deps": Object {}, + "name": "require-from-string", + "root": "/common/temp/build-tests/node_modules/.pnpm/require-from-string@2.0.2/node_modules/require-from-string", + }, + Object { + "deps": Object {}, + "name": "require-package-name", + "root": "/common/temp/build-tests/node_modules/.pnpm/require-package-name@2.0.1/node_modules/require-package-name", + }, + Object { + "deps": Object {}, + "name": "resolve-alpn", + "root": "/common/temp/build-tests/node_modules/.pnpm/resolve-alpn@1.2.1/node_modules/resolve-alpn", + }, + Object { + "deps": Object { + "expand-tilde": 322, + "global-modules": 363, + }, + "name": "resolve-dir", + "root": "/common/temp/build-tests/node_modules/.pnpm/resolve-dir@1.0.1/node_modules/resolve-dir", + }, + Object { + "deps": Object {}, + "name": "resolve-from", + "root": "/common/temp/build-tests/node_modules/.pnpm/resolve-from@4.0.0/node_modules/resolve-from", + }, + Object { + "deps": Object {}, + "name": "resolve-from", + "root": "/common/temp/build-tests/node_modules/.pnpm/resolve-from@5.0.0/node_modules/resolve-from", + }, + Object { + "deps": Object {}, + "name": "resolve.exports", + "root": "/common/temp/build-tests/node_modules/.pnpm/resolve.exports@2.0.2/node_modules/resolve.exports", + }, + Object { + "deps": Object { + "is-core-module": 420, + "path-parse": 616, + "supports-preserve-symlinks-flag": 732, + }, + "name": "resolve", + "root": "/common/temp/build-tests/node_modules/.pnpm/resolve@1.22.8/node_modules/resolve", + }, + Object { + "deps": Object { + "is-core-module": 420, + "path-parse": 616, + "supports-preserve-symlinks-flag": 732, + }, + "name": "resolve", + "root": "/common/temp/build-tests/node_modules/.pnpm/resolve@2.0.0-next.5/node_modules/resolve", + }, + Object { + "deps": Object { + "lowercase-keys": 528, + }, + "name": "responselike", + "root": "/common/temp/build-tests/node_modules/.pnpm/responselike@2.0.1/node_modules/responselike", + }, + Object { + "deps": Object { + "onetime": 593, + "signal-exit": 697, + }, + "name": "restore-cursor", + "root": "/common/temp/build-tests/node_modules/.pnpm/restore-cursor@3.1.0/node_modules/restore-cursor", + }, + Object { + "deps": Object {}, + "name": "reusify", + "root": "/common/temp/build-tests/node_modules/.pnpm/reusify@1.0.4/node_modules/reusify", + }, + Object { + "deps": Object {}, + "name": "rfc4648", + "root": "/common/temp/build-tests/node_modules/.pnpm/rfc4648@1.5.3/node_modules/rfc4648", + }, + Object { + "deps": Object { + "glob": 361, + }, + "name": "rimraf", + "root": "/common/temp/build-tests/node_modules/.pnpm/rimraf@3.0.2/node_modules/rimraf", + }, + Object { + "deps": Object {}, + "name": "run-async", + "root": "/common/temp/build-tests/node_modules/.pnpm/run-async@2.4.1/node_modules/run-async", + }, + Object { + "deps": Object { + "queue-microtask": 639, + }, + "name": "run-parallel", + "root": "/common/temp/build-tests/node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel", + }, + Object { + "deps": Object { + "tslib": 752, + }, + "name": "rxjs", + "root": "/common/temp/build-tests/node_modules/.pnpm/rxjs@6.6.7/node_modules/rxjs", + }, + Object { + "deps": Object { + "call-bind": 206, + "get-intrinsic": 350, + "has-symbols": 382, + "isarray": 457, + }, + "name": "safe-array-concat", + "root": "/common/temp/build-tests/node_modules/.pnpm/safe-array-concat@1.1.2/node_modules/safe-array-concat", + }, + Object { + "deps": Object {}, + "name": "safe-buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/safe-buffer@5.1.2/node_modules/safe-buffer", + }, + Object { + "deps": Object {}, + "name": "safe-buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer", + }, + Object { + "deps": Object { + "call-bind": 206, + "es-errors": 289, + "is-regex": 441, + }, + "name": "safe-regex-test", + "root": "/common/temp/build-tests/node_modules/.pnpm/safe-regex-test@1.0.3/node_modules/safe-regex-test", + }, + Object { + "deps": Object {}, + "name": "safer-buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/safer-buffer@2.1.2/node_modules/safer-buffer", + }, + Object { + "deps": Object {}, + "name": "semver-compare", + "root": "/common/temp/build-tests/node_modules/.pnpm/semver-compare@1.0.0/node_modules/semver-compare", + }, + Object { + "deps": Object { + "semver": 688, + }, + "name": "semver-diff", + "root": "/common/temp/build-tests/node_modules/.pnpm/semver-diff@3.1.1/node_modules/semver-diff", + }, + Object { + "deps": Object {}, + "name": "semver", + "root": "/common/temp/build-tests/node_modules/.pnpm/semver@5.7.2/node_modules/semver", + }, + Object { + "deps": Object {}, + "name": "semver", + "root": "/common/temp/build-tests/node_modules/.pnpm/semver@6.3.1/node_modules/semver", + }, + Object { + "deps": Object { + "lru-cache": 530, + }, + "name": "semver", + "root": "/common/temp/build-tests/node_modules/.pnpm/semver@7.5.4/node_modules/semver", + }, + Object { + "deps": Object {}, + "name": "semver", + "root": "/common/temp/build-tests/node_modules/.pnpm/semver@7.6.2/node_modules/semver", + }, + Object { + "deps": Object { + "define-data-property": 264, + "es-errors": 289, + "function-bind": 345, + "get-intrinsic": 350, + "gopd": 371, + "has-property-descriptors": 380, + }, + "name": "set-function-length", + "root": "/common/temp/build-tests/node_modules/.pnpm/set-function-length@1.2.2/node_modules/set-function-length", + }, + Object { + "deps": Object { + "define-data-property": 264, + "es-errors": 289, + "functions-have-names": 347, + "has-property-descriptors": 380, + }, + "name": "set-function-name", + "root": "/common/temp/build-tests/node_modules/.pnpm/set-function-name@2.0.2/node_modules/set-function-name", + }, + Object { + "deps": Object {}, + "name": "set-immediate-shim", + "root": "/common/temp/build-tests/node_modules/.pnpm/set-immediate-shim@1.0.1/node_modules/set-immediate-shim", + }, + Object { + "deps": Object { + "shebang-regex": 695, + }, + "name": "shebang-command", + "root": "/common/temp/build-tests/node_modules/.pnpm/shebang-command@2.0.0/node_modules/shebang-command", + }, + Object { + "deps": Object {}, + "name": "shebang-regex", + "root": "/common/temp/build-tests/node_modules/.pnpm/shebang-regex@3.0.0/node_modules/shebang-regex", + }, + Object { + "deps": Object { + "call-bind": 206, + "es-errors": 289, + "get-intrinsic": 350, + "object-inspect": 585, + }, + "name": "side-channel", + "root": "/common/temp/build-tests/node_modules/.pnpm/side-channel@1.0.6/node_modules/side-channel", + }, + Object { + "deps": Object {}, + "name": "signal-exit", + "root": "/common/temp/build-tests/node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit", + }, + Object { + "deps": Object {}, + "name": "slash", + "root": "/common/temp/build-tests/node_modules/.pnpm/slash@3.0.0/node_modules/slash", + }, + Object { + "deps": Object { + "is-plain-obj": 440, + }, + "name": "sort-keys", + "root": "/common/temp/build-tests/node_modules/.pnpm/sort-keys@4.2.0/node_modules/sort-keys", + }, + Object { + "deps": Object {}, + "name": "source-map-js", + "root": "/common/temp/build-tests/node_modules/.pnpm/source-map-js@1.2.0/node_modules/source-map-js", + }, + Object { + "deps": Object { + "buffer-from": 199, + "source-map": 702, + }, + "name": "source-map-support", + "root": "/common/temp/build-tests/node_modules/.pnpm/source-map-support@0.5.13/node_modules/source-map-support", + }, + Object { + "deps": Object {}, + "name": "source-map", + "root": "/common/temp/build-tests/node_modules/.pnpm/source-map@0.6.1/node_modules/source-map", + }, + Object { + "deps": Object { + "spdx-expression-parse": 705, + "spdx-license-ids": 706, + }, + "name": "spdx-correct", + "root": "/common/temp/build-tests/node_modules/.pnpm/spdx-correct@3.2.0/node_modules/spdx-correct", + }, + Object { + "deps": Object {}, + "name": "spdx-exceptions", + "root": "/common/temp/build-tests/node_modules/.pnpm/spdx-exceptions@2.5.0/node_modules/spdx-exceptions", + }, + Object { + "deps": Object { + "spdx-exceptions": 704, + "spdx-license-ids": 706, + }, + "name": "spdx-expression-parse", + "root": "/common/temp/build-tests/node_modules/.pnpm/spdx-expression-parse@3.0.1/node_modules/spdx-expression-parse", + }, + Object { + "deps": Object {}, + "name": "spdx-license-ids", + "root": "/common/temp/build-tests/node_modules/.pnpm/spdx-license-ids@3.0.17/node_modules/spdx-license-ids", + }, + Object { + "deps": Object {}, + "name": "sprintf-js", + "root": "/common/temp/build-tests/node_modules/.pnpm/sprintf-js@1.0.3/node_modules/sprintf-js", + }, + Object { + "deps": Object { + "minipass": 557, + }, + "name": "ssri", + "root": "/common/temp/build-tests/node_modules/.pnpm/ssri@8.0.1/node_modules/ssri", + }, + Object { + "deps": Object { + "escape-string-regexp": 298, + }, + "name": "stack-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/stack-utils@2.0.6/node_modules/stack-utils", + }, + Object { + "deps": Object {}, + "name": "stackframe", + "root": "/common/temp/build-tests/node_modules/.pnpm/stackframe@1.3.4/node_modules/stackframe", + }, + Object { + "deps": Object {}, + "name": "strict-uri-encode", + "root": "/common/temp/build-tests/node_modules/.pnpm/strict-uri-encode@2.0.0/node_modules/strict-uri-encode", + }, + Object { + "deps": Object {}, + "name": "string-argv", + "root": "/common/temp/build-tests/node_modules/.pnpm/string-argv@0.3.2/node_modules/string-argv", + }, + Object { + "deps": Object { + "char-regex": 216, + "strip-ansi": 722, + }, + "name": "string-length", + "root": "/common/temp/build-tests/node_modules/.pnpm/string-length@4.0.2/node_modules/string-length", + }, + Object { + "deps": Object { + "emoji-regex": 282, + "is-fullwidth-code-point": 426, + "strip-ansi": 722, + }, + "name": "string-width", + "root": "/common/temp/build-tests/node_modules/.pnpm/string-width@4.2.3/node_modules/string-width", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-errors": 289, + "es-object-atoms": 291, + "get-intrinsic": 350, + "gopd": 371, + "has-symbols": 382, + "internal-slot": 412, + "regexp.prototype.flags": 658, + "set-function-name": 692, + "side-channel": 696, + }, + "name": "string.prototype.matchall", + "root": "/common/temp/build-tests/node_modules/.pnpm/string.prototype.matchall@4.0.11/node_modules/string.prototype.matchall", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-abstract": 287, + "es-object-atoms": 291, + }, + "name": "string.prototype.trim", + "root": "/common/temp/build-tests/node_modules/.pnpm/string.prototype.trim@1.2.9/node_modules/string.prototype.trim", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-object-atoms": 291, + }, + "name": "string.prototype.trimend", + "root": "/common/temp/build-tests/node_modules/.pnpm/string.prototype.trimend@1.0.8/node_modules/string.prototype.trimend", + }, + Object { + "deps": Object { + "call-bind": 206, + "define-properties": 265, + "es-object-atoms": 291, + }, + "name": "string.prototype.trimstart", + "root": "/common/temp/build-tests/node_modules/.pnpm/string.prototype.trimstart@1.0.8/node_modules/string.prototype.trimstart", + }, + Object { + "deps": Object { + "safe-buffer": 681, + }, + "name": "string_decoder", + "root": "/common/temp/build-tests/node_modules/.pnpm/string_decoder@1.1.1/node_modules/string_decoder", + }, + Object { + "deps": Object { + "safe-buffer": 682, + }, + "name": "string_decoder", + "root": "/common/temp/build-tests/node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder", + }, + Object { + "deps": Object { + "ansi-regex": 162, + }, + "name": "strip-ansi", + "root": "/common/temp/build-tests/node_modules/.pnpm/strip-ansi@5.2.0/node_modules/strip-ansi", + }, + Object { + "deps": Object { + "ansi-regex": 163, + }, + "name": "strip-ansi", + "root": "/common/temp/build-tests/node_modules/.pnpm/strip-ansi@6.0.1/node_modules/strip-ansi", + }, + Object { + "deps": Object {}, + "name": "strip-bom", + "root": "/common/temp/build-tests/node_modules/.pnpm/strip-bom@3.0.0/node_modules/strip-bom", + }, + Object { + "deps": Object {}, + "name": "strip-bom", + "root": "/common/temp/build-tests/node_modules/.pnpm/strip-bom@4.0.0/node_modules/strip-bom", + }, + Object { + "deps": Object {}, + "name": "strip-final-newline", + "root": "/common/temp/build-tests/node_modules/.pnpm/strip-final-newline@2.0.0/node_modules/strip-final-newline", + }, + Object { + "deps": Object { + "min-indent": 549, + }, + "name": "strip-indent", + "root": "/common/temp/build-tests/node_modules/.pnpm/strip-indent@3.0.0/node_modules/strip-indent", + }, + Object { + "deps": Object {}, + "name": "strip-json-comments", + "root": "/common/temp/build-tests/node_modules/.pnpm/strip-json-comments@2.0.1/node_modules/strip-json-comments", + }, + Object { + "deps": Object {}, + "name": "strip-json-comments", + "root": "/common/temp/build-tests/node_modules/.pnpm/strip-json-comments@3.1.1/node_modules/strip-json-comments", + }, + Object { + "deps": Object { + "has-flag": 378, + }, + "name": "supports-color", + "root": "/common/temp/build-tests/node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color", + }, + Object { + "deps": Object { + "has-flag": 379, + }, + "name": "supports-color", + "root": "/common/temp/build-tests/node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color", + }, + Object { + "deps": Object { + "has-flag": 379, + }, + "name": "supports-color", + "root": "/common/temp/build-tests/node_modules/.pnpm/supports-color@8.1.1/node_modules/supports-color", + }, + Object { + "deps": Object {}, + "name": "supports-preserve-symlinks-flag", + "root": "/common/temp/build-tests/node_modules/.pnpm/supports-preserve-symlinks-flag@1.0.0/node_modules/supports-preserve-symlinks-flag", + }, + Object { + "deps": Object {}, + "name": "tapable", + "root": "/common/temp/build-tests/node_modules/.pnpm/tapable@1.1.3/node_modules/tapable", + }, + Object { + "deps": Object {}, + "name": "tapable", + "root": "/common/temp/build-tests/node_modules/.pnpm/tapable@2.2.1/node_modules/tapable", + }, + Object { + "deps": Object { + "chownr": 218, + "fs-minipass": 343, + "minipass": 558, + "minizlib": 559, + "mkdirp": 561, + "yallist": 807, + }, + "name": "tar", + "root": "/common/temp/build-tests/node_modules/.pnpm/tar@6.2.1/node_modules/tar", + }, + Object { + "deps": Object { + "@istanbuljs/schema": 48, + "glob": 361, + "minimatch": 551, + }, + "name": "test-exclude", + "root": "/common/temp/build-tests/node_modules/.pnpm/test-exclude@6.0.0/node_modules/test-exclude", + }, + Object { + "deps": Object {}, + "name": "text-table", + "root": "/common/temp/build-tests/node_modules/.pnpm/text-table@0.2.0/node_modules/text-table", + }, + Object { + "deps": Object { + "thenify": 739, + }, + "name": "thenify-all", + "root": "/common/temp/build-tests/node_modules/.pnpm/thenify-all@1.6.0/node_modules/thenify-all", + }, + Object { + "deps": Object { + "any-promise": 167, + }, + "name": "thenify", + "root": "/common/temp/build-tests/node_modules/.pnpm/thenify@3.3.1/node_modules/thenify", + }, + Object { + "deps": Object {}, + "name": "throat", + "root": "/common/temp/build-tests/node_modules/.pnpm/throat@6.0.2/node_modules/throat", + }, + Object { + "deps": Object {}, + "name": "through", + "root": "/common/temp/build-tests/node_modules/.pnpm/through@2.3.8/node_modules/through", + }, + Object { + "deps": Object { + "os-tmpdir": 597, + }, + "name": "tmp", + "root": "/common/temp/build-tests/node_modules/.pnpm/tmp@0.0.33/node_modules/tmp", + }, + Object { + "deps": Object {}, + "name": "tmpl", + "root": "/common/temp/build-tests/node_modules/.pnpm/tmpl@1.0.5/node_modules/tmpl", + }, + Object { + "deps": Object {}, + "name": "to-fast-properties", + "root": "/common/temp/build-tests/node_modules/.pnpm/to-fast-properties@2.0.0/node_modules/to-fast-properties", + }, + Object { + "deps": Object { + "is-number": 436, + }, + "name": "to-regex-range", + "root": "/common/temp/build-tests/node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range", + }, + Object { + "deps": Object {}, + "name": "tr46", + "root": "/common/temp/build-tests/node_modules/.pnpm/tr46@0.0.3/node_modules/tr46", + }, + Object { + "deps": Object {}, + "name": "trim-newlines", + "root": "/common/temp/build-tests/node_modules/.pnpm/trim-newlines@3.0.1/node_modules/trim-newlines", + }, + Object { + "deps": Object {}, + "name": "true-case-path", + "root": "/common/temp/build-tests/node_modules/.pnpm/true-case-path@2.2.1/node_modules/true-case-path", + }, + Object { + "deps": Object { + "typescript": 769, + }, + "name": "ts-api-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/ts-api-utils@1.3.0_typescript@4.9.5/node_modules/ts-api-utils", + }, + Object { + "deps": Object { + "typescript": 771, + }, + "name": "ts-api-utils", + "root": "/common/temp/build-tests/node_modules/.pnpm/ts-api-utils@1.3.0_typescript@5.4.5/node_modules/ts-api-utils", + }, + Object { + "deps": Object { + "@types/json5": 107, + "json5": 507, + "minimist": 556, + "strip-bom": 723, + }, + "name": "tsconfig-paths", + "root": "/common/temp/build-tests/node_modules/.pnpm/tsconfig-paths@3.15.0/node_modules/tsconfig-paths", + }, + Object { + "deps": Object {}, + "name": "tslib", + "root": "/common/temp/build-tests/node_modules/.pnpm/tslib@1.14.1/node_modules/tslib", + }, + Object { + "deps": Object {}, + "name": "tslib", + "root": "/common/temp/build-tests/node_modules/.pnpm/tslib@2.6.2/node_modules/tslib", + }, + Object { + "deps": Object { + "@babel/code-frame": 1, + "builtin-modules": 201, + "chalk": 214, + "commander": 239, + "diff": 275, + "glob": 361, + "js-yaml": 498, + "minimatch": 551, + "mkdirp": 560, + "resolve": 670, + "semver": 687, + "tslib": 752, + "tsutils": 755, + "typescript": 769, + }, + "name": "tslint", + "root": "/common/temp/build-tests/node_modules/.pnpm/tslint@5.20.1_typescript@4.9.5/node_modules/tslint", + }, + Object { + "deps": Object { + "tslib": 752, + "typescript": 769, + }, + "name": "tsutils", + "root": "/common/temp/build-tests/node_modules/.pnpm/tsutils@2.29.0_typescript@4.9.5/node_modules/tsutils", + }, + Object { + "deps": Object { + "tslib": 752, + "typescript": 771, + }, + "name": "tsutils", + "root": "/common/temp/build-tests/node_modules/.pnpm/tsutils@3.21.0_typescript@5.4.5/node_modules/tsutils", + }, + Object { + "deps": Object { + "prelude-ls": 631, + }, + "name": "type-check", + "root": "/common/temp/build-tests/node_modules/.pnpm/type-check@0.4.0/node_modules/type-check", + }, + Object { + "deps": Object {}, + "name": "type-detect", + "root": "/common/temp/build-tests/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/build-tests/node_modules/.pnpm/type-fest@0.18.1/node_modules/type-fest", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/build-tests/node_modules/.pnpm/type-fest@0.20.2/node_modules/type-fest", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/build-tests/node_modules/.pnpm/type-fest@0.21.3/node_modules/type-fest", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/build-tests/node_modules/.pnpm/type-fest@0.6.0/node_modules/type-fest", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/build-tests/node_modules/.pnpm/type-fest@0.8.1/node_modules/type-fest", + }, + Object { + "deps": Object { + "call-bind": 206, + "es-errors": 289, + "is-typed-array": 448, + }, + "name": "typed-array-buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/typed-array-buffer@1.0.2/node_modules/typed-array-buffer", + }, + Object { + "deps": Object { + "call-bind": 206, + "for-each": 340, + "gopd": 371, + "has-proto": 381, + "is-typed-array": 448, + }, + "name": "typed-array-byte-length", + "root": "/common/temp/build-tests/node_modules/.pnpm/typed-array-byte-length@1.0.1/node_modules/typed-array-byte-length", + }, + Object { + "deps": Object { + "available-typed-arrays": 183, + "call-bind": 206, + "for-each": 340, + "gopd": 371, + "has-proto": 381, + "is-typed-array": 448, + }, + "name": "typed-array-byte-offset", + "root": "/common/temp/build-tests/node_modules/.pnpm/typed-array-byte-offset@1.0.2/node_modules/typed-array-byte-offset", + }, + Object { + "deps": Object { + "call-bind": 206, + "for-each": 340, + "gopd": 371, + "has-proto": 381, + "is-typed-array": 448, + "possible-typed-array-names": 628, + }, + "name": "typed-array-length", + "root": "/common/temp/build-tests/node_modules/.pnpm/typed-array-length@1.0.6/node_modules/typed-array-length", + }, + Object { + "deps": Object { + "is-typedarray": 449, + }, + "name": "typedarray-to-buffer", + "root": "/common/temp/build-tests/node_modules/.pnpm/typedarray-to-buffer@3.1.5/node_modules/typedarray-to-buffer", + }, + Object { + "deps": Object {}, + "name": "typescript", + "root": "/common/temp/build-tests/node_modules/.pnpm/typescript@4.9.5/node_modules/typescript", + }, + Object { + "deps": Object {}, + "name": "typescript", + "root": "/common/temp/build-tests/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript", + }, + Object { + "deps": Object {}, + "name": "typescript", + "root": "/common/temp/build-tests/node_modules/.pnpm/typescript@5.4.5/node_modules/typescript", + }, + Object { + "deps": Object { + "call-bind": 206, + "has-bigints": 377, + "has-symbols": 382, + "which-boxed-primitive": 788, + }, + "name": "unbox-primitive", + "root": "/common/temp/build-tests/node_modules/.pnpm/unbox-primitive@1.0.2/node_modules/unbox-primitive", + }, + Object { + "deps": Object { + "crypto-random-string": 247, + }, + "name": "unique-string", + "root": "/common/temp/build-tests/node_modules/.pnpm/unique-string@2.0.0/node_modules/unique-string", + }, + Object { + "deps": Object {}, + "name": "universalify", + "root": "/common/temp/build-tests/node_modules/.pnpm/universalify@0.1.2/node_modules/universalify", + }, + Object { + "deps": Object { + "browserslist": 197, + "escalade": 295, + "picocolors": 618, + }, + "name": "update-browserslist-db", + "root": "/common/temp/build-tests/node_modules/.pnpm/update-browserslist-db@1.0.16_browserslist@4.23.0/node_modules/update-browserslist-db", + }, + Object { + "deps": Object { + "boxen": 193, + "chalk": 215, + "configstore": 242, + "has-yarn": 384, + "import-lazy": 403, + "is-ci": 419, + "is-installed-globally": 430, + "is-npm": 434, + "is-yarn-global": 455, + "latest-version": 515, + "pupa": 637, + "semver": 689, + "semver-diff": 686, + "xdg-basedir": 802, + }, + "name": "update-notifier", + "root": "/common/temp/build-tests/node_modules/.pnpm/update-notifier@5.1.0/node_modules/update-notifier", + }, + Object { + "deps": Object { + "punycode": 636, + }, + "name": "uri-js", + "root": "/common/temp/build-tests/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js", + }, + Object { + "deps": Object {}, + "name": "util-deprecate", + "root": "/common/temp/build-tests/node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate", + }, + Object { + "deps": Object {}, + "name": "uuid", + "root": "/common/temp/build-tests/node_modules/.pnpm/uuid@8.3.2/node_modules/uuid", + }, + Object { + "deps": Object { + "@jridgewell/trace-mapping": 68, + "@types/istanbul-lib-coverage": 101, + "convert-source-map": 243, + }, + "name": "v8-to-istanbul", + "root": "/common/temp/build-tests/node_modules/.pnpm/v8-to-istanbul@9.2.0/node_modules/v8-to-istanbul", + }, + Object { + "deps": Object { + "spdx-correct": 703, + "spdx-expression-parse": 705, + }, + "name": "validate-npm-package-license", + "root": "/common/temp/build-tests/node_modules/.pnpm/validate-npm-package-license@3.0.4/node_modules/validate-npm-package-license", + }, + Object { + "deps": Object { + "builtins": 203, + }, + "name": "validate-npm-package-name", + "root": "/common/temp/build-tests/node_modules/.pnpm/validate-npm-package-name@3.0.0/node_modules/validate-npm-package-name", + }, + Object { + "deps": Object { + "makeerror": 534, + }, + "name": "walker", + "root": "/common/temp/build-tests/node_modules/.pnpm/walker@1.0.8/node_modules/walker", + }, + Object { + "deps": Object { + "glob-to-regexp": 360, + "graceful-fs": 373, + }, + "name": "watchpack", + "root": "/common/temp/build-tests/node_modules/.pnpm/watchpack@2.4.0/node_modules/watchpack", + }, + Object { + "deps": Object { + "defaults": 262, + }, + "name": "wcwidth", + "root": "/common/temp/build-tests/node_modules/.pnpm/wcwidth@1.0.1/node_modules/wcwidth", + }, + Object { + "deps": Object {}, + "name": "webidl-conversions", + "root": "/common/temp/build-tests/node_modules/.pnpm/webidl-conversions@3.0.1/node_modules/webidl-conversions", + }, + Object { + "deps": Object { + "tr46": 746, + "webidl-conversions": 786, + }, + "name": "whatwg-url", + "root": "/common/temp/build-tests/node_modules/.pnpm/whatwg-url@5.0.0/node_modules/whatwg-url", + }, + Object { + "deps": Object { + "is-bigint": 416, + "is-boolean-object": 417, + "is-number-object": 435, + "is-string": 445, + "is-symbol": 447, + }, + "name": "which-boxed-primitive", + "root": "/common/temp/build-tests/node_modules/.pnpm/which-boxed-primitive@1.0.2/node_modules/which-boxed-primitive", + }, + Object { + "deps": Object { + "function.prototype.name": 346, + "has-tostringtag": 383, + "is-async-function": 415, + "is-date-object": 422, + "is-finalizationregistry": 425, + "is-generator-function": 428, + "is-regex": 441, + "is-weakref": 452, + "isarray": 457, + "which-boxed-primitive": 788, + "which-collection": 790, + "which-typed-array": 792, + }, + "name": "which-builtin-type", + "root": "/common/temp/build-tests/node_modules/.pnpm/which-builtin-type@1.1.3/node_modules/which-builtin-type", + }, + Object { + "deps": Object { + "is-map": 432, + "is-set": 442, + "is-weakmap": 451, + "is-weakset": 453, + }, + "name": "which-collection", + "root": "/common/temp/build-tests/node_modules/.pnpm/which-collection@1.0.2/node_modules/which-collection", + }, + Object { + "deps": Object { + "load-yaml-file": 521, + "path-exists": 613, + }, + "name": "which-pm", + "root": "/common/temp/build-tests/node_modules/.pnpm/which-pm@2.0.0/node_modules/which-pm", + }, + Object { + "deps": Object { + "available-typed-arrays": 183, + "call-bind": 206, + "for-each": 340, + "gopd": 371, + "has-tostringtag": 383, + }, + "name": "which-typed-array", + "root": "/common/temp/build-tests/node_modules/.pnpm/which-typed-array@1.1.15/node_modules/which-typed-array", + }, + Object { + "deps": Object { + "isexe": 458, + }, + "name": "which", + "root": "/common/temp/build-tests/node_modules/.pnpm/which@1.3.1/node_modules/which", + }, + Object { + "deps": Object { + "isexe": 458, + }, + "name": "which", + "root": "/common/temp/build-tests/node_modules/.pnpm/which@2.0.2/node_modules/which", + }, + Object { + "deps": Object { + "string-width": 714, + }, + "name": "widest-line", + "root": "/common/temp/build-tests/node_modules/.pnpm/widest-line@3.1.0/node_modules/widest-line", + }, + Object { + "deps": Object {}, + "name": "word-wrap", + "root": "/common/temp/build-tests/node_modules/.pnpm/word-wrap@1.2.5/node_modules/word-wrap", + }, + Object { + "deps": Object { + "ansi-styles": 165, + "string-width": 714, + "strip-ansi": 722, + }, + "name": "wrap-ansi", + "root": "/common/temp/build-tests/node_modules/.pnpm/wrap-ansi@7.0.0/node_modules/wrap-ansi", + }, + Object { + "deps": Object {}, + "name": "wrappy", + "root": "/common/temp/build-tests/node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy", + }, + Object { + "deps": Object { + "imurmurhash": 405, + "is-typedarray": 449, + "signal-exit": 697, + "typedarray-to-buffer": 768, + }, + "name": "write-file-atomic", + "root": "/common/temp/build-tests/node_modules/.pnpm/write-file-atomic@3.0.3/node_modules/write-file-atomic", + }, + Object { + "deps": Object { + "imurmurhash": 405, + "signal-exit": 697, + }, + "name": "write-file-atomic", + "root": "/common/temp/build-tests/node_modules/.pnpm/write-file-atomic@4.0.2/node_modules/write-file-atomic", + }, + Object { + "deps": Object { + "js-yaml": 499, + "write-file-atomic": 799, + }, + "name": "write-yaml-file", + "root": "/common/temp/build-tests/node_modules/.pnpm/write-yaml-file@4.2.0/node_modules/write-yaml-file", + }, + Object { + "deps": Object {}, + "name": "xdg-basedir", + "root": "/common/temp/build-tests/node_modules/.pnpm/xdg-basedir@4.0.0/node_modules/xdg-basedir", + }, + Object { + "deps": Object {}, + "name": "xml", + "root": "/common/temp/build-tests/node_modules/.pnpm/xml@1.0.1/node_modules/xml", + }, + Object { + "deps": Object {}, + "name": "xtend", + "root": "/common/temp/build-tests/node_modules/.pnpm/xtend@4.0.2/node_modules/xtend", + }, + Object { + "deps": Object {}, + "name": "y18n", + "root": "/common/temp/build-tests/node_modules/.pnpm/y18n@5.0.8/node_modules/y18n", + }, + Object { + "deps": Object {}, + "name": "yallist", + "root": "/common/temp/build-tests/node_modules/.pnpm/yallist@3.1.1/node_modules/yallist", + }, + Object { + "deps": Object {}, + "name": "yallist", + "root": "/common/temp/build-tests/node_modules/.pnpm/yallist@4.0.0/node_modules/yallist", + }, + Object { + "deps": Object {}, + "name": "yaml", + "root": "/common/temp/build-tests/node_modules/.pnpm/yaml@1.10.2/node_modules/yaml", + }, + Object { + "deps": Object {}, + "name": "yaml", + "root": "/common/temp/build-tests/node_modules/.pnpm/yaml@2.4.1/node_modules/yaml", + }, + Object { + "deps": Object {}, + "name": "yargs-parser", + "root": "/common/temp/build-tests/node_modules/.pnpm/yargs-parser@20.2.9/node_modules/yargs-parser", + }, + Object { + "deps": Object { + "cliui": 227, + "escalade": 295, + "get-caller-file": 349, + "require-directory": 662, + "string-width": 714, + "y18n": 805, + "yargs-parser": 810, + }, + "name": "yargs", + "root": "/common/temp/build-tests/node_modules/.pnpm/yargs@16.2.0/node_modules/yargs", + }, + Object { + "deps": Object {}, + "name": "yocto-queue", + "root": "/common/temp/build-tests/node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue", + }, + Object { + "deps": Object { + "@microsoft/api-extractor-model": 829, + "@microsoft/tsdoc": 70, + "@microsoft/tsdoc-config": 69, + "@rushstack/node-core-library": 832, + "@rushstack/rig-package": 836, + "@rushstack/terminal": 840, + "@rushstack/ts-command-line": 842, + "lodash": 525, + "minimatch": 550, + "resolve": 670, + "semver": 689, + "source-map": 702, + "typescript": 770, + }, + "name": "@microsoft/api-extractor", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+apps+api-extractor_@types+node@18.17.15/node_modules/@microsoft/api-extractor", + }, + Object { + "deps": Object { + "@rushstack/heft-config-file": 830, + "@rushstack/node-core-library": 832, + "@rushstack/operation-graph": 833, + "@rushstack/rig-package": 836, + "@rushstack/terminal": 840, + "@rushstack/ts-command-line": 842, + "@types/tapable": 120, + "fast-glob": 326, + "git-repo-info": 355, + "ignore": 399, + "tapable": 733, + "true-case-path": 748, + "watchpack": 784, + }, + "name": "@rushstack/heft", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+apps+heft_@types+node@18.17.15/node_modules/@rushstack/heft", + }, + Object { + "deps": Object { + "@rushstack/eslint-patch": 817, + "@rushstack/eslint-plugin": 818, + "@rushstack/eslint-plugin-packlets": 820, + "@rushstack/eslint-plugin-security": 822, + "@typescript-eslint/eslint-plugin": 123, + "@typescript-eslint/parser": 125, + "@typescript-eslint/typescript-estree": 136, + "@typescript-eslint/utils": 139, + "eslint": 312, + "eslint-plugin-promise": 306, + "eslint-plugin-react": 308, + "eslint-plugin-tsdoc": 309, + "typescript": 769, + }, + "name": "@rushstack/eslint-config", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+eslint-config_eslint@8.57.0_typescript@4.9.5/node_modules/@rushstack/eslint-config", + }, + Object { + "deps": Object { + "@rushstack/eslint-patch": 817, + "@rushstack/eslint-plugin": 819, + "@rushstack/eslint-plugin-packlets": 821, + "@rushstack/eslint-plugin-security": 823, + "@typescript-eslint/eslint-plugin": 124, + "@typescript-eslint/parser": 126, + "@typescript-eslint/typescript-estree": 137, + "@typescript-eslint/utils": 140, + "eslint": 312, + "eslint-plugin-promise": 306, + "eslint-plugin-react": 308, + "eslint-plugin-tsdoc": 309, + "typescript": 771, + }, + "name": "@rushstack/eslint-config", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+eslint-config_eslint@8.57.0_typescript@5.4.5/node_modules/@rushstack/eslint-config", + }, + Object { + "deps": Object {}, + "name": "@rushstack/eslint-patch", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+eslint-patch/node_modules/@rushstack/eslint-patch", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 841, + "@typescript-eslint/utils": 139, + "eslint": 312, + }, + "name": "@rushstack/eslint-plugin", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+eslint-plugin_eslint@8.57.0_typescript@4.9.5/node_modules/@rushstack/eslint-plugin", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 841, + "@typescript-eslint/utils": 140, + "eslint": 312, + }, + "name": "@rushstack/eslint-plugin", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+eslint-plugin_eslint@8.57.0_typescript@5.4.5/node_modules/@rushstack/eslint-plugin", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 841, + "@typescript-eslint/utils": 139, + "eslint": 312, + }, + "name": "@rushstack/eslint-plugin-packlets", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+eslint-plugin-packlets_eslint@8.57.0_typescript@4.9.5/node_modules/@rushstack/eslint-plugin-packlets", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 841, + "@typescript-eslint/utils": 140, + "eslint": 312, + }, + "name": "@rushstack/eslint-plugin-packlets", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+eslint-plugin-packlets_eslint@8.57.0_typescript@5.4.5/node_modules/@rushstack/eslint-plugin-packlets", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 841, + "@typescript-eslint/utils": 139, + "eslint": 312, + }, + "name": "@rushstack/eslint-plugin-security", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+eslint-plugin-security_eslint@8.57.0_typescript@4.9.5/node_modules/@rushstack/eslint-plugin-security", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 841, + "@typescript-eslint/utils": 140, + "eslint": 312, + }, + "name": "@rushstack/eslint-plugin-security", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+eslint-plugin-security_eslint@8.57.0_typescript@5.4.5/node_modules/@rushstack/eslint-plugin-security", + }, + Object { + "deps": Object { + "@rushstack/eslint-config": 816, + "@rushstack/eslint-patch": 817, + "@typescript-eslint/parser": 126, + "eslint-plugin-deprecation": 302, + "eslint-plugin-header": 303, + "eslint-plugin-import": 304, + "eslint-plugin-jsdoc": 305, + "eslint-plugin-react-hooks": 307, + }, + "name": "local-eslint-config", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+eslint+local-eslint-config_eslint@8.57.0_typescript@5.4.5/node_modules/local-eslint-config", + }, + Object { + "deps": Object { + "@rushstack/heft": 814, + "@rushstack/heft-config-file": 830, + "@rushstack/node-core-library": 832, + "semver": 689, + }, + "name": "@rushstack/heft-api-extractor-plugin", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+heft-plugins+heft-api-extractor-plugin_@rushstack+heft@0.67.0_@types+node@18.17.15/node_modules/@rushstack/heft-api-extractor-plugin", + }, + Object { + "deps": Object { + "@jest/core": 50, + "@jest/reporters": 56, + "@jest/transform": 61, + "@rushstack/heft": 814, + "@rushstack/heft-config-file": 830, + "@rushstack/node-core-library": 832, + "@rushstack/terminal": 840, + "jest-config": 467, + "jest-environment-node": 471, + "jest-resolve": 484, + "jest-snapshot": 488, + "lodash": 525, + }, + "name": "@rushstack/heft-jest-plugin", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+heft-plugins+heft-jest-plugin_@rushstack+heft@0.67.0_@types+node@18.17.15_jest-environment-node@29.5.0/node_modules/@rushstack/heft-jest-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 814, + "@rushstack/node-core-library": 832, + "semver": 689, + }, + "name": "@rushstack/heft-lint-plugin", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+heft-plugins+heft-lint-plugin_@rushstack+heft@0.67.0_@types+node@18.17.15/node_modules/@rushstack/heft-lint-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 814, + "@rushstack/heft-config-file": 830, + "@rushstack/node-core-library": 832, + "@types/tapable": 120, + "semver": 689, + "tapable": 733, + }, + "name": "@rushstack/heft-typescript-plugin", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+heft-plugins+heft-typescript-plugin_@rushstack+heft@0.67.0_@types+node@18.17.15/node_modules/@rushstack/heft-typescript-plugin", + }, + Object { + "deps": Object { + "@microsoft/tsdoc": 70, + "@microsoft/tsdoc-config": 69, + "@rushstack/node-core-library": 832, + }, + "name": "@microsoft/api-extractor-model", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+api-extractor-model_@types+node@18.17.15/node_modules/@microsoft/api-extractor-model", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 832, + "@rushstack/rig-package": 836, + "@rushstack/terminal": 840, + "jsonpath-plus": 510, + }, + "name": "@rushstack/heft-config-file", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+heft-config-file_@types+node@18.17.15/node_modules/@rushstack/heft-config-file", + }, + Object { + "deps": Object { + "@types/node": 113, + }, + "name": "@rushstack/lookup-by-path", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+lookup-by-path_@types+node@18.17.15/node_modules/@rushstack/lookup-by-path", + }, + Object { + "deps": Object { + "@types/node": 113, + "ajv": 159, + "ajv-draft-04": 155, + "ajv-formats": 156, + "fs-extra": 342, + "import-lazy": 404, + "jju": 494, + "resolve": 670, + "semver": 689, + }, + "name": "@rushstack/node-core-library", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+node-core-library_@types+node@18.17.15/node_modules/@rushstack/node-core-library", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 832, + "@rushstack/terminal": 840, + "@types/node": 113, + }, + "name": "@rushstack/operation-graph", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+operation-graph_@types+node@18.17.15/node_modules/@rushstack/operation-graph", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 832, + }, + "name": "@rushstack/package-deps-hash", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+package-deps-hash_@types+node@18.17.15/node_modules/@rushstack/package-deps-hash", + }, + Object { + "deps": Object { + "@pnpm/link-bins": 78, + "@rushstack/node-core-library": 832, + "@rushstack/terminal": 840, + "ignore": 399, + "jszip": 512, + "minimatch": 550, + "npm-packlist": 582, + "semver": 689, + }, + "name": "@rushstack/package-extractor", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+package-extractor_@types+node@18.17.15/node_modules/@rushstack/package-extractor", + }, + Object { + "deps": Object { + "resolve": 670, + "strip-json-comments": 728, + }, + "name": "@rushstack/rig-package", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+rig-package/node_modules/@rushstack/rig-package", + }, + Object { + "deps": Object { + "@pnpm/dependency-path": 76, + "@pnpm/link-bins": 78, + "@rushstack/heft-config-file": 830, + "@rushstack/lookup-by-path": 831, + "@rushstack/node-core-library": 832, + "@rushstack/package-deps-hash": 834, + "@rushstack/package-extractor": 835, + "@rushstack/rig-package": 836, + "@rushstack/stream-collator": 839, + "@rushstack/terminal": 840, + "@rushstack/ts-command-line": 842, + "@types/node-fetch": 112, + "@yarnpkg/lockfile": 150, + "builtin-modules": 202, + "cli-table": 225, + "dependency-path": 268, + "fast-glob": 326, + "figures": 331, + "git-repo-info": 355, + "glob-escape": 357, + "https-proxy-agent": 394, + "ignore": 399, + "inquirer": 411, + "js-yaml": 497, + "node-fetch": 571, + "npm-check": 579, + "npm-package-arg": 581, + "pnpm-sync-lib": 627, + "read-package-tree": 648, + "rxjs": 679, + "semver": 689, + "ssri": 708, + "strict-uri-encode": 711, + "tapable": 734, + "tar": 735, + "true-case-path": 748, + "uuid": 779, + }, + "name": "@microsoft/rush-lib", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+rush-lib_@types+node@18.17.15/node_modules/@microsoft/rush-lib", + }, + Object { + "deps": Object { + "@rushstack/lookup-by-path": 831, + "@rushstack/node-core-library": 832, + "@rushstack/terminal": 840, + "@types/node-fetch": 112, + "tapable": 734, + }, + "name": "@rushstack/rush-sdk", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+rush-sdk_@types+node@18.17.15/node_modules/@rushstack/rush-sdk", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 832, + "@rushstack/terminal": 840, + }, + "name": "@rushstack/stream-collator", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+stream-collator_@types+node@18.17.15/node_modules/@rushstack/stream-collator", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 832, + "@types/node": 113, + "supports-color": 731, + }, + "name": "@rushstack/terminal", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+terminal_@types+node@18.17.15/node_modules/@rushstack/terminal", + }, + Object { + "deps": Object {}, + "name": "@rushstack/tree-pattern", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+tree-pattern/node_modules/@rushstack/tree-pattern", + }, + Object { + "deps": Object { + "@rushstack/terminal": 840, + "@types/argparse": 92, + "argparse": 169, + "string-argv": 712, + }, + "name": "@rushstack/ts-command-line", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+libraries+ts-command-line_@types+node@18.17.15/node_modules/@rushstack/ts-command-line", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 813, + "@rushstack/eslint-config": 816, + "@rushstack/heft": 814, + "@rushstack/heft-api-extractor-plugin": 825, + "@rushstack/heft-jest-plugin": 826, + "@rushstack/heft-lint-plugin": 827, + "@rushstack/heft-typescript-plugin": 828, + "@types/heft-jest": 99, + "eslint": 312, + "jest-environment-node": 471, + "typescript": 771, + }, + "name": "@rushstack/heft-node-rig", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+rigs+heft-node-rig_@rushstack+heft@0.67.0_@types+node@18.17.15/node_modules/@rushstack/heft-node-rig", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 813, + "@rushstack/heft": 814, + "@rushstack/heft-node-rig": 843, + "@types/heft-jest": 99, + "@types/node": 113, + "eslint": 312, + "jest-junit": 475, + "local-eslint-config": 824, + "typescript": 771, + }, + "name": "local-node-rig", + "root": "/common/temp/build-tests/node_modules/.pnpm/file+..+..+..+rigs+local-node-rig/node_modules/local-node-rig", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 837, + "@rushstack/eslint-config": 816, + "@rushstack/heft": 814, + "@rushstack/terminal": 840, + "@types/node": 113, + "eslint": 312, + "local-node-rig": 844, + "typescript": 771, + }, + "name": "@local/build-tests-subspace+rush-lib-test", + "root": "/build-tests-subspace/rush-lib-test", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 837, + "@rushstack/eslint-config": 816, + "@rushstack/heft": 814, + "@rushstack/rush-sdk": 838, + "@types/node": 113, + "eslint": 312, + "local-node-rig": 844, + "typescript": 771, + }, + "name": "@local/build-tests-subspace+rush-sdk-test", + "root": "/build-tests-subspace/rush-sdk-test", + }, + Object { + "deps": Object { + "@rushstack/eslint-config": 816, + "@rushstack/heft": 814, + "eslint": 312, + "local-node-rig": 844, + "typescript": 771, + }, + "name": "@local/build-tests-subspace+typescript-newest-test", + "root": "/build-tests-subspace/typescript-newest-test", + }, + Object { + "deps": Object { + "@rushstack/eslint-config": 815, + "@rushstack/heft": 814, + "@rushstack/heft-lint-plugin": 827, + "@rushstack/heft-typescript-plugin": 828, + "eslint": 312, + "tslint": 754, + "typescript": 769, + }, + "name": "@local/build-tests-subspace+typescript-v4-test", + "root": "/build-tests-subspace/typescript-v4-test", + }, + ], +} +`; + +exports[`computeResolverCacheFromLockfileAsync matches snapshot behavior: default-subspace.yaml 1`] = ` +Object { + "contexts": Array [ + Object { + "deps": Object {}, + "name": "@aashutoshrathi/word-wrap", + "root": "/common/temp/default/node_modules/.pnpm/@aashutoshrathi+word-wrap@1.2.6/node_modules/@aashutoshrathi/word-wrap", + }, + Object { + "deps": Object { + "@jridgewell/gen-mapping": 350, + "@jridgewell/trace-mapping": 355, + }, + "name": "@ampproject/remapping", + "root": "/common/temp/default/node_modules/.pnpm/@ampproject+remapping@2.3.0/node_modules/@ampproject/remapping", + }, + Object { + "deps": Object {}, + "name": "@aws-cdk/asset-awscli-v1", + "root": "/common/temp/default/node_modules/.pnpm/@aws-cdk+asset-awscli-v1@2.2.202/node_modules/@aws-cdk/asset-awscli-v1", + }, + Object { + "deps": Object {}, + "name": "@aws-cdk/asset-kubectl-v20", + "root": "/common/temp/default/node_modules/.pnpm/@aws-cdk+asset-kubectl-v20@2.1.2/node_modules/@aws-cdk/asset-kubectl-v20", + }, + Object { + "deps": Object {}, + "name": "@aws-cdk/asset-node-proxy-agent-v5", + "root": "/common/temp/default/node_modules/.pnpm/@aws-cdk+asset-node-proxy-agent-v5@2.0.166/node_modules/@aws-cdk/asset-node-proxy-agent-v5", + }, + Object { + "deps": Object { + "aws-cdk-lib": 859, + "constructs": 1048, + }, + "name": "@aws-cdk/aws-apigatewayv2-alpha", + "root": "/common/temp/default/node_modules/.pnpm/@aws-cdk+aws-apigatewayv2-alpha@2.50.0-alpha.0_aws-cdk-lib@2.50.0_constructs@10.0.130/node_modules/@aws-cdk/aws-apigatewayv2-alpha", + }, + Object { + "deps": Object { + "@aws-cdk/aws-apigatewayv2-alpha": 5, + "aws-cdk-lib": 859, + "constructs": 1048, + }, + "name": "@aws-cdk/aws-apigatewayv2-authorizers-alpha", + "root": "/common/temp/default/node_modules/.pnpm/@aws-cdk+aws-apigatewayv2-authorizers-alpha@2.50.0-alpha.0_@aws-cdk+aws-apigatewayv2-alpha@2._2zjvdar6ml6w5rggykpucquwre/node_modules/@aws-cdk/aws-apigatewayv2-authorizers-alpha", + }, + Object { + "deps": Object { + "@aws-cdk/aws-apigatewayv2-alpha": 5, + "aws-cdk-lib": 859, + "constructs": 1048, + }, + "name": "@aws-cdk/aws-apigatewayv2-integrations-alpha", + "root": "/common/temp/default/node_modules/.pnpm/@aws-cdk+aws-apigatewayv2-integrations-alpha@2.50.0-alpha.0_@aws-cdk+aws-apigatewayv2-alpha@2_3hg7emzhhnzrnhew65j6d7q5ca/node_modules/@aws-cdk/aws-apigatewayv2-integrations-alpha", + }, + Object { + "deps": Object { + "aws-cdk-lib": 859, + "constructs": 1048, + }, + "name": "@aws-cdk/aws-appsync-alpha", + "root": "/common/temp/default/node_modules/.pnpm/@aws-cdk+aws-appsync-alpha@2.50.0-alpha.0_aws-cdk-lib@2.50.0_constructs@10.0.130/node_modules/@aws-cdk/aws-appsync-alpha", + }, + Object { + "deps": Object { + "tslib": 2424, + }, + "name": "@aws-crypto/ie11-detection", + "root": "/common/temp/default/node_modules/.pnpm/@aws-crypto+ie11-detection@3.0.0/node_modules/@aws-crypto/ie11-detection", + }, + Object { + "deps": Object { + "@aws-crypto/ie11-detection": 9, + "@aws-crypto/sha256-js": 11, + "@aws-crypto/supports-web-crypto": 12, + "@aws-crypto/util": 13, + "@aws-sdk/types": 32, + "@aws-sdk/util-locate-window": 34, + "@aws-sdk/util-utf8-browser": 37, + "tslib": 2424, + }, + "name": "@aws-crypto/sha256-browser", + "root": "/common/temp/default/node_modules/.pnpm/@aws-crypto+sha256-browser@3.0.0/node_modules/@aws-crypto/sha256-browser", + }, + Object { + "deps": Object { + "@aws-crypto/util": 13, + "@aws-sdk/types": 32, + "tslib": 2424, + }, + "name": "@aws-crypto/sha256-js", + "root": "/common/temp/default/node_modules/.pnpm/@aws-crypto+sha256-js@3.0.0/node_modules/@aws-crypto/sha256-js", + }, + Object { + "deps": Object { + "tslib": 2424, + }, + "name": "@aws-crypto/supports-web-crypto", + "root": "/common/temp/default/node_modules/.pnpm/@aws-crypto+supports-web-crypto@3.0.0/node_modules/@aws-crypto/supports-web-crypto", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@aws-sdk/util-utf8-browser": 37, + "tslib": 2424, + }, + "name": "@aws-crypto/util", + "root": "/common/temp/default/node_modules/.pnpm/@aws-crypto+util@3.0.0/node_modules/@aws-crypto/util", + }, + Object { + "deps": Object { + "@aws-crypto/sha256-browser": 10, + "@aws-crypto/sha256-js": 11, + "@aws-sdk/core": 18, + "@aws-sdk/credential-provider-node": 22, + "@aws-sdk/middleware-host-header": 26, + "@aws-sdk/middleware-logger": 27, + "@aws-sdk/middleware-recursion-detection": 28, + "@aws-sdk/middleware-user-agent": 29, + "@aws-sdk/region-config-resolver": 30, + "@aws-sdk/types": 32, + "@aws-sdk/util-endpoints": 33, + "@aws-sdk/util-user-agent-browser": 35, + "@aws-sdk/util-user-agent-node": 36, + "@smithy/config-resolver": 470, + "@smithy/core": 471, + "@smithy/fetch-http-handler": 473, + "@smithy/hash-node": 474, + "@smithy/invalid-dependency": 475, + "@smithy/middleware-content-length": 477, + "@smithy/middleware-endpoint": 478, + "@smithy/middleware-retry": 479, + "@smithy/middleware-serde": 480, + "@smithy/middleware-stack": 481, + "@smithy/node-config-provider": 482, + "@smithy/node-http-handler": 483, + "@smithy/protocol-http": 485, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "@smithy/url-parser": 493, + "@smithy/util-base64": 494, + "@smithy/util-body-length-browser": 495, + "@smithy/util-body-length-node": 496, + "@smithy/util-defaults-mode-browser": 499, + "@smithy/util-defaults-mode-node": 500, + "@smithy/util-endpoints": 501, + "@smithy/util-middleware": 503, + "@smithy/util-retry": 504, + "@smithy/util-utf8": 507, + "tslib": 2427, + }, + "name": "@aws-sdk/client-codebuild", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+client-codebuild@3.567.0_@aws-sdk+client-sso-oidc@3.567.0_@aws-sdk+client-sts@3.567.0/node_modules/@aws-sdk/client-codebuild", + }, + Object { + "deps": Object { + "@aws-crypto/sha256-browser": 10, + "@aws-crypto/sha256-js": 11, + "@aws-sdk/core": 18, + "@aws-sdk/credential-provider-node": 22, + "@aws-sdk/middleware-host-header": 26, + "@aws-sdk/middleware-logger": 27, + "@aws-sdk/middleware-recursion-detection": 28, + "@aws-sdk/middleware-user-agent": 29, + "@aws-sdk/region-config-resolver": 30, + "@aws-sdk/types": 32, + "@aws-sdk/util-endpoints": 33, + "@aws-sdk/util-user-agent-browser": 35, + "@aws-sdk/util-user-agent-node": 36, + "@smithy/config-resolver": 470, + "@smithy/core": 471, + "@smithy/fetch-http-handler": 473, + "@smithy/hash-node": 474, + "@smithy/invalid-dependency": 475, + "@smithy/middleware-content-length": 477, + "@smithy/middleware-endpoint": 478, + "@smithy/middleware-retry": 479, + "@smithy/middleware-serde": 480, + "@smithy/middleware-stack": 481, + "@smithy/node-config-provider": 482, + "@smithy/node-http-handler": 483, + "@smithy/protocol-http": 485, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "@smithy/url-parser": 493, + "@smithy/util-base64": 494, + "@smithy/util-body-length-browser": 495, + "@smithy/util-body-length-node": 496, + "@smithy/util-defaults-mode-browser": 499, + "@smithy/util-defaults-mode-node": 500, + "@smithy/util-endpoints": 501, + "@smithy/util-middleware": 503, + "@smithy/util-retry": 504, + "@smithy/util-utf8": 507, + "tslib": 2427, + }, + "name": "@aws-sdk/client-sso-oidc", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.567.0_@aws-sdk+client-sts@3.567.0/node_modules/@aws-sdk/client-sso-oidc", + }, + Object { + "deps": Object { + "@aws-crypto/sha256-browser": 10, + "@aws-crypto/sha256-js": 11, + "@aws-sdk/core": 18, + "@aws-sdk/middleware-host-header": 26, + "@aws-sdk/middleware-logger": 27, + "@aws-sdk/middleware-recursion-detection": 28, + "@aws-sdk/middleware-user-agent": 29, + "@aws-sdk/region-config-resolver": 30, + "@aws-sdk/types": 32, + "@aws-sdk/util-endpoints": 33, + "@aws-sdk/util-user-agent-browser": 35, + "@aws-sdk/util-user-agent-node": 36, + "@smithy/config-resolver": 470, + "@smithy/core": 471, + "@smithy/fetch-http-handler": 473, + "@smithy/hash-node": 474, + "@smithy/invalid-dependency": 475, + "@smithy/middleware-content-length": 477, + "@smithy/middleware-endpoint": 478, + "@smithy/middleware-retry": 479, + "@smithy/middleware-serde": 480, + "@smithy/middleware-stack": 481, + "@smithy/node-config-provider": 482, + "@smithy/node-http-handler": 483, + "@smithy/protocol-http": 485, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "@smithy/url-parser": 493, + "@smithy/util-base64": 494, + "@smithy/util-body-length-browser": 495, + "@smithy/util-body-length-node": 496, + "@smithy/util-defaults-mode-browser": 499, + "@smithy/util-defaults-mode-node": 500, + "@smithy/util-endpoints": 501, + "@smithy/util-middleware": 503, + "@smithy/util-retry": 504, + "@smithy/util-utf8": 507, + "tslib": 2427, + }, + "name": "@aws-sdk/client-sso", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+client-sso@3.567.0/node_modules/@aws-sdk/client-sso", + }, + Object { + "deps": Object { + "@aws-crypto/sha256-browser": 10, + "@aws-crypto/sha256-js": 11, + "@aws-sdk/core": 18, + "@aws-sdk/credential-provider-node": 22, + "@aws-sdk/middleware-host-header": 26, + "@aws-sdk/middleware-logger": 27, + "@aws-sdk/middleware-recursion-detection": 28, + "@aws-sdk/middleware-user-agent": 29, + "@aws-sdk/region-config-resolver": 30, + "@aws-sdk/types": 32, + "@aws-sdk/util-endpoints": 33, + "@aws-sdk/util-user-agent-browser": 35, + "@aws-sdk/util-user-agent-node": 36, + "@smithy/config-resolver": 470, + "@smithy/core": 471, + "@smithy/fetch-http-handler": 473, + "@smithy/hash-node": 474, + "@smithy/invalid-dependency": 475, + "@smithy/middleware-content-length": 477, + "@smithy/middleware-endpoint": 478, + "@smithy/middleware-retry": 479, + "@smithy/middleware-serde": 480, + "@smithy/middleware-stack": 481, + "@smithy/node-config-provider": 482, + "@smithy/node-http-handler": 483, + "@smithy/protocol-http": 485, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "@smithy/url-parser": 493, + "@smithy/util-base64": 494, + "@smithy/util-body-length-browser": 495, + "@smithy/util-body-length-node": 496, + "@smithy/util-defaults-mode-browser": 499, + "@smithy/util-defaults-mode-node": 500, + "@smithy/util-endpoints": 501, + "@smithy/util-middleware": 503, + "@smithy/util-retry": 504, + "@smithy/util-utf8": 507, + "tslib": 2427, + }, + "name": "@aws-sdk/client-sts", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+client-sts@3.567.0_@aws-sdk+client-sso-oidc@3.567.0/node_modules/@aws-sdk/client-sts", + }, + Object { + "deps": Object { + "@smithy/core": 471, + "@smithy/protocol-http": 485, + "@smithy/signature-v4": 490, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "fast-xml-parser": 1307, + "tslib": 2427, + }, + "name": "@aws-sdk/core", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+core@3.567.0/node_modules/@aws-sdk/core", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/property-provider": 484, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/credential-provider-env", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+credential-provider-env@3.567.0/node_modules/@aws-sdk/credential-provider-env", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/fetch-http-handler": 473, + "@smithy/node-http-handler": 483, + "@smithy/property-provider": 484, + "@smithy/protocol-http": 485, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "@smithy/util-stream": 505, + "tslib": 2427, + }, + "name": "@aws-sdk/credential-provider-http", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+credential-provider-http@3.567.0/node_modules/@aws-sdk/credential-provider-http", + }, + Object { + "deps": Object { + "@aws-sdk/client-sts": 17, + "@aws-sdk/credential-provider-env": 19, + "@aws-sdk/credential-provider-process": 23, + "@aws-sdk/credential-provider-sso": 24, + "@aws-sdk/credential-provider-web-identity": 25, + "@aws-sdk/types": 32, + "@smithy/credential-provider-imds": 472, + "@smithy/property-provider": 484, + "@smithy/shared-ini-file-loader": 489, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/credential-provider-ini", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.567.0_@aws-sdk+client-sso-oidc@3.567.0_@aws-sdk+client-sts@3.567.0/node_modules/@aws-sdk/credential-provider-ini", + }, + Object { + "deps": Object { + "@aws-sdk/credential-provider-env": 19, + "@aws-sdk/credential-provider-http": 20, + "@aws-sdk/credential-provider-ini": 21, + "@aws-sdk/credential-provider-process": 23, + "@aws-sdk/credential-provider-sso": 24, + "@aws-sdk/credential-provider-web-identity": 25, + "@aws-sdk/types": 32, + "@smithy/credential-provider-imds": 472, + "@smithy/property-provider": 484, + "@smithy/shared-ini-file-loader": 489, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/credential-provider-node", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+credential-provider-node@3.567.0_@aws-sdk+client-sso-oidc@3.567.0_@aws-sdk+client-sts@3.567.0/node_modules/@aws-sdk/credential-provider-node", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/property-provider": 484, + "@smithy/shared-ini-file-loader": 489, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/credential-provider-process", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+credential-provider-process@3.567.0/node_modules/@aws-sdk/credential-provider-process", + }, + Object { + "deps": Object { + "@aws-sdk/client-sso": 16, + "@aws-sdk/token-providers": 31, + "@aws-sdk/types": 32, + "@smithy/property-provider": 484, + "@smithy/shared-ini-file-loader": 489, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/credential-provider-sso", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.567.0_@aws-sdk+client-sso-oidc@3.567.0/node_modules/@aws-sdk/credential-provider-sso", + }, + Object { + "deps": Object { + "@aws-sdk/client-sts": 17, + "@aws-sdk/types": 32, + "@smithy/property-provider": 484, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/credential-provider-web-identity", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.567.0_@aws-sdk+client-sts@3.567.0/node_modules/@aws-sdk/credential-provider-web-identity", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/protocol-http": 485, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/middleware-host-header", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+middleware-host-header@3.567.0/node_modules/@aws-sdk/middleware-host-header", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/middleware-logger", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+middleware-logger@3.567.0/node_modules/@aws-sdk/middleware-logger", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/protocol-http": 485, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/middleware-recursion-detection", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+middleware-recursion-detection@3.567.0/node_modules/@aws-sdk/middleware-recursion-detection", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@aws-sdk/util-endpoints": 33, + "@smithy/protocol-http": 485, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/middleware-user-agent", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+middleware-user-agent@3.567.0/node_modules/@aws-sdk/middleware-user-agent", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/node-config-provider": 482, + "@smithy/types": 492, + "@smithy/util-config-provider": 498, + "@smithy/util-middleware": 503, + "tslib": 2427, + }, + "name": "@aws-sdk/region-config-resolver", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+region-config-resolver@3.567.0/node_modules/@aws-sdk/region-config-resolver", + }, + Object { + "deps": Object { + "@aws-sdk/client-sso-oidc": 15, + "@aws-sdk/types": 32, + "@smithy/property-provider": 484, + "@smithy/shared-ini-file-loader": 489, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/token-providers", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+token-providers@3.567.0_@aws-sdk+client-sso-oidc@3.567.0/node_modules/@aws-sdk/token-providers", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/types", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+types@3.567.0/node_modules/@aws-sdk/types", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/types": 492, + "@smithy/util-endpoints": 501, + "tslib": 2427, + }, + "name": "@aws-sdk/util-endpoints", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+util-endpoints@3.567.0/node_modules/@aws-sdk/util-endpoints", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@aws-sdk/util-locate-window", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+util-locate-window@3.567.0/node_modules/@aws-sdk/util-locate-window", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/types": 492, + "bowser": 907, + "tslib": 2427, + }, + "name": "@aws-sdk/util-user-agent-browser", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+util-user-agent-browser@3.567.0/node_modules/@aws-sdk/util-user-agent-browser", + }, + Object { + "deps": Object { + "@aws-sdk/types": 32, + "@smithy/node-config-provider": 482, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@aws-sdk/util-user-agent-node", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+util-user-agent-node@3.567.0/node_modules/@aws-sdk/util-user-agent-node", + }, + Object { + "deps": Object { + "tslib": 2425, + }, + "name": "@aws-sdk/util-utf8-browser", + "root": "/common/temp/default/node_modules/.pnpm/@aws-sdk+util-utf8-browser@3.259.0/node_modules/@aws-sdk/util-utf8-browser", + }, + Object { + "deps": Object { + "tslib": 2425, + }, + "name": "@azure/abort-controller", + "root": "/common/temp/default/node_modules/.pnpm/@azure+abort-controller@1.1.0/node_modules/@azure/abort-controller", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@azure/abort-controller", + "root": "/common/temp/default/node_modules/.pnpm/@azure+abort-controller@2.1.0/node_modules/@azure/abort-controller", + }, + Object { + "deps": Object { + "@azure/abort-controller": 39, + "@azure/core-util": 48, + "tslib": 2427, + }, + "name": "@azure/core-auth", + "root": "/common/temp/default/node_modules/.pnpm/@azure+core-auth@1.7.0/node_modules/@azure/core-auth", + }, + Object { + "deps": Object { + "@azure/abort-controller": 39, + "@azure/core-auth": 40, + "@azure/core-rest-pipeline": 45, + "@azure/core-tracing": 47, + "@azure/core-util": 48, + "@azure/logger": 50, + "tslib": 2427, + }, + "name": "@azure/core-client", + "root": "/common/temp/default/node_modules/.pnpm/@azure+core-client@1.9.0/node_modules/@azure/core-client", + }, + Object { + "deps": Object { + "@azure/abort-controller": 38, + "@azure/core-auth": 40, + "@azure/core-tracing": 46, + "@azure/core-util": 48, + "@azure/logger": 50, + "@types/node-fetch": 617, + "@types/tunnel": 662, + "form-data": 1352, + "node-fetch": 1871, + "process": 2053, + "tslib": 2425, + "tunnel": 2439, + "uuid": 2518, + "xml2js": 2599, + }, + "name": "@azure/core-http", + "root": "/common/temp/default/node_modules/.pnpm/@azure+core-http@3.0.4/node_modules/@azure/core-http", + }, + Object { + "deps": Object { + "@azure/abort-controller": 39, + "@azure/core-util": 48, + "@azure/logger": 50, + "tslib": 2427, + }, + "name": "@azure/core-lro", + "root": "/common/temp/default/node_modules/.pnpm/@azure+core-lro@2.7.0/node_modules/@azure/core-lro", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@azure/core-paging", + "root": "/common/temp/default/node_modules/.pnpm/@azure+core-paging@1.6.0/node_modules/@azure/core-paging", + }, + Object { + "deps": Object { + "@azure/abort-controller": 39, + "@azure/core-auth": 40, + "@azure/core-tracing": 47, + "@azure/core-util": 48, + "@azure/logger": 50, + "http-proxy-agent": 1481, + "https-proxy-agent": 1489, + "tslib": 2427, + }, + "name": "@azure/core-rest-pipeline", + "root": "/common/temp/default/node_modules/.pnpm/@azure+core-rest-pipeline@1.15.0/node_modules/@azure/core-rest-pipeline", + }, + Object { + "deps": Object { + "@opentelemetry/api": 375, + "tslib": 2425, + }, + "name": "@azure/core-tracing", + "root": "/common/temp/default/node_modules/.pnpm/@azure+core-tracing@1.0.0-preview.13/node_modules/@azure/core-tracing", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@azure/core-tracing", + "root": "/common/temp/default/node_modules/.pnpm/@azure+core-tracing@1.1.0/node_modules/@azure/core-tracing", + }, + Object { + "deps": Object { + "@azure/abort-controller": 39, + "tslib": 2427, + }, + "name": "@azure/core-util", + "root": "/common/temp/default/node_modules/.pnpm/@azure+core-util@1.8.0/node_modules/@azure/core-util", + }, + Object { + "deps": Object { + "@azure/abort-controller": 38, + "@azure/core-auth": 40, + "@azure/core-client": 41, + "@azure/core-rest-pipeline": 45, + "@azure/core-tracing": 47, + "@azure/core-util": 48, + "@azure/logger": 50, + "@azure/msal-browser": 51, + "@azure/msal-node": 53, + "events": 1280, + "jws": 1707, + "open": 1917, + "stoppable": 2317, + "tslib": 2425, + }, + "name": "@azure/identity", + "root": "/common/temp/default/node_modules/.pnpm/@azure+identity@4.2.1/node_modules/@azure/identity", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@azure/logger", + "root": "/common/temp/default/node_modules/.pnpm/@azure+logger@1.1.0/node_modules/@azure/logger", + }, + Object { + "deps": Object { + "@azure/msal-common": 52, + }, + "name": "@azure/msal-browser", + "root": "/common/temp/default/node_modules/.pnpm/@azure+msal-browser@3.17.0/node_modules/@azure/msal-browser", + }, + Object { + "deps": Object {}, + "name": "@azure/msal-common", + "root": "/common/temp/default/node_modules/.pnpm/@azure+msal-common@14.12.0/node_modules/@azure/msal-common", + }, + Object { + "deps": Object { + "@azure/msal-common": 52, + "jsonwebtoken": 1699, + "uuid": 2518, + }, + "name": "@azure/msal-node", + "root": "/common/temp/default/node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node", + }, + Object { + "deps": Object { + "@azure/abort-controller": 38, + "@azure/core-http": 42, + "@azure/core-lro": 43, + "@azure/core-paging": 44, + "@azure/core-tracing": 46, + "@azure/logger": 50, + "events": 1280, + "tslib": 2425, + }, + "name": "@azure/storage-blob", + "root": "/common/temp/default/node_modules/.pnpm/@azure+storage-blob@12.17.0/node_modules/@azure/storage-blob", + }, + Object { + "deps": Object { + "@babel/highlight": 91, + }, + "name": "@babel/code-frame", + "root": "/common/temp/default/node_modules/.pnpm/@babel+code-frame@7.12.11/node_modules/@babel/code-frame", + }, + Object { + "deps": Object { + "@babel/highlight": 91, + "chalk": 964, + }, + "name": "@babel/code-frame", + "root": "/common/temp/default/node_modules/.pnpm/@babel+code-frame@7.23.5/node_modules/@babel/code-frame", + }, + Object { + "deps": Object {}, + "name": "@babel/compat-data", + "root": "/common/temp/default/node_modules/.pnpm/@babel+compat-data@7.23.5/node_modules/@babel/compat-data", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "@babel/generator": 61, + "@babel/helper-module-transforms": 75, + "@babel/helpers": 90, + "@babel/parser": 92, + "@babel/template": 194, + "@babel/traverse": 195, + "@babel/types": 196, + "convert-source-map": 1051, + "debug": 1106, + "gensync": 1379, + "json5": 1694, + "lodash": 1760, + "resolve": 2182, + "semver": 2236, + "source-map": 2293, + }, + "name": "@babel/core", + "root": "/common/temp/default/node_modules/.pnpm/@babel+core@7.12.9/node_modules/@babel/core", + }, + Object { + "deps": Object { + "@ampproject/remapping": 1, + "@babel/code-frame": 56, + "@babel/generator": 61, + "@babel/helper-compilation-targets": 64, + "@babel/helper-module-transforms": 76, + "@babel/helpers": 90, + "@babel/parser": 92, + "@babel/template": 194, + "@babel/traverse": 195, + "@babel/types": 196, + "convert-source-map": 1051, + "debug": 1106, + "gensync": 1379, + "json5": 1694, + "semver": 2237, + }, + "name": "@babel/core", + "root": "/common/temp/default/node_modules/.pnpm/@babel+core@7.20.12_supports-color@8.1.1/node_modules/@babel/core", + }, + Object { + "deps": Object { + "@ampproject/remapping": 1, + "@babel/code-frame": 56, + "@babel/generator": 61, + "@babel/helper-compilation-targets": 64, + "@babel/helper-module-transforms": 77, + "@babel/helpers": 90, + "@babel/parser": 92, + "@babel/template": 194, + "@babel/traverse": 195, + "@babel/types": 196, + "convert-source-map": 1052, + "debug": 1106, + "gensync": 1379, + "json5": 1694, + "semver": 2237, + }, + "name": "@babel/core", + "root": "/common/temp/default/node_modules/.pnpm/@babel+core@7.24.0/node_modules/@babel/core", + }, + Object { + "deps": Object { + "@babel/types": 196, + "@jridgewell/gen-mapping": 350, + "@jridgewell/trace-mapping": 355, + "jsesc": 1684, + }, + "name": "@babel/generator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+generator@7.23.6/node_modules/@babel/generator", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@babel/helper-annotate-as-pure", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-annotate-as-pure@7.22.5/node_modules/@babel/helper-annotate-as-pure", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@babel/helper-builder-binary-assignment-operator-visitor", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-builder-binary-assignment-operator-visitor@7.22.15/node_modules/@babel/helper-builder-binary-assignment-operator-visitor", + }, + Object { + "deps": Object { + "@babel/compat-data": 57, + "@babel/helper-validator-option": 88, + "browserslist": 922, + "lru-cache": 1768, + "semver": 2237, + }, + "name": "@babel/helper-compilation-targets", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-compilation-targets@7.23.6/node_modules/@babel/helper-compilation-targets", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-annotate-as-pure": 62, + "@babel/helper-environment-visitor": 70, + "@babel/helper-function-name": 71, + "@babel/helper-member-expression-to-functions": 73, + "@babel/helper-optimise-call-expression": 78, + "@babel/helper-replace-supers": 82, + "@babel/helper-skip-transparent-expression-wrappers": 84, + "@babel/helper-split-export-declaration": 85, + "semver": 2237, + }, + "name": "@babel/helper-create-class-features-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-create-class-features-plugin@7.24.0_@babel+core@7.20.12/node_modules/@babel/helper-create-class-features-plugin", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-annotate-as-pure": 62, + "regexpu-core": 2149, + "semver": 2237, + }, + "name": "@babel/helper-create-regexp-features-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-create-regexp-features-plugin@7.22.15_@babel+core@7.20.12/node_modules/@babel/helper-create-regexp-features-plugin", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-compilation-targets": 64, + "@babel/helper-module-imports": 74, + "@babel/helper-plugin-utils": 80, + "@babel/traverse": 195, + "debug": 1106, + "lodash.debounce": 1742, + "resolve": 2182, + "semver": 2237, + }, + "name": "@babel/helper-define-polyfill-provider", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-define-polyfill-provider@0.1.5_@babel+core@7.20.12/node_modules/@babel/helper-define-polyfill-provider", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-compilation-targets": 64, + "@babel/helper-plugin-utils": 80, + "debug": 1106, + "lodash.debounce": 1742, + "resolve": 2182, + }, + "name": "@babel/helper-define-polyfill-provider", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-define-polyfill-provider@0.5.0_@babel+core@7.20.12/node_modules/@babel/helper-define-polyfill-provider", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-compilation-targets": 64, + "@babel/helper-plugin-utils": 80, + "debug": 1106, + "lodash.debounce": 1742, + "resolve": 2182, + }, + "name": "@babel/helper-define-polyfill-provider", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-define-polyfill-provider@0.6.1_@babel+core@7.20.12/node_modules/@babel/helper-define-polyfill-provider", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-environment-visitor", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-environment-visitor@7.22.20/node_modules/@babel/helper-environment-visitor", + }, + Object { + "deps": Object { + "@babel/template": 194, + "@babel/types": 196, + }, + "name": "@babel/helper-function-name", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-function-name@7.23.0/node_modules/@babel/helper-function-name", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@babel/helper-hoist-variables", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-hoist-variables@7.22.5/node_modules/@babel/helper-hoist-variables", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@babel/helper-member-expression-to-functions", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-member-expression-to-functions@7.23.0/node_modules/@babel/helper-member-expression-to-functions", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@babel/helper-module-imports", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-module-imports@7.22.15/node_modules/@babel/helper-module-imports", + }, + Object { + "deps": Object { + "@babel/core": 58, + "@babel/helper-environment-visitor": 70, + "@babel/helper-module-imports": 74, + "@babel/helper-simple-access": 83, + "@babel/helper-split-export-declaration": 85, + "@babel/helper-validator-identifier": 87, + }, + "name": "@babel/helper-module-transforms", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-module-transforms@7.23.3_@babel+core@7.12.9/node_modules/@babel/helper-module-transforms", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-environment-visitor": 70, + "@babel/helper-module-imports": 74, + "@babel/helper-simple-access": 83, + "@babel/helper-split-export-declaration": 85, + "@babel/helper-validator-identifier": 87, + }, + "name": "@babel/helper-module-transforms", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-module-transforms@7.23.3_@babel+core@7.20.12/node_modules/@babel/helper-module-transforms", + }, + Object { + "deps": Object { + "@babel/core": 60, + "@babel/helper-environment-visitor": 70, + "@babel/helper-module-imports": 74, + "@babel/helper-simple-access": 83, + "@babel/helper-split-export-declaration": 85, + "@babel/helper-validator-identifier": 87, + }, + "name": "@babel/helper-module-transforms", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-module-transforms@7.23.3_@babel+core@7.24.0/node_modules/@babel/helper-module-transforms", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@babel/helper-optimise-call-expression", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-optimise-call-expression@7.22.5/node_modules/@babel/helper-optimise-call-expression", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-plugin-utils", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-plugin-utils@7.10.4/node_modules/@babel/helper-plugin-utils", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-plugin-utils", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-plugin-utils@7.24.0/node_modules/@babel/helper-plugin-utils", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-annotate-as-pure": 62, + "@babel/helper-environment-visitor": 70, + "@babel/helper-wrap-function": 89, + }, + "name": "@babel/helper-remap-async-to-generator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-remap-async-to-generator@7.22.20_@babel+core@7.20.12/node_modules/@babel/helper-remap-async-to-generator", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-environment-visitor": 70, + "@babel/helper-member-expression-to-functions": 73, + "@babel/helper-optimise-call-expression": 78, + }, + "name": "@babel/helper-replace-supers", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-replace-supers@7.22.20_@babel+core@7.20.12/node_modules/@babel/helper-replace-supers", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@babel/helper-simple-access", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-simple-access@7.22.5/node_modules/@babel/helper-simple-access", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@babel/helper-skip-transparent-expression-wrappers", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-skip-transparent-expression-wrappers@7.22.5/node_modules/@babel/helper-skip-transparent-expression-wrappers", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@babel/helper-split-export-declaration", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-split-export-declaration@7.22.6/node_modules/@babel/helper-split-export-declaration", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-string-parser", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-string-parser@7.23.4/node_modules/@babel/helper-string-parser", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-validator-identifier", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-validator-identifier@7.22.20/node_modules/@babel/helper-validator-identifier", + }, + Object { + "deps": Object {}, + "name": "@babel/helper-validator-option", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-validator-option@7.23.5/node_modules/@babel/helper-validator-option", + }, + Object { + "deps": Object { + "@babel/helper-function-name": 71, + "@babel/template": 194, + "@babel/types": 196, + }, + "name": "@babel/helper-wrap-function", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helper-wrap-function@7.22.20/node_modules/@babel/helper-wrap-function", + }, + Object { + "deps": Object { + "@babel/template": 194, + "@babel/traverse": 195, + "@babel/types": 196, + }, + "name": "@babel/helpers", + "root": "/common/temp/default/node_modules/.pnpm/@babel+helpers@7.24.0_supports-color@8.1.1/node_modules/@babel/helpers", + }, + Object { + "deps": Object { + "@babel/helper-validator-identifier": 87, + "chalk": 964, + "js-tokens": 1675, + }, + "name": "@babel/highlight", + "root": "/common/temp/default/node_modules/.pnpm/@babel+highlight@7.23.4/node_modules/@babel/highlight", + }, + Object { + "deps": Object {}, + "name": "@babel/parser", + "root": "/common/temp/default/node_modules/.pnpm/@babel+parser@7.24.0/node_modules/@babel/parser", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/helper-skip-transparent-expression-wrappers": 84, + "@babel/plugin-transform-optional-chaining": 164, + }, + "name": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-environment-visitor": 70, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7_@babel+core@7.20.12/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-class-features-plugin": 65, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-proposal-class-properties", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-proposal-class-properties@7.18.6_@babel+core@7.20.12/node_modules/@babel/plugin-proposal-class-properties", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-class-features-plugin": 65, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-decorators": 109, + }, + "name": "@babel/plugin-proposal-decorators", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-proposal-decorators@7.24.0_@babel+core@7.20.12/node_modules/@babel/plugin-proposal-decorators", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-export-default-from": 111, + }, + "name": "@babel/plugin-proposal-export-default-from", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-proposal-export-default-from@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-proposal-export-default-from", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-nullish-coalescing-operator": 121, + }, + "name": "@babel/plugin-proposal-nullish-coalescing-operator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-proposal-nullish-coalescing-operator@7.18.6_@babel+core@7.20.12/node_modules/@babel/plugin-proposal-nullish-coalescing-operator", + }, + Object { + "deps": Object { + "@babel/core": 58, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-object-rest-spread": 123, + "@babel/plugin-transform-parameters": 165, + }, + "name": "@babel/plugin-proposal-object-rest-spread", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-proposal-object-rest-spread@7.12.1_@babel+core@7.12.9/node_modules/@babel/plugin-proposal-object-rest-spread", + }, + Object { + "deps": Object { + "@babel/compat-data": 57, + "@babel/core": 59, + "@babel/helper-compilation-targets": 64, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-object-rest-spread": 124, + "@babel/plugin-transform-parameters": 166, + }, + "name": "@babel/plugin-proposal-object-rest-spread", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-proposal-object-rest-spread@7.20.7_@babel+core@7.20.12/node_modules/@babel/plugin-proposal-object-rest-spread", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/helper-skip-transparent-expression-wrappers": 84, + "@babel/plugin-syntax-optional-chaining": 126, + }, + "name": "@babel/plugin-proposal-optional-chaining", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-proposal-optional-chaining@7.21.0_@babel+core@7.20.12/node_modules/@babel/plugin-proposal-optional-chaining", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-class-features-plugin": 65, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-proposal-private-methods", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-proposal-private-methods@7.18.6_@babel+core@7.20.12/node_modules/@babel/plugin-proposal-private-methods", + }, + Object { + "deps": Object { + "@babel/core": 59, + }, + "name": "@babel/plugin-proposal-private-property-in-object", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2_@babel+core@7.20.12/node_modules/@babel/plugin-proposal-private-property-in-object", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-async-generators", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-async-generators@7.8.4_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-async-generators", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-bigint", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-bigint@7.8.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-bigint", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-class-properties", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-class-properties@7.12.13_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-class-properties", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-class-static-block", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-class-static-block@7.14.5_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-class-static-block", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-decorators", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-decorators@7.24.0_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-decorators", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-dynamic-import", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-dynamic-import@7.8.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-dynamic-import", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-export-default-from", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-export-default-from@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-export-default-from", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-export-namespace-from", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-export-namespace-from@7.8.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-export-namespace-from", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-flow", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-flow@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-flow", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-import-assertions", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-import-assertions@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-import-assertions", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-import-attributes", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-import-attributes@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-import-attributes", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-import-meta", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-import-meta@7.10.4_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-import-meta", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-json-strings", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-json-strings@7.8.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-json-strings", + }, + Object { + "deps": Object { + "@babel/core": 58, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-jsx", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-jsx@7.12.1_@babel+core@7.12.9/node_modules/@babel/plugin-syntax-jsx", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-jsx", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-jsx@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-jsx", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-logical-assignment-operators", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-logical-assignment-operators@7.10.4_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-logical-assignment-operators", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-nullish-coalescing-operator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-nullish-coalescing-operator@7.8.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-nullish-coalescing-operator", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-numeric-separator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-numeric-separator@7.10.4_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-numeric-separator", + }, + Object { + "deps": Object { + "@babel/core": 58, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-object-rest-spread", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-object-rest-spread@7.8.3_@babel+core@7.12.9/node_modules/@babel/plugin-syntax-object-rest-spread", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-object-rest-spread", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-object-rest-spread@7.8.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-object-rest-spread", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-optional-catch-binding", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-optional-catch-binding@7.8.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-optional-catch-binding", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-optional-chaining", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-optional-chaining@7.8.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-optional-chaining", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-private-property-in-object", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-private-property-in-object@7.14.5_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-private-property-in-object", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-top-level-await", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-top-level-await@7.14.5_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-top-level-await", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-typescript", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-typescript@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-typescript", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-regexp-features-plugin": 66, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-syntax-unicode-sets-regex", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-syntax-unicode-sets-regex@7.18.6_@babel+core@7.20.12/node_modules/@babel/plugin-syntax-unicode-sets-regex", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-arrow-functions", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-arrow-functions@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-arrow-functions", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-environment-visitor": 70, + "@babel/helper-plugin-utils": 80, + "@babel/helper-remap-async-to-generator": 81, + "@babel/plugin-syntax-async-generators": 105, + }, + "name": "@babel/plugin-transform-async-generator-functions", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-async-generator-functions@7.23.9_@babel+core@7.20.12/node_modules/@babel/plugin-transform-async-generator-functions", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-module-imports": 74, + "@babel/helper-plugin-utils": 80, + "@babel/helper-remap-async-to-generator": 81, + }, + "name": "@babel/plugin-transform-async-to-generator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-async-to-generator@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-async-to-generator", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-block-scoped-functions", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-block-scoped-functions@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-block-scoped-functions", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-block-scoping", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-block-scoping@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-block-scoping", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-class-features-plugin": 65, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-class-properties", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-class-properties@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-class-properties", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-class-features-plugin": 65, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-class-static-block": 108, + }, + "name": "@babel/plugin-transform-class-static-block", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-class-static-block@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-class-static-block", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-annotate-as-pure": 62, + "@babel/helper-compilation-targets": 64, + "@babel/helper-environment-visitor": 70, + "@babel/helper-function-name": 71, + "@babel/helper-plugin-utils": 80, + "@babel/helper-replace-supers": 82, + "@babel/helper-split-export-declaration": 85, + "globals": 1409, + }, + "name": "@babel/plugin-transform-classes", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-classes@7.23.8_@babel+core@7.20.12/node_modules/@babel/plugin-transform-classes", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/template": 194, + }, + "name": "@babel/plugin-transform-computed-properties", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-computed-properties@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-computed-properties", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-destructuring", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-destructuring@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-destructuring", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-regexp-features-plugin": 66, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-dotall-regex", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-dotall-regex@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-dotall-regex", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-duplicate-keys", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-duplicate-keys@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-duplicate-keys", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-dynamic-import": 110, + }, + "name": "@babel/plugin-transform-dynamic-import", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-dynamic-import@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-dynamic-import", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-builder-binary-assignment-operator-visitor": 63, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-exponentiation-operator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-exponentiation-operator@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-exponentiation-operator", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-export-namespace-from": 112, + }, + "name": "@babel/plugin-transform-export-namespace-from", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-export-namespace-from@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-export-namespace-from", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-flow": 113, + }, + "name": "@babel/plugin-transform-flow-strip-types", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-flow-strip-types@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-flow-strip-types", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/helper-skip-transparent-expression-wrappers": 84, + }, + "name": "@babel/plugin-transform-for-of", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-for-of@7.23.6_@babel+core@7.20.12/node_modules/@babel/plugin-transform-for-of", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-compilation-targets": 64, + "@babel/helper-function-name": 71, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-function-name", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-function-name@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-function-name", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-json-strings": 117, + }, + "name": "@babel/plugin-transform-json-strings", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-json-strings@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-json-strings", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-literals", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-literals@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-literals", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-logical-assignment-operators": 120, + }, + "name": "@babel/plugin-transform-logical-assignment-operators", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-logical-assignment-operators@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-logical-assignment-operators", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-member-expression-literals", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-member-expression-literals@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-member-expression-literals", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-module-transforms": 76, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-modules-amd", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-modules-amd@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-modules-amd", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-module-transforms": 76, + "@babel/helper-plugin-utils": 80, + "@babel/helper-simple-access": 83, + }, + "name": "@babel/plugin-transform-modules-commonjs", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-modules-commonjs@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-modules-commonjs", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-hoist-variables": 72, + "@babel/helper-module-transforms": 76, + "@babel/helper-plugin-utils": 80, + "@babel/helper-validator-identifier": 87, + }, + "name": "@babel/plugin-transform-modules-systemjs", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-modules-systemjs@7.23.9_@babel+core@7.20.12/node_modules/@babel/plugin-transform-modules-systemjs", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-module-transforms": 76, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-modules-umd", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-modules-umd@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-modules-umd", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-regexp-features-plugin": 66, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-named-capturing-groups-regex", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-named-capturing-groups-regex@7.22.5_@babel+core@7.20.12/node_modules/@babel/plugin-transform-named-capturing-groups-regex", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-new-target", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-new-target@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-new-target", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-nullish-coalescing-operator": 121, + }, + "name": "@babel/plugin-transform-nullish-coalescing-operator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-nullish-coalescing-operator@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-nullish-coalescing-operator", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-numeric-separator": 122, + }, + "name": "@babel/plugin-transform-numeric-separator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-numeric-separator@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-numeric-separator", + }, + Object { + "deps": Object { + "@babel/compat-data": 57, + "@babel/core": 59, + "@babel/helper-compilation-targets": 64, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-object-rest-spread": 124, + "@babel/plugin-transform-parameters": 166, + }, + "name": "@babel/plugin-transform-object-rest-spread", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-object-rest-spread@7.24.0_@babel+core@7.20.12/node_modules/@babel/plugin-transform-object-rest-spread", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/helper-replace-supers": 82, + }, + "name": "@babel/plugin-transform-object-super", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-object-super@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-object-super", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-optional-catch-binding": 125, + }, + "name": "@babel/plugin-transform-optional-catch-binding", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-optional-catch-binding@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-optional-catch-binding", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/helper-skip-transparent-expression-wrappers": 84, + "@babel/plugin-syntax-optional-chaining": 126, + }, + "name": "@babel/plugin-transform-optional-chaining", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-optional-chaining@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-optional-chaining", + }, + Object { + "deps": Object { + "@babel/core": 58, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-parameters", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-parameters@7.23.3_@babel+core@7.12.9/node_modules/@babel/plugin-transform-parameters", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-parameters", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-parameters@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-parameters", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-class-features-plugin": 65, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-private-methods", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-private-methods@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-private-methods", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-annotate-as-pure": 62, + "@babel/helper-create-class-features-plugin": 65, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-private-property-in-object": 127, + }, + "name": "@babel/plugin-transform-private-property-in-object", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-private-property-in-object@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-private-property-in-object", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-property-literals", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-property-literals@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-property-literals", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-react-display-name", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-react-display-name@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-react-display-name", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/plugin-transform-react-jsx": 172, + }, + "name": "@babel/plugin-transform-react-jsx-development", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-react-jsx-development@7.22.5_@babel+core@7.20.12/node_modules/@babel/plugin-transform-react-jsx-development", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-annotate-as-pure": 62, + "@babel/helper-module-imports": 74, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-jsx": 119, + "@babel/types": 196, + }, + "name": "@babel/plugin-transform-react-jsx", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-react-jsx@7.23.4_@babel+core@7.20.12/node_modules/@babel/plugin-transform-react-jsx", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-annotate-as-pure": 62, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-react-pure-annotations", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-react-pure-annotations@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-react-pure-annotations", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "regenerator-transform": 2145, + }, + "name": "@babel/plugin-transform-regenerator", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-regenerator@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-regenerator", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-reserved-words", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-reserved-words@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-reserved-words", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-shorthand-properties", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-shorthand-properties@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-shorthand-properties", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/helper-skip-transparent-expression-wrappers": 84, + }, + "name": "@babel/plugin-transform-spread", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-spread@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-spread", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-sticky-regex", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-sticky-regex@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-sticky-regex", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-template-literals", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-template-literals@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-template-literals", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-typeof-symbol", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-typeof-symbol@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-typeof-symbol", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-annotate-as-pure": 62, + "@babel/helper-create-class-features-plugin": 65, + "@babel/helper-plugin-utils": 80, + "@babel/plugin-syntax-typescript": 129, + }, + "name": "@babel/plugin-transform-typescript", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-typescript@7.23.6_@babel+core@7.20.12/node_modules/@babel/plugin-transform-typescript", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-unicode-escapes", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-unicode-escapes@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-unicode-escapes", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-regexp-features-plugin": 66, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-unicode-property-regex", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-unicode-property-regex@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-unicode-property-regex", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-regexp-features-plugin": 66, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-unicode-regex", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-unicode-regex@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-unicode-regex", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-create-regexp-features-plugin": 66, + "@babel/helper-plugin-utils": 80, + }, + "name": "@babel/plugin-transform-unicode-sets-regex", + "root": "/common/temp/default/node_modules/.pnpm/@babel+plugin-transform-unicode-sets-regex@7.23.3_@babel+core@7.20.12/node_modules/@babel/plugin-transform-unicode-sets-regex", + }, + Object { + "deps": Object { + "@babel/compat-data": 57, + "@babel/core": 59, + "@babel/helper-compilation-targets": 64, + "@babel/helper-plugin-utils": 80, + "@babel/helper-validator-option": 88, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 93, + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 94, + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 95, + "@babel/plugin-proposal-private-property-in-object": 104, + "@babel/plugin-syntax-async-generators": 105, + "@babel/plugin-syntax-class-properties": 107, + "@babel/plugin-syntax-class-static-block": 108, + "@babel/plugin-syntax-dynamic-import": 110, + "@babel/plugin-syntax-export-namespace-from": 112, + "@babel/plugin-syntax-import-assertions": 114, + "@babel/plugin-syntax-import-attributes": 115, + "@babel/plugin-syntax-import-meta": 116, + "@babel/plugin-syntax-json-strings": 117, + "@babel/plugin-syntax-logical-assignment-operators": 120, + "@babel/plugin-syntax-nullish-coalescing-operator": 121, + "@babel/plugin-syntax-numeric-separator": 122, + "@babel/plugin-syntax-object-rest-spread": 124, + "@babel/plugin-syntax-optional-catch-binding": 125, + "@babel/plugin-syntax-optional-chaining": 126, + "@babel/plugin-syntax-private-property-in-object": 127, + "@babel/plugin-syntax-top-level-await": 128, + "@babel/plugin-syntax-unicode-sets-regex": 130, + "@babel/plugin-transform-arrow-functions": 131, + "@babel/plugin-transform-async-generator-functions": 132, + "@babel/plugin-transform-async-to-generator": 133, + "@babel/plugin-transform-block-scoped-functions": 134, + "@babel/plugin-transform-block-scoping": 135, + "@babel/plugin-transform-class-properties": 136, + "@babel/plugin-transform-class-static-block": 137, + "@babel/plugin-transform-classes": 138, + "@babel/plugin-transform-computed-properties": 139, + "@babel/plugin-transform-destructuring": 140, + "@babel/plugin-transform-dotall-regex": 141, + "@babel/plugin-transform-duplicate-keys": 142, + "@babel/plugin-transform-dynamic-import": 143, + "@babel/plugin-transform-exponentiation-operator": 144, + "@babel/plugin-transform-export-namespace-from": 145, + "@babel/plugin-transform-for-of": 147, + "@babel/plugin-transform-function-name": 148, + "@babel/plugin-transform-json-strings": 149, + "@babel/plugin-transform-literals": 150, + "@babel/plugin-transform-logical-assignment-operators": 151, + "@babel/plugin-transform-member-expression-literals": 152, + "@babel/plugin-transform-modules-amd": 153, + "@babel/plugin-transform-modules-commonjs": 154, + "@babel/plugin-transform-modules-systemjs": 155, + "@babel/plugin-transform-modules-umd": 156, + "@babel/plugin-transform-named-capturing-groups-regex": 157, + "@babel/plugin-transform-new-target": 158, + "@babel/plugin-transform-nullish-coalescing-operator": 159, + "@babel/plugin-transform-numeric-separator": 160, + "@babel/plugin-transform-object-rest-spread": 161, + "@babel/plugin-transform-object-super": 162, + "@babel/plugin-transform-optional-catch-binding": 163, + "@babel/plugin-transform-optional-chaining": 164, + "@babel/plugin-transform-parameters": 166, + "@babel/plugin-transform-private-methods": 167, + "@babel/plugin-transform-private-property-in-object": 168, + "@babel/plugin-transform-property-literals": 169, + "@babel/plugin-transform-regenerator": 174, + "@babel/plugin-transform-reserved-words": 175, + "@babel/plugin-transform-shorthand-properties": 176, + "@babel/plugin-transform-spread": 177, + "@babel/plugin-transform-sticky-regex": 178, + "@babel/plugin-transform-template-literals": 179, + "@babel/plugin-transform-typeof-symbol": 180, + "@babel/plugin-transform-unicode-escapes": 182, + "@babel/plugin-transform-unicode-property-regex": 183, + "@babel/plugin-transform-unicode-regex": 184, + "@babel/plugin-transform-unicode-sets-regex": 185, + "@babel/preset-modules": 188, + "babel-plugin-polyfill-corejs2": 876, + "babel-plugin-polyfill-corejs3": 878, + "babel-plugin-polyfill-regenerator": 879, + "core-js-compat": 1059, + "semver": 2237, + }, + "name": "@babel/preset-env", + "root": "/common/temp/default/node_modules/.pnpm/@babel+preset-env@7.24.0_@babel+core@7.20.12/node_modules/@babel/preset-env", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/helper-validator-option": 88, + "@babel/plugin-transform-flow-strip-types": 146, + }, + "name": "@babel/preset-flow", + "root": "/common/temp/default/node_modules/.pnpm/@babel+preset-flow@7.24.0_@babel+core@7.20.12/node_modules/@babel/preset-flow", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/types": 196, + "esutils": 1276, + }, + "name": "@babel/preset-modules", + "root": "/common/temp/default/node_modules/.pnpm/@babel+preset-modules@0.1.6-no-external-plugins_@babel+core@7.20.12/node_modules/@babel/preset-modules", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/helper-validator-option": 88, + "@babel/plugin-transform-react-display-name": 170, + "@babel/plugin-transform-react-jsx": 172, + "@babel/plugin-transform-react-jsx-development": 171, + "@babel/plugin-transform-react-pure-annotations": 173, + }, + "name": "@babel/preset-react", + "root": "/common/temp/default/node_modules/.pnpm/@babel+preset-react@7.23.3_@babel+core@7.20.12/node_modules/@babel/preset-react", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-plugin-utils": 80, + "@babel/helper-validator-option": 88, + "@babel/plugin-syntax-jsx": 119, + "@babel/plugin-transform-modules-commonjs": 154, + "@babel/plugin-transform-typescript": 181, + }, + "name": "@babel/preset-typescript", + "root": "/common/temp/default/node_modules/.pnpm/@babel+preset-typescript@7.23.3_@babel+core@7.20.12/node_modules/@babel/preset-typescript", + }, + Object { + "deps": Object { + "@babel/core": 59, + "clone-deep": 1001, + "find-cache-dir": 1327, + "make-dir": 1771, + "pirates": 1984, + "source-map-support": 2291, + }, + "name": "@babel/register", + "root": "/common/temp/default/node_modules/.pnpm/@babel+register@7.23.7_@babel+core@7.20.12/node_modules/@babel/register", + }, + Object { + "deps": Object {}, + "name": "@babel/regjsgen", + "root": "/common/temp/default/node_modules/.pnpm/@babel+regjsgen@0.8.0/node_modules/@babel/regjsgen", + }, + Object { + "deps": Object { + "regenerator-runtime": 2144, + }, + "name": "@babel/runtime", + "root": "/common/temp/default/node_modules/.pnpm/@babel+runtime@7.24.0/node_modules/@babel/runtime", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "@babel/parser": 92, + "@babel/types": 196, + }, + "name": "@babel/template", + "root": "/common/temp/default/node_modules/.pnpm/@babel+template@7.24.0/node_modules/@babel/template", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "@babel/generator": 61, + "@babel/helper-environment-visitor": 70, + "@babel/helper-function-name": 71, + "@babel/helper-hoist-variables": 72, + "@babel/helper-split-export-declaration": 85, + "@babel/parser": 92, + "@babel/types": 196, + "debug": 1106, + "globals": 1409, + }, + "name": "@babel/traverse", + "root": "/common/temp/default/node_modules/.pnpm/@babel+traverse@7.24.0_supports-color@8.1.1/node_modules/@babel/traverse", + }, + Object { + "deps": Object { + "@babel/helper-string-parser": 86, + "@babel/helper-validator-identifier": 87, + "to-fast-properties": 2401, + }, + "name": "@babel/types", + "root": "/common/temp/default/node_modules/.pnpm/@babel+types@7.24.0/node_modules/@babel/types", + }, + Object { + "deps": Object {}, + "name": "@balena/dockerignore", + "root": "/common/temp/default/node_modules/.pnpm/@balena+dockerignore@1.0.2/node_modules/@balena/dockerignore", + }, + Object { + "deps": Object {}, + "name": "@base2/pretty-print-object", + "root": "/common/temp/default/node_modules/.pnpm/@base2+pretty-print-object@1.0.1/node_modules/@base2/pretty-print-object", + }, + Object { + "deps": Object {}, + "name": "@bcoe/v8-coverage", + "root": "/common/temp/default/node_modules/.pnpm/@bcoe+v8-coverage@0.2.3/node_modules/@bcoe/v8-coverage", + }, + Object { + "deps": Object {}, + "name": "@bufbuild/protobuf", + "root": "/common/temp/default/node_modules/.pnpm/@bufbuild+protobuf@1.8.0/node_modules/@bufbuild/protobuf", + }, + Object { + "deps": Object { + "exec-sh": 1282, + "minimist": 1829, + }, + "name": "@cnakazawa/watch", + "root": "/common/temp/default/node_modules/.pnpm/@cnakazawa+watch@1.0.4/node_modules/@cnakazawa/watch", + }, + Object { + "deps": Object {}, + "name": "@colors/colors", + "root": "/common/temp/default/node_modules/.pnpm/@colors+colors@1.5.0/node_modules/@colors/colors", + }, + Object { + "deps": Object { + "stackframe": 2311, + }, + "name": "@devexpress/error-stack-parser", + "root": "/common/temp/default/node_modules/.pnpm/@devexpress+error-stack-parser@2.0.6/node_modules/@devexpress/error-stack-parser", + }, + Object { + "deps": Object {}, + "name": "@discoveryjs/json-ext", + "root": "/common/temp/default/node_modules/.pnpm/@discoveryjs+json-ext@0.5.7/node_modules/@discoveryjs/json-ext", + }, + Object { + "deps": Object { + "@emotion/sheet": 215, + "@emotion/stylis": 218, + "@emotion/utils": 221, + "@emotion/weak-memoize": 223, + }, + "name": "@emotion/cache", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+cache@10.0.29/node_modules/@emotion/cache", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@emotion/cache": 205, + "@emotion/css": 207, + "@emotion/serialize": 213, + "@emotion/sheet": 215, + "@emotion/utils": 221, + "@types/react": 641, + "react": 2119, + }, + "name": "@emotion/core", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+core@10.3.1_@types+react@17.0.74_react@17.0.2/node_modules/@emotion/core", + }, + Object { + "deps": Object { + "@emotion/serialize": 213, + "@emotion/utils": 221, + "babel-plugin-emotion": 869, + }, + "name": "@emotion/css", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+css@10.0.27/node_modules/@emotion/css", + }, + Object { + "deps": Object {}, + "name": "@emotion/hash", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+hash@0.8.0/node_modules/@emotion/hash", + }, + Object { + "deps": Object {}, + "name": "@emotion/hash", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+hash@0.9.1/node_modules/@emotion/hash", + }, + Object { + "deps": Object { + "@emotion/memoize": 211, + }, + "name": "@emotion/is-prop-valid", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+is-prop-valid@0.8.8/node_modules/@emotion/is-prop-valid", + }, + Object { + "deps": Object {}, + "name": "@emotion/memoize", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+memoize@0.7.4/node_modules/@emotion/memoize", + }, + Object { + "deps": Object {}, + "name": "@emotion/memoize", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+memoize@0.8.1/node_modules/@emotion/memoize", + }, + Object { + "deps": Object { + "@emotion/hash": 208, + "@emotion/memoize": 211, + "@emotion/unitless": 219, + "@emotion/utils": 221, + "csstype": 1095, + }, + "name": "@emotion/serialize", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+serialize@0.11.16/node_modules/@emotion/serialize", + }, + Object { + "deps": Object { + "@emotion/hash": 209, + "@emotion/memoize": 212, + "@emotion/unitless": 220, + "@emotion/utils": 222, + "csstype": 1096, + }, + "name": "@emotion/serialize", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+serialize@1.1.3/node_modules/@emotion/serialize", + }, + Object { + "deps": Object {}, + "name": "@emotion/sheet", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+sheet@0.9.4/node_modules/@emotion/sheet", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@emotion/core": 206, + "@emotion/is-prop-valid": 210, + "@emotion/serialize": 213, + "@emotion/utils": 221, + "@types/react": 641, + "react": 2119, + }, + "name": "@emotion/styled-base", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+styled-base@10.3.0_@emotion+core@10.3.1_@types+react@17.0.74_react@17.0.2/node_modules/@emotion/styled-base", + }, + Object { + "deps": Object { + "@emotion/core": 206, + "@emotion/styled-base": 216, + "@types/react": 641, + "babel-plugin-emotion": 869, + "react": 2119, + }, + "name": "@emotion/styled", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+styled@10.3.0_@emotion+core@10.3.1_@types+react@17.0.74_react@17.0.2/node_modules/@emotion/styled", + }, + Object { + "deps": Object {}, + "name": "@emotion/stylis", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+stylis@0.8.5/node_modules/@emotion/stylis", + }, + Object { + "deps": Object {}, + "name": "@emotion/unitless", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+unitless@0.7.5/node_modules/@emotion/unitless", + }, + Object { + "deps": Object {}, + "name": "@emotion/unitless", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+unitless@0.8.1/node_modules/@emotion/unitless", + }, + Object { + "deps": Object {}, + "name": "@emotion/utils", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+utils@0.11.3/node_modules/@emotion/utils", + }, + Object { + "deps": Object {}, + "name": "@emotion/utils", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+utils@1.2.1/node_modules/@emotion/utils", + }, + Object { + "deps": Object {}, + "name": "@emotion/weak-memoize", + "root": "/common/temp/default/node_modules/.pnpm/@emotion+weak-memoize@0.2.5/node_modules/@emotion/weak-memoize", + }, + Object { + "deps": Object { + "comment-parser": 1032, + "esquery": 1270, + "jsdoc-type-pratt-parser": 1681, + }, + "name": "@es-joy/jsdoccomment", + "root": "/common/temp/default/node_modules/.pnpm/@es-joy+jsdoccomment@0.17.0/node_modules/@es-joy/jsdoccomment", + }, + Object { + "deps": Object {}, + "name": "@esbuild/linux-x64", + "root": "/common/temp/default/node_modules/.pnpm/@esbuild+linux-x64@0.20.2/node_modules/@esbuild/linux-x64", + }, + Object { + "deps": Object { + "eslint": 1260, + "eslint-visitor-keys": 1258, + }, + "name": "@eslint-community/eslint-utils", + "root": "/common/temp/default/node_modules/.pnpm/@eslint-community+eslint-utils@4.4.0_eslint@7.11.0/node_modules/@eslint-community/eslint-utils", + }, + Object { + "deps": Object { + "eslint": 1261, + "eslint-visitor-keys": 1258, + }, + "name": "@eslint-community/eslint-utils", + "root": "/common/temp/default/node_modules/.pnpm/@eslint-community+eslint-utils@4.4.0_eslint@7.30.0/node_modules/@eslint-community/eslint-utils", + }, + Object { + "deps": Object { + "eslint": 1262, + "eslint-visitor-keys": 1258, + }, + "name": "@eslint-community/eslint-utils", + "root": "/common/temp/default/node_modules/.pnpm/@eslint-community+eslint-utils@4.4.0_eslint@7.7.0/node_modules/@eslint-community/eslint-utils", + }, + Object { + "deps": Object { + "eslint": 1264, + "eslint-visitor-keys": 1258, + }, + "name": "@eslint-community/eslint-utils", + "root": "/common/temp/default/node_modules/.pnpm/@eslint-community+eslint-utils@4.4.0_eslint@8.57.0/node_modules/@eslint-community/eslint-utils", + }, + Object { + "deps": Object {}, + "name": "@eslint-community/regexpp", + "root": "/common/temp/default/node_modules/.pnpm/@eslint-community+regexpp@4.10.0/node_modules/@eslint-community/regexpp", + }, + Object { + "deps": Object { + "ajv": 786, + "debug": 1106, + "espree": 1267, + "globals": 1410, + "ignore": 1500, + "import-fresh": 1506, + "js-yaml": 1676, + "lodash": 1760, + "minimatch": 1821, + "strip-json-comments": 2351, + }, + "name": "@eslint/eslintrc", + "root": "/common/temp/default/node_modules/.pnpm/@eslint+eslintrc@0.1.3/node_modules/@eslint/eslintrc", + }, + Object { + "deps": Object { + "ajv": 786, + "debug": 1106, + "espree": 1267, + "globals": 1411, + "ignore": 1500, + "import-fresh": 1506, + "js-yaml": 1676, + "minimatch": 1821, + "strip-json-comments": 2351, + }, + "name": "@eslint/eslintrc", + "root": "/common/temp/default/node_modules/.pnpm/@eslint+eslintrc@0.4.3/node_modules/@eslint/eslintrc", + }, + Object { + "deps": Object { + "ajv": 786, + "debug": 1106, + "espree": 1268, + "globals": 1411, + "ignore": 1502, + "import-fresh": 1506, + "js-yaml": 1678, + "minimatch": 1822, + "strip-json-comments": 2351, + }, + "name": "@eslint/eslintrc", + "root": "/common/temp/default/node_modules/.pnpm/@eslint+eslintrc@1.4.1/node_modules/@eslint/eslintrc", + }, + Object { + "deps": Object { + "ajv": 786, + "debug": 1106, + "espree": 1268, + "globals": 1411, + "ignore": 1502, + "import-fresh": 1506, + "js-yaml": 1678, + "minimatch": 1822, + "strip-json-comments": 2351, + }, + "name": "@eslint/eslintrc", + "root": "/common/temp/default/node_modules/.pnpm/@eslint+eslintrc@2.1.4_supports-color@8.1.1/node_modules/@eslint/eslintrc", + }, + Object { + "deps": Object { + "ajv": 786, + "debug": 1106, + "espree": 1266, + "globals": 1412, + "ignore": 1502, + "import-fresh": 1506, + "js-yaml": 1678, + "minimatch": 1822, + "strip-json-comments": 2351, + }, + "name": "@eslint/eslintrc", + "root": "/common/temp/default/node_modules/.pnpm/@eslint+eslintrc@3.0.2/node_modules/@eslint/eslintrc", + }, + Object { + "deps": Object {}, + "name": "@eslint/js", + "root": "/common/temp/default/node_modules/.pnpm/@eslint+js@8.57.0/node_modules/@eslint/js", + }, + Object { + "deps": Object { + "ajv": 786, + }, + "name": "@fastify/ajv-compiler", + "root": "/common/temp/default/node_modules/.pnpm/@fastify+ajv-compiler@1.1.0/node_modules/@fastify/ajv-compiler", + }, + Object { + "deps": Object {}, + "name": "@fastify/forwarded", + "root": "/common/temp/default/node_modules/.pnpm/@fastify+forwarded@1.0.0/node_modules/@fastify/forwarded", + }, + Object { + "deps": Object { + "@fastify/forwarded": 238, + "ipaddr.js": 1531, + }, + "name": "@fastify/proxy-addr", + "root": "/common/temp/default/node_modules/.pnpm/@fastify+proxy-addr@3.0.0/node_modules/@fastify/proxy-addr", + }, + Object { + "deps": Object { + "@floating-ui/utils": 243, + }, + "name": "@floating-ui/core", + "root": "/common/temp/default/node_modules/.pnpm/@floating-ui+core@1.6.0/node_modules/@floating-ui/core", + }, + Object { + "deps": Object { + "@floating-ui/dom": 242, + }, + "name": "@floating-ui/devtools", + "root": "/common/temp/default/node_modules/.pnpm/@floating-ui+devtools@0.2.1_@floating-ui+dom@1.6.3/node_modules/@floating-ui/devtools", + }, + Object { + "deps": Object { + "@floating-ui/core": 240, + "@floating-ui/utils": 243, + }, + "name": "@floating-ui/dom", + "root": "/common/temp/default/node_modules/.pnpm/@floating-ui+dom@1.6.3/node_modules/@floating-ui/dom", + }, + Object { + "deps": Object {}, + "name": "@floating-ui/utils", + "root": "/common/temp/default/node_modules/.pnpm/@floating-ui+utils@0.2.1/node_modules/@floating-ui/utils", + }, + Object { + "deps": Object { + "@fluentui/set-version": 308, + "tslib": 2425, + }, + "name": "@fluentui/date-time-utilities", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+date-time-utilities@8.5.16/node_modules/@fluentui/date-time-utilities", + }, + Object { + "deps": Object { + "@fluentui/set-version": 308, + "tslib": 2425, + }, + "name": "@fluentui/dom-utilities", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+dom-utilities@2.2.14/node_modules/@fluentui/dom-utilities", + }, + Object { + "deps": Object { + "@fluentui/set-version": 308, + "@fluentui/style-utilities": 309, + "@fluentui/utilities": 312, + "tslib": 2425, + }, + "name": "@fluentui/font-icons-mdl2", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+font-icons-mdl2@8.5.33_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/font-icons-mdl2", + }, + Object { + "deps": Object { + "@fluentui/merge-styles": 250, + "@fluentui/set-version": 308, + "@fluentui/style-utilities": 309, + "@fluentui/utilities": 312, + "@types/react": 641, + "react": 2119, + "tslib": 2425, + }, + "name": "@fluentui/foundation-legacy", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+foundation-legacy@8.3.0_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/foundation-legacy", + }, + Object { + "deps": Object { + "tslib": 2425, + }, + "name": "@fluentui/keyboard-key", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+keyboard-key@0.4.14/node_modules/@fluentui/keyboard-key", + }, + Object { + "deps": Object { + "@swc/helpers": 550, + }, + "name": "@fluentui/keyboard-keys", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+keyboard-keys@9.0.7/node_modules/@fluentui/keyboard-keys", + }, + Object { + "deps": Object { + "@fluentui/set-version": 308, + "tslib": 2425, + }, + "name": "@fluentui/merge-styles", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+merge-styles@8.6.0/node_modules/@fluentui/merge-styles", + }, + Object { + "deps": Object { + "@swc/helpers": 550, + }, + "name": "@fluentui/priority-overflow", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+priority-overflow@9.1.11/node_modules/@fluentui/priority-overflow", + }, + Object { + "deps": Object { + "@fluentui/react-aria": 254, + "@fluentui/react-context-selector": 262, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-accordion", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-accordion@9.3.46_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0_3ny3g4kjxzahs6hhtn3wibkv6q/node_modules/@fluentui/react-accordion", + }, + Object { + "deps": Object { + "@fluentui/react-avatar": 255, + "@fluentui/react-button": 257, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 273, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 549, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-alert", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-alert@9.0.0-beta.63_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@1_mmbfibu2ulsox3tppd6lp5wbdm/node_modules/@fluentui/react-alert", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-utilities": 304, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-aria", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-aria@9.10.2_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-aria", + }, + Object { + "deps": Object { + "@fluentui/react-badge": 256, + "@fluentui/react-context-selector": 262, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-popover": 280, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-tooltip": 302, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-avatar", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-avatar@9.6.19_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2__h75vrb2iuccv4p2nlckeeute2y/node_modules/@fluentui/react-avatar", + }, + Object { + "deps": Object { + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-badge", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-badge@9.2.29_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-badge", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-aria": 254, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-button", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-button@9.3.73_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-button", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-card", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-card@9.0.72_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-card", + }, + Object { + "deps": Object { + "@fluentui/react-field": 266, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-label": 275, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-checkbox", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-checkbox@9.2.17_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0._6kdnysrlrg7gdc3chketcwjram/node_modules/@fluentui/react-checkbox", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-aria": 254, + "@fluentui/react-context-selector": 262, + "@fluentui/react-field": 266, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-portal": 282, + "@fluentui/react-positioning": 283, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-combobox", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-combobox@9.9.3_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_k7vu2hkzucfaym7g4rveom44pu/node_modules/@fluentui/react-combobox", + }, + Object { + "deps": Object { + "@fluentui/react-accordion": 252, + "@fluentui/react-alert": 253, + "@fluentui/react-avatar": 255, + "@fluentui/react-badge": 256, + "@fluentui/react-button": 257, + "@fluentui/react-card": 258, + "@fluentui/react-checkbox": 259, + "@fluentui/react-combobox": 260, + "@fluentui/react-dialog": 263, + "@fluentui/react-divider": 264, + "@fluentui/react-drawer": 265, + "@fluentui/react-field": 266, + "@fluentui/react-image": 270, + "@fluentui/react-infobutton": 271, + "@fluentui/react-input": 272, + "@fluentui/react-label": 275, + "@fluentui/react-link": 276, + "@fluentui/react-menu": 277, + "@fluentui/react-overflow": 278, + "@fluentui/react-persona": 279, + "@fluentui/react-popover": 280, + "@fluentui/react-portal": 282, + "@fluentui/react-positioning": 283, + "@fluentui/react-progress": 284, + "@fluentui/react-provider": 285, + "@fluentui/react-radio": 286, + "@fluentui/react-select": 287, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-skeleton": 289, + "@fluentui/react-slider": 290, + "@fluentui/react-spinbutton": 291, + "@fluentui/react-spinner": 292, + "@fluentui/react-switch": 293, + "@fluentui/react-table": 294, + "@fluentui/react-tabs": 295, + "@fluentui/react-tabster": 296, + "@fluentui/react-text": 297, + "@fluentui/react-textarea": 298, + "@fluentui/react-theme": 299, + "@fluentui/react-toast": 300, + "@fluentui/react-toolbar": 301, + "@fluentui/react-tooltip": 302, + "@fluentui/react-tree": 303, + "@fluentui/react-utilities": 304, + "@fluentui/react-virtualizer": 305, + "@griffel/react": 315, + "@swc/helpers": 549, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + "scheduler": 2223, + }, + "name": "@fluentui/react-components", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-components@9.27.4_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17._rrc4dsgm5xlhpm2l2xvbhfv7ia/node_modules/@fluentui/react-components", + }, + Object { + "deps": Object { + "@fluentui/react-utilities": 304, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + "scheduler": 2223, + }, + "name": "@fluentui/react-context-selector", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-context-selector@9.1.56_@types+react-dom@17.0.25_@types+react@17.0.74_react-d_wlqzfltfi3vnmsbcjghtdc44yy/node_modules/@fluentui/react-context-selector", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-aria": 254, + "@fluentui/react-context-selector": 262, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-portal": 282, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + "react-transition-group": 2118, + }, + "name": "@fluentui/react-dialog", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-dialog@9.9.15_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2__noytcrubbkx7t4ib2lltclb64m/node_modules/@fluentui/react-dialog", + }, + Object { + "deps": Object { + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-divider", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-divider@9.2.65_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-divider", + }, + Object { + "deps": Object { + "@fluentui/react-dialog": 263, + "@fluentui/react-jsx-runtime": 273, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 549, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-drawer", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-drawer@9.0.0-beta.12_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@_uvgv6vqgvzadd73d2xfo4yq2ie/node_modules/@fluentui/react-drawer", + }, + Object { + "deps": Object { + "@fluentui/react-context-selector": 262, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-label": 275, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-field", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-field@9.1.58_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_r_7tl65itnv6wduaxb7kvdbzmaf4/node_modules/@fluentui/react-field", + }, + Object { + "deps": Object { + "@fluentui/keyboard-key": 248, + "@fluentui/merge-styles": 250, + "@fluentui/set-version": 308, + "@fluentui/style-utilities": 309, + "@fluentui/utilities": 312, + "@types/react": 641, + "react": 2119, + "tslib": 2425, + }, + "name": "@fluentui/react-focus", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-focus@8.8.41_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/react-focus", + }, + Object { + "deps": Object { + "@fluentui/react-window-provider": 306, + "@fluentui/set-version": 308, + "@fluentui/utilities": 312, + "@types/react": 641, + "react": 2119, + "tslib": 2425, + }, + "name": "@fluentui/react-hooks", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-hooks@8.6.37_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/react-hooks", + }, + Object { + "deps": Object { + "@griffel/react": 315, + "react": 2119, + "tslib": 2425, + }, + "name": "@fluentui/react-icons", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-icons@2.0.232_react@17.0.2/node_modules/@fluentui/react-icons", + }, + Object { + "deps": Object { + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-image", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-image@9.1.62_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-image", + }, + Object { + "deps": Object { + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 273, + "@fluentui/react-label": 275, + "@fluentui/react-popover": 280, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 549, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-infobutton", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-infobutton@9.0.0-beta.47_@types+react-dom@17.0.25_@types+react@17.0.74_react-_akgxb7tovm7amtemx5vkxfmqau/node_modules/@fluentui/react-infobutton", + }, + Object { + "deps": Object { + "@fluentui/react-field": 266, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-input", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-input@9.4.68_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_r_iazqepwia3pya3wqujvfwc4ukm/node_modules/@fluentui/react-input", + }, + Object { + "deps": Object { + "@fluentui/react-utilities": 304, + "@swc/helpers": 549, + "@types/react": 641, + "react": 2119, + }, + "name": "@fluentui/react-jsx-runtime", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-jsx-runtime@9.0.0-alpha.13_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/react-jsx-runtime", + }, + Object { + "deps": Object { + "@fluentui/react-utilities": 304, + "@swc/helpers": 550, + "@types/react": 641, + "react": 2119, + "react-is": 2107, + }, + "name": "@fluentui/react-jsx-runtime", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-jsx-runtime@9.0.34_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/react-jsx-runtime", + }, + Object { + "deps": Object { + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-label", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-label@9.1.66_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-label", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-link", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-link@9.2.15_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-link", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-aria": 254, + "@fluentui/react-context-selector": 262, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-portal": 282, + "@fluentui/react-positioning": 283, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-menu", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-menu@9.13.4_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2_scheduler@0.19.0/node_modules/@fluentui/react-menu", + }, + Object { + "deps": Object { + "@fluentui/priority-overflow": 251, + "@fluentui/react-context-selector": 262, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-overflow", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-overflow@9.1.15_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0._uycc7uxxwhw6jgermro2bjuwf4/node_modules/@fluentui/react-overflow", + }, + Object { + "deps": Object { + "@fluentui/react-avatar": 255, + "@fluentui/react-badge": 256, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-persona", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-persona@9.2.78_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_gwb2xsnjxwaw2yb4y4nx7q42dy/node_modules/@fluentui/react-persona", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-aria": 254, + "@fluentui/react-context-selector": 262, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-portal": 282, + "@fluentui/react-positioning": 283, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-popover", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-popover@9.9.2_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2__pyflnqu5iah7662njgikihywyy/node_modules/@fluentui/react-popover", + }, + Object { + "deps": Object { + "@swc/helpers": 550, + "@types/react": 641, + "react": 2119, + }, + "name": "@fluentui/react-portal-compat-context", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-portal-compat-context@9.0.11_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/react-portal-compat-context", + }, + Object { + "deps": Object { + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + "use-disposable": 2503, + }, + "name": "@fluentui/react-portal", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-portal@9.4.18_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-portal", + }, + Object { + "deps": Object { + "@floating-ui/devtools": 241, + "@floating-ui/dom": 242, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-positioning", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-positioning@9.14.2_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-positioning", + }, + Object { + "deps": Object { + "@fluentui/react-field": 266, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-progress", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-progress@9.1.68_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0._4ddokn6i6qzorspkjr3c2mpx6y/node_modules/@fluentui/react-progress", + }, + Object { + "deps": Object { + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/core": 314, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-provider", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-provider@9.13.16_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-provider", + }, + Object { + "deps": Object { + "@fluentui/react-field": 266, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-label": 275, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-radio", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-radio@9.2.12_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_r_mo4hkpmyd7oumz2d6i6qdjqtwy/node_modules/@fluentui/react-radio", + }, + Object { + "deps": Object { + "@fluentui/react-field": 266, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-select", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-select@9.1.68_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2__k3knfgz6zpux6raexbwvyzdvwa/node_modules/@fluentui/react-select", + }, + Object { + "deps": Object { + "@fluentui/react-theme": 299, + "@swc/helpers": 550, + "@types/react": 641, + "react": 2119, + }, + "name": "@fluentui/react-shared-contexts", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-shared-contexts@9.15.2_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/react-shared-contexts", + }, + Object { + "deps": Object { + "@fluentui/react-field": 266, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-skeleton", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-skeleton@9.0.56_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0._sfeb7yrhm2jlx4aheiz6uzqvkm/node_modules/@fluentui/react-skeleton", + }, + Object { + "deps": Object { + "@fluentui/react-field": 266, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-slider", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-slider@9.1.74_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2__got4evyigylsgol63s3tpoea2e/node_modules/@fluentui/react-slider", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-field": 266, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-spinbutton", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-spinbutton@9.2.68_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17._54ylukac4izqz4g7veps3e77au/node_modules/@fluentui/react-spinbutton", + }, + Object { + "deps": Object { + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-label": 275, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-spinner", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-spinner@9.4.2_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-spinner", + }, + Object { + "deps": Object { + "@fluentui/react-field": 266, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-label": 275, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-switch", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-switch@9.1.74_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2__bg3pcrh5kphefx5yqxdilpmufy/node_modules/@fluentui/react-switch", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-aria": 254, + "@fluentui/react-avatar": 255, + "@fluentui/react-checkbox": 259, + "@fluentui/react-context-selector": 262, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-radio": 286, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-table", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-table@9.11.15_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2__4v6kpkif65ljt5aoerrbkek2ka/node_modules/@fluentui/react-table", + }, + Object { + "deps": Object { + "@fluentui/react-context-selector": 262, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-tabs", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-tabs@9.4.14_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2_scheduler@0.19.0/node_modules/@fluentui/react-tabs", + }, + Object { + "deps": Object { + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "keyborg": 1708, + "react": 2119, + "react-dom": 2099, + "tabster": 2371, + }, + "name": "@fluentui/react-tabster", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-tabster@9.19.5_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-tabster", + }, + Object { + "deps": Object { + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-text", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-text@9.4.14_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-text", + }, + Object { + "deps": Object { + "@fluentui/react-field": 266, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-textarea", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-textarea@9.3.68_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0._kzu73p535aaha7hycnv6cocfry/node_modules/@fluentui/react-textarea", + }, + Object { + "deps": Object { + "@fluentui/tokens": 311, + "@swc/helpers": 550, + }, + "name": "@fluentui/react-theme", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-theme@9.1.19/node_modules/@fluentui/react-theme", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-aria": 254, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-portal": 282, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + "react-transition-group": 2118, + }, + "name": "@fluentui/react-toast", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-toast@9.3.35_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-toast", + }, + Object { + "deps": Object { + "@fluentui/react-button": 257, + "@fluentui/react-context-selector": 262, + "@fluentui/react-divider": 264, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-radio": 286, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-toolbar", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-toolbar@9.1.75_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_jmftdxha3zk5e2tghf6ehgwk5a/node_modules/@fluentui/react-toolbar", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-jsx-runtime": 274, + "@fluentui/react-portal": 282, + "@fluentui/react-positioning": 283, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 550, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-tooltip", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-tooltip@9.4.21_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-tooltip", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-aria": 254, + "@fluentui/react-avatar": 255, + "@fluentui/react-button": 257, + "@fluentui/react-checkbox": 259, + "@fluentui/react-context-selector": 262, + "@fluentui/react-icons": 269, + "@fluentui/react-jsx-runtime": 273, + "@fluentui/react-portal": 282, + "@fluentui/react-radio": 286, + "@fluentui/react-shared-contexts": 288, + "@fluentui/react-tabster": 296, + "@fluentui/react-theme": 299, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 549, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-tree", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-tree@9.0.0-beta.30_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17_ekkwm54xwaasnfnesistyhtkhu/node_modules/@fluentui/react-tree", + }, + Object { + "deps": Object { + "@fluentui/keyboard-keys": 249, + "@fluentui/react-shared-contexts": 288, + "@swc/helpers": 550, + "@types/react": 641, + "react": 2119, + }, + "name": "@fluentui/react-utilities", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-utilities@9.18.5_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/react-utilities", + }, + Object { + "deps": Object { + "@fluentui/react-jsx-runtime": 273, + "@fluentui/react-utilities": 304, + "@griffel/react": 315, + "@swc/helpers": 549, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@fluentui/react-virtualizer", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-virtualizer@9.0.0-alpha.30_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react-virtualizer", + }, + Object { + "deps": Object { + "@fluentui/set-version": 308, + "@types/react": 641, + "react": 2119, + "tslib": 2425, + }, + "name": "@fluentui/react-window-provider", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react-window-provider@2.2.18_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/react-window-provider", + }, + Object { + "deps": Object { + "@fluentui/date-time-utilities": 244, + "@fluentui/font-icons-mdl2": 246, + "@fluentui/foundation-legacy": 247, + "@fluentui/merge-styles": 250, + "@fluentui/react-focus": 267, + "@fluentui/react-hooks": 268, + "@fluentui/react-portal-compat-context": 281, + "@fluentui/react-window-provider": 306, + "@fluentui/set-version": 308, + "@fluentui/style-utilities": 309, + "@fluentui/theme": 310, + "@fluentui/utilities": 312, + "@microsoft/load-themed-styles": 364, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + "tslib": 2425, + }, + "name": "@fluentui/react", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+react@8.115.7_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@fluentui/react", + }, + Object { + "deps": Object { + "tslib": 2425, + }, + "name": "@fluentui/set-version", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+set-version@8.2.14/node_modules/@fluentui/set-version", + }, + Object { + "deps": Object { + "@fluentui/merge-styles": 250, + "@fluentui/set-version": 308, + "@fluentui/theme": 310, + "@fluentui/utilities": 312, + "@microsoft/load-themed-styles": 364, + "tslib": 2425, + }, + "name": "@fluentui/style-utilities", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+style-utilities@8.10.4_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/style-utilities", + }, + Object { + "deps": Object { + "@fluentui/merge-styles": 250, + "@fluentui/set-version": 308, + "@fluentui/utilities": 312, + "@types/react": 641, + "react": 2119, + "tslib": 2425, + }, + "name": "@fluentui/theme", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+theme@2.6.42_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/theme", + }, + Object { + "deps": Object { + "@swc/helpers": 550, + }, + "name": "@fluentui/tokens", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+tokens@1.0.0-alpha.16/node_modules/@fluentui/tokens", + }, + Object { + "deps": Object { + "@fluentui/dom-utilities": 245, + "@fluentui/merge-styles": 250, + "@fluentui/set-version": 308, + "@types/react": 641, + "react": 2119, + "tslib": 2425, + }, + "name": "@fluentui/utilities", + "root": "/common/temp/default/node_modules/.pnpm/@fluentui+utilities@8.14.0_@types+react@17.0.74_react@17.0.2/node_modules/@fluentui/utilities", + }, + Object { + "deps": Object {}, + "name": "@gar/promisify", + "root": "/common/temp/default/node_modules/.pnpm/@gar+promisify@1.1.3/node_modules/@gar/promisify", + }, + Object { + "deps": Object { + "@emotion/hash": 209, + "@griffel/style-types": 316, + "csstype": 1096, + "rtl-css-js": 2198, + "stylis": 2358, + "tslib": 2425, + }, + "name": "@griffel/core", + "root": "/common/temp/default/node_modules/.pnpm/@griffel+core@1.15.2/node_modules/@griffel/core", + }, + Object { + "deps": Object { + "@griffel/core": 314, + "react": 2119, + "tslib": 2425, + }, + "name": "@griffel/react", + "root": "/common/temp/default/node_modules/.pnpm/@griffel+react@1.5.20_react@17.0.2/node_modules/@griffel/react", + }, + Object { + "deps": Object { + "csstype": 1096, + }, + "name": "@griffel/style-types", + "root": "/common/temp/default/node_modules/.pnpm/@griffel+style-types@1.0.3/node_modules/@griffel/style-types", + }, + Object { + "deps": Object { + "@humanwhocodes/object-schema": 323, + "debug": 1106, + "minimatch": 1821, + }, + "name": "@humanwhocodes/config-array", + "root": "/common/temp/default/node_modules/.pnpm/@humanwhocodes+config-array@0.10.7/node_modules/@humanwhocodes/config-array", + }, + Object { + "deps": Object { + "@humanwhocodes/object-schema": 324, + "debug": 1106, + "minimatch": 1821, + }, + "name": "@humanwhocodes/config-array", + "root": "/common/temp/default/node_modules/.pnpm/@humanwhocodes+config-array@0.11.14_supports-color@8.1.1/node_modules/@humanwhocodes/config-array", + }, + Object { + "deps": Object { + "@humanwhocodes/object-schema": 323, + "debug": 1106, + "minimatch": 1821, + }, + "name": "@humanwhocodes/config-array", + "root": "/common/temp/default/node_modules/.pnpm/@humanwhocodes+config-array@0.5.0/node_modules/@humanwhocodes/config-array", + }, + Object { + "deps": Object { + "@humanwhocodes/object-schema": 323, + "debug": 1106, + "minimatch": 1821, + }, + "name": "@humanwhocodes/config-array", + "root": "/common/temp/default/node_modules/.pnpm/@humanwhocodes+config-array@0.9.5/node_modules/@humanwhocodes/config-array", + }, + Object { + "deps": Object {}, + "name": "@humanwhocodes/gitignore-to-minimatch", + "root": "/common/temp/default/node_modules/.pnpm/@humanwhocodes+gitignore-to-minimatch@1.0.2/node_modules/@humanwhocodes/gitignore-to-minimatch", + }, + Object { + "deps": Object {}, + "name": "@humanwhocodes/module-importer", + "root": "/common/temp/default/node_modules/.pnpm/@humanwhocodes+module-importer@1.0.1/node_modules/@humanwhocodes/module-importer", + }, + Object { + "deps": Object {}, + "name": "@humanwhocodes/object-schema", + "root": "/common/temp/default/node_modules/.pnpm/@humanwhocodes+object-schema@1.2.1/node_modules/@humanwhocodes/object-schema", + }, + Object { + "deps": Object {}, + "name": "@humanwhocodes/object-schema", + "root": "/common/temp/default/node_modules/.pnpm/@humanwhocodes+object-schema@2.0.2/node_modules/@humanwhocodes/object-schema", + }, + Object { + "deps": Object { + "camelcase": 954, + "find-up": 1332, + "get-package-type": 1382, + "js-yaml": 1676, + "resolve-from": 2179, + }, + "name": "@istanbuljs/load-nyc-config", + "root": "/common/temp/default/node_modules/.pnpm/@istanbuljs+load-nyc-config@1.1.0/node_modules/@istanbuljs/load-nyc-config", + }, + Object { + "deps": Object {}, + "name": "@istanbuljs/schema", + "root": "/common/temp/default/node_modules/.pnpm/@istanbuljs+schema@0.1.3/node_modules/@istanbuljs/schema", + }, + Object { + "deps": Object { + "@jest/types": 349, + "@types/node": 625, + "chalk": 966, + "jest-message-util": 1647, + "jest-util": 1662, + "slash": 2273, + }, + "name": "@jest/console", + "root": "/common/temp/default/node_modules/.pnpm/@jest+console@29.7.0/node_modules/@jest/console", + }, + Object { + "deps": Object { + "@jest/console": 327, + "@jest/reporters": 335, + "@jest/test-result": 341, + "@jest/transform": 345, + "@jest/types": 348, + "@types/node": 625, + "ansi-escapes": 793, + "chalk": 966, + "ci-info": 983, + "exit": 1285, + "graceful-fs": 1418, + "jest-changed-files": 1625, + "jest-config": 1629, + "jest-haste-map": 1642, + "jest-message-util": 1647, + "jest-regex-util": 1652, + "jest-resolve": 1654, + "jest-resolve-dependencies": 1653, + "jest-runner": 1656, + "jest-runtime": 1657, + "jest-snapshot": 1659, + "jest-util": 1662, + "jest-validate": 1663, + "jest-watcher": 1665, + "micromatch": 1806, + "pretty-format": 2046, + "slash": 2273, + "strip-ansi": 2343, + }, + "name": "@jest/core", + "root": "/common/temp/default/node_modules/.pnpm/@jest+core@29.5.0_supports-color@8.1.1/node_modules/@jest/core", + }, + Object { + "deps": Object { + "@jest/console": 327, + "@jest/reporters": 336, + "@jest/test-result": 341, + "@jest/transform": 346, + "@jest/types": 349, + "@types/node": 625, + "ansi-escapes": 793, + "chalk": 966, + "ci-info": 983, + "exit": 1285, + "graceful-fs": 1418, + "jest-changed-files": 1625, + "jest-config": 1631, + "jest-haste-map": 1642, + "jest-message-util": 1647, + "jest-regex-util": 1652, + "jest-resolve": 1655, + "jest-resolve-dependencies": 1653, + "jest-runner": 1656, + "jest-runtime": 1657, + "jest-snapshot": 1660, + "jest-util": 1662, + "jest-validate": 1663, + "jest-watcher": 1665, + "micromatch": 1806, + "pretty-format": 2046, + "slash": 2273, + "strip-ansi": 2343, + }, + "name": "@jest/core", + "root": "/common/temp/default/node_modules/.pnpm/@jest+core@29.7.0/node_modules/@jest/core", + }, + Object { + "deps": Object { + "@jest/fake-timers": 333, + "@jest/types": 349, + "@types/node": 625, + "jest-mock": 1648, + }, + "name": "@jest/environment", + "root": "/common/temp/default/node_modules/.pnpm/@jest+environment@29.7.0/node_modules/@jest/environment", + }, + Object { + "deps": Object { + "jest-get-type": 1640, + }, + "name": "@jest/expect-utils", + "root": "/common/temp/default/node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils", + }, + Object { + "deps": Object { + "expect": 1289, + "jest-snapshot": 1660, + }, + "name": "@jest/expect", + "root": "/common/temp/default/node_modules/.pnpm/@jest+expect@29.7.0_supports-color@8.1.1/node_modules/@jest/expect", + }, + Object { + "deps": Object { + "@jest/types": 349, + "@sinonjs/fake-timers": 468, + "@types/node": 625, + "jest-message-util": 1647, + "jest-mock": 1648, + "jest-util": 1662, + }, + "name": "@jest/fake-timers", + "root": "/common/temp/default/node_modules/.pnpm/@jest+fake-timers@29.7.0/node_modules/@jest/fake-timers", + }, + Object { + "deps": Object { + "@jest/environment": 330, + "@jest/expect": 332, + "@jest/types": 349, + "jest-mock": 1648, + }, + "name": "@jest/globals", + "root": "/common/temp/default/node_modules/.pnpm/@jest+globals@29.7.0_supports-color@8.1.1/node_modules/@jest/globals", + }, + Object { + "deps": Object { + "@bcoe/v8-coverage": 199, + "@jest/console": 327, + "@jest/test-result": 340, + "@jest/transform": 345, + "@jest/types": 348, + "@jridgewell/trace-mapping": 355, + "@types/istanbul-lib-coverage": 593, + "@types/node": 624, + "chalk": 966, + "collect-v8-coverage": 1011, + "exit": 1285, + "glob": 1401, + "graceful-fs": 1418, + "istanbul-lib-coverage": 1616, + "istanbul-lib-instrument": 1617, + "istanbul-lib-report": 1619, + "istanbul-lib-source-maps": 1620, + "istanbul-reports": 1621, + "jest-message-util": 1647, + "jest-util": 1662, + "jest-worker": 1668, + "slash": 2273, + "string-length": 2327, + "strip-ansi": 2343, + "v8-to-istanbul": 2521, + }, + "name": "@jest/reporters", + "root": "/common/temp/default/node_modules/.pnpm/@jest+reporters@29.5.0_supports-color@8.1.1/node_modules/@jest/reporters", + }, + Object { + "deps": Object { + "@bcoe/v8-coverage": 199, + "@jest/console": 327, + "@jest/test-result": 341, + "@jest/transform": 346, + "@jest/types": 349, + "@jridgewell/trace-mapping": 355, + "@types/istanbul-lib-coverage": 593, + "@types/node": 625, + "chalk": 966, + "collect-v8-coverage": 1012, + "exit": 1285, + "glob": 1401, + "graceful-fs": 1418, + "istanbul-lib-coverage": 1616, + "istanbul-lib-instrument": 1618, + "istanbul-lib-report": 1619, + "istanbul-lib-source-maps": 1620, + "istanbul-reports": 1621, + "jest-message-util": 1647, + "jest-util": 1662, + "jest-worker": 1668, + "slash": 2273, + "string-length": 2327, + "strip-ansi": 2343, + "v8-to-istanbul": 2521, + }, + "name": "@jest/reporters", + "root": "/common/temp/default/node_modules/.pnpm/@jest+reporters@29.7.0/node_modules/@jest/reporters", + }, + Object { + "deps": Object { + "@sinclair/typebox": 465, + }, + "name": "@jest/schemas", + "root": "/common/temp/default/node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas", + }, + Object { + "deps": Object { + "@jridgewell/trace-mapping": 355, + "callsites": 950, + "graceful-fs": 1418, + }, + "name": "@jest/source-map", + "root": "/common/temp/default/node_modules/.pnpm/@jest+source-map@29.6.3/node_modules/@jest/source-map", + }, + Object { + "deps": Object { + "@jest/console": 327, + "@jest/types": 349, + "@types/istanbul-lib-coverage": 594, + "collect-v8-coverage": 1010, + "jest-haste-map": 1642, + "jest-resolve": 1655, + }, + "name": "@jest/test-result", + "root": "/common/temp/default/node_modules/.pnpm/@jest+test-result@29.7.0_@types+node@18.17.15/node_modules/@jest/test-result", + }, + Object { + "deps": Object { + "@jest/console": 327, + "@jest/types": 349, + "@types/istanbul-lib-coverage": 594, + "collect-v8-coverage": 1011, + "jest-haste-map": 1642, + "jest-resolve": 1655, + }, + "name": "@jest/test-result", + "root": "/common/temp/default/node_modules/.pnpm/@jest+test-result@29.7.0_@types+node@20.11.30/node_modules/@jest/test-result", + }, + Object { + "deps": Object { + "@jest/console": 327, + "@jest/types": 349, + "@types/istanbul-lib-coverage": 594, + "collect-v8-coverage": 1012, + "jest-haste-map": 1642, + "jest-resolve": 1655, + }, + "name": "@jest/test-result", + "root": "/common/temp/default/node_modules/.pnpm/@jest+test-result@29.7.0_@types+node@20.12.12/node_modules/@jest/test-result", + }, + Object { + "deps": Object { + "@jest/test-result": 339, + "graceful-fs": 1418, + "jest-haste-map": 1642, + "slash": 2273, + }, + "name": "@jest/test-sequencer", + "root": "/common/temp/default/node_modules/.pnpm/@jest+test-sequencer@29.7.0_@types+node@18.17.15/node_modules/@jest/test-sequencer", + }, + Object { + "deps": Object { + "@jest/test-result": 341, + "graceful-fs": 1418, + "jest-haste-map": 1642, + "slash": 2273, + }, + "name": "@jest/test-sequencer", + "root": "/common/temp/default/node_modules/.pnpm/@jest+test-sequencer@29.7.0_@types+node@20.12.12/node_modules/@jest/test-sequencer", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@jest/types": 347, + "babel-plugin-istanbul": 871, + "chalk": 966, + "convert-source-map": 1051, + "fast-json-stable-stringify": 1302, + "graceful-fs": 1418, + "jest-haste-map": 1641, + "jest-regex-util": 1651, + "jest-util": 1661, + "micromatch": 1806, + "pirates": 1984, + "slash": 2273, + "source-map": 2294, + "write-file-atomic": 2589, + }, + "name": "@jest/transform", + "root": "/common/temp/default/node_modules/.pnpm/@jest+transform@26.6.2/node_modules/@jest/transform", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@jest/types": 348, + "@jridgewell/trace-mapping": 355, + "babel-plugin-istanbul": 871, + "chalk": 966, + "convert-source-map": 1052, + "fast-json-stable-stringify": 1302, + "graceful-fs": 1418, + "jest-haste-map": 1642, + "jest-regex-util": 1652, + "jest-util": 1662, + "micromatch": 1806, + "pirates": 1984, + "slash": 2273, + "write-file-atomic": 2590, + }, + "name": "@jest/transform", + "root": "/common/temp/default/node_modules/.pnpm/@jest+transform@29.5.0_supports-color@8.1.1/node_modules/@jest/transform", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@jest/types": 349, + "@jridgewell/trace-mapping": 355, + "babel-plugin-istanbul": 871, + "chalk": 966, + "convert-source-map": 1052, + "fast-json-stable-stringify": 1302, + "graceful-fs": 1418, + "jest-haste-map": 1642, + "jest-regex-util": 1652, + "jest-util": 1662, + "micromatch": 1806, + "pirates": 1984, + "slash": 2273, + "write-file-atomic": 2590, + }, + "name": "@jest/transform", + "root": "/common/temp/default/node_modules/.pnpm/@jest+transform@29.7.0_supports-color@8.1.1/node_modules/@jest/transform", + }, + Object { + "deps": Object { + "@types/istanbul-lib-coverage": 594, + "@types/istanbul-reports": 596, + "@types/node": 625, + "@types/yargs": 676, + "chalk": 966, + }, + "name": "@jest/types", + "root": "/common/temp/default/node_modules/.pnpm/@jest+types@26.6.2/node_modules/@jest/types", + }, + Object { + "deps": Object { + "@jest/schemas": 337, + "@types/istanbul-lib-coverage": 594, + "@types/istanbul-reports": 596, + "@types/node": 624, + "@types/yargs": 677, + "chalk": 966, + }, + "name": "@jest/types", + "root": "/common/temp/default/node_modules/.pnpm/@jest+types@29.5.0/node_modules/@jest/types", + }, + Object { + "deps": Object { + "@jest/schemas": 337, + "@types/istanbul-lib-coverage": 594, + "@types/istanbul-reports": 596, + "@types/node": 625, + "@types/yargs": 677, + "chalk": 966, + }, + "name": "@jest/types", + "root": "/common/temp/default/node_modules/.pnpm/@jest+types@29.6.3/node_modules/@jest/types", + }, + Object { + "deps": Object { + "@jridgewell/set-array": 352, + "@jridgewell/sourcemap-codec": 354, + "@jridgewell/trace-mapping": 355, + }, + "name": "@jridgewell/gen-mapping", + "root": "/common/temp/default/node_modules/.pnpm/@jridgewell+gen-mapping@0.3.5/node_modules/@jridgewell/gen-mapping", + }, + Object { + "deps": Object {}, + "name": "@jridgewell/resolve-uri", + "root": "/common/temp/default/node_modules/.pnpm/@jridgewell+resolve-uri@3.1.2/node_modules/@jridgewell/resolve-uri", + }, + Object { + "deps": Object {}, + "name": "@jridgewell/set-array", + "root": "/common/temp/default/node_modules/.pnpm/@jridgewell+set-array@1.2.1/node_modules/@jridgewell/set-array", + }, + Object { + "deps": Object { + "@jridgewell/gen-mapping": 350, + "@jridgewell/trace-mapping": 355, + }, + "name": "@jridgewell/source-map", + "root": "/common/temp/default/node_modules/.pnpm/@jridgewell+source-map@0.3.6/node_modules/@jridgewell/source-map", + }, + Object { + "deps": Object {}, + "name": "@jridgewell/sourcemap-codec", + "root": "/common/temp/default/node_modules/.pnpm/@jridgewell+sourcemap-codec@1.4.15/node_modules/@jridgewell/sourcemap-codec", + }, + Object { + "deps": Object { + "@jridgewell/resolve-uri": 351, + "@jridgewell/sourcemap-codec": 354, + }, + "name": "@jridgewell/trace-mapping", + "root": "/common/temp/default/node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping", + }, + Object { + "deps": Object {}, + "name": "@leichtgewicht/ip-codec", + "root": "/common/temp/default/node_modules/.pnpm/@leichtgewicht+ip-codec@2.0.4/node_modules/@leichtgewicht/ip-codec", + }, + Object { + "deps": Object {}, + "name": "@lifaon/path", + "root": "/common/temp/default/node_modules/.pnpm/@lifaon+path@2.1.0/node_modules/@lifaon/path", + }, + Object { + "deps": Object { + "@mdx-js/mdx": 359, + "@mdx-js/react": 360, + "loader-utils": 1735, + }, + "name": "@mdx-js/loader", + "root": "/common/temp/default/node_modules/.pnpm/@mdx-js+loader@1.6.22_react@17.0.2/node_modules/@mdx-js/loader", + }, + Object { + "deps": Object { + "@babel/core": 58, + "@babel/plugin-syntax-jsx": 118, + "@babel/plugin-syntax-object-rest-spread": 123, + "@mdx-js/util": 361, + "babel-plugin-apply-mdx-type-prop": 868, + "babel-plugin-extract-import-names": 870, + "camelcase-css": 952, + "detab": 1140, + "hast-util-raw": 1449, + "lodash.uniq": 1759, + "mdast-util-to-hast": 1788, + "remark-footnotes": 2156, + "remark-mdx": 2157, + "remark-parse": 2158, + "remark-squeeze-paragraphs": 2160, + "style-to-object": 2356, + "unified": 2471, + "unist-builder": 2476, + "unist-util-visit": 2484, + }, + "name": "@mdx-js/mdx", + "root": "/common/temp/default/node_modules/.pnpm/@mdx-js+mdx@1.6.22/node_modules/@mdx-js/mdx", + }, + Object { + "deps": Object { + "react": 2119, + }, + "name": "@mdx-js/react", + "root": "/common/temp/default/node_modules/.pnpm/@mdx-js+react@1.6.22_react@17.0.2/node_modules/@mdx-js/react", + }, + Object { + "deps": Object {}, + "name": "@mdx-js/util", + "root": "/common/temp/default/node_modules/.pnpm/@mdx-js+util@1.6.22/node_modules/@mdx-js/util", + }, + Object { + "deps": Object { + "@microsoft/tsdoc": 367, + "@microsoft/tsdoc-config": 366, + "@rushstack/node-core-library": 453, + }, + "name": "@microsoft/api-extractor-model", + "root": "/common/temp/default/node_modules/.pnpm/@microsoft+api-extractor-model@7.29.2_@types+node@18.17.15/node_modules/@microsoft/api-extractor-model", + }, + Object { + "deps": Object { + "@microsoft/api-extractor-model": 362, + "@microsoft/tsdoc": 367, + "@microsoft/tsdoc-config": 366, + "@rushstack/node-core-library": 453, + "@rushstack/rig-package": 455, + "@rushstack/terminal": 457, + "@rushstack/ts-command-line": 459, + "lodash": 1760, + "minimatch": 1821, + "resolve": 2182, + "semver": 2238, + "source-map": 2294, + "typescript": 2459, + }, + "name": "@microsoft/api-extractor", + "root": "/common/temp/default/node_modules/.pnpm/@microsoft+api-extractor@7.46.2_@types+node@18.17.15/node_modules/@microsoft/api-extractor", + }, + Object { + "deps": Object {}, + "name": "@microsoft/load-themed-styles", + "root": "/common/temp/default/node_modules/.pnpm/@microsoft+load-themed-styles@1.10.295/node_modules/@microsoft/load-themed-styles", + }, + Object { + "deps": Object {}, + "name": "@microsoft/teams-js", + "root": "/common/temp/default/node_modules/.pnpm/@microsoft+teams-js@1.3.0-beta.4/node_modules/@microsoft/teams-js", + }, + Object { + "deps": Object { + "@microsoft/tsdoc": 367, + "ajv": 787, + "jju": 1670, + "resolve": 2182, + }, + "name": "@microsoft/tsdoc-config", + "root": "/common/temp/default/node_modules/.pnpm/@microsoft+tsdoc-config@0.17.0/node_modules/@microsoft/tsdoc-config", + }, + Object { + "deps": Object {}, + "name": "@microsoft/tsdoc", + "root": "/common/temp/default/node_modules/.pnpm/@microsoft+tsdoc@0.15.0/node_modules/@microsoft/tsdoc", + }, + Object { + "deps": Object { + "call-me-maybe": 947, + "glob-to-regexp": 1398, + }, + "name": "@mrmlnc/readdir-enhanced", + "root": "/common/temp/default/node_modules/.pnpm/@mrmlnc+readdir-enhanced@2.2.1/node_modules/@mrmlnc/readdir-enhanced", + }, + Object { + "deps": Object { + "@nodelib/fs.stat": 371, + "run-parallel": 2200, + }, + "name": "@nodelib/fs.scandir", + "root": "/common/temp/default/node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir", + }, + Object { + "deps": Object {}, + "name": "@nodelib/fs.stat", + "root": "/common/temp/default/node_modules/.pnpm/@nodelib+fs.stat@1.1.3/node_modules/@nodelib/fs.stat", + }, + Object { + "deps": Object {}, + "name": "@nodelib/fs.stat", + "root": "/common/temp/default/node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat", + }, + Object { + "deps": Object { + "@nodelib/fs.scandir": 369, + "fastq": 1311, + }, + "name": "@nodelib/fs.walk", + "root": "/common/temp/default/node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk", + }, + Object { + "deps": Object { + "@gar/promisify": 313, + "semver": 2238, + }, + "name": "@npmcli/fs", + "root": "/common/temp/default/node_modules/.pnpm/@npmcli+fs@1.1.1/node_modules/@npmcli/fs", + }, + Object { + "deps": Object { + "mkdirp": 1843, + "rimraf": 2195, + }, + "name": "@npmcli/move-file", + "root": "/common/temp/default/node_modules/.pnpm/@npmcli+move-file@1.1.2/node_modules/@npmcli/move-file", + }, + Object { + "deps": Object {}, + "name": "@opentelemetry/api", + "root": "/common/temp/default/node_modules/.pnpm/@opentelemetry+api@1.8.0/node_modules/@opentelemetry/api", + }, + Object { + "deps": Object { + "ansi-html-community": 794, + "common-path-prefix": 1033, + "core-js-pure": 1060, + "error-stack-parser": 1210, + "find-up": 1333, + "html-entities": 1463, + "loader-utils": 1736, + "react-refresh": 2112, + "schema-utils": 2228, + "source-map": 2295, + "webpack": 2558, + }, + "name": "@pmmmwh/react-refresh-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@pmmmwh+react-refresh-webpack-plugin@0.5.11_react-refresh@0.11.0_webpack@4.47.0/node_modules/@pmmmwh/react-refresh-webpack-plugin", + }, + Object { + "deps": Object { + "rfc4648": 2191, + }, + "name": "@pnpm/crypto.base32-hash", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+crypto.base32-hash@1.0.1/node_modules/@pnpm/crypto.base32-hash", + }, + Object { + "deps": Object { + "rfc4648": 2191, + }, + "name": "@pnpm/crypto.base32-hash", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+crypto.base32-hash@2.0.0/node_modules/@pnpm/crypto.base32-hash", + }, + Object { + "deps": Object { + "@pnpm/crypto.base32-hash": 378, + "@pnpm/types": 390, + "encode-registry": 1194, + "semver": 2238, + }, + "name": "@pnpm/dependency-path", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+dependency-path@2.1.8/node_modules/@pnpm/dependency-path", + }, + Object { + "deps": Object {}, + "name": "@pnpm/error", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+error@1.4.0/node_modules/@pnpm/error", + }, + Object { + "deps": Object { + "@pnpm/error": 380, + "@pnpm/package-bins": 384, + "@pnpm/read-modules-dir": 385, + "@pnpm/read-package-json": 386, + "@pnpm/read-project-manifest": 387, + "@pnpm/types": 388, + "@zkochan/cmd-shim": 759, + "is-subdir": 1595, + "is-windows": 1605, + "mz": 1854, + "normalize-path": 1881, + "p-settle": 1942, + "ramda": 2087, + }, + "name": "@pnpm/link-bins", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+link-bins@5.3.25/node_modules/@pnpm/link-bins", + }, + Object { + "deps": Object { + "@pnpm/types": 390, + }, + "name": "@pnpm/lockfile-types", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+lockfile-types@5.1.5/node_modules/@pnpm/lockfile-types", + }, + Object { + "deps": Object { + "bole": 904, + "ndjson": 1860, + }, + "name": "@pnpm/logger", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+logger@4.0.0/node_modules/@pnpm/logger", + }, + Object { + "deps": Object { + "@pnpm/types": 388, + "fast-glob": 1300, + "is-subdir": 1595, + }, + "name": "@pnpm/package-bins", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+package-bins@4.1.0/node_modules/@pnpm/package-bins", + }, + Object { + "deps": Object { + "mz": 1854, + }, + "name": "@pnpm/read-modules-dir", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+read-modules-dir@2.0.3/node_modules/@pnpm/read-modules-dir", + }, + Object { + "deps": Object { + "@pnpm/error": 380, + "@pnpm/types": 388, + "load-json-file": 1730, + "normalize-package-data": 1879, + }, + "name": "@pnpm/read-package-json", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+read-package-json@4.0.0/node_modules/@pnpm/read-package-json", + }, + Object { + "deps": Object { + "@pnpm/error": 380, + "@pnpm/types": 388, + "@pnpm/write-project-manifest": 391, + "detect-indent": 1142, + "fast-deep-equal": 1298, + "graceful-fs": 1419, + "is-windows": 1605, + "json5": 1694, + "parse-json": 1952, + "read-yaml-file": 2124, + "sort-keys": 2284, + "strip-bom": 2346, + }, + "name": "@pnpm/read-project-manifest", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+read-project-manifest@1.1.7/node_modules/@pnpm/read-project-manifest", + }, + Object { + "deps": Object {}, + "name": "@pnpm/types", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+types@6.4.0/node_modules/@pnpm/types", + }, + Object { + "deps": Object {}, + "name": "@pnpm/types", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+types@8.9.0/node_modules/@pnpm/types", + }, + Object { + "deps": Object {}, + "name": "@pnpm/types", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+types@9.4.2/node_modules/@pnpm/types", + }, + Object { + "deps": Object { + "@pnpm/types": 388, + "json5": 1694, + "mz": 1854, + "write-file-atomic": 2589, + "write-yaml-file": 2591, + }, + "name": "@pnpm/write-project-manifest", + "root": "/common/temp/default/node_modules/.pnpm/@pnpm+write-project-manifest@1.1.7/node_modules/@pnpm/write-project-manifest", + }, + Object { + "deps": Object {}, + "name": "@polka/url", + "root": "/common/temp/default/node_modules/.pnpm/@polka+url@1.0.0-next.25/node_modules/@polka/url", + }, + Object { + "deps": Object {}, + "name": "@popperjs/core", + "root": "/common/temp/default/node_modules/.pnpm/@popperjs+core@2.11.8/node_modules/@popperjs/core", + }, + Object { + "deps": Object { + "graphql": 1422, + }, + "name": "@pothos/core", + "root": "/common/temp/default/node_modules/.pnpm/@pothos+core@3.41.1_graphql@16.8.1/node_modules/@pothos/core", + }, + Object { + "deps": Object {}, + "name": "@radix-ui/colors", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+colors@0.1.9/node_modules/@radix-ui/colors", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + }, + "name": "@radix-ui/number", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+number@1.0.1/node_modules/@radix-ui/number", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + }, + "name": "@radix-ui/primitive", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+primitive@1.0.1/node_modules/@radix-ui/primitive", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/primitive": 397, + "@radix-ui/react-compose-refs": 400, + "@radix-ui/react-context": 401, + "@radix-ui/react-presence": 405, + "@radix-ui/react-primitive": 406, + "@radix-ui/react-use-controllable-state": 412, + "@radix-ui/react-use-previous": 414, + "@radix-ui/react-use-size": 415, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@radix-ui/react-checkbox", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-checkbox@1.0.4_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@radix-ui/react-checkbox", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/react-compose-refs": 400, + "@radix-ui/react-context": 401, + "@radix-ui/react-primitive": 406, + "@radix-ui/react-slot": 409, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@radix-ui/react-collection", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-collection@1.0.3_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@radix-ui/react-collection", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-compose-refs", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-compose-refs@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-compose-refs", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-context", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-context@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-context", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-direction", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-direction@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-direction", + }, + Object { + "deps": Object { + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-icons", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-icons@1.1.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-icons", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/react-use-layout-effect": 413, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-id", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-id@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-id", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/react-compose-refs": 400, + "@radix-ui/react-use-layout-effect": 413, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@radix-ui/react-presence", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-presence@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@radix-ui/react-presence", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/react-slot": 409, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@radix-ui/react-primitive", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-primitive@1.0.3_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@radix-ui/react-primitive", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/primitive": 397, + "@radix-ui/react-collection": 399, + "@radix-ui/react-compose-refs": 400, + "@radix-ui/react-context": 401, + "@radix-ui/react-direction": 402, + "@radix-ui/react-id": 404, + "@radix-ui/react-primitive": 406, + "@radix-ui/react-use-callback-ref": 411, + "@radix-ui/react-use-controllable-state": 412, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@radix-ui/react-roving-focus", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-roving-focus@1.0.4_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@radix-ui/react-roving-focus", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/number": 396, + "@radix-ui/primitive": 397, + "@radix-ui/react-compose-refs": 400, + "@radix-ui/react-context": 401, + "@radix-ui/react-direction": 402, + "@radix-ui/react-presence": 405, + "@radix-ui/react-primitive": 406, + "@radix-ui/react-use-callback-ref": 411, + "@radix-ui/react-use-layout-effect": 413, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@radix-ui/react-scroll-area", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-scroll-area@1.0.5_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@radix-ui/react-scroll-area", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/react-compose-refs": 400, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-slot", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-slot@1.0.2_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-slot", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/primitive": 397, + "@radix-ui/react-context": 401, + "@radix-ui/react-direction": 402, + "@radix-ui/react-id": 404, + "@radix-ui/react-presence": 405, + "@radix-ui/react-primitive": 406, + "@radix-ui/react-roving-focus": 407, + "@radix-ui/react-use-controllable-state": 412, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "@radix-ui/react-tabs", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-tabs@1.0.4_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@radix-ui/react-tabs", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-use-callback-ref", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-use-callback-ref", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/react-use-callback-ref": 411, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-use-controllable-state", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-use-controllable-state", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-use-layout-effect", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-use-layout-effect", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-use-previous", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-use-previous@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-use-previous", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@radix-ui/react-use-layout-effect": 413, + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + }, + "name": "@radix-ui/react-use-size", + "root": "/common/temp/default/node_modules/.pnpm/@radix-ui+react-use-size@1.0.1_@types+react-dom@17.0.25_@types+react@17.0.74_react@17.0.2/node_modules/@radix-ui/react-use-size", + }, + Object { + "deps": Object { + "cluster-key-slot": 1005, + "generic-pool": 1378, + "yallist": 2610, + }, + "name": "@redis/client", + "root": "/common/temp/default/node_modules/.pnpm/@redis+client@1.5.14/node_modules/@redis/client", + }, + Object { + "deps": Object { + "immer": 1504, + "react": 2119, + "react-redux": 2111, + "redux": 2138, + "redux-thunk": 2137, + "reselect": 2172, + }, + "name": "@reduxjs/toolkit", + "root": "/common/temp/default/node_modules/.pnpm/@reduxjs+toolkit@1.8.6_react-redux@8.0.7_react@17.0.2/node_modules/@reduxjs/toolkit", + }, + Object { + "deps": Object {}, + "name": "@remix-run/router", + "root": "/common/temp/default/node_modules/.pnpm/@remix-run+router@1.15.3/node_modules/@remix-run/router", + }, + Object { + "deps": Object { + "@rushstack/eslint-patch": 424, + "@rushstack/eslint-plugin": 435, + "@rushstack/eslint-plugin-packlets": 425, + "@rushstack/eslint-plugin-security": 430, + "@typescript-eslint/eslint-plugin": 678, + "@typescript-eslint/parser": 684, + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/utils": 707, + "eslint": 1260, + "eslint-plugin-promise": 1241, + "eslint-plugin-react": 1246, + "eslint-plugin-tsdoc": 1250, + "typescript": 2459, + }, + "name": "@rushstack/eslint-config", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-config@3.7.0_eslint@7.11.0_typescript@5.4.2/node_modules/@rushstack/eslint-config", + }, + Object { + "deps": Object { + "@rushstack/eslint-patch": 424, + "@rushstack/eslint-plugin": 436, + "@rushstack/eslint-plugin-packlets": 426, + "@rushstack/eslint-plugin-security": 431, + "@typescript-eslint/eslint-plugin": 679, + "@typescript-eslint/parser": 685, + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/utils": 708, + "eslint": 1261, + "eslint-plugin-promise": 1242, + "eslint-plugin-react": 1247, + "eslint-plugin-tsdoc": 1250, + "typescript": 2459, + }, + "name": "@rushstack/eslint-config", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-config@3.7.0_eslint@7.30.0_typescript@5.4.2/node_modules/@rushstack/eslint-config", + }, + Object { + "deps": Object { + "@rushstack/eslint-patch": 424, + "@rushstack/eslint-plugin": 437, + "@rushstack/eslint-plugin-packlets": 427, + "@rushstack/eslint-plugin-security": 432, + "@typescript-eslint/eslint-plugin": 680, + "@typescript-eslint/parser": 686, + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/utils": 709, + "eslint": 1262, + "eslint-plugin-promise": 1243, + "eslint-plugin-react": 1248, + "eslint-plugin-tsdoc": 1250, + "typescript": 2459, + }, + "name": "@rushstack/eslint-config", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-config@3.7.0_eslint@7.7.0_typescript@5.4.2/node_modules/@rushstack/eslint-config", + }, + Object { + "deps": Object { + "@rushstack/eslint-patch": 424, + "@rushstack/eslint-plugin": 438, + "@rushstack/eslint-plugin-packlets": 428, + "@rushstack/eslint-plugin-security": 433, + "@typescript-eslint/eslint-plugin": 681, + "@typescript-eslint/parser": 687, + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/utils": 710, + "eslint": 1264, + "eslint-plugin-promise": 1244, + "eslint-plugin-react": 1249, + "eslint-plugin-tsdoc": 1250, + "typescript": 2459, + }, + "name": "@rushstack/eslint-config", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-config@3.7.0_eslint@8.57.0_supports-color@8.1.1_typescript@5.4.2/node_modules/@rushstack/eslint-config", + }, + Object { + "deps": Object { + "@rushstack/eslint-patch": 424, + "@rushstack/eslint-plugin": 439, + "@rushstack/eslint-plugin-packlets": 429, + "@rushstack/eslint-plugin-security": 434, + "@typescript-eslint/eslint-plugin": 682, + "@typescript-eslint/parser": 688, + "@typescript-eslint/typescript-estree": 705, + "@typescript-eslint/utils": 711, + "eslint": 1264, + "eslint-plugin-promise": 1244, + "eslint-plugin-react": 1249, + "eslint-plugin-tsdoc": 1250, + "typescript": 2458, + }, + "name": "@rushstack/eslint-config", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-config@3.7.0_eslint@8.57.0_typescript@4.9.5/node_modules/@rushstack/eslint-config", + }, + Object { + "deps": Object {}, + "name": "@rushstack/eslint-patch", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-patch@1.10.3/node_modules/@rushstack/eslint-patch", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 707, + "eslint": 1260, + }, + "name": "@rushstack/eslint-plugin-packlets", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-packlets@0.9.1_eslint@7.11.0_typescript@5.4.2/node_modules/@rushstack/eslint-plugin-packlets", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 708, + "eslint": 1261, + }, + "name": "@rushstack/eslint-plugin-packlets", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-packlets@0.9.1_eslint@7.30.0_typescript@5.4.2/node_modules/@rushstack/eslint-plugin-packlets", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 709, + "eslint": 1262, + }, + "name": "@rushstack/eslint-plugin-packlets", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-packlets@0.9.1_eslint@7.7.0_typescript@5.4.2/node_modules/@rushstack/eslint-plugin-packlets", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 710, + "eslint": 1264, + }, + "name": "@rushstack/eslint-plugin-packlets", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-packlets@0.9.1_eslint@8.57.0_supports-color@8.1.1_typescript@5.4.2/node_modules/@rushstack/eslint-plugin-packlets", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 711, + "eslint": 1264, + }, + "name": "@rushstack/eslint-plugin-packlets", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-packlets@0.9.1_eslint@8.57.0_typescript@4.9.5/node_modules/@rushstack/eslint-plugin-packlets", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 707, + "eslint": 1260, + }, + "name": "@rushstack/eslint-plugin-security", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-security@0.8.1_eslint@7.11.0_typescript@5.4.2/node_modules/@rushstack/eslint-plugin-security", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 708, + "eslint": 1261, + }, + "name": "@rushstack/eslint-plugin-security", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-security@0.8.1_eslint@7.30.0_typescript@5.4.2/node_modules/@rushstack/eslint-plugin-security", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 709, + "eslint": 1262, + }, + "name": "@rushstack/eslint-plugin-security", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-security@0.8.1_eslint@7.7.0_typescript@5.4.2/node_modules/@rushstack/eslint-plugin-security", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 710, + "eslint": 1264, + }, + "name": "@rushstack/eslint-plugin-security", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-security@0.8.1_eslint@8.57.0_supports-color@8.1.1_typescript@5.4.2/node_modules/@rushstack/eslint-plugin-security", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 711, + "eslint": 1264, + }, + "name": "@rushstack/eslint-plugin-security", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin-security@0.8.1_eslint@8.57.0_typescript@4.9.5/node_modules/@rushstack/eslint-plugin-security", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 707, + "eslint": 1260, + }, + "name": "@rushstack/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin@0.15.1_eslint@7.11.0_typescript@5.4.2/node_modules/@rushstack/eslint-plugin", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 708, + "eslint": 1261, + }, + "name": "@rushstack/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin@0.15.1_eslint@7.30.0_typescript@5.4.2/node_modules/@rushstack/eslint-plugin", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 709, + "eslint": 1262, + }, + "name": "@rushstack/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin@0.15.1_eslint@7.7.0_typescript@5.4.2/node_modules/@rushstack/eslint-plugin", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 710, + "eslint": 1264, + }, + "name": "@rushstack/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin@0.15.1_eslint@8.57.0_supports-color@8.1.1_typescript@5.4.2/node_modules/@rushstack/eslint-plugin", + }, + Object { + "deps": Object { + "@rushstack/tree-pattern": 458, + "@typescript-eslint/utils": 711, + "eslint": 1264, + }, + "name": "@rushstack/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+eslint-plugin@0.15.1_eslint@8.57.0_typescript@4.9.5/node_modules/@rushstack/eslint-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-config-file": 442, + "@rushstack/node-core-library": 453, + "semver": 2238, + }, + "name": "@rushstack/heft-api-extractor-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-api-extractor-plugin@0.3.37_@rushstack+heft@..+..+apps+heft_@types+node@18.17.15/node_modules/@rushstack/heft-api-extractor-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-config-file": 442, + "@rushstack/node-core-library": 453, + "semver": 2238, + }, + "name": "@rushstack/heft-api-extractor-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-api-extractor-plugin@0.3.37_@rushstack+heft@0.66.17_@types+node@18.17.15/node_modules/@rushstack/heft-api-extractor-plugin", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 453, + "@rushstack/rig-package": 455, + "@rushstack/terminal": 457, + "jsonpath-plus": 1697, + }, + "name": "@rushstack/heft-config-file", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-config-file@0.14.25_@types+node@18.17.15/node_modules/@rushstack/heft-config-file", + }, + Object { + "deps": Object { + "@jest/core": 328, + "@jest/reporters": 335, + "@jest/transform": 345, + "@rushstack/heft": 2632, + "@rushstack/heft-config-file": 442, + "@rushstack/node-core-library": 453, + "@rushstack/terminal": 457, + "jest-config": 1628, + "jest-environment-jsdom": 1636, + "jest-environment-node": 1637, + "jest-resolve": 1654, + "jest-snapshot": 1659, + "lodash": 1760, + }, + "name": "@rushstack/heft-jest-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-jest-plugin@0.11.38_@rushstack+heft@..+..+apps+heft_@types+node@18.17.15_jest_d4nwoquxsq3lena3jdncul4h6e/node_modules/@rushstack/heft-jest-plugin", + }, + Object { + "deps": Object { + "@jest/core": 328, + "@jest/reporters": 335, + "@jest/transform": 345, + "@rushstack/heft": 451, + "@rushstack/heft-config-file": 442, + "@rushstack/node-core-library": 453, + "@rushstack/terminal": 457, + "jest-config": 1628, + "jest-environment-node": 1637, + "jest-resolve": 1654, + "jest-snapshot": 1659, + "lodash": 1760, + }, + "name": "@rushstack/heft-jest-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-jest-plugin@0.11.38_@rushstack+heft@0.66.17_@types+node@18.17.15_jest-environ_udyctmgs62iwhfjdgfh4tutvge/node_modules/@rushstack/heft-jest-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 453, + "semver": 2238, + }, + "name": "@rushstack/heft-lint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-lint-plugin@0.3.38_@rushstack+heft@..+..+apps+heft_@types+node@18.17.15/node_modules/@rushstack/heft-lint-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/node-core-library": 453, + "semver": 2238, + }, + "name": "@rushstack/heft-lint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-lint-plugin@0.3.38_@rushstack+heft@0.66.17_@types+node@18.17.15/node_modules/@rushstack/heft-lint-plugin", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 363, + "@rushstack/eslint-config": 422, + "@rushstack/heft": 2632, + "@rushstack/heft-api-extractor-plugin": 440, + "@rushstack/heft-jest-plugin": 443, + "@rushstack/heft-lint-plugin": 445, + "@rushstack/heft-typescript-plugin": 449, + "@types/heft-jest": 584, + "eslint": 1264, + "jest-environment-node": 1637, + "typescript": 2459, + }, + "name": "@rushstack/heft-node-rig", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-node-rig@2.6.15_@rushstack+heft@..+..+apps+heft_@types+node@18.17.15_jest-environment-jsdom@29.5.0/node_modules/@rushstack/heft-node-rig", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 363, + "@rushstack/eslint-config": 422, + "@rushstack/heft": 451, + "@rushstack/heft-api-extractor-plugin": 441, + "@rushstack/heft-jest-plugin": 444, + "@rushstack/heft-lint-plugin": 446, + "@rushstack/heft-typescript-plugin": 450, + "@types/heft-jest": 584, + "eslint": 1264, + "jest-environment-node": 1637, + "typescript": 2459, + }, + "name": "@rushstack/heft-node-rig", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-node-rig@2.6.15_@rushstack+heft@0.66.17_@types+node@18.17.15_supports-color@8.1.1/node_modules/@rushstack/heft-node-rig", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-config-file": 442, + "@rushstack/node-core-library": 453, + "@types/tapable": 658, + "semver": 2238, + "tapable": 2372, + }, + "name": "@rushstack/heft-typescript-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-typescript-plugin@0.5.15_@rushstack+heft@..+..+apps+heft_@types+node@18.17.15/node_modules/@rushstack/heft-typescript-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-config-file": 442, + "@rushstack/node-core-library": 453, + "@types/tapable": 658, + "semver": 2238, + "tapable": 2372, + }, + "name": "@rushstack/heft-typescript-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft-typescript-plugin@0.5.15_@rushstack+heft@0.66.17_@types+node@18.17.15/node_modules/@rushstack/heft-typescript-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft-config-file": 442, + "@rushstack/node-core-library": 453, + "@rushstack/operation-graph": 454, + "@rushstack/rig-package": 455, + "@rushstack/terminal": 457, + "@rushstack/ts-command-line": 459, + "@types/tapable": 658, + "fast-glob": 1300, + "git-repo-info": 1389, + "ignore": 1501, + "tapable": 2372, + "true-case-path": 2417, + "watchpack": 2537, + }, + "name": "@rushstack/heft", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+heft@0.66.17_@types+node@18.17.15/node_modules/@rushstack/heft", + }, + Object { + "deps": Object { + "@types/node": 623, + "colors": 1022, + "fs-extra": 1362, + "import-lazy": 1508, + "jju": 1670, + "resolve": 2182, + "semver": 2238, + "z-schema": 2626, + }, + "name": "@rushstack/node-core-library", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+node-core-library@3.63.0_@types+node@18.17.15/node_modules/@rushstack/node-core-library", + }, + Object { + "deps": Object { + "@types/node": 623, + "ajv": 788, + "ajv-draft-04": 780, + "ajv-formats": 783, + "fs-extra": 1362, + "import-lazy": 1508, + "jju": 1670, + "resolve": 2182, + "semver": 2238, + }, + "name": "@rushstack/node-core-library", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+node-core-library@5.4.1_@types+node@18.17.15/node_modules/@rushstack/node-core-library", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 453, + "@rushstack/terminal": 457, + "@types/node": 623, + }, + "name": "@rushstack/operation-graph", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+operation-graph@0.2.25_@types+node@18.17.15/node_modules/@rushstack/operation-graph", + }, + Object { + "deps": Object { + "resolve": 2182, + "strip-json-comments": 2351, + }, + "name": "@rushstack/rig-package", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+rig-package@0.5.2/node_modules/@rushstack/rig-package", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 452, + "@rushstack/webpack-plugin-utilities": 460, + "@types/webpack": 672, + }, + "name": "@rushstack/set-webpack-public-path-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+set-webpack-public-path-plugin@4.1.16_@types+node@18.17.15_@types+webpack@4.41.32_webpack@4.47.0/node_modules/@rushstack/set-webpack-public-path-plugin", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 453, + "@types/node": 623, + "supports-color": 2363, + }, + "name": "@rushstack/terminal", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+terminal@0.13.0_@types+node@18.17.15/node_modules/@rushstack/terminal", + }, + Object { + "deps": Object {}, + "name": "@rushstack/tree-pattern", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+tree-pattern@0.3.3/node_modules/@rushstack/tree-pattern", + }, + Object { + "deps": Object { + "@rushstack/terminal": 457, + "@types/argparse": 556, + "argparse": 816, + "string-argv": 2325, + }, + "name": "@rushstack/ts-command-line", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+ts-command-line@4.22.0_@types+node@18.17.15/node_modules/@rushstack/ts-command-line", + }, + Object { + "deps": Object { + "@types/webpack": 672, + "memfs": 1794, + "webpack": 2558, + "webpack-merge": 2554, + }, + "name": "@rushstack/webpack-plugin-utilities", + "root": "/common/temp/default/node_modules/.pnpm/@rushstack+webpack-plugin-utilities@0.3.16_@types+webpack@4.41.32_webpack@4.47.0/node_modules/@rushstack/webpack-plugin-utilities", + }, + Object { + "deps": Object { + "node-addon-api": 1867, + "node-gyp": 1873, + }, + "name": "@serverless-stack/aws-lambda-ric", + "root": "/common/temp/default/node_modules/.pnpm/@serverless-stack+aws-lambda-ric@2.0.13/node_modules/@serverless-stack/aws-lambda-ric", + }, + Object { + "deps": Object { + "@aws-cdk/aws-apigatewayv2-alpha": 5, + "@serverless-stack/core": 463, + "@serverless-stack/resources": 464, + "aws-cdk": 861, + "aws-cdk-lib": 859, + "aws-sdk": 862, + "body-parser": 903, + "chalk": 966, + "chokidar": 976, + "cross-spawn": 1075, + "detect-port-alt": 1146, + "esbuild": 1226, + "esbuild-runner": 1225, + "express": 1290, + "fs-extra": 1364, + "remeda": 2161, + "source-map-support": 2291, + "ws": 2595, + "yargs": 2620, + }, + "name": "@serverless-stack/cli", + "root": "/common/temp/default/node_modules/.pnpm/@serverless-stack+cli@1.18.4_@aws-sdk+client-sso-oidc@3.567.0_@aws-sdk+client-sts@3.567.0_constructs@10.0.130/node_modules/@serverless-stack/cli", + }, + Object { + "deps": Object { + "@pothos/core": 394, + "@serverless-stack/aws-lambda-ric": 461, + "@trpc/server": 554, + "acorn": 772, + "acorn-walk": 769, + "async-retry": 847, + "aws-cdk": 861, + "aws-cdk-lib": 859, + "aws-sdk": 862, + "chalk": 966, + "chokidar": 978, + "ci-info": 983, + "conf": 1042, + "constructs": 1048, + "cross-spawn": 1075, + "dendriform-immer-patch-optimiser": 1131, + "dotenv": 1175, + "dotenv-expand": 1174, + "esbuild": 1226, + "escodegen": 1234, + "express": 1290, + "fs-extra": 1364, + "graphql": 1422, + "immer": 1504, + "js-yaml": 1678, + "kysely": 1718, + "kysely-codegen": 1716, + "kysely-data-api": 1717, + "log4js": 1762, + "picomatch": 1976, + "remeda": 2161, + "semver": 2238, + "typescript": 2458, + "uuid": 2518, + "ws": 2595, + "xstate": 2605, + "zip-local": 2627, + }, + "name": "@serverless-stack/core", + "root": "/common/temp/default/node_modules/.pnpm/@serverless-stack+core@1.18.4/node_modules/@serverless-stack/core", + }, + Object { + "deps": Object { + "@aws-cdk/aws-apigatewayv2-alpha": 5, + "@aws-cdk/aws-apigatewayv2-authorizers-alpha": 6, + "@aws-cdk/aws-apigatewayv2-integrations-alpha": 7, + "@aws-cdk/aws-appsync-alpha": 8, + "@aws-sdk/client-codebuild": 14, + "@serverless-stack/core": 463, + "archiver": 812, + "aws-cdk-lib": 859, + "chalk": 966, + "constructs": 1048, + "cross-spawn": 1075, + "esbuild": 1227, + "fs-extra": 1364, + "glob": 1401, + "graphql": 1422, + "indent-string": 1513, + "zip-local": 2627, + }, + "name": "@serverless-stack/resources", + "root": "/common/temp/default/node_modules/.pnpm/@serverless-stack+resources@1.18.4_@aws-sdk+client-sso-oidc@3.567.0_@aws-sdk+client-sts@3.567.0/node_modules/@serverless-stack/resources", + }, + Object { + "deps": Object {}, + "name": "@sinclair/typebox", + "root": "/common/temp/default/node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox", + }, + Object { + "deps": Object {}, + "name": "@sindresorhus/is", + "root": "/common/temp/default/node_modules/.pnpm/@sindresorhus+is@4.6.0/node_modules/@sindresorhus/is", + }, + Object { + "deps": Object { + "type-detect": 2441, + }, + "name": "@sinonjs/commons", + "root": "/common/temp/default/node_modules/.pnpm/@sinonjs+commons@3.0.1/node_modules/@sinonjs/commons", + }, + Object { + "deps": Object { + "@sinonjs/commons": 467, + }, + "name": "@sinonjs/fake-timers", + "root": "/common/temp/default/node_modules/.pnpm/@sinonjs+fake-timers@10.3.0/node_modules/@sinonjs/fake-timers", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/abort-controller", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+abort-controller@2.2.0/node_modules/@smithy/abort-controller", + }, + Object { + "deps": Object { + "@smithy/node-config-provider": 482, + "@smithy/types": 492, + "@smithy/util-config-provider": 498, + "@smithy/util-middleware": 503, + "tslib": 2427, + }, + "name": "@smithy/config-resolver", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+config-resolver@2.2.0/node_modules/@smithy/config-resolver", + }, + Object { + "deps": Object { + "@smithy/middleware-endpoint": 478, + "@smithy/middleware-retry": 479, + "@smithy/middleware-serde": 480, + "@smithy/protocol-http": 485, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "@smithy/util-middleware": 503, + "tslib": 2427, + }, + "name": "@smithy/core", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+core@1.4.2/node_modules/@smithy/core", + }, + Object { + "deps": Object { + "@smithy/node-config-provider": 482, + "@smithy/property-provider": 484, + "@smithy/types": 492, + "@smithy/url-parser": 493, + "tslib": 2427, + }, + "name": "@smithy/credential-provider-imds", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+credential-provider-imds@2.3.0/node_modules/@smithy/credential-provider-imds", + }, + Object { + "deps": Object { + "@smithy/protocol-http": 485, + "@smithy/querystring-builder": 486, + "@smithy/types": 492, + "@smithy/util-base64": 494, + "tslib": 2427, + }, + "name": "@smithy/fetch-http-handler", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+fetch-http-handler@2.5.0/node_modules/@smithy/fetch-http-handler", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "@smithy/util-buffer-from": 497, + "@smithy/util-utf8": 507, + "tslib": 2427, + }, + "name": "@smithy/hash-node", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+hash-node@2.2.0/node_modules/@smithy/hash-node", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/invalid-dependency", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+invalid-dependency@2.2.0/node_modules/@smithy/invalid-dependency", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@smithy/is-array-buffer", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+is-array-buffer@2.2.0/node_modules/@smithy/is-array-buffer", + }, + Object { + "deps": Object { + "@smithy/protocol-http": 485, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/middleware-content-length", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+middleware-content-length@2.2.0/node_modules/@smithy/middleware-content-length", + }, + Object { + "deps": Object { + "@smithy/middleware-serde": 480, + "@smithy/node-config-provider": 482, + "@smithy/shared-ini-file-loader": 489, + "@smithy/types": 492, + "@smithy/url-parser": 493, + "@smithy/util-middleware": 503, + "tslib": 2427, + }, + "name": "@smithy/middleware-endpoint", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+middleware-endpoint@2.5.1/node_modules/@smithy/middleware-endpoint", + }, + Object { + "deps": Object { + "@smithy/node-config-provider": 482, + "@smithy/protocol-http": 485, + "@smithy/service-error-classification": 488, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "@smithy/util-middleware": 503, + "@smithy/util-retry": 504, + "tslib": 2427, + "uuid": 2519, + }, + "name": "@smithy/middleware-retry", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+middleware-retry@2.3.1/node_modules/@smithy/middleware-retry", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/middleware-serde", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+middleware-serde@2.3.0/node_modules/@smithy/middleware-serde", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/middleware-stack", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+middleware-stack@2.2.0/node_modules/@smithy/middleware-stack", + }, + Object { + "deps": Object { + "@smithy/property-provider": 484, + "@smithy/shared-ini-file-loader": 489, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/node-config-provider", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+node-config-provider@2.3.0/node_modules/@smithy/node-config-provider", + }, + Object { + "deps": Object { + "@smithy/abort-controller": 469, + "@smithy/protocol-http": 485, + "@smithy/querystring-builder": 486, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/node-http-handler", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+node-http-handler@2.5.0/node_modules/@smithy/node-http-handler", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/property-provider", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+property-provider@2.2.0/node_modules/@smithy/property-provider", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/protocol-http", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+protocol-http@3.3.0/node_modules/@smithy/protocol-http", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "@smithy/util-uri-escape": 506, + "tslib": 2427, + }, + "name": "@smithy/querystring-builder", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+querystring-builder@2.2.0/node_modules/@smithy/querystring-builder", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/querystring-parser", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+querystring-parser@2.2.0/node_modules/@smithy/querystring-parser", + }, + Object { + "deps": Object { + "@smithy/types": 492, + }, + "name": "@smithy/service-error-classification", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+service-error-classification@2.1.5/node_modules/@smithy/service-error-classification", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/shared-ini-file-loader", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+shared-ini-file-loader@2.4.0/node_modules/@smithy/shared-ini-file-loader", + }, + Object { + "deps": Object { + "@smithy/is-array-buffer": 476, + "@smithy/types": 492, + "@smithy/util-hex-encoding": 502, + "@smithy/util-middleware": 503, + "@smithy/util-uri-escape": 506, + "@smithy/util-utf8": 507, + "tslib": 2427, + }, + "name": "@smithy/signature-v4", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+signature-v4@2.3.0/node_modules/@smithy/signature-v4", + }, + Object { + "deps": Object { + "@smithy/middleware-endpoint": 478, + "@smithy/middleware-stack": 481, + "@smithy/protocol-http": 485, + "@smithy/types": 492, + "@smithy/util-stream": 505, + "tslib": 2427, + }, + "name": "@smithy/smithy-client", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+smithy-client@2.5.1/node_modules/@smithy/smithy-client", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@smithy/types", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+types@2.12.0/node_modules/@smithy/types", + }, + Object { + "deps": Object { + "@smithy/querystring-parser": 487, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/url-parser", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+url-parser@2.2.0/node_modules/@smithy/url-parser", + }, + Object { + "deps": Object { + "@smithy/util-buffer-from": 497, + "@smithy/util-utf8": 507, + "tslib": 2427, + }, + "name": "@smithy/util-base64", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-base64@2.3.0/node_modules/@smithy/util-base64", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@smithy/util-body-length-browser", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-body-length-browser@2.2.0/node_modules/@smithy/util-body-length-browser", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@smithy/util-body-length-node", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-body-length-node@2.3.0/node_modules/@smithy/util-body-length-node", + }, + Object { + "deps": Object { + "@smithy/is-array-buffer": 476, + "tslib": 2427, + }, + "name": "@smithy/util-buffer-from", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-buffer-from@2.2.0/node_modules/@smithy/util-buffer-from", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@smithy/util-config-provider", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-config-provider@2.3.0/node_modules/@smithy/util-config-provider", + }, + Object { + "deps": Object { + "@smithy/property-provider": 484, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "bowser": 907, + "tslib": 2427, + }, + "name": "@smithy/util-defaults-mode-browser", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-defaults-mode-browser@2.2.1/node_modules/@smithy/util-defaults-mode-browser", + }, + Object { + "deps": Object { + "@smithy/config-resolver": 470, + "@smithy/credential-provider-imds": 472, + "@smithy/node-config-provider": 482, + "@smithy/property-provider": 484, + "@smithy/smithy-client": 491, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/util-defaults-mode-node", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-defaults-mode-node@2.3.1/node_modules/@smithy/util-defaults-mode-node", + }, + Object { + "deps": Object { + "@smithy/node-config-provider": 482, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/util-endpoints", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-endpoints@1.2.0/node_modules/@smithy/util-endpoints", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@smithy/util-hex-encoding", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-hex-encoding@2.2.0/node_modules/@smithy/util-hex-encoding", + }, + Object { + "deps": Object { + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/util-middleware", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-middleware@2.2.0/node_modules/@smithy/util-middleware", + }, + Object { + "deps": Object { + "@smithy/service-error-classification": 488, + "@smithy/types": 492, + "tslib": 2427, + }, + "name": "@smithy/util-retry", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-retry@2.2.0/node_modules/@smithy/util-retry", + }, + Object { + "deps": Object { + "@smithy/fetch-http-handler": 473, + "@smithy/node-http-handler": 483, + "@smithy/types": 492, + "@smithy/util-base64": 494, + "@smithy/util-buffer-from": 497, + "@smithy/util-hex-encoding": 502, + "@smithy/util-utf8": 507, + "tslib": 2427, + }, + "name": "@smithy/util-stream", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-stream@2.2.0/node_modules/@smithy/util-stream", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@smithy/util-uri-escape", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-uri-escape@2.2.0/node_modules/@smithy/util-uri-escape", + }, + Object { + "deps": Object { + "@smithy/util-buffer-from": 497, + "tslib": 2427, + }, + "name": "@smithy/util-utf8", + "root": "/common/temp/default/node_modules/.pnpm/@smithy+util-utf8@2.3.0/node_modules/@smithy/util-utf8", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/components": 528, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/theming": 546, + "core-js": 1061, + "fast-deep-equal": 1298, + "global": 1408, + "lodash": 1760, + "polished": 1992, + "prop-types": 2060, + "react": 2119, + "react-dom": 2099, + "react-inspector": 2105, + "regenerator-runtime": 2143, + "telejson": 2377, + "ts-dedent": 2420, + "util-deprecate": 2508, + "uuid-browser": 2515, + }, + "name": "@storybook/addon-actions", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-actions@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/addon-actions", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/client-logger": 526, + "@storybook/components": 528, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/theming": 546, + "core-js": 1061, + "global": 1408, + "memoizerific": 1795, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "ts-dedent": 2420, + "util-deprecate": 2508, + }, + "name": "@storybook/addon-backgrounds", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-backgrounds@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/addon-backgrounds", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/client-logger": 526, + "@storybook/components": 528, + "@storybook/core-common": 530, + "@storybook/csf": 535, + "@storybook/node-logger": 537, + "@storybook/store": 545, + "@storybook/theming": 546, + "core-js": 1061, + "lodash": 1760, + "react": 2119, + "react-dom": 2099, + "ts-dedent": 2420, + }, + "name": "@storybook/addon-controls", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-controls@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2_typescript@5.4.2/node_modules/@storybook/addon-controls", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/generator": 61, + "@babel/parser": 92, + "@babel/plugin-transform-react-jsx": 172, + "@babel/preset-env": 186, + "@jest/transform": 344, + "@mdx-js/loader": 358, + "@mdx-js/mdx": 359, + "@mdx-js/react": 360, + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/builder-webpack4": 520, + "@storybook/client-logger": 526, + "@storybook/components": 528, + "@storybook/core": 533, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/csf-tools": 534, + "@storybook/node-logger": 537, + "@storybook/postinstall": 538, + "@storybook/preview-web": 539, + "@storybook/react": 541, + "@storybook/source-loader": 544, + "@storybook/store": 545, + "@storybook/theming": 546, + "acorn": 771, + "acorn-jsx": 766, + "acorn-walk": 768, + "core-js": 1061, + "doctrine": 1158, + "escodegen": 1234, + "fast-deep-equal": 1298, + "global": 1408, + "html-tags": 1467, + "js-string-escape": 1673, + "loader-utils": 1736, + "lodash": 1760, + "nanoid": 1856, + "p-limit": 1933, + "prettier": 2042, + "prop-types": 2060, + "react": 2119, + "react-dom": 2099, + "react-element-to-jsx-string": 2101, + "regenerator-runtime": 2143, + "remark-external-links": 2155, + "remark-slug": 2159, + "ts-dedent": 2420, + "util-deprecate": 2508, + "webpack": 2558, + }, + "name": "@storybook/addon-docs", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-docs@6.4.22_@storybook+react@6.4.22_@types+react@17.0.74_react-dom@17.0.2_re_cyh2kl4oxqqjzzvuae6ks2n4ji/node_modules/@storybook/addon-docs", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@storybook/addon-actions": 508, + "@storybook/addon-backgrounds": 509, + "@storybook/addon-controls": 510, + "@storybook/addon-docs": 511, + "@storybook/addon-measure": 514, + "@storybook/addon-outline": 515, + "@storybook/addon-toolbars": 516, + "@storybook/addon-viewport": 517, + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/node-logger": 537, + "babel-loader": 866, + "core-js": 1061, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "ts-dedent": 2420, + "webpack": 2558, + }, + "name": "@storybook/addon-essentials", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-essentials@6.4.22_@babel+core@7.20.12_@storybook+react@6.4.22_@types+react@1_dbhp3ql5ql4kiy4ubyky74xexq/node_modules/@storybook/addon-essentials", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/client-logger": 526, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/router": 542, + "@types/qs": 636, + "core-js": 1061, + "global": 1408, + "prop-types": 2060, + "qs": 2079, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "ts-dedent": 2420, + }, + "name": "@storybook/addon-links", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-links@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/addon-links", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/client-logger": 526, + "@storybook/components": 528, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "core-js": 1061, + "global": 1408, + "react": 2119, + "react-dom": 2099, + }, + "name": "@storybook/addon-measure", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-measure@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/addon-measure", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/client-logger": 526, + "@storybook/components": 528, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "core-js": 1061, + "global": 1408, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "ts-dedent": 2420, + }, + "name": "@storybook/addon-outline", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-outline@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/addon-outline", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/components": 528, + "@storybook/theming": 546, + "core-js": 1061, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + }, + "name": "@storybook/addon-toolbars", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-toolbars@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/addon-toolbars", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/client-logger": 526, + "@storybook/components": 528, + "@storybook/core-events": 531, + "@storybook/theming": 546, + "core-js": 1061, + "global": 1408, + "memoizerific": 1795, + "prop-types": 2060, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + }, + "name": "@storybook/addon-viewport", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addon-viewport@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/addon-viewport", + }, + Object { + "deps": Object { + "@storybook/api": 519, + "@storybook/channels": 523, + "@storybook/client-logger": 526, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/router": 542, + "@storybook/theming": 546, + "@types/react": 641, + "@types/webpack-env": 670, + "core-js": 1061, + "global": 1408, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + }, + "name": "@storybook/addons", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+addons@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/addons", + }, + Object { + "deps": Object { + "@storybook/channels": 523, + "@storybook/client-logger": 526, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/router": 542, + "@storybook/semver": 543, + "@storybook/theming": 546, + "@types/react": 641, + "core-js": 1061, + "fast-deep-equal": 1298, + "global": 1408, + "lodash": 1760, + "memoizerific": 1795, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "store2": 2318, + "telejson": 2377, + "ts-dedent": 2420, + "util-deprecate": 2508, + }, + "name": "@storybook/api", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+api@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/api", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/plugin-proposal-class-properties": 96, + "@babel/plugin-proposal-decorators": 97, + "@babel/plugin-proposal-export-default-from": 98, + "@babel/plugin-proposal-nullish-coalescing-operator": 99, + "@babel/plugin-proposal-object-rest-spread": 101, + "@babel/plugin-proposal-optional-chaining": 102, + "@babel/plugin-proposal-private-methods": 103, + "@babel/plugin-syntax-dynamic-import": 110, + "@babel/plugin-transform-arrow-functions": 131, + "@babel/plugin-transform-block-scoping": 135, + "@babel/plugin-transform-classes": 138, + "@babel/plugin-transform-destructuring": 140, + "@babel/plugin-transform-for-of": 147, + "@babel/plugin-transform-parameters": 166, + "@babel/plugin-transform-shorthand-properties": 176, + "@babel/plugin-transform-spread": 177, + "@babel/plugin-transform-template-literals": 179, + "@babel/preset-env": 186, + "@babel/preset-react": 189, + "@babel/preset-typescript": 190, + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/channel-postmessage": 521, + "@storybook/channels": 523, + "@storybook/client-api": 525, + "@storybook/client-logger": 526, + "@storybook/components": 528, + "@storybook/core-common": 530, + "@storybook/core-events": 531, + "@storybook/node-logger": 537, + "@storybook/preview-web": 539, + "@storybook/router": 542, + "@storybook/semver": 543, + "@storybook/store": 545, + "@storybook/theming": 546, + "@storybook/ui": 547, + "@types/node": 621, + "@types/webpack": 672, + "autoprefixer": 856, + "babel-loader": 866, + "babel-plugin-macros": 873, + "babel-plugin-polyfill-corejs3": 877, + "case-sensitive-paths-webpack-plugin": 960, + "core-js": 1061, + "css-loader": 1079, + "file-loader": 1321, + "find-up": 1333, + "fork-ts-checker-webpack-plugin": 1349, + "glob": 1401, + "glob-promise": 1397, + "global": 1408, + "html-webpack-plugin": 1469, + "pnp-webpack-plugin": 1990, + "postcss": 2037, + "postcss-flexbugs-fixes": 2002, + "postcss-loader": 2004, + "raw-loader": 2093, + "react": 2119, + "react-dom": 2099, + "stable": 2309, + "style-loader": 2353, + "terser-webpack-plugin": 2381, + "ts-dedent": 2420, + "typescript": 2459, + "url-loader": 2497, + "util-deprecate": 2508, + "webpack": 2558, + "webpack-dev-middleware": 2545, + "webpack-filter-warnings-plugin": 2551, + "webpack-hot-middleware": 2552, + "webpack-virtual-modules": 2557, + }, + "name": "@storybook/builder-webpack4", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+builder-webpack4@6.4.22_@types+react@17.0.74_eslint@8.57.0_react-dom@17.0.2_react@17.0.2_typescript@5.4.2/node_modules/@storybook/builder-webpack4", + }, + Object { + "deps": Object { + "@storybook/channels": 523, + "@storybook/client-logger": 526, + "@storybook/core-events": 531, + "core-js": 1061, + "global": 1408, + "qs": 2079, + "telejson": 2377, + }, + "name": "@storybook/channel-postmessage", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+channel-postmessage@6.4.22/node_modules/@storybook/channel-postmessage", + }, + Object { + "deps": Object { + "@storybook/channels": 523, + "@storybook/client-logger": 526, + "core-js": 1061, + "global": 1408, + "telejson": 2377, + }, + "name": "@storybook/channel-websocket", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+channel-websocket@6.4.22/node_modules/@storybook/channel-websocket", + }, + Object { + "deps": Object { + "core-js": 1061, + "ts-dedent": 2420, + "util-deprecate": 2508, + }, + "name": "@storybook/channels", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+channels@6.4.22/node_modules/@storybook/channels", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/preset-env": 186, + "@storybook/codemod": 527, + "@storybook/core-common": 530, + "@storybook/csf-tools": 534, + "@storybook/node-logger": 537, + "@storybook/semver": 543, + "boxen": 908, + "chalk": 966, + "commander": 1029, + "core-js": 1061, + "cross-spawn": 1075, + "envinfo": 1206, + "express": 1290, + "find-up": 1333, + "fs-extra": 1364, + "get-port": 1383, + "globby": 1414, + "jest": 1669, + "jscodeshift": 1680, + "json5": 1694, + "leven": 1722, + "prompts": 2059, + "puppeteer-core": 2075, + "read-pkg-up": 2122, + "shelljs": 2265, + "strip-json-comments": 2351, + "ts-dedent": 2420, + "update-notifier": 2493, + }, + "name": "@storybook/cli", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+cli@6.4.22_jest@29.3.1_react-dom@17.0.2_react@17.0.2_typescript@5.4.2/node_modules/@storybook/cli", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/channel-postmessage": 521, + "@storybook/channels": 523, + "@storybook/client-logger": 526, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/store": 545, + "@types/qs": 636, + "@types/webpack-env": 670, + "core-js": 1061, + "fast-deep-equal": 1298, + "global": 1408, + "lodash": 1760, + "memoizerific": 1795, + "qs": 2079, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "store2": 2318, + "synchronous-promise": 2368, + "ts-dedent": 2420, + "util-deprecate": 2508, + }, + "name": "@storybook/client-api", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+client-api@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/client-api", + }, + Object { + "deps": Object { + "core-js": 1061, + "global": 1408, + }, + "name": "@storybook/client-logger", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+client-logger@6.4.22/node_modules/@storybook/client-logger", + }, + Object { + "deps": Object { + "@babel/types": 196, + "@mdx-js/mdx": 359, + "@storybook/csf": 535, + "@storybook/csf-tools": 534, + "@storybook/node-logger": 537, + "core-js": 1061, + "cross-spawn": 1075, + "globby": 1414, + "jscodeshift": 1680, + "lodash": 1760, + "prettier": 2042, + "recast": 2133, + "regenerator-runtime": 2143, + }, + "name": "@storybook/codemod", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+codemod@6.4.22_@babel+preset-env@7.24.0/node_modules/@storybook/codemod", + }, + Object { + "deps": Object { + "@popperjs/core": 393, + "@storybook/client-logger": 526, + "@storybook/csf": 535, + "@storybook/theming": 546, + "@types/color-convert": 566, + "@types/overlayscrollbars": 630, + "@types/react-syntax-highlighter": 640, + "color-convert": 1015, + "core-js": 1061, + "fast-deep-equal": 1298, + "global": 1408, + "lodash": 1760, + "markdown-to-jsx": 1784, + "memoizerific": 1795, + "overlayscrollbars": 1925, + "polished": 1992, + "prop-types": 2060, + "react": 2119, + "react-colorful": 2096, + "react-dom": 2099, + "react-popper-tooltip": 2109, + "react-syntax-highlighter": 2116, + "react-textarea-autosize": 2117, + "regenerator-runtime": 2143, + "ts-dedent": 2420, + "util-deprecate": 2508, + }, + "name": "@storybook/components", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+components@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/components", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/channel-postmessage": 521, + "@storybook/channel-websocket": 522, + "@storybook/client-api": 525, + "@storybook/client-logger": 526, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/preview-web": 539, + "@storybook/store": 545, + "@storybook/ui": 547, + "airbnb-js-shims": 779, + "ansi-to-html": 803, + "core-js": 1061, + "global": 1408, + "lodash": 1760, + "qs": 2079, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "ts-dedent": 2420, + "typescript": 2459, + "unfetch": 2465, + "util-deprecate": 2508, + "webpack": 2558, + }, + "name": "@storybook/core-client", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+core-client@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2_typescript@5.4.2_webpack@4.47.0/node_modules/@storybook/core-client", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/plugin-proposal-class-properties": 96, + "@babel/plugin-proposal-decorators": 97, + "@babel/plugin-proposal-export-default-from": 98, + "@babel/plugin-proposal-nullish-coalescing-operator": 99, + "@babel/plugin-proposal-object-rest-spread": 101, + "@babel/plugin-proposal-optional-chaining": 102, + "@babel/plugin-proposal-private-methods": 103, + "@babel/plugin-syntax-dynamic-import": 110, + "@babel/plugin-transform-arrow-functions": 131, + "@babel/plugin-transform-block-scoping": 135, + "@babel/plugin-transform-classes": 138, + "@babel/plugin-transform-destructuring": 140, + "@babel/plugin-transform-for-of": 147, + "@babel/plugin-transform-parameters": 166, + "@babel/plugin-transform-shorthand-properties": 176, + "@babel/plugin-transform-spread": 177, + "@babel/preset-env": 186, + "@babel/preset-react": 189, + "@babel/preset-typescript": 190, + "@babel/register": 191, + "@storybook/node-logger": 537, + "@storybook/semver": 543, + "@types/node": 621, + "@types/pretty-hrtime": 634, + "babel-loader": 866, + "babel-plugin-macros": 874, + "babel-plugin-polyfill-corejs3": 877, + "chalk": 966, + "core-js": 1061, + "express": 1290, + "file-system-cache": 1322, + "find-up": 1333, + "fork-ts-checker-webpack-plugin": 1350, + "fs-extra": 1364, + "glob": 1401, + "handlebars": 1425, + "interpret": 1526, + "json5": 1694, + "lazy-universal-dotenv": 1720, + "picomatch": 1976, + "pkg-dir": 1987, + "pretty-hrtime": 2047, + "react": 2119, + "react-dom": 2099, + "resolve-from": 2179, + "slash": 2273, + "telejson": 2377, + "ts-dedent": 2420, + "typescript": 2459, + "util-deprecate": 2508, + "webpack": 2558, + }, + "name": "@storybook/core-common", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+core-common@6.4.22_eslint@8.57.0_react-dom@17.0.2_react@17.0.2_typescript@5.4.2/node_modules/@storybook/core-common", + }, + Object { + "deps": Object { + "core-js": 1061, + }, + "name": "@storybook/core-events", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+core-events@6.4.22/node_modules/@storybook/core-events", + }, + Object { + "deps": Object { + "@discoveryjs/json-ext": 204, + "@storybook/builder-webpack4": 520, + "@storybook/core-client": 529, + "@storybook/core-common": 530, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/csf-tools": 534, + "@storybook/manager-webpack4": 536, + "@storybook/node-logger": 537, + "@storybook/semver": 543, + "@storybook/store": 545, + "@types/node": 621, + "@types/node-fetch": 617, + "@types/pretty-hrtime": 634, + "@types/webpack": 672, + "better-opn": 890, + "boxen": 908, + "chalk": 966, + "cli-table3": 994, + "commander": 1029, + "compression": 1038, + "core-js": 1061, + "cpy": 1067, + "detect-port": 1147, + "express": 1290, + "file-system-cache": 1322, + "fs-extra": 1364, + "globby": 1414, + "ip": 1529, + "lodash": 1760, + "node-fetch": 1871, + "pretty-hrtime": 2047, + "prompts": 2059, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "serve-favicon": 2246, + "slash": 2273, + "telejson": 2377, + "ts-dedent": 2420, + "typescript": 2459, + "util-deprecate": 2508, + "watchpack": 2537, + "webpack": 2558, + "ws": 2595, + }, + "name": "@storybook/core-server", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+core-server@6.4.22_@types+react@17.0.74_eslint@8.57.0_react-dom@17.0.2_react@17.0.2_typescript@5.4.2/node_modules/@storybook/core-server", + }, + Object { + "deps": Object { + "@storybook/core-client": 529, + "@storybook/core-server": 532, + "react": 2119, + "react-dom": 2099, + "typescript": 2459, + "webpack": 2558, + }, + "name": "@storybook/core", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+core@6.4.22_@types+react@17.0.74_eslint@8.57.0_react-dom@17.0.2_react@17.0.2_typescript@5.4.2_webpack@4.47.0/node_modules/@storybook/core", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/generator": 61, + "@babel/parser": 92, + "@babel/plugin-transform-react-jsx": 172, + "@babel/preset-env": 186, + "@babel/traverse": 195, + "@babel/types": 196, + "@mdx-js/mdx": 359, + "@storybook/csf": 535, + "core-js": 1061, + "fs-extra": 1364, + "global": 1408, + "js-string-escape": 1673, + "lodash": 1760, + "prettier": 2042, + "regenerator-runtime": 2143, + "ts-dedent": 2420, + }, + "name": "@storybook/csf-tools", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+csf-tools@6.4.22/node_modules/@storybook/csf-tools", + }, + Object { + "deps": Object { + "lodash": 1760, + }, + "name": "@storybook/csf", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+csf@0.0.2--canary.87bc651.0/node_modules/@storybook/csf", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/plugin-transform-template-literals": 179, + "@babel/preset-react": 189, + "@storybook/addons": 518, + "@storybook/core-client": 529, + "@storybook/core-common": 530, + "@storybook/node-logger": 537, + "@storybook/theming": 546, + "@storybook/ui": 547, + "@types/node": 621, + "@types/webpack": 672, + "babel-loader": 866, + "case-sensitive-paths-webpack-plugin": 960, + "chalk": 966, + "core-js": 1061, + "css-loader": 1079, + "express": 1290, + "file-loader": 1321, + "file-system-cache": 1322, + "find-up": 1333, + "fs-extra": 1364, + "html-webpack-plugin": 1469, + "node-fetch": 1871, + "pnp-webpack-plugin": 1990, + "react": 2119, + "react-dom": 2099, + "read-pkg-up": 2122, + "regenerator-runtime": 2143, + "resolve-from": 2179, + "style-loader": 2353, + "telejson": 2377, + "terser-webpack-plugin": 2381, + "ts-dedent": 2420, + "typescript": 2459, + "url-loader": 2497, + "util-deprecate": 2508, + "webpack": 2558, + "webpack-dev-middleware": 2545, + "webpack-virtual-modules": 2557, + }, + "name": "@storybook/manager-webpack4", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+manager-webpack4@6.4.22_@types+react@17.0.74_eslint@8.57.0_react-dom@17.0.2_react@17.0.2_typescript@5.4.2/node_modules/@storybook/manager-webpack4", + }, + Object { + "deps": Object { + "@types/npmlog": 629, + "chalk": 966, + "core-js": 1061, + "npmlog": 1892, + "pretty-hrtime": 2047, + }, + "name": "@storybook/node-logger", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+node-logger@6.4.22/node_modules/@storybook/node-logger", + }, + Object { + "deps": Object { + "core-js": 1061, + }, + "name": "@storybook/postinstall", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+postinstall@6.4.22/node_modules/@storybook/postinstall", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/channel-postmessage": 521, + "@storybook/client-logger": 526, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "@storybook/store": 545, + "ansi-to-html": 803, + "core-js": 1061, + "global": 1408, + "lodash": 1760, + "qs": 2079, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "synchronous-promise": 2368, + "ts-dedent": 2420, + "unfetch": 2465, + "util-deprecate": 2508, + }, + "name": "@storybook/preview-web", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+preview-web@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/preview-web", + }, + Object { + "deps": Object { + "debug": 1106, + "endent": 1198, + "find-cache-dir": 1328, + "flat-cache": 1338, + "micromatch": 1806, + "react-docgen-typescript": 2097, + "tslib": 2425, + "typescript": 2459, + "webpack": 2558, + }, + "name": "@storybook/react-docgen-typescript-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+react-docgen-typescript-plugin@1.0.2-canary.253f8c1.0_typescript@5.4.2_webpack@4.47.0/node_modules/@storybook/react-docgen-typescript-plugin", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/preset-flow": 187, + "@babel/preset-react": 189, + "@pmmmwh/react-refresh-webpack-plugin": 376, + "@storybook/addons": 518, + "@storybook/core": 533, + "@storybook/core-common": 530, + "@storybook/csf": 535, + "@storybook/node-logger": 537, + "@storybook/react-docgen-typescript-plugin": 540, + "@storybook/semver": 543, + "@storybook/store": 545, + "@types/node": 623, + "@types/react": 641, + "@types/webpack-env": 670, + "babel-plugin-add-react-displayname": 867, + "babel-plugin-named-asset-import": 875, + "babel-plugin-react-docgen": 880, + "core-js": 1061, + "global": 1408, + "lodash": 1760, + "prop-types": 2060, + "react": 2119, + "react-dom": 2099, + "react-refresh": 2112, + "read-pkg-up": 2122, + "regenerator-runtime": 2143, + "ts-dedent": 2420, + "typescript": 2459, + "webpack": 2558, + }, + "name": "@storybook/react", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+react@6.4.22_@babel+core@7.20.12_@types+node@18.17.15_@types+react@17.0.74_eslint@_z6zmlpizzl5plaxmf6nthuwe34/node_modules/@storybook/react", + }, + Object { + "deps": Object { + "@storybook/client-logger": 526, + "@types/react": 641, + "core-js": 1061, + "fast-deep-equal": 1298, + "global": 1408, + "history": 1455, + "lodash": 1760, + "memoizerific": 1795, + "qs": 2079, + "react": 2119, + "react-dom": 2099, + "react-router": 2114, + "react-router-dom": 2113, + "ts-dedent": 2420, + }, + "name": "@storybook/router", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+router@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/router", + }, + Object { + "deps": Object { + "core-js": 1061, + "find-up": 1332, + }, + "name": "@storybook/semver", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+semver@7.3.2/node_modules/@storybook/semver", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/client-logger": 526, + "@storybook/csf": 535, + "core-js": 1061, + "estraverse": 1273, + "global": 1408, + "loader-utils": 1736, + "lodash": 1760, + "prettier": 2042, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + }, + "name": "@storybook/source-loader", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+source-loader@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/source-loader", + }, + Object { + "deps": Object { + "@storybook/addons": 518, + "@storybook/client-logger": 526, + "@storybook/core-events": 531, + "@storybook/csf": 535, + "core-js": 1061, + "fast-deep-equal": 1298, + "global": 1408, + "lodash": 1760, + "memoizerific": 1795, + "react": 2119, + "react-dom": 2099, + "regenerator-runtime": 2143, + "slash": 2273, + "stable": 2309, + "synchronous-promise": 2368, + "ts-dedent": 2420, + "util-deprecate": 2508, + }, + "name": "@storybook/store", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+store@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/store", + }, + Object { + "deps": Object { + "@emotion/core": 206, + "@emotion/is-prop-valid": 210, + "@emotion/serialize": 214, + "@emotion/styled": 217, + "@emotion/utils": 222, + "@storybook/client-logger": 526, + "core-js": 1061, + "deep-object-diff": 1118, + "emotion-theming": 1193, + "global": 1408, + "memoizerific": 1795, + "polished": 1992, + "react": 2119, + "react-dom": 2099, + "resolve-from": 2179, + "ts-dedent": 2420, + }, + "name": "@storybook/theming", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+theming@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/theming", + }, + Object { + "deps": Object { + "@emotion/core": 206, + "@storybook/addons": 518, + "@storybook/api": 519, + "@storybook/channels": 523, + "@storybook/client-logger": 526, + "@storybook/components": 528, + "@storybook/core-events": 531, + "@storybook/router": 542, + "@storybook/semver": 543, + "@storybook/theming": 546, + "copy-to-clipboard": 1058, + "core-js": 1061, + "core-js-pure": 1060, + "downshift": 1178, + "emotion-theming": 1193, + "fuse.js": 1374, + "global": 1408, + "lodash": 1760, + "markdown-to-jsx": 1784, + "memoizerific": 1795, + "polished": 1992, + "qs": 2079, + "react": 2119, + "react-dom": 2099, + "react-draggable": 2100, + "react-helmet-async": 2103, + "react-sizeme": 2115, + "regenerator-runtime": 2143, + "resolve-from": 2179, + "store2": 2318, + }, + "name": "@storybook/ui", + "root": "/common/temp/default/node_modules/.pnpm/@storybook+ui@6.4.22_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/@storybook/ui", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@swc/helpers", + "root": "/common/temp/default/node_modules/.pnpm/@swc+helpers@0.4.14/node_modules/@swc/helpers", + }, + Object { + "deps": Object { + "legacy-swc-helpers": 548, + "tslib": 2427, + }, + "name": "@swc/helpers", + "root": "/common/temp/default/node_modules/.pnpm/@swc+helpers@0.4.36/node_modules/@swc/helpers", + }, + Object { + "deps": Object { + "tslib": 2427, + }, + "name": "@swc/helpers", + "root": "/common/temp/default/node_modules/.pnpm/@swc+helpers@0.5.7/node_modules/@swc/helpers", + }, + Object { + "deps": Object { + "defer-to-connect": 1122, + }, + "name": "@szmarczak/http-timer", + "root": "/common/temp/default/node_modules/.pnpm/@szmarczak+http-timer@4.0.6/node_modules/@szmarczak/http-timer", + }, + Object { + "deps": Object {}, + "name": "@tootallnate/once", + "root": "/common/temp/default/node_modules/.pnpm/@tootallnate+once@1.1.2/node_modules/@tootallnate/once", + }, + Object { + "deps": Object {}, + "name": "@tootallnate/once", + "root": "/common/temp/default/node_modules/.pnpm/@tootallnate+once@2.0.0/node_modules/@tootallnate/once", + }, + Object { + "deps": Object {}, + "name": "@trpc/server", + "root": "/common/temp/default/node_modules/.pnpm/@trpc+server@9.27.4/node_modules/@trpc/server", + }, + Object { + "deps": Object {}, + "name": "@trysound/sax", + "root": "/common/temp/default/node_modules/.pnpm/@trysound+sax@0.2.0/node_modules/@trysound/sax", + }, + Object { + "deps": Object {}, + "name": "@types/argparse", + "root": "/common/temp/default/node_modules/.pnpm/@types+argparse@1.0.38/node_modules/@types/argparse", + }, + Object { + "deps": Object {}, + "name": "@types/aws-lambda", + "root": "/common/temp/default/node_modules/.pnpm/@types+aws-lambda@8.10.93/node_modules/@types/aws-lambda", + }, + Object { + "deps": Object { + "@babel/parser": 92, + "@babel/types": 196, + "@types/babel__generator": 559, + "@types/babel__template": 560, + "@types/babel__traverse": 561, + }, + "name": "@types/babel__core", + "root": "/common/temp/default/node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@types/babel__generator", + "root": "/common/temp/default/node_modules/.pnpm/@types+babel__generator@7.6.8/node_modules/@types/babel__generator", + }, + Object { + "deps": Object { + "@babel/parser": 92, + "@babel/types": 196, + }, + "name": "@types/babel__template", + "root": "/common/temp/default/node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template", + }, + Object { + "deps": Object { + "@babel/types": 196, + }, + "name": "@types/babel__traverse", + "root": "/common/temp/default/node_modules/.pnpm/@types+babel__traverse@7.20.5/node_modules/@types/babel__traverse", + }, + Object { + "deps": Object { + "@types/connect": 571, + "@types/node": 625, + }, + "name": "@types/body-parser", + "root": "/common/temp/default/node_modules/.pnpm/@types+body-parser@1.19.5/node_modules/@types/body-parser", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/bonjour", + "root": "/common/temp/default/node_modules/.pnpm/@types+bonjour@3.5.13/node_modules/@types/bonjour", + }, + Object { + "deps": Object { + "@types/http-cache-semantics": 588, + "@types/keyv": 606, + "@types/node": 625, + "@types/responselike": 644, + }, + "name": "@types/cacheable-request", + "root": "/common/temp/default/node_modules/.pnpm/@types+cacheable-request@6.0.3/node_modules/@types/cacheable-request", + }, + Object { + "deps": Object {}, + "name": "@types/cli-table", + "root": "/common/temp/default/node_modules/.pnpm/@types+cli-table@0.3.0/node_modules/@types/cli-table", + }, + Object { + "deps": Object { + "@types/color-name": 567, + }, + "name": "@types/color-convert", + "root": "/common/temp/default/node_modules/.pnpm/@types+color-convert@2.0.3/node_modules/@types/color-convert", + }, + Object { + "deps": Object {}, + "name": "@types/color-name", + "root": "/common/temp/default/node_modules/.pnpm/@types+color-name@1.1.3/node_modules/@types/color-name", + }, + Object { + "deps": Object { + "@types/express": 579, + }, + "name": "@types/compression", + "root": "/common/temp/default/node_modules/.pnpm/@types+compression@1.7.5_@types+express@4.17.21/node_modules/@types/compression", + }, + Object { + "deps": Object {}, + "name": "@types/configstore", + "root": "/common/temp/default/node_modules/.pnpm/@types+configstore@6.0.2/node_modules/@types/configstore", + }, + Object { + "deps": Object { + "@types/express-serve-static-core": 578, + "@types/node": 625, + }, + "name": "@types/connect-history-api-fallback", + "root": "/common/temp/default/node_modules/.pnpm/@types+connect-history-api-fallback@1.5.4/node_modules/@types/connect-history-api-fallback", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/connect", + "root": "/common/temp/default/node_modules/.pnpm/@types+connect@3.4.38/node_modules/@types/connect", + }, + Object { + "deps": Object { + "@types/node": 624, + }, + "name": "@types/cors", + "root": "/common/temp/default/node_modules/.pnpm/@types+cors@2.8.17/node_modules/@types/cors", + }, + Object { + "deps": Object {}, + "name": "@types/diff", + "root": "/common/temp/default/node_modules/.pnpm/@types+diff@5.0.1/node_modules/@types/diff", + }, + Object { + "deps": Object { + "@types/eslint": 575, + "@types/estree": 576, + }, + "name": "@types/eslint-scope", + "root": "/common/temp/default/node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope", + }, + Object { + "deps": Object { + "@types/estree": 576, + "@types/json-schema": 604, + }, + "name": "@types/eslint", + "root": "/common/temp/default/node_modules/.pnpm/@types+eslint@8.2.0/node_modules/@types/eslint", + }, + Object { + "deps": Object {}, + "name": "@types/estree", + "root": "/common/temp/default/node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree", + }, + Object { + "deps": Object {}, + "name": "@types/events", + "root": "/common/temp/default/node_modules/.pnpm/@types+events@3.0.3/node_modules/@types/events", + }, + Object { + "deps": Object { + "@types/node": 625, + "@types/qs": 636, + "@types/range-parser": 637, + "@types/send": 648, + }, + "name": "@types/express-serve-static-core", + "root": "/common/temp/default/node_modules/.pnpm/@types+express-serve-static-core@4.17.43/node_modules/@types/express-serve-static-core", + }, + Object { + "deps": Object { + "@types/body-parser": 562, + "@types/express-serve-static-core": 578, + "@types/qs": 636, + "@types/serve-static": 651, + }, + "name": "@types/express", + "root": "/common/temp/default/node_modules/.pnpm/@types+express@4.17.21/node_modules/@types/express", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/fs-extra", + "root": "/common/temp/default/node_modules/.pnpm/@types+fs-extra@7.0.0/node_modules/@types/fs-extra", + }, + Object { + "deps": Object { + "@types/events": 577, + "@types/minimatch": 614, + "@types/node": 625, + }, + "name": "@types/glob", + "root": "/common/temp/default/node_modules/.pnpm/@types+glob@7.1.1/node_modules/@types/glob", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/graceful-fs", + "root": "/common/temp/default/node_modules/.pnpm/@types+graceful-fs@4.1.9/node_modules/@types/graceful-fs", + }, + Object { + "deps": Object { + "@types/unist": 664, + }, + "name": "@types/hast", + "root": "/common/temp/default/node_modules/.pnpm/@types+hast@2.3.10/node_modules/@types/hast", + }, + Object { + "deps": Object { + "@types/jest": 599, + }, + "name": "@types/heft-jest", + "root": "/common/temp/default/node_modules/.pnpm/@types+heft-jest@1.0.1/node_modules/@types/heft-jest", + }, + Object { + "deps": Object { + "@types/react": 641, + "hoist-non-react-statics": 1457, + }, + "name": "@types/hoist-non-react-statics", + "root": "/common/temp/default/node_modules/.pnpm/@types+hoist-non-react-statics@3.3.5/node_modules/@types/hoist-non-react-statics", + }, + Object { + "deps": Object {}, + "name": "@types/html-minifier-terser", + "root": "/common/temp/default/node_modules/.pnpm/@types+html-minifier-terser@5.1.2/node_modules/@types/html-minifier-terser", + }, + Object { + "deps": Object {}, + "name": "@types/html-minifier-terser", + "root": "/common/temp/default/node_modules/.pnpm/@types+html-minifier-terser@6.1.0/node_modules/@types/html-minifier-terser", + }, + Object { + "deps": Object {}, + "name": "@types/http-cache-semantics", + "root": "/common/temp/default/node_modules/.pnpm/@types+http-cache-semantics@4.0.4/node_modules/@types/http-cache-semantics", + }, + Object { + "deps": Object {}, + "name": "@types/http-errors", + "root": "/common/temp/default/node_modules/.pnpm/@types+http-errors@2.0.4/node_modules/@types/http-errors", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/http-proxy", + "root": "/common/temp/default/node_modules/.pnpm/@types+http-proxy@1.17.14/node_modules/@types/http-proxy", + }, + Object { + "deps": Object { + "@types/through": 660, + "rxjs": 2202, + }, + "name": "@types/inquirer", + "root": "/common/temp/default/node_modules/.pnpm/@types+inquirer@7.3.1/node_modules/@types/inquirer", + }, + Object { + "deps": Object {}, + "name": "@types/is-function", + "root": "/common/temp/default/node_modules/.pnpm/@types+is-function@1.0.3/node_modules/@types/is-function", + }, + Object { + "deps": Object {}, + "name": "@types/istanbul-lib-coverage", + "root": "/common/temp/default/node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.4/node_modules/@types/istanbul-lib-coverage", + }, + Object { + "deps": Object {}, + "name": "@types/istanbul-lib-coverage", + "root": "/common/temp/default/node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.6/node_modules/@types/istanbul-lib-coverage", + }, + Object { + "deps": Object { + "@types/istanbul-lib-coverage": 594, + }, + "name": "@types/istanbul-lib-report", + "root": "/common/temp/default/node_modules/.pnpm/@types+istanbul-lib-report@3.0.3/node_modules/@types/istanbul-lib-report", + }, + Object { + "deps": Object { + "@types/istanbul-lib-report": 595, + }, + "name": "@types/istanbul-reports", + "root": "/common/temp/default/node_modules/.pnpm/@types+istanbul-reports@3.0.4/node_modules/@types/istanbul-reports", + }, + Object { + "deps": Object {}, + "name": "@types/jest", + "root": "/common/temp/default/node_modules/.pnpm/@types+jest@23.3.13/node_modules/@types/jest", + }, + Object { + "deps": Object { + "jest-matcher-utils": 1645, + "pretty-format": 2045, + }, + "name": "@types/jest", + "root": "/common/temp/default/node_modules/.pnpm/@types+jest@28.1.1/node_modules/@types/jest", + }, + Object { + "deps": Object { + "expect": 1289, + "pretty-format": 2046, + }, + "name": "@types/jest", + "root": "/common/temp/default/node_modules/.pnpm/@types+jest@29.2.5/node_modules/@types/jest", + }, + Object { + "deps": Object { + "expect": 1289, + "pretty-format": 2046, + }, + "name": "@types/jest", + "root": "/common/temp/default/node_modules/.pnpm/@types+jest@29.5.12/node_modules/@types/jest", + }, + Object { + "deps": Object {}, + "name": "@types/jju", + "root": "/common/temp/default/node_modules/.pnpm/@types+jju@1.4.1/node_modules/@types/jju", + }, + Object { + "deps": Object {}, + "name": "@types/js-yaml", + "root": "/common/temp/default/node_modules/.pnpm/@types+js-yaml@3.12.1/node_modules/@types/js-yaml", + }, + Object { + "deps": Object { + "@types/node": 625, + "@types/tough-cookie": 661, + "parse5": 1957, + }, + "name": "@types/jsdom", + "root": "/common/temp/default/node_modules/.pnpm/@types+jsdom@20.0.1/node_modules/@types/jsdom", + }, + Object { + "deps": Object {}, + "name": "@types/json-schema", + "root": "/common/temp/default/node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema", + }, + Object { + "deps": Object {}, + "name": "@types/json5", + "root": "/common/temp/default/node_modules/.pnpm/@types+json5@0.0.29/node_modules/@types/json5", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/keyv", + "root": "/common/temp/default/node_modules/.pnpm/@types+keyv@3.1.4/node_modules/@types/keyv", + }, + Object { + "deps": Object { + "@types/node": 625, + "@types/webpack": 672, + }, + "name": "@types/loader-utils", + "root": "/common/temp/default/node_modules/.pnpm/@types+loader-utils@1.1.3/node_modules/@types/loader-utils", + }, + Object { + "deps": Object {}, + "name": "@types/lodash", + "root": "/common/temp/default/node_modules/.pnpm/@types+lodash@4.14.116/node_modules/@types/lodash", + }, + Object { + "deps": Object {}, + "name": "@types/long", + "root": "/common/temp/default/node_modules/.pnpm/@types+long@4.0.0/node_modules/@types/long", + }, + Object { + "deps": Object { + "@types/unist": 664, + }, + "name": "@types/mdast", + "root": "/common/temp/default/node_modules/.pnpm/@types+mdast@3.0.15/node_modules/@types/mdast", + }, + Object { + "deps": Object {}, + "name": "@types/mime-types", + "root": "/common/temp/default/node_modules/.pnpm/@types+mime-types@2.1.4/node_modules/@types/mime-types", + }, + Object { + "deps": Object {}, + "name": "@types/mime", + "root": "/common/temp/default/node_modules/.pnpm/@types+mime@1.3.5/node_modules/@types/mime", + }, + Object { + "deps": Object {}, + "name": "@types/mime", + "root": "/common/temp/default/node_modules/.pnpm/@types+mime@3.0.4/node_modules/@types/mime", + }, + Object { + "deps": Object {}, + "name": "@types/minimatch", + "root": "/common/temp/default/node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch", + }, + Object { + "deps": Object {}, + "name": "@types/minimist", + "root": "/common/temp/default/node_modules/.pnpm/@types+minimist@1.2.5/node_modules/@types/minimist", + }, + Object { + "deps": Object {}, + "name": "@types/mocha", + "root": "/common/temp/default/node_modules/.pnpm/@types+mocha@10.0.6/node_modules/@types/mocha", + }, + Object { + "deps": Object { + "@types/node": 625, + "form-data": 1351, + }, + "name": "@types/node-fetch", + "root": "/common/temp/default/node_modules/.pnpm/@types+node-fetch@2.6.2/node_modules/@types/node-fetch", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/node-forge", + "root": "/common/temp/default/node_modules/.pnpm/@types+node-forge@1.0.4/node_modules/@types/node-forge", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/node-forge", + "root": "/common/temp/default/node_modules/.pnpm/@types+node-forge@1.3.11/node_modules/@types/node-forge", + }, + Object { + "deps": Object {}, + "name": "@types/node", + "root": "/common/temp/default/node_modules/.pnpm/@types+node@14.0.1/node_modules/@types/node", + }, + Object { + "deps": Object {}, + "name": "@types/node", + "root": "/common/temp/default/node_modules/.pnpm/@types+node@14.18.63/node_modules/@types/node", + }, + Object { + "deps": Object {}, + "name": "@types/node", + "root": "/common/temp/default/node_modules/.pnpm/@types+node@17.0.41/node_modules/@types/node", + }, + Object { + "deps": Object {}, + "name": "@types/node", + "root": "/common/temp/default/node_modules/.pnpm/@types+node@18.17.15/node_modules/@types/node", + }, + Object { + "deps": Object { + "undici-types": 2464, + }, + "name": "@types/node", + "root": "/common/temp/default/node_modules/.pnpm/@types+node@20.11.30/node_modules/@types/node", + }, + Object { + "deps": Object { + "undici-types": 2464, + }, + "name": "@types/node", + "root": "/common/temp/default/node_modules/.pnpm/@types+node@20.12.12/node_modules/@types/node", + }, + Object { + "deps": Object {}, + "name": "@types/normalize-package-data", + "root": "/common/temp/default/node_modules/.pnpm/@types+normalize-package-data@2.4.4/node_modules/@types/normalize-package-data", + }, + Object { + "deps": Object {}, + "name": "@types/npm-package-arg", + "root": "/common/temp/default/node_modules/.pnpm/@types+npm-package-arg@6.1.0/node_modules/@types/npm-package-arg", + }, + Object { + "deps": Object {}, + "name": "@types/npm-packlist", + "root": "/common/temp/default/node_modules/.pnpm/@types+npm-packlist@1.1.2/node_modules/@types/npm-packlist", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/npmlog", + "root": "/common/temp/default/node_modules/.pnpm/@types+npmlog@4.1.6/node_modules/@types/npmlog", + }, + Object { + "deps": Object {}, + "name": "@types/overlayscrollbars", + "root": "/common/temp/default/node_modules/.pnpm/@types+overlayscrollbars@1.12.5/node_modules/@types/overlayscrollbars", + }, + Object { + "deps": Object {}, + "name": "@types/parse-json", + "root": "/common/temp/default/node_modules/.pnpm/@types+parse-json@4.0.2/node_modules/@types/parse-json", + }, + Object { + "deps": Object {}, + "name": "@types/parse5", + "root": "/common/temp/default/node_modules/.pnpm/@types+parse5@5.0.3/node_modules/@types/parse5", + }, + Object { + "deps": Object {}, + "name": "@types/prettier", + "root": "/common/temp/default/node_modules/.pnpm/@types+prettier@2.7.3/node_modules/@types/prettier", + }, + Object { + "deps": Object {}, + "name": "@types/pretty-hrtime", + "root": "/common/temp/default/node_modules/.pnpm/@types+pretty-hrtime@1.0.3/node_modules/@types/pretty-hrtime", + }, + Object { + "deps": Object {}, + "name": "@types/prop-types", + "root": "/common/temp/default/node_modules/.pnpm/@types+prop-types@15.7.11/node_modules/@types/prop-types", + }, + Object { + "deps": Object {}, + "name": "@types/qs", + "root": "/common/temp/default/node_modules/.pnpm/@types+qs@6.9.13/node_modules/@types/qs", + }, + Object { + "deps": Object {}, + "name": "@types/range-parser", + "root": "/common/temp/default/node_modules/.pnpm/@types+range-parser@1.2.7/node_modules/@types/range-parser", + }, + Object { + "deps": Object { + "@types/react": 641, + }, + "name": "@types/react-dom", + "root": "/common/temp/default/node_modules/.pnpm/@types+react-dom@17.0.25/node_modules/@types/react-dom", + }, + Object { + "deps": Object { + "@types/hoist-non-react-statics": 585, + "@types/react": 641, + "hoist-non-react-statics": 1457, + "redux": 2138, + }, + "name": "@types/react-redux", + "root": "/common/temp/default/node_modules/.pnpm/@types+react-redux@7.1.33/node_modules/@types/react-redux", + }, + Object { + "deps": Object { + "@types/react": 641, + }, + "name": "@types/react-syntax-highlighter", + "root": "/common/temp/default/node_modules/.pnpm/@types+react-syntax-highlighter@11.0.5/node_modules/@types/react-syntax-highlighter", + }, + Object { + "deps": Object { + "@types/prop-types": 635, + "@types/scheduler": 646, + "csstype": 1096, + }, + "name": "@types/react", + "root": "/common/temp/default/node_modules/.pnpm/@types+react@17.0.74/node_modules/@types/react", + }, + Object { + "deps": Object {}, + "name": "@types/read-package-tree", + "root": "/common/temp/default/node_modules/.pnpm/@types+read-package-tree@5.1.0/node_modules/@types/read-package-tree", + }, + Object { + "deps": Object {}, + "name": "@types/resolve", + "root": "/common/temp/default/node_modules/.pnpm/@types+resolve@1.20.2/node_modules/@types/resolve", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/responselike", + "root": "/common/temp/default/node_modules/.pnpm/@types+responselike@1.0.3/node_modules/@types/responselike", + }, + Object { + "deps": Object {}, + "name": "@types/retry", + "root": "/common/temp/default/node_modules/.pnpm/@types+retry@0.12.0/node_modules/@types/retry", + }, + Object { + "deps": Object {}, + "name": "@types/scheduler", + "root": "/common/temp/default/node_modules/.pnpm/@types+scheduler@0.16.8/node_modules/@types/scheduler", + }, + Object { + "deps": Object {}, + "name": "@types/semver", + "root": "/common/temp/default/node_modules/.pnpm/@types+semver@7.5.0/node_modules/@types/semver", + }, + Object { + "deps": Object { + "@types/mime": 612, + "@types/node": 625, + }, + "name": "@types/send", + "root": "/common/temp/default/node_modules/.pnpm/@types+send@0.17.4/node_modules/@types/send", + }, + Object { + "deps": Object {}, + "name": "@types/serialize-javascript", + "root": "/common/temp/default/node_modules/.pnpm/@types+serialize-javascript@5.0.2/node_modules/@types/serialize-javascript", + }, + Object { + "deps": Object { + "@types/express": 579, + }, + "name": "@types/serve-index", + "root": "/common/temp/default/node_modules/.pnpm/@types+serve-index@1.9.4/node_modules/@types/serve-index", + }, + Object { + "deps": Object { + "@types/http-errors": 589, + "@types/mime": 613, + "@types/node": 625, + }, + "name": "@types/serve-static", + "root": "/common/temp/default/node_modules/.pnpm/@types+serve-static@1.15.5/node_modules/@types/serve-static", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/sockjs", + "root": "/common/temp/default/node_modules/.pnpm/@types+sockjs@0.3.36/node_modules/@types/sockjs", + }, + Object { + "deps": Object {}, + "name": "@types/source-list-map", + "root": "/common/temp/default/node_modules/.pnpm/@types+source-list-map@0.1.6/node_modules/@types/source-list-map", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/ssri", + "root": "/common/temp/default/node_modules/.pnpm/@types+ssri@7.1.5/node_modules/@types/ssri", + }, + Object { + "deps": Object {}, + "name": "@types/stack-utils", + "root": "/common/temp/default/node_modules/.pnpm/@types+stack-utils@2.0.3/node_modules/@types/stack-utils", + }, + Object { + "deps": Object {}, + "name": "@types/strict-uri-encode", + "root": "/common/temp/default/node_modules/.pnpm/@types+strict-uri-encode@2.0.0/node_modules/@types/strict-uri-encode", + }, + Object { + "deps": Object {}, + "name": "@types/supports-color", + "root": "/common/temp/default/node_modules/.pnpm/@types+supports-color@8.1.3/node_modules/@types/supports-color", + }, + Object { + "deps": Object {}, + "name": "@types/tapable", + "root": "/common/temp/default/node_modules/.pnpm/@types+tapable@1.0.6/node_modules/@types/tapable", + }, + Object { + "deps": Object { + "@types/node": 625, + "minipass": 1836, + }, + "name": "@types/tar", + "root": "/common/temp/default/node_modules/.pnpm/@types+tar@6.1.6/node_modules/@types/tar", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/through", + "root": "/common/temp/default/node_modules/.pnpm/@types+through@0.0.33/node_modules/@types/through", + }, + Object { + "deps": Object {}, + "name": "@types/tough-cookie", + "root": "/common/temp/default/node_modules/.pnpm/@types+tough-cookie@4.0.5/node_modules/@types/tough-cookie", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/tunnel", + "root": "/common/temp/default/node_modules/.pnpm/@types+tunnel@0.0.3/node_modules/@types/tunnel", + }, + Object { + "deps": Object { + "source-map": 2294, + }, + "name": "@types/uglify-js", + "root": "/common/temp/default/node_modules/.pnpm/@types+uglify-js@3.17.5/node_modules/@types/uglify-js", + }, + Object { + "deps": Object {}, + "name": "@types/unist", + "root": "/common/temp/default/node_modules/.pnpm/@types+unist@2.0.10/node_modules/@types/unist", + }, + Object { + "deps": Object { + "@types/configstore": 569, + "boxen": 909, + }, + "name": "@types/update-notifier", + "root": "/common/temp/default/node_modules/.pnpm/@types+update-notifier@6.0.8/node_modules/@types/update-notifier", + }, + Object { + "deps": Object {}, + "name": "@types/use-sync-external-store", + "root": "/common/temp/default/node_modules/.pnpm/@types+use-sync-external-store@0.0.3/node_modules/@types/use-sync-external-store", + }, + Object { + "deps": Object {}, + "name": "@types/uuid", + "root": "/common/temp/default/node_modules/.pnpm/@types+uuid@8.3.4/node_modules/@types/uuid", + }, + Object { + "deps": Object {}, + "name": "@types/vscode", + "root": "/common/temp/default/node_modules/.pnpm/@types+vscode@1.87.0/node_modules/@types/vscode", + }, + Object { + "deps": Object { + "@types/graceful-fs": 582, + "@types/node": 624, + }, + "name": "@types/watchpack", + "root": "/common/temp/default/node_modules/.pnpm/@types+watchpack@2.4.0/node_modules/@types/watchpack", + }, + Object { + "deps": Object {}, + "name": "@types/webpack-env", + "root": "/common/temp/default/node_modules/.pnpm/@types+webpack-env@1.18.0/node_modules/@types/webpack-env", + }, + Object { + "deps": Object { + "@types/node": 625, + "@types/source-list-map": 653, + "source-map": 2295, + }, + "name": "@types/webpack-sources", + "root": "/common/temp/default/node_modules/.pnpm/@types+webpack-sources@1.4.2/node_modules/@types/webpack-sources", + }, + Object { + "deps": Object { + "@types/node": 625, + "@types/tapable": 658, + "@types/uglify-js": 663, + "@types/webpack-sources": 671, + "anymatch": 806, + "source-map": 2294, + }, + "name": "@types/webpack", + "root": "/common/temp/default/node_modules/.pnpm/@types+webpack@4.41.32/node_modules/@types/webpack", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "@types/ws", + "root": "/common/temp/default/node_modules/.pnpm/@types+ws@8.5.5/node_modules/@types/ws", + }, + Object { + "deps": Object {}, + "name": "@types/xmldoc", + "root": "/common/temp/default/node_modules/.pnpm/@types+xmldoc@1.1.4/node_modules/@types/xmldoc", + }, + Object { + "deps": Object {}, + "name": "@types/yargs-parser", + "root": "/common/temp/default/node_modules/.pnpm/@types+yargs-parser@21.0.3/node_modules/@types/yargs-parser", + }, + Object { + "deps": Object { + "@types/yargs-parser": 675, + }, + "name": "@types/yargs", + "root": "/common/temp/default/node_modules/.pnpm/@types+yargs@15.0.19/node_modules/@types/yargs", + }, + Object { + "deps": Object { + "@types/yargs-parser": 675, + }, + "name": "@types/yargs", + "root": "/common/temp/default/node_modules/.pnpm/@types+yargs@17.0.32/node_modules/@types/yargs", + }, + Object { + "deps": Object { + "@eslint-community/regexpp": 230, + "@typescript-eslint/parser": 684, + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/type-utils": 694, + "@typescript-eslint/utils": 707, + "@typescript-eslint/visitor-keys": 714, + "debug": 1106, + "eslint": 1260, + "graphemer": 1421, + "ignore": 1502, + "natural-compare": 1859, + "semver": 2238, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+eslint-plugin@6.19.1_@typescript-eslint+parser@6.19.1_eslint@7.11.0_typescript@5.4.2/node_modules/@typescript-eslint/eslint-plugin", + }, + Object { + "deps": Object { + "@eslint-community/regexpp": 230, + "@typescript-eslint/parser": 685, + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/type-utils": 695, + "@typescript-eslint/utils": 708, + "@typescript-eslint/visitor-keys": 714, + "debug": 1106, + "eslint": 1261, + "graphemer": 1421, + "ignore": 1502, + "natural-compare": 1859, + "semver": 2238, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+eslint-plugin@6.19.1_@typescript-eslint+parser@6.19.1_eslint@7.30.0_typescript@5.4.2/node_modules/@typescript-eslint/eslint-plugin", + }, + Object { + "deps": Object { + "@eslint-community/regexpp": 230, + "@typescript-eslint/parser": 686, + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/type-utils": 696, + "@typescript-eslint/utils": 709, + "@typescript-eslint/visitor-keys": 714, + "debug": 1106, + "eslint": 1262, + "graphemer": 1421, + "ignore": 1502, + "natural-compare": 1859, + "semver": 2238, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+eslint-plugin@6.19.1_@typescript-eslint+parser@6.19.1_eslint@7.7.0_typescript@5.4.2/node_modules/@typescript-eslint/eslint-plugin", + }, + Object { + "deps": Object { + "@eslint-community/regexpp": 230, + "@typescript-eslint/parser": 687, + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/type-utils": 697, + "@typescript-eslint/utils": 710, + "@typescript-eslint/visitor-keys": 714, + "debug": 1106, + "eslint": 1264, + "graphemer": 1421, + "ignore": 1502, + "natural-compare": 1859, + "semver": 2238, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+eslint-plugin@6.19.1_@typescript-eslint+parser@6.19.1_eslint@8.57.0_suppor_cdfp35n6xmy2avdo2soai22xhi/node_modules/@typescript-eslint/eslint-plugin", + }, + Object { + "deps": Object { + "@eslint-community/regexpp": 230, + "@typescript-eslint/parser": 688, + "@typescript-eslint/scope-manager": 691, + "@typescript-eslint/type-utils": 698, + "@typescript-eslint/utils": 711, + "@typescript-eslint/visitor-keys": 713, + "debug": 1106, + "eslint": 1264, + "graphemer": 1421, + "ignore": 1502, + "natural-compare": 1859, + "semver": 2238, + "ts-api-utils": 2418, + "typescript": 2458, + }, + "name": "@typescript-eslint/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+eslint-plugin@6.19.1_@typescript-eslint+parser@6.19.1_eslint@8.57.0_typescript@4.9.5/node_modules/@typescript-eslint/eslint-plugin", + }, + Object { + "deps": Object { + "@eslint-community/regexpp": 230, + "@typescript-eslint/parser": 689, + "@typescript-eslint/scope-manager": 693, + "@typescript-eslint/type-utils": 699, + "@typescript-eslint/utils": 712, + "@typescript-eslint/visitor-keys": 715, + "eslint": 1264, + "graphemer": 1421, + "ignore": 1502, + "natural-compare": 1859, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/eslint-plugin", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+eslint-plugin@8.1.0_@typescript-eslint+parser@8.1.0_eslint@8.57.0_typescript@5.4.2/node_modules/@typescript-eslint/eslint-plugin", + }, + Object { + "deps": Object { + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/types": 702, + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/visitor-keys": 714, + "debug": 1106, + "eslint": 1260, + "typescript": 2459, + }, + "name": "@typescript-eslint/parser", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+parser@6.19.1_eslint@7.11.0_typescript@5.4.2/node_modules/@typescript-eslint/parser", + }, + Object { + "deps": Object { + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/types": 702, + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/visitor-keys": 714, + "debug": 1106, + "eslint": 1261, + "typescript": 2459, + }, + "name": "@typescript-eslint/parser", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+parser@6.19.1_eslint@7.30.0_typescript@5.4.2/node_modules/@typescript-eslint/parser", + }, + Object { + "deps": Object { + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/types": 702, + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/visitor-keys": 714, + "debug": 1106, + "eslint": 1262, + "typescript": 2459, + }, + "name": "@typescript-eslint/parser", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+parser@6.19.1_eslint@7.7.0_typescript@5.4.2/node_modules/@typescript-eslint/parser", + }, + Object { + "deps": Object { + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/types": 702, + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/visitor-keys": 714, + "debug": 1106, + "eslint": 1264, + "typescript": 2459, + }, + "name": "@typescript-eslint/parser", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+parser@6.19.1_eslint@8.57.0_supports-color@8.1.1_typescript@5.4.2/node_modules/@typescript-eslint/parser", + }, + Object { + "deps": Object { + "@typescript-eslint/scope-manager": 691, + "@typescript-eslint/types": 701, + "@typescript-eslint/typescript-estree": 705, + "@typescript-eslint/visitor-keys": 713, + "debug": 1106, + "eslint": 1264, + "typescript": 2458, + }, + "name": "@typescript-eslint/parser", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+parser@6.19.1_eslint@8.57.0_typescript@4.9.5/node_modules/@typescript-eslint/parser", + }, + Object { + "deps": Object { + "@typescript-eslint/scope-manager": 693, + "@typescript-eslint/types": 703, + "@typescript-eslint/typescript-estree": 706, + "@typescript-eslint/visitor-keys": 715, + "debug": 1106, + "eslint": 1264, + "typescript": 2459, + }, + "name": "@typescript-eslint/parser", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+parser@8.1.0_eslint@8.57.0_typescript@5.4.2/node_modules/@typescript-eslint/parser", + }, + Object { + "deps": Object { + "@eslint/eslintrc": 235, + "@types/semver": 647, + "@typescript-eslint/parser": 689, + "@typescript-eslint/typescript-estree": 706, + "@typescript-eslint/utils": 712, + "ajv": 786, + "eslint": 1264, + "json-stable-stringify-without-jsonify": 1691, + "lodash.merge": 1755, + "semver": 2239, + }, + "name": "@typescript-eslint/rule-tester", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+rule-tester@8.1.0_@eslint+eslintrc@3.0.2_eslint@8.57.0_typescript@5.4.2/node_modules/@typescript-eslint/rule-tester", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 701, + "@typescript-eslint/visitor-keys": 713, + }, + "name": "@typescript-eslint/scope-manager", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+scope-manager@6.19.1_typescript@4.9.5/node_modules/@typescript-eslint/scope-manager", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 702, + "@typescript-eslint/visitor-keys": 714, + }, + "name": "@typescript-eslint/scope-manager", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+scope-manager@6.19.1_typescript@5.4.2/node_modules/@typescript-eslint/scope-manager", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 703, + "@typescript-eslint/visitor-keys": 715, + }, + "name": "@typescript-eslint/scope-manager", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+scope-manager@8.1.0_typescript@5.4.2/node_modules/@typescript-eslint/scope-manager", + }, + Object { + "deps": Object { + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/utils": 707, + "debug": 1106, + "eslint": 1260, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/type-utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+type-utils@6.19.1_eslint@7.11.0_typescript@5.4.2/node_modules/@typescript-eslint/type-utils", + }, + Object { + "deps": Object { + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/utils": 708, + "debug": 1106, + "eslint": 1261, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/type-utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+type-utils@6.19.1_eslint@7.30.0_typescript@5.4.2/node_modules/@typescript-eslint/type-utils", + }, + Object { + "deps": Object { + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/utils": 709, + "debug": 1106, + "eslint": 1262, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/type-utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+type-utils@6.19.1_eslint@7.7.0_typescript@5.4.2/node_modules/@typescript-eslint/type-utils", + }, + Object { + "deps": Object { + "@typescript-eslint/typescript-estree": 704, + "@typescript-eslint/utils": 710, + "debug": 1106, + "eslint": 1264, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/type-utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+type-utils@6.19.1_eslint@8.57.0_supports-color@8.1.1_typescript@5.4.2/node_modules/@typescript-eslint/type-utils", + }, + Object { + "deps": Object { + "@typescript-eslint/typescript-estree": 705, + "@typescript-eslint/utils": 711, + "debug": 1106, + "eslint": 1264, + "ts-api-utils": 2418, + "typescript": 2458, + }, + "name": "@typescript-eslint/type-utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+type-utils@6.19.1_eslint@8.57.0_typescript@4.9.5/node_modules/@typescript-eslint/type-utils", + }, + Object { + "deps": Object { + "@typescript-eslint/typescript-estree": 706, + "@typescript-eslint/utils": 712, + "debug": 1106, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/type-utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+type-utils@8.1.0_eslint@8.57.0_typescript@5.4.2/node_modules/@typescript-eslint/type-utils", + }, + Object { + "deps": Object { + "typescript": 2459, + }, + "name": "@typescript-eslint/types", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+types@5.59.11_typescript@5.4.2/node_modules/@typescript-eslint/types", + }, + Object { + "deps": Object { + "typescript": 2458, + }, + "name": "@typescript-eslint/types", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+types@6.19.1_typescript@4.9.5/node_modules/@typescript-eslint/types", + }, + Object { + "deps": Object { + "typescript": 2459, + }, + "name": "@typescript-eslint/types", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+types@6.19.1_typescript@5.4.2/node_modules/@typescript-eslint/types", + }, + Object { + "deps": Object { + "typescript": 2459, + }, + "name": "@typescript-eslint/types", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+types@8.1.0_typescript@5.4.2/node_modules/@typescript-eslint/types", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 702, + "@typescript-eslint/visitor-keys": 714, + "debug": 1106, + "globby": 1414, + "is-glob": 1569, + "minimatch": 1826, + "semver": 2238, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/typescript-estree", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+typescript-estree@6.19.1_supports-color@8.1.1_typescript@5.4.2/node_modules/@typescript-eslint/typescript-estree", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 701, + "@typescript-eslint/visitor-keys": 713, + "debug": 1106, + "globby": 1414, + "is-glob": 1569, + "minimatch": 1826, + "semver": 2238, + "ts-api-utils": 2418, + "typescript": 2458, + }, + "name": "@typescript-eslint/typescript-estree", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+typescript-estree@6.19.1_typescript@4.9.5/node_modules/@typescript-eslint/typescript-estree", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 703, + "@typescript-eslint/visitor-keys": 715, + "debug": 1106, + "globby": 1414, + "is-glob": 1569, + "minimatch": 1827, + "semver": 2239, + "ts-api-utils": 2419, + "typescript": 2459, + }, + "name": "@typescript-eslint/typescript-estree", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+typescript-estree@8.1.0_typescript@5.4.2/node_modules/@typescript-eslint/typescript-estree", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 226, + "@types/json-schema": 604, + "@types/semver": 647, + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/types": 702, + "@typescript-eslint/typescript-estree": 704, + "eslint": 1260, + "semver": 2238, + }, + "name": "@typescript-eslint/utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+utils@6.19.1_eslint@7.11.0_typescript@5.4.2/node_modules/@typescript-eslint/utils", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 227, + "@types/json-schema": 604, + "@types/semver": 647, + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/types": 702, + "@typescript-eslint/typescript-estree": 704, + "eslint": 1261, + "semver": 2238, + }, + "name": "@typescript-eslint/utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+utils@6.19.1_eslint@7.30.0_typescript@5.4.2/node_modules/@typescript-eslint/utils", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 228, + "@types/json-schema": 604, + "@types/semver": 647, + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/types": 702, + "@typescript-eslint/typescript-estree": 704, + "eslint": 1262, + "semver": 2238, + }, + "name": "@typescript-eslint/utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+utils@6.19.1_eslint@7.7.0_typescript@5.4.2/node_modules/@typescript-eslint/utils", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 229, + "@types/json-schema": 604, + "@types/semver": 647, + "@typescript-eslint/scope-manager": 692, + "@typescript-eslint/types": 702, + "@typescript-eslint/typescript-estree": 704, + "eslint": 1264, + "semver": 2238, + }, + "name": "@typescript-eslint/utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+utils@6.19.1_eslint@8.57.0_supports-color@8.1.1_typescript@5.4.2/node_modules/@typescript-eslint/utils", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 229, + "@types/json-schema": 604, + "@types/semver": 647, + "@typescript-eslint/scope-manager": 691, + "@typescript-eslint/types": 701, + "@typescript-eslint/typescript-estree": 705, + "eslint": 1264, + "semver": 2238, + }, + "name": "@typescript-eslint/utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+utils@6.19.1_eslint@8.57.0_typescript@4.9.5/node_modules/@typescript-eslint/utils", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 229, + "@typescript-eslint/scope-manager": 693, + "@typescript-eslint/types": 703, + "@typescript-eslint/typescript-estree": 706, + "eslint": 1264, + }, + "name": "@typescript-eslint/utils", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+utils@8.1.0_eslint@8.57.0_typescript@5.4.2/node_modules/@typescript-eslint/utils", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 701, + "eslint-visitor-keys": 1258, + }, + "name": "@typescript-eslint/visitor-keys", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+visitor-keys@6.19.1_typescript@4.9.5/node_modules/@typescript-eslint/visitor-keys", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 702, + "eslint-visitor-keys": 1258, + }, + "name": "@typescript-eslint/visitor-keys", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+visitor-keys@6.19.1_typescript@5.4.2/node_modules/@typescript-eslint/visitor-keys", + }, + Object { + "deps": Object { + "@typescript-eslint/types": 703, + "eslint-visitor-keys": 1258, + }, + "name": "@typescript-eslint/visitor-keys", + "root": "/common/temp/default/node_modules/.pnpm/@typescript-eslint+visitor-keys@8.1.0_typescript@5.4.2/node_modules/@typescript-eslint/visitor-keys", + }, + Object { + "deps": Object {}, + "name": "@ungap/structured-clone", + "root": "/common/temp/default/node_modules/.pnpm/@ungap+structured-clone@1.2.0/node_modules/@ungap/structured-clone", + }, + Object { + "deps": Object { + "http-proxy-agent": 1479, + "https-proxy-agent": 1488, + "rimraf": 2195, + "unzipper": 2490, + }, + "name": "@vscode/test-electron", + "root": "/common/temp/default/node_modules/.pnpm/@vscode+test-electron@1.6.2/node_modules/@vscode/test-electron", + }, + Object { + "deps": Object { + "@babel/parser": 92, + "@vue/shared": 722, + "entities": 1204, + "estree-walker": 1275, + "source-map-js": 2286, + }, + "name": "@vue/compiler-core", + "root": "/common/temp/default/node_modules/.pnpm/@vue+compiler-core@3.4.21/node_modules/@vue/compiler-core", + }, + Object { + "deps": Object { + "@vue/compiler-core": 718, + "@vue/shared": 722, + }, + "name": "@vue/compiler-dom", + "root": "/common/temp/default/node_modules/.pnpm/@vue+compiler-dom@3.4.21/node_modules/@vue/compiler-dom", + }, + Object { + "deps": Object { + "@babel/parser": 92, + "@vue/compiler-core": 718, + "@vue/compiler-dom": 719, + "@vue/compiler-ssr": 721, + "@vue/shared": 722, + "estree-walker": 1275, + "magic-string": 1770, + "postcss": 2038, + "source-map-js": 2286, + }, + "name": "@vue/compiler-sfc", + "root": "/common/temp/default/node_modules/.pnpm/@vue+compiler-sfc@3.4.21/node_modules/@vue/compiler-sfc", + }, + Object { + "deps": Object { + "@vue/compiler-dom": 719, + "@vue/shared": 722, + }, + "name": "@vue/compiler-ssr", + "root": "/common/temp/default/node_modules/.pnpm/@vue+compiler-ssr@3.4.21/node_modules/@vue/compiler-ssr", + }, + Object { + "deps": Object {}, + "name": "@vue/shared", + "root": "/common/temp/default/node_modules/.pnpm/@vue+shared@3.4.21/node_modules/@vue/shared", + }, + Object { + "deps": Object { + "@webassemblyjs/helper-numbers": 734, + "@webassemblyjs/helper-wasm-bytecode": 735, + }, + "name": "@webassemblyjs/ast", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+ast@1.12.1/node_modules/@webassemblyjs/ast", + }, + Object { + "deps": Object { + "@webassemblyjs/helper-module-context": 733, + "@webassemblyjs/helper-wasm-bytecode": 736, + "@webassemblyjs/wast-parser": 753, + }, + "name": "@webassemblyjs/ast", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+ast@1.9.0/node_modules/@webassemblyjs/ast", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/floating-point-hex-parser", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+floating-point-hex-parser@1.11.6/node_modules/@webassemblyjs/floating-point-hex-parser", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/floating-point-hex-parser", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+floating-point-hex-parser@1.9.0/node_modules/@webassemblyjs/floating-point-hex-parser", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/helper-api-error", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-api-error@1.11.6/node_modules/@webassemblyjs/helper-api-error", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/helper-api-error", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-api-error@1.9.0/node_modules/@webassemblyjs/helper-api-error", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/helper-buffer", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-buffer@1.12.1/node_modules/@webassemblyjs/helper-buffer", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/helper-buffer", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-buffer@1.9.0/node_modules/@webassemblyjs/helper-buffer", + }, + Object { + "deps": Object { + "@webassemblyjs/wast-printer": 755, + }, + "name": "@webassemblyjs/helper-code-frame", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-code-frame@1.9.0/node_modules/@webassemblyjs/helper-code-frame", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/helper-fsm", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-fsm@1.9.0/node_modules/@webassemblyjs/helper-fsm", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 724, + }, + "name": "@webassemblyjs/helper-module-context", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-module-context@1.9.0/node_modules/@webassemblyjs/helper-module-context", + }, + Object { + "deps": Object { + "@webassemblyjs/floating-point-hex-parser": 725, + "@webassemblyjs/helper-api-error": 727, + "@xtuc/long": 757, + }, + "name": "@webassemblyjs/helper-numbers", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-numbers@1.11.6/node_modules/@webassemblyjs/helper-numbers", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/helper-wasm-bytecode", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-wasm-bytecode@1.11.6/node_modules/@webassemblyjs/helper-wasm-bytecode", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/helper-wasm-bytecode", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-wasm-bytecode@1.9.0/node_modules/@webassemblyjs/helper-wasm-bytecode", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 723, + "@webassemblyjs/helper-buffer": 729, + "@webassemblyjs/helper-wasm-bytecode": 735, + "@webassemblyjs/wasm-gen": 747, + }, + "name": "@webassemblyjs/helper-wasm-section", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-wasm-section@1.12.1/node_modules/@webassemblyjs/helper-wasm-section", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 724, + "@webassemblyjs/helper-buffer": 730, + "@webassemblyjs/helper-wasm-bytecode": 736, + "@webassemblyjs/wasm-gen": 748, + }, + "name": "@webassemblyjs/helper-wasm-section", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+helper-wasm-section@1.9.0/node_modules/@webassemblyjs/helper-wasm-section", + }, + Object { + "deps": Object { + "@xtuc/ieee754": 756, + }, + "name": "@webassemblyjs/ieee754", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+ieee754@1.11.6/node_modules/@webassemblyjs/ieee754", + }, + Object { + "deps": Object { + "@xtuc/ieee754": 756, + }, + "name": "@webassemblyjs/ieee754", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+ieee754@1.9.0/node_modules/@webassemblyjs/ieee754", + }, + Object { + "deps": Object { + "@xtuc/long": 757, + }, + "name": "@webassemblyjs/leb128", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+leb128@1.11.6/node_modules/@webassemblyjs/leb128", + }, + Object { + "deps": Object { + "@xtuc/long": 757, + }, + "name": "@webassemblyjs/leb128", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+leb128@1.9.0/node_modules/@webassemblyjs/leb128", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/utf8", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+utf8@1.11.6/node_modules/@webassemblyjs/utf8", + }, + Object { + "deps": Object {}, + "name": "@webassemblyjs/utf8", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+utf8@1.9.0/node_modules/@webassemblyjs/utf8", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 723, + "@webassemblyjs/helper-buffer": 729, + "@webassemblyjs/helper-wasm-bytecode": 735, + "@webassemblyjs/helper-wasm-section": 737, + "@webassemblyjs/wasm-gen": 747, + "@webassemblyjs/wasm-opt": 749, + "@webassemblyjs/wasm-parser": 751, + "@webassemblyjs/wast-printer": 754, + }, + "name": "@webassemblyjs/wasm-edit", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wasm-edit@1.12.1/node_modules/@webassemblyjs/wasm-edit", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 724, + "@webassemblyjs/helper-buffer": 730, + "@webassemblyjs/helper-wasm-bytecode": 736, + "@webassemblyjs/helper-wasm-section": 738, + "@webassemblyjs/wasm-gen": 748, + "@webassemblyjs/wasm-opt": 750, + "@webassemblyjs/wasm-parser": 752, + "@webassemblyjs/wast-printer": 755, + }, + "name": "@webassemblyjs/wasm-edit", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wasm-edit@1.9.0/node_modules/@webassemblyjs/wasm-edit", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 723, + "@webassemblyjs/helper-wasm-bytecode": 735, + "@webassemblyjs/ieee754": 739, + "@webassemblyjs/leb128": 741, + "@webassemblyjs/utf8": 743, + }, + "name": "@webassemblyjs/wasm-gen", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wasm-gen@1.12.1/node_modules/@webassemblyjs/wasm-gen", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 724, + "@webassemblyjs/helper-wasm-bytecode": 736, + "@webassemblyjs/ieee754": 740, + "@webassemblyjs/leb128": 742, + "@webassemblyjs/utf8": 744, + }, + "name": "@webassemblyjs/wasm-gen", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wasm-gen@1.9.0/node_modules/@webassemblyjs/wasm-gen", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 723, + "@webassemblyjs/helper-buffer": 729, + "@webassemblyjs/wasm-gen": 747, + "@webassemblyjs/wasm-parser": 751, + }, + "name": "@webassemblyjs/wasm-opt", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wasm-opt@1.12.1/node_modules/@webassemblyjs/wasm-opt", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 724, + "@webassemblyjs/helper-buffer": 730, + "@webassemblyjs/wasm-gen": 748, + "@webassemblyjs/wasm-parser": 752, + }, + "name": "@webassemblyjs/wasm-opt", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wasm-opt@1.9.0/node_modules/@webassemblyjs/wasm-opt", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 723, + "@webassemblyjs/helper-api-error": 727, + "@webassemblyjs/helper-wasm-bytecode": 735, + "@webassemblyjs/ieee754": 739, + "@webassemblyjs/leb128": 741, + "@webassemblyjs/utf8": 743, + }, + "name": "@webassemblyjs/wasm-parser", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wasm-parser@1.12.1/node_modules/@webassemblyjs/wasm-parser", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 724, + "@webassemblyjs/helper-api-error": 728, + "@webassemblyjs/helper-wasm-bytecode": 736, + "@webassemblyjs/ieee754": 740, + "@webassemblyjs/leb128": 742, + "@webassemblyjs/utf8": 744, + }, + "name": "@webassemblyjs/wasm-parser", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wasm-parser@1.9.0/node_modules/@webassemblyjs/wasm-parser", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 724, + "@webassemblyjs/floating-point-hex-parser": 726, + "@webassemblyjs/helper-api-error": 728, + "@webassemblyjs/helper-code-frame": 731, + "@webassemblyjs/helper-fsm": 732, + "@xtuc/long": 757, + }, + "name": "@webassemblyjs/wast-parser", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wast-parser@1.9.0/node_modules/@webassemblyjs/wast-parser", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 723, + "@xtuc/long": 757, + }, + "name": "@webassemblyjs/wast-printer", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wast-printer@1.12.1/node_modules/@webassemblyjs/wast-printer", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 724, + "@webassemblyjs/wast-parser": 753, + "@xtuc/long": 757, + }, + "name": "@webassemblyjs/wast-printer", + "root": "/common/temp/default/node_modules/.pnpm/@webassemblyjs+wast-printer@1.9.0/node_modules/@webassemblyjs/wast-printer", + }, + Object { + "deps": Object {}, + "name": "@xtuc/ieee754", + "root": "/common/temp/default/node_modules/.pnpm/@xtuc+ieee754@1.2.0/node_modules/@xtuc/ieee754", + }, + Object { + "deps": Object {}, + "name": "@xtuc/long", + "root": "/common/temp/default/node_modules/.pnpm/@xtuc+long@4.2.2/node_modules/@xtuc/long", + }, + Object { + "deps": Object {}, + "name": "@yarnpkg/lockfile", + "root": "/common/temp/default/node_modules/.pnpm/@yarnpkg+lockfile@1.0.2/node_modules/@yarnpkg/lockfile", + }, + Object { + "deps": Object { + "cmd-extension": 1006, + "graceful-fs": 1418, + "is-windows": 1605, + }, + "name": "@zkochan/cmd-shim", + "root": "/common/temp/default/node_modules/.pnpm/@zkochan+cmd-shim@5.4.1/node_modules/@zkochan/cmd-shim", + }, + Object { + "deps": Object {}, + "name": "abab", + "root": "/common/temp/default/node_modules/.pnpm/abab@2.0.6/node_modules/abab", + }, + Object { + "deps": Object {}, + "name": "abbrev", + "root": "/common/temp/default/node_modules/.pnpm/abbrev@1.1.1/node_modules/abbrev", + }, + Object { + "deps": Object {}, + "name": "abstract-logging", + "root": "/common/temp/default/node_modules/.pnpm/abstract-logging@2.0.1/node_modules/abstract-logging", + }, + Object { + "deps": Object { + "mime-types": 1809, + "negotiator": 1861, + }, + "name": "accepts", + "root": "/common/temp/default/node_modules/.pnpm/accepts@1.3.8/node_modules/accepts", + }, + Object { + "deps": Object { + "acorn": 772, + "acorn-walk": 769, + }, + "name": "acorn-globals", + "root": "/common/temp/default/node_modules/.pnpm/acorn-globals@7.0.1/node_modules/acorn-globals", + }, + Object { + "deps": Object { + "acorn": 772, + }, + "name": "acorn-import-assertions", + "root": "/common/temp/default/node_modules/.pnpm/acorn-import-assertions@1.9.0_acorn@8.11.3/node_modules/acorn-import-assertions", + }, + Object { + "deps": Object { + "acorn": 771, + }, + "name": "acorn-jsx", + "root": "/common/temp/default/node_modules/.pnpm/acorn-jsx@5.3.2_acorn@7.4.1/node_modules/acorn-jsx", + }, + Object { + "deps": Object { + "acorn": 772, + }, + "name": "acorn-jsx", + "root": "/common/temp/default/node_modules/.pnpm/acorn-jsx@5.3.2_acorn@8.11.3/node_modules/acorn-jsx", + }, + Object { + "deps": Object {}, + "name": "acorn-walk", + "root": "/common/temp/default/node_modules/.pnpm/acorn-walk@7.2.0/node_modules/acorn-walk", + }, + Object { + "deps": Object {}, + "name": "acorn-walk", + "root": "/common/temp/default/node_modules/.pnpm/acorn-walk@8.3.2/node_modules/acorn-walk", + }, + Object { + "deps": Object {}, + "name": "acorn", + "root": "/common/temp/default/node_modules/.pnpm/acorn@6.4.2/node_modules/acorn", + }, + Object { + "deps": Object {}, + "name": "acorn", + "root": "/common/temp/default/node_modules/.pnpm/acorn@7.4.1/node_modules/acorn", + }, + Object { + "deps": Object {}, + "name": "acorn", + "root": "/common/temp/default/node_modules/.pnpm/acorn@8.11.3/node_modules/acorn", + }, + Object { + "deps": Object {}, + "name": "address", + "root": "/common/temp/default/node_modules/.pnpm/address@1.2.2/node_modules/address", + }, + Object { + "deps": Object {}, + "name": "agent-base", + "root": "/common/temp/default/node_modules/.pnpm/agent-base@5.1.1/node_modules/agent-base", + }, + Object { + "deps": Object { + "debug": 1106, + }, + "name": "agent-base", + "root": "/common/temp/default/node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base", + }, + Object { + "deps": Object { + "debug": 1106, + }, + "name": "agent-base", + "root": "/common/temp/default/node_modules/.pnpm/agent-base@7.1.0/node_modules/agent-base", + }, + Object { + "deps": Object { + "humanize-ms": 1491, + }, + "name": "agentkeepalive", + "root": "/common/temp/default/node_modules/.pnpm/agentkeepalive@4.5.0/node_modules/agentkeepalive", + }, + Object { + "deps": Object { + "clean-stack": 989, + "indent-string": 1512, + }, + "name": "aggregate-error", + "root": "/common/temp/default/node_modules/.pnpm/aggregate-error@3.1.0/node_modules/aggregate-error", + }, + Object { + "deps": Object { + "array-includes": 824, + "array.prototype.flat": 829, + "array.prototype.flatmap": 830, + "es5-shim": 1222, + "es6-shim": 1223, + "function.prototype.name": 1371, + "globalthis": 1413, + "object.entries": 1903, + "object.fromentries": 1904, + "object.getownpropertydescriptors": 1905, + "object.values": 1908, + "promise.allsettled": 2057, + "promise.prototype.finally": 2058, + "string.prototype.matchall": 2333, + "string.prototype.padend": 2334, + "string.prototype.padstart": 2335, + "symbol.prototype.description": 2367, + }, + "name": "airbnb-js-shims", + "root": "/common/temp/default/node_modules/.pnpm/airbnb-js-shims@2.2.1/node_modules/airbnb-js-shims", + }, + Object { + "deps": Object { + "ajv": 788, + }, + "name": "ajv-draft-04", + "root": "/common/temp/default/node_modules/.pnpm/ajv-draft-04@1.0.0_ajv@8.13.0/node_modules/ajv-draft-04", + }, + Object { + "deps": Object { + "ajv": 786, + }, + "name": "ajv-errors", + "root": "/common/temp/default/node_modules/.pnpm/ajv-errors@1.0.1_ajv@6.12.6/node_modules/ajv-errors", + }, + Object { + "deps": Object { + "ajv": 788, + }, + "name": "ajv-formats", + "root": "/common/temp/default/node_modules/.pnpm/ajv-formats@2.1.1/node_modules/ajv-formats", + }, + Object { + "deps": Object { + "ajv": 788, + }, + "name": "ajv-formats", + "root": "/common/temp/default/node_modules/.pnpm/ajv-formats@3.0.1_ajv@8.13.0/node_modules/ajv-formats", + }, + Object { + "deps": Object { + "ajv": 786, + }, + "name": "ajv-keywords", + "root": "/common/temp/default/node_modules/.pnpm/ajv-keywords@3.5.2_ajv@6.12.6/node_modules/ajv-keywords", + }, + Object { + "deps": Object { + "ajv": 788, + "fast-deep-equal": 1298, + }, + "name": "ajv-keywords", + "root": "/common/temp/default/node_modules/.pnpm/ajv-keywords@5.1.0_ajv@8.13.0/node_modules/ajv-keywords", + }, + Object { + "deps": Object { + "fast-deep-equal": 1298, + "fast-json-stable-stringify": 1302, + "json-schema-traverse": 1688, + "uri-js": 2494, + }, + "name": "ajv", + "root": "/common/temp/default/node_modules/.pnpm/ajv@6.12.6/node_modules/ajv", + }, + Object { + "deps": Object { + "fast-deep-equal": 1298, + "json-schema-traverse": 1689, + "require-from-string": 2168, + "uri-js": 2494, + }, + "name": "ajv", + "root": "/common/temp/default/node_modules/.pnpm/ajv@8.12.0/node_modules/ajv", + }, + Object { + "deps": Object { + "fast-deep-equal": 1298, + "json-schema-traverse": 1689, + "require-from-string": 2168, + "uri-js": 2494, + }, + "name": "ajv", + "root": "/common/temp/default/node_modules/.pnpm/ajv@8.13.0/node_modules/ajv", + }, + Object { + "deps": Object { + "string-width": 2331, + }, + "name": "ansi-align", + "root": "/common/temp/default/node_modules/.pnpm/ansi-align@3.0.1/node_modules/ansi-align", + }, + Object { + "deps": Object {}, + "name": "ansi-colors", + "root": "/common/temp/default/node_modules/.pnpm/ansi-colors@3.2.4/node_modules/ansi-colors", + }, + Object { + "deps": Object {}, + "name": "ansi-colors", + "root": "/common/temp/default/node_modules/.pnpm/ansi-colors@4.1.1/node_modules/ansi-colors", + }, + Object { + "deps": Object {}, + "name": "ansi-colors", + "root": "/common/temp/default/node_modules/.pnpm/ansi-colors@4.1.3/node_modules/ansi-colors", + }, + Object { + "deps": Object { + "type-fest": 2444, + }, + "name": "ansi-escapes", + "root": "/common/temp/default/node_modules/.pnpm/ansi-escapes@4.3.2/node_modules/ansi-escapes", + }, + Object { + "deps": Object {}, + "name": "ansi-html-community", + "root": "/common/temp/default/node_modules/.pnpm/ansi-html-community@0.0.8/node_modules/ansi-html-community", + }, + Object { + "deps": Object {}, + "name": "ansi-regex", + "root": "/common/temp/default/node_modules/.pnpm/ansi-regex@2.1.1/node_modules/ansi-regex", + }, + Object { + "deps": Object {}, + "name": "ansi-regex", + "root": "/common/temp/default/node_modules/.pnpm/ansi-regex@4.1.1/node_modules/ansi-regex", + }, + Object { + "deps": Object {}, + "name": "ansi-regex", + "root": "/common/temp/default/node_modules/.pnpm/ansi-regex@5.0.1/node_modules/ansi-regex", + }, + Object { + "deps": Object {}, + "name": "ansi-regex", + "root": "/common/temp/default/node_modules/.pnpm/ansi-regex@6.0.1/node_modules/ansi-regex", + }, + Object { + "deps": Object { + "color-convert": 1014, + }, + "name": "ansi-styles", + "root": "/common/temp/default/node_modules/.pnpm/ansi-styles@3.2.1/node_modules/ansi-styles", + }, + Object { + "deps": Object { + "color-convert": 1015, + }, + "name": "ansi-styles", + "root": "/common/temp/default/node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles", + }, + Object { + "deps": Object {}, + "name": "ansi-styles", + "root": "/common/temp/default/node_modules/.pnpm/ansi-styles@5.2.0/node_modules/ansi-styles", + }, + Object { + "deps": Object {}, + "name": "ansi-styles", + "root": "/common/temp/default/node_modules/.pnpm/ansi-styles@6.2.1/node_modules/ansi-styles", + }, + Object { + "deps": Object { + "entities": 1203, + }, + "name": "ansi-to-html", + "root": "/common/temp/default/node_modules/.pnpm/ansi-to-html@0.6.15/node_modules/ansi-to-html", + }, + Object { + "deps": Object {}, + "name": "any-promise", + "root": "/common/temp/default/node_modules/.pnpm/any-promise@1.3.0/node_modules/any-promise", + }, + Object { + "deps": Object { + "micromatch": 1805, + "normalize-path": 1880, + }, + "name": "anymatch", + "root": "/common/temp/default/node_modules/.pnpm/anymatch@2.0.0/node_modules/anymatch", + }, + Object { + "deps": Object { + "normalize-path": 1881, + "picomatch": 1976, + }, + "name": "anymatch", + "root": "/common/temp/default/node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch", + }, + Object { + "deps": Object {}, + "name": "app-root-dir", + "root": "/common/temp/default/node_modules/.pnpm/app-root-dir@1.0.2/node_modules/app-root-dir", + }, + Object { + "deps": Object {}, + "name": "aproba", + "root": "/common/temp/default/node_modules/.pnpm/aproba@1.2.0/node_modules/aproba", + }, + Object { + "deps": Object {}, + "name": "aproba", + "root": "/common/temp/default/node_modules/.pnpm/aproba@2.0.0/node_modules/aproba", + }, + Object { + "deps": Object { + "glob": 1401, + "graceful-fs": 1418, + "lazystream": 1721, + "lodash.defaults": 1743, + "lodash.difference": 1744, + "lodash.flatten": 1745, + "lodash.isplainobject": 1752, + "lodash.union": 1758, + "normalize-path": 1881, + "readable-stream": 2126, + }, + "name": "archiver-utils", + "root": "/common/temp/default/node_modules/.pnpm/archiver-utils@2.1.0/node_modules/archiver-utils", + }, + Object { + "deps": Object { + "glob": 1401, + "graceful-fs": 1418, + "lazystream": 1721, + "lodash.defaults": 1743, + "lodash.difference": 1744, + "lodash.flatten": 1745, + "lodash.isplainobject": 1752, + "lodash.union": 1758, + "normalize-path": 1881, + "readable-stream": 2127, + }, + "name": "archiver-utils", + "root": "/common/temp/default/node_modules/.pnpm/archiver-utils@3.0.4/node_modules/archiver-utils", + }, + Object { + "deps": Object { + "archiver-utils": 810, + "async": 849, + "buffer-crc32": 925, + "readable-stream": 2127, + "readdir-glob": 2128, + "tar-stream": 2375, + "zip-stream": 2628, + }, + "name": "archiver", + "root": "/common/temp/default/node_modules/.pnpm/archiver@5.3.2/node_modules/archiver", + }, + Object { + "deps": Object {}, + "name": "archy", + "root": "/common/temp/default/node_modules/.pnpm/archy@1.0.0/node_modules/archy", + }, + Object { + "deps": Object { + "delegates": 1130, + "readable-stream": 2126, + }, + "name": "are-we-there-yet", + "root": "/common/temp/default/node_modules/.pnpm/are-we-there-yet@1.1.7/node_modules/are-we-there-yet", + }, + Object { + "deps": Object { + "delegates": 1130, + "readable-stream": 2127, + }, + "name": "are-we-there-yet", + "root": "/common/temp/default/node_modules/.pnpm/are-we-there-yet@2.0.0/node_modules/are-we-there-yet", + }, + Object { + "deps": Object { + "sprintf-js": 2305, + }, + "name": "argparse", + "root": "/common/temp/default/node_modules/.pnpm/argparse@1.0.10/node_modules/argparse", + }, + Object { + "deps": Object {}, + "name": "argparse", + "root": "/common/temp/default/node_modules/.pnpm/argparse@2.0.1/node_modules/argparse", + }, + Object { + "deps": Object {}, + "name": "arr-diff", + "root": "/common/temp/default/node_modules/.pnpm/arr-diff@4.0.0/node_modules/arr-diff", + }, + Object { + "deps": Object {}, + "name": "arr-flatten", + "root": "/common/temp/default/node_modules/.pnpm/arr-flatten@1.1.0/node_modules/arr-flatten", + }, + Object { + "deps": Object {}, + "name": "arr-union", + "root": "/common/temp/default/node_modules/.pnpm/arr-union@3.1.0/node_modules/arr-union", + }, + Object { + "deps": Object { + "call-bind": 946, + "is-array-buffer": 1537, + }, + "name": "array-buffer-byte-length", + "root": "/common/temp/default/node_modules/.pnpm/array-buffer-byte-length@1.0.1/node_modules/array-buffer-byte-length", + }, + Object { + "deps": Object {}, + "name": "array-differ", + "root": "/common/temp/default/node_modules/.pnpm/array-differ@3.0.0/node_modules/array-differ", + }, + Object { + "deps": Object {}, + "name": "array-flatten", + "root": "/common/temp/default/node_modules/.pnpm/array-flatten@1.1.1/node_modules/array-flatten", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "get-intrinsic": 1381, + "is-string": 1594, + }, + "name": "array-includes", + "root": "/common/temp/default/node_modules/.pnpm/array-includes@3.1.7/node_modules/array-includes", + }, + Object { + "deps": Object { + "array-uniq": 827, + }, + "name": "array-union", + "root": "/common/temp/default/node_modules/.pnpm/array-union@1.0.2/node_modules/array-union", + }, + Object { + "deps": Object {}, + "name": "array-union", + "root": "/common/temp/default/node_modules/.pnpm/array-union@2.1.0/node_modules/array-union", + }, + Object { + "deps": Object {}, + "name": "array-uniq", + "root": "/common/temp/default/node_modules/.pnpm/array-uniq@1.0.3/node_modules/array-uniq", + }, + Object { + "deps": Object {}, + "name": "array-unique", + "root": "/common/temp/default/node_modules/.pnpm/array-unique@0.3.2/node_modules/array-unique", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-shim-unscopables": 1220, + }, + "name": "array.prototype.flat", + "root": "/common/temp/default/node_modules/.pnpm/array.prototype.flat@1.3.2/node_modules/array.prototype.flat", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-shim-unscopables": 1220, + }, + "name": "array.prototype.flatmap", + "root": "/common/temp/default/node_modules/.pnpm/array.prototype.flatmap@1.3.2/node_modules/array.prototype.flatmap", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-array-method-boxes-properly": 1212, + "es-object-atoms": 1218, + "is-string": 1594, + }, + "name": "array.prototype.map", + "root": "/common/temp/default/node_modules/.pnpm/array.prototype.map@1.0.7/node_modules/array.prototype.map", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-array-method-boxes-properly": 1212, + "is-string": 1594, + }, + "name": "array.prototype.reduce", + "root": "/common/temp/default/node_modules/.pnpm/array.prototype.reduce@1.0.6/node_modules/array.prototype.reduce", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-errors": 1214, + "es-shim-unscopables": 1220, + }, + "name": "array.prototype.tosorted", + "root": "/common/temp/default/node_modules/.pnpm/array.prototype.tosorted@1.1.3/node_modules/array.prototype.tosorted", + }, + Object { + "deps": Object { + "array-buffer-byte-length": 821, + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-errors": 1214, + "get-intrinsic": 1381, + "is-array-buffer": 1537, + "is-shared-array-buffer": 1591, + }, + "name": "arraybuffer.prototype.slice", + "root": "/common/temp/default/node_modules/.pnpm/arraybuffer.prototype.slice@1.0.3/node_modules/arraybuffer.prototype.slice", + }, + Object { + "deps": Object {}, + "name": "arrify", + "root": "/common/temp/default/node_modules/.pnpm/arrify@1.0.1/node_modules/arrify", + }, + Object { + "deps": Object {}, + "name": "arrify", + "root": "/common/temp/default/node_modules/.pnpm/arrify@2.0.1/node_modules/arrify", + }, + Object { + "deps": Object {}, + "name": "asap", + "root": "/common/temp/default/node_modules/.pnpm/asap@2.0.6/node_modules/asap", + }, + Object { + "deps": Object { + "bn.js": 901, + "inherits": 1518, + "minimalistic-assert": 1819, + }, + "name": "asn1.js", + "root": "/common/temp/default/node_modules/.pnpm/asn1.js@4.10.1/node_modules/asn1.js", + }, + Object { + "deps": Object { + "object.assign": 1902, + "util": 2510, + }, + "name": "assert", + "root": "/common/temp/default/node_modules/.pnpm/assert@1.5.1/node_modules/assert", + }, + Object { + "deps": Object {}, + "name": "assign-symbols", + "root": "/common/temp/default/node_modules/.pnpm/assign-symbols@1.0.0/node_modules/assign-symbols", + }, + Object { + "deps": Object {}, + "name": "ast-types", + "root": "/common/temp/default/node_modules/.pnpm/ast-types@0.13.3/node_modules/ast-types", + }, + Object { + "deps": Object { + "tslib": 2425, + }, + "name": "ast-types", + "root": "/common/temp/default/node_modules/.pnpm/ast-types@0.14.2/node_modules/ast-types", + }, + Object { + "deps": Object {}, + "name": "astral-regex", + "root": "/common/temp/default/node_modules/.pnpm/astral-regex@1.0.0/node_modules/astral-regex", + }, + Object { + "deps": Object {}, + "name": "astral-regex", + "root": "/common/temp/default/node_modules/.pnpm/astral-regex@2.0.0/node_modules/astral-regex", + }, + Object { + "deps": Object {}, + "name": "async-each", + "root": "/common/temp/default/node_modules/.pnpm/async-each@1.0.6/node_modules/async-each", + }, + Object { + "deps": Object {}, + "name": "async-limiter", + "root": "/common/temp/default/node_modules/.pnpm/async-limiter@1.0.1/node_modules/async-limiter", + }, + Object { + "deps": Object { + "retry": 2189, + }, + "name": "async-retry", + "root": "/common/temp/default/node_modules/.pnpm/async-retry@1.3.3/node_modules/async-retry", + }, + Object { + "deps": Object {}, + "name": "async", + "root": "/common/temp/default/node_modules/.pnpm/async@1.5.2/node_modules/async", + }, + Object { + "deps": Object {}, + "name": "async", + "root": "/common/temp/default/node_modules/.pnpm/async@3.2.5/node_modules/async", + }, + Object { + "deps": Object {}, + "name": "asynckit", + "root": "/common/temp/default/node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit", + }, + Object { + "deps": Object {}, + "name": "at-least-node", + "root": "/common/temp/default/node_modules/.pnpm/at-least-node@1.0.0/node_modules/at-least-node", + }, + Object { + "deps": Object {}, + "name": "atob", + "root": "/common/temp/default/node_modules/.pnpm/atob@2.1.2/node_modules/atob", + }, + Object { + "deps": Object {}, + "name": "atomic-sleep", + "root": "/common/temp/default/node_modules/.pnpm/atomic-sleep@1.0.0/node_modules/atomic-sleep", + }, + Object { + "deps": Object {}, + "name": "atomically", + "root": "/common/temp/default/node_modules/.pnpm/atomically@1.7.0/node_modules/atomically", + }, + Object { + "deps": Object { + "browserslist": 922, + "caniuse-lite": 958, + "fraction.js": 1355, + "normalize-range": 1882, + "picocolors": 1975, + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "autoprefixer", + "root": "/common/temp/default/node_modules/.pnpm/autoprefixer@10.4.18_postcss@8.4.36/node_modules/autoprefixer", + }, + Object { + "deps": Object { + "browserslist": 922, + "caniuse-lite": 958, + "normalize-range": 1882, + "num2fraction": 1894, + "picocolors": 1974, + "postcss": 2037, + "postcss-value-parser": 2036, + }, + "name": "autoprefixer", + "root": "/common/temp/default/node_modules/.pnpm/autoprefixer@9.8.8/node_modules/autoprefixer", + }, + Object { + "deps": Object { + "possible-typed-array-names": 1994, + }, + "name": "available-typed-arrays", + "root": "/common/temp/default/node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays", + }, + Object { + "deps": Object { + "archy": 813, + "debug": 1106, + "fastq": 1311, + "queue-microtask": 2083, + }, + "name": "avvio", + "root": "/common/temp/default/node_modules/.pnpm/avvio@7.2.5/node_modules/avvio", + }, + Object { + "deps": Object { + "@balena/dockerignore": 197, + "case": 961, + "constructs": 1048, + "fs-extra": 1364, + "ignore": 1502, + "jsonschema": 1698, + "minimatch": 1822, + "punycode": 2073, + "semver": 2238, + "yaml": 2611, + }, + "name": "aws-cdk-lib", + "root": "/common/temp/default/node_modules/.pnpm/aws-cdk-lib@2.50.0_constructs@10.0.130/node_modules/aws-cdk-lib", + }, + Object { + "deps": Object { + "@aws-cdk/asset-awscli-v1": 2, + "@aws-cdk/asset-kubectl-v20": 3, + "@aws-cdk/asset-node-proxy-agent-v5": 4, + "@balena/dockerignore": 197, + "case": 961, + "constructs": 1048, + "fs-extra": 1361, + "ignore": 1502, + "jsonschema": 1698, + "minimatch": 1822, + "punycode": 2073, + "semver": 2238, + "table": 2370, + "yaml": 2611, + }, + "name": "aws-cdk-lib", + "root": "/common/temp/default/node_modules/.pnpm/aws-cdk-lib@2.80.0_constructs@10.0.130/node_modules/aws-cdk-lib", + }, + Object { + "deps": Object {}, + "name": "aws-cdk", + "root": "/common/temp/default/node_modules/.pnpm/aws-cdk@2.50.0/node_modules/aws-cdk", + }, + Object { + "deps": Object { + "buffer": 930, + "events": 1279, + "ieee754": 1496, + "jmespath": 1671, + "querystring": 2081, + "sax": 2220, + "url": 2500, + "util": 2512, + "uuid": 2517, + "xml2js": 2600, + }, + "name": "aws-sdk", + "root": "/common/temp/default/node_modules/.pnpm/aws-sdk@2.1580.0/node_modules/aws-sdk", + }, + Object { + "deps": Object { + "tunnel": 2439, + "typed-rest-client": 2453, + }, + "name": "azure-devops-node-api", + "root": "/common/temp/default/node_modules/.pnpm/azure-devops-node-api@11.2.0/node_modules/azure-devops-node-api", + }, + Object { + "deps": Object { + "@babel/core": 59, + }, + "name": "babel-core", + "root": "/common/temp/default/node_modules/.pnpm/babel-core@7.0.0-bridge.0_@babel+core@7.20.12/node_modules/babel-core", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@jest/transform": 346, + "@types/babel__core": 558, + "babel-plugin-istanbul": 871, + "babel-preset-jest": 883, + "chalk": 966, + "graceful-fs": 1418, + "slash": 2273, + }, + "name": "babel-jest", + "root": "/common/temp/default/node_modules/.pnpm/babel-jest@29.7.0_@babel+core@7.20.12_supports-color@8.1.1/node_modules/babel-jest", + }, + Object { + "deps": Object { + "@babel/core": 59, + "find-cache-dir": 1328, + "loader-utils": 1736, + "make-dir": 1772, + "schema-utils": 2227, + "webpack": 2558, + }, + "name": "babel-loader", + "root": "/common/temp/default/node_modules/.pnpm/babel-loader@8.2.5_@babel+core@7.20.12_webpack@4.47.0/node_modules/babel-loader", + }, + Object { + "deps": Object {}, + "name": "babel-plugin-add-react-displayname", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-add-react-displayname@0.0.5/node_modules/babel-plugin-add-react-displayname", + }, + Object { + "deps": Object { + "@babel/core": 58, + "@babel/helper-plugin-utils": 79, + "@mdx-js/util": 361, + }, + "name": "babel-plugin-apply-mdx-type-prop", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-apply-mdx-type-prop@1.6.22_@babel+core@7.12.9/node_modules/babel-plugin-apply-mdx-type-prop", + }, + Object { + "deps": Object { + "@babel/helper-module-imports": 74, + "@emotion/hash": 208, + "@emotion/memoize": 211, + "@emotion/serialize": 213, + "babel-plugin-macros": 873, + "babel-plugin-syntax-jsx": 881, + "convert-source-map": 1051, + "escape-string-regexp": 1231, + "find-root": 1330, + "source-map": 2293, + }, + "name": "babel-plugin-emotion", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-emotion@10.2.2/node_modules/babel-plugin-emotion", + }, + Object { + "deps": Object { + "@babel/helper-plugin-utils": 79, + }, + "name": "babel-plugin-extract-import-names", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-extract-import-names@1.6.22/node_modules/babel-plugin-extract-import-names", + }, + Object { + "deps": Object { + "@babel/helper-plugin-utils": 80, + "@istanbuljs/load-nyc-config": 325, + "@istanbuljs/schema": 326, + "istanbul-lib-instrument": 1617, + "test-exclude": 2385, + }, + "name": "babel-plugin-istanbul", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-istanbul@6.1.1_supports-color@8.1.1/node_modules/babel-plugin-istanbul", + }, + Object { + "deps": Object { + "@babel/template": 194, + "@babel/types": 196, + "@types/babel__core": 558, + "@types/babel__traverse": 561, + }, + "name": "babel-plugin-jest-hoist", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-jest-hoist@29.6.3/node_modules/babel-plugin-jest-hoist", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "cosmiconfig": 1064, + "resolve": 2182, + }, + "name": "babel-plugin-macros", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-macros@2.8.0/node_modules/babel-plugin-macros", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "cosmiconfig": 1065, + "resolve": 2182, + }, + "name": "babel-plugin-macros", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-macros@3.1.0/node_modules/babel-plugin-macros", + }, + Object { + "deps": Object { + "@babel/core": 59, + }, + "name": "babel-plugin-named-asset-import", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-named-asset-import@0.3.8_@babel+core@7.20.12/node_modules/babel-plugin-named-asset-import", + }, + Object { + "deps": Object { + "@babel/compat-data": 57, + "@babel/core": 59, + "@babel/helper-define-polyfill-provider": 69, + "semver": 2237, + }, + "name": "babel-plugin-polyfill-corejs2", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-polyfill-corejs2@0.4.10_@babel+core@7.20.12/node_modules/babel-plugin-polyfill-corejs2", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-define-polyfill-provider": 67, + "core-js-compat": 1059, + }, + "name": "babel-plugin-polyfill-corejs3", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-polyfill-corejs3@0.1.7_@babel+core@7.20.12/node_modules/babel-plugin-polyfill-corejs3", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-define-polyfill-provider": 68, + "core-js-compat": 1059, + }, + "name": "babel-plugin-polyfill-corejs3", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-polyfill-corejs3@0.9.0_@babel+core@7.20.12/node_modules/babel-plugin-polyfill-corejs3", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/helper-define-polyfill-provider": 68, + }, + "name": "babel-plugin-polyfill-regenerator", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-polyfill-regenerator@0.5.5_@babel+core@7.20.12/node_modules/babel-plugin-polyfill-regenerator", + }, + Object { + "deps": Object { + "ast-types": 842, + "lodash": 1760, + "react-docgen": 2098, + }, + "name": "babel-plugin-react-docgen", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-react-docgen@4.2.1/node_modules/babel-plugin-react-docgen", + }, + Object { + "deps": Object {}, + "name": "babel-plugin-syntax-jsx", + "root": "/common/temp/default/node_modules/.pnpm/babel-plugin-syntax-jsx@6.18.0/node_modules/babel-plugin-syntax-jsx", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/plugin-syntax-async-generators": 105, + "@babel/plugin-syntax-bigint": 106, + "@babel/plugin-syntax-class-properties": 107, + "@babel/plugin-syntax-import-meta": 116, + "@babel/plugin-syntax-json-strings": 117, + "@babel/plugin-syntax-logical-assignment-operators": 120, + "@babel/plugin-syntax-nullish-coalescing-operator": 121, + "@babel/plugin-syntax-numeric-separator": 122, + "@babel/plugin-syntax-object-rest-spread": 124, + "@babel/plugin-syntax-optional-catch-binding": 125, + "@babel/plugin-syntax-optional-chaining": 126, + "@babel/plugin-syntax-top-level-await": 128, + }, + "name": "babel-preset-current-node-syntax", + "root": "/common/temp/default/node_modules/.pnpm/babel-preset-current-node-syntax@1.0.1_@babel+core@7.20.12/node_modules/babel-preset-current-node-syntax", + }, + Object { + "deps": Object { + "@babel/core": 59, + "babel-plugin-jest-hoist": 872, + "babel-preset-current-node-syntax": 882, + }, + "name": "babel-preset-jest", + "root": "/common/temp/default/node_modules/.pnpm/babel-preset-jest@29.6.3_@babel+core@7.20.12/node_modules/babel-preset-jest", + }, + Object { + "deps": Object {}, + "name": "bail", + "root": "/common/temp/default/node_modules/.pnpm/bail@1.0.5/node_modules/bail", + }, + Object { + "deps": Object {}, + "name": "balanced-match", + "root": "/common/temp/default/node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match", + }, + Object { + "deps": Object {}, + "name": "base64-js", + "root": "/common/temp/default/node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js", + }, + Object { + "deps": Object { + "cache-base": 943, + "class-utils": 986, + "component-emitter": 1035, + "define-property": 1127, + "isobject": 1614, + "mixin-deep": 1840, + "pascalcase": 1960, + }, + "name": "base", + "root": "/common/temp/default/node_modules/.pnpm/base@0.11.2/node_modules/base", + }, + Object { + "deps": Object {}, + "name": "batch-processor", + "root": "/common/temp/default/node_modules/.pnpm/batch-processor@1.0.0/node_modules/batch-processor", + }, + Object { + "deps": Object {}, + "name": "batch", + "root": "/common/temp/default/node_modules/.pnpm/batch@0.6.1/node_modules/batch", + }, + Object { + "deps": Object { + "open": 1916, + }, + "name": "better-opn", + "root": "/common/temp/default/node_modules/.pnpm/better-opn@2.1.1/node_modules/better-opn", + }, + Object { + "deps": Object { + "is-windows": 1605, + }, + "name": "better-path-resolve", + "root": "/common/temp/default/node_modules/.pnpm/better-path-resolve@1.0.0/node_modules/better-path-resolve", + }, + Object { + "deps": Object {}, + "name": "big-integer", + "root": "/common/temp/default/node_modules/.pnpm/big-integer@1.6.52/node_modules/big-integer", + }, + Object { + "deps": Object {}, + "name": "big.js", + "root": "/common/temp/default/node_modules/.pnpm/big.js@5.2.2/node_modules/big.js", + }, + Object { + "deps": Object {}, + "name": "binary-extensions", + "root": "/common/temp/default/node_modules/.pnpm/binary-extensions@1.13.1/node_modules/binary-extensions", + }, + Object { + "deps": Object {}, + "name": "binary-extensions", + "root": "/common/temp/default/node_modules/.pnpm/binary-extensions@2.3.0/node_modules/binary-extensions", + }, + Object { + "deps": Object { + "buffers": 932, + "chainsaw": 963, + }, + "name": "binary", + "root": "/common/temp/default/node_modules/.pnpm/binary@0.3.0/node_modules/binary", + }, + Object { + "deps": Object { + "file-uri-to-path": 1323, + }, + "name": "bindings", + "root": "/common/temp/default/node_modules/.pnpm/bindings@1.5.0/node_modules/bindings", + }, + Object { + "deps": Object { + "buffer": 931, + "inherits": 1518, + "readable-stream": 2127, + }, + "name": "bl", + "root": "/common/temp/default/node_modules/.pnpm/bl@4.1.0/node_modules/bl", + }, + Object { + "deps": Object {}, + "name": "bluebird", + "root": "/common/temp/default/node_modules/.pnpm/bluebird@3.4.7/node_modules/bluebird", + }, + Object { + "deps": Object {}, + "name": "bluebird", + "root": "/common/temp/default/node_modules/.pnpm/bluebird@3.7.2/node_modules/bluebird", + }, + Object { + "deps": Object {}, + "name": "bn.js", + "root": "/common/temp/default/node_modules/.pnpm/bn.js@4.12.0/node_modules/bn.js", + }, + Object { + "deps": Object {}, + "name": "bn.js", + "root": "/common/temp/default/node_modules/.pnpm/bn.js@5.2.1/node_modules/bn.js", + }, + Object { + "deps": Object { + "bytes": 939, + "content-type": 1050, + "debug": 1104, + "depd": 1134, + "destroy": 1139, + "http-errors": 1477, + "iconv-lite": 1492, + "on-finished": 1912, + "qs": 2078, + "raw-body": 2092, + "type-is": 2448, + "unpipe": 2488, + }, + "name": "body-parser", + "root": "/common/temp/default/node_modules/.pnpm/body-parser@1.20.2/node_modules/body-parser", + }, + Object { + "deps": Object { + "fast-safe-stringify": 1306, + "individual": 1514, + }, + "name": "bole", + "root": "/common/temp/default/node_modules/.pnpm/bole@4.0.1/node_modules/bole", + }, + Object { + "deps": Object { + "fast-deep-equal": 1298, + "multicast-dns": 1851, + }, + "name": "bonjour-service", + "root": "/common/temp/default/node_modules/.pnpm/bonjour-service@1.2.1/node_modules/bonjour-service", + }, + Object { + "deps": Object {}, + "name": "boolbase", + "root": "/common/temp/default/node_modules/.pnpm/boolbase@1.0.0/node_modules/boolbase", + }, + Object { + "deps": Object {}, + "name": "bowser", + "root": "/common/temp/default/node_modules/.pnpm/bowser@2.11.0/node_modules/bowser", + }, + Object { + "deps": Object { + "ansi-align": 789, + "camelcase": 955, + "chalk": 966, + "cli-boxes": 990, + "string-width": 2331, + "type-fest": 2443, + "widest-line": 2576, + "wrap-ansi": 2585, + }, + "name": "boxen", + "root": "/common/temp/default/node_modules/.pnpm/boxen@5.1.2/node_modules/boxen", + }, + Object { + "deps": Object { + "ansi-align": 789, + "camelcase": 956, + "chalk": 967, + "cli-boxes": 991, + "string-width": 2332, + "type-fest": 2447, + "widest-line": 2577, + "wrap-ansi": 2586, + }, + "name": "boxen", + "root": "/common/temp/default/node_modules/.pnpm/boxen@7.1.1/node_modules/boxen", + }, + Object { + "deps": Object { + "balanced-match": 885, + "concat-map": 1040, + }, + "name": "brace-expansion", + "root": "/common/temp/default/node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion", + }, + Object { + "deps": Object { + "balanced-match": 885, + }, + "name": "brace-expansion", + "root": "/common/temp/default/node_modules/.pnpm/brace-expansion@2.0.1/node_modules/brace-expansion", + }, + Object { + "deps": Object { + "arr-flatten": 819, + "array-unique": 828, + "extend-shallow": 1291, + "fill-range": 1324, + "isobject": 1614, + "repeat-element": 2165, + "snapdragon": 2279, + "snapdragon-node": 2277, + "split-string": 2303, + "to-regex": 2405, + }, + "name": "braces", + "root": "/common/temp/default/node_modules/.pnpm/braces@2.3.2/node_modules/braces", + }, + Object { + "deps": Object { + "fill-range": 1325, + }, + "name": "braces", + "root": "/common/temp/default/node_modules/.pnpm/braces@3.0.2/node_modules/braces", + }, + Object { + "deps": Object {}, + "name": "brorand", + "root": "/common/temp/default/node_modules/.pnpm/brorand@1.1.0/node_modules/brorand", + }, + Object { + "deps": Object {}, + "name": "browser-stdout", + "root": "/common/temp/default/node_modules/.pnpm/browser-stdout@1.3.1/node_modules/browser-stdout", + }, + Object { + "deps": Object { + "buffer-xor": 929, + "cipher-base": 984, + "create-hash": 1071, + "evp_bytestokey": 1281, + "inherits": 1518, + "safe-buffer": 2207, + }, + "name": "browserify-aes", + "root": "/common/temp/default/node_modules/.pnpm/browserify-aes@1.2.0/node_modules/browserify-aes", + }, + Object { + "deps": Object { + "browserify-aes": 916, + "browserify-des": 918, + "evp_bytestokey": 1281, + }, + "name": "browserify-cipher", + "root": "/common/temp/default/node_modules/.pnpm/browserify-cipher@1.0.1/node_modules/browserify-cipher", + }, + Object { + "deps": Object { + "cipher-base": 984, + "des.js": 1137, + "inherits": 1518, + "safe-buffer": 2207, + }, + "name": "browserify-des", + "root": "/common/temp/default/node_modules/.pnpm/browserify-des@1.0.2/node_modules/browserify-des", + }, + Object { + "deps": Object { + "bn.js": 902, + "randombytes": 2089, + }, + "name": "browserify-rsa", + "root": "/common/temp/default/node_modules/.pnpm/browserify-rsa@4.1.0/node_modules/browserify-rsa", + }, + Object { + "deps": Object { + "bn.js": 902, + "browserify-rsa": 919, + "create-hash": 1071, + "create-hmac": 1072, + "elliptic": 1187, + "hash-base": 1442, + "inherits": 1518, + "parse-asn1": 1950, + "readable-stream": 2126, + "safe-buffer": 2207, + }, + "name": "browserify-sign", + "root": "/common/temp/default/node_modules/.pnpm/browserify-sign@4.2.3/node_modules/browserify-sign", + }, + Object { + "deps": Object { + "pako": 1946, + }, + "name": "browserify-zlib", + "root": "/common/temp/default/node_modules/.pnpm/browserify-zlib@0.2.0/node_modules/browserify-zlib", + }, + Object { + "deps": Object { + "caniuse-lite": 958, + "electron-to-chromium": 1185, + "node-releases": 1876, + "update-browserslist-db": 2492, + }, + "name": "browserslist", + "root": "/common/temp/default/node_modules/.pnpm/browserslist@4.23.0/node_modules/browserslist", + }, + Object { + "deps": Object { + "node-int64": 1874, + }, + "name": "bser", + "root": "/common/temp/default/node_modules/.pnpm/bser@2.1.1/node_modules/bser", + }, + Object { + "deps": Object {}, + "name": "buffer-builder", + "root": "/common/temp/default/node_modules/.pnpm/buffer-builder@0.2.0/node_modules/buffer-builder", + }, + Object { + "deps": Object {}, + "name": "buffer-crc32", + "root": "/common/temp/default/node_modules/.pnpm/buffer-crc32@0.2.13/node_modules/buffer-crc32", + }, + Object { + "deps": Object {}, + "name": "buffer-equal-constant-time", + "root": "/common/temp/default/node_modules/.pnpm/buffer-equal-constant-time@1.0.1/node_modules/buffer-equal-constant-time", + }, + Object { + "deps": Object {}, + "name": "buffer-from", + "root": "/common/temp/default/node_modules/.pnpm/buffer-from@1.1.2/node_modules/buffer-from", + }, + Object { + "deps": Object {}, + "name": "buffer-indexof-polyfill", + "root": "/common/temp/default/node_modules/.pnpm/buffer-indexof-polyfill@1.0.2/node_modules/buffer-indexof-polyfill", + }, + Object { + "deps": Object {}, + "name": "buffer-xor", + "root": "/common/temp/default/node_modules/.pnpm/buffer-xor@1.0.3/node_modules/buffer-xor", + }, + Object { + "deps": Object { + "base64-js": 886, + "ieee754": 1497, + "isarray": 1610, + }, + "name": "buffer", + "root": "/common/temp/default/node_modules/.pnpm/buffer@4.9.2/node_modules/buffer", + }, + Object { + "deps": Object { + "base64-js": 886, + "ieee754": 1497, + }, + "name": "buffer", + "root": "/common/temp/default/node_modules/.pnpm/buffer@5.7.1/node_modules/buffer", + }, + Object { + "deps": Object {}, + "name": "buffers", + "root": "/common/temp/default/node_modules/.pnpm/buffers@0.1.1/node_modules/buffers", + }, + Object { + "deps": Object {}, + "name": "builtin-modules", + "root": "/common/temp/default/node_modules/.pnpm/builtin-modules@1.1.1/node_modules/builtin-modules", + }, + Object { + "deps": Object {}, + "name": "builtin-modules", + "root": "/common/temp/default/node_modules/.pnpm/builtin-modules@3.1.0/node_modules/builtin-modules", + }, + Object { + "deps": Object {}, + "name": "builtin-status-codes", + "root": "/common/temp/default/node_modules/.pnpm/builtin-status-codes@3.0.0/node_modules/builtin-status-codes", + }, + Object { + "deps": Object {}, + "name": "builtins", + "root": "/common/temp/default/node_modules/.pnpm/builtins@1.0.3/node_modules/builtins", + }, + Object { + "deps": Object {}, + "name": "buttono", + "root": "/common/temp/default/node_modules/.pnpm/buttono@1.0.4/node_modules/buttono", + }, + Object { + "deps": Object {}, + "name": "bytes", + "root": "/common/temp/default/node_modules/.pnpm/bytes@3.0.0/node_modules/bytes", + }, + Object { + "deps": Object {}, + "name": "bytes", + "root": "/common/temp/default/node_modules/.pnpm/bytes@3.1.2/node_modules/bytes", + }, + Object { + "deps": Object { + "@bcoe/v8-coverage": 199, + "@istanbuljs/schema": 326, + "find-up": 1333, + "foreground-child": 1348, + "istanbul-lib-coverage": 1616, + "istanbul-lib-report": 1619, + "istanbul-reports": 1621, + "rimraf": 2195, + "test-exclude": 2385, + "v8-to-istanbul": 2521, + "yargs": 2621, + "yargs-parser": 2616, + }, + "name": "c8", + "root": "/common/temp/default/node_modules/.pnpm/c8@7.14.0/node_modules/c8", + }, + Object { + "deps": Object { + "bluebird": 900, + "chownr": 979, + "figgy-pudding": 1316, + "glob": 1401, + "graceful-fs": 1418, + "infer-owner": 1515, + "lru-cache": 1768, + "mississippi": 1839, + "mkdirp": 1842, + "move-concurrently": 1845, + "promise-inflight": 2055, + "rimraf": 2194, + "ssri": 2307, + "unique-filename": 2473, + "y18n": 2607, + }, + "name": "cacache", + "root": "/common/temp/default/node_modules/.pnpm/cacache@12.0.4/node_modules/cacache", + }, + Object { + "deps": Object { + "@npmcli/fs": 373, + "@npmcli/move-file": 374, + "chownr": 980, + "fs-minipass": 1365, + "glob": 1401, + "infer-owner": 1515, + "lru-cache": 1769, + "minipass": 1835, + "minipass-collect": 1830, + "minipass-flush": 1832, + "minipass-pipeline": 1833, + "mkdirp": 1843, + "p-map": 1939, + "promise-inflight": 2055, + "rimraf": 2195, + "ssri": 2308, + "tar": 2376, + "unique-filename": 2473, + }, + "name": "cacache", + "root": "/common/temp/default/node_modules/.pnpm/cacache@15.3.0/node_modules/cacache", + }, + Object { + "deps": Object { + "collection-visit": 1013, + "component-emitter": 1035, + "get-value": 1388, + "has-value": 1437, + "isobject": 1614, + "set-value": 2254, + "to-object-path": 2402, + "union-value": 2472, + "unset-value": 2489, + }, + "name": "cache-base", + "root": "/common/temp/default/node_modules/.pnpm/cache-base@1.0.1/node_modules/cache-base", + }, + Object { + "deps": Object {}, + "name": "cacheable-lookup", + "root": "/common/temp/default/node_modules/.pnpm/cacheable-lookup@5.0.4/node_modules/cacheable-lookup", + }, + Object { + "deps": Object { + "clone-response": 1002, + "get-stream": 1385, + "http-cache-semantics": 1473, + "keyv": 1710, + "lowercase-keys": 1766, + "normalize-url": 1883, + "responselike": 2184, + }, + "name": "cacheable-request", + "root": "/common/temp/default/node_modules/.pnpm/cacheable-request@7.0.4/node_modules/cacheable-request", + }, + Object { + "deps": Object { + "es-define-property": 1213, + "es-errors": 1214, + "function-bind": 1370, + "get-intrinsic": 1381, + "set-function-length": 2251, + }, + "name": "call-bind", + "root": "/common/temp/default/node_modules/.pnpm/call-bind@1.0.7/node_modules/call-bind", + }, + Object { + "deps": Object {}, + "name": "call-me-maybe", + "root": "/common/temp/default/node_modules/.pnpm/call-me-maybe@1.0.2/node_modules/call-me-maybe", + }, + Object { + "deps": Object { + "@devexpress/error-stack-parser": 203, + "@types/lodash": 608, + "callsite": 949, + "chalk": 964, + "highlight-es": 1453, + "lodash": 1760, + "pinkie-promise": 1980, + }, + "name": "callsite-record", + "root": "/common/temp/default/node_modules/.pnpm/callsite-record@4.1.5/node_modules/callsite-record", + }, + Object { + "deps": Object {}, + "name": "callsite", + "root": "/common/temp/default/node_modules/.pnpm/callsite@1.0.0/node_modules/callsite", + }, + Object { + "deps": Object {}, + "name": "callsites", + "root": "/common/temp/default/node_modules/.pnpm/callsites@3.1.0/node_modules/callsites", + }, + Object { + "deps": Object { + "pascal-case": 1959, + "tslib": 2425, + }, + "name": "camel-case", + "root": "/common/temp/default/node_modules/.pnpm/camel-case@4.1.2/node_modules/camel-case", + }, + Object { + "deps": Object {}, + "name": "camelcase-css", + "root": "/common/temp/default/node_modules/.pnpm/camelcase-css@2.0.1/node_modules/camelcase-css", + }, + Object { + "deps": Object { + "camelcase": 954, + "map-obj": 1779, + "quick-lru": 2085, + }, + "name": "camelcase-keys", + "root": "/common/temp/default/node_modules/.pnpm/camelcase-keys@6.2.2/node_modules/camelcase-keys", + }, + Object { + "deps": Object {}, + "name": "camelcase", + "root": "/common/temp/default/node_modules/.pnpm/camelcase@5.3.1/node_modules/camelcase", + }, + Object { + "deps": Object {}, + "name": "camelcase", + "root": "/common/temp/default/node_modules/.pnpm/camelcase@6.3.0/node_modules/camelcase", + }, + Object { + "deps": Object {}, + "name": "camelcase", + "root": "/common/temp/default/node_modules/.pnpm/camelcase@7.0.1/node_modules/camelcase", + }, + Object { + "deps": Object { + "browserslist": 922, + "caniuse-lite": 958, + "lodash.memoize": 1754, + "lodash.uniq": 1759, + }, + "name": "caniuse-api", + "root": "/common/temp/default/node_modules/.pnpm/caniuse-api@3.0.0/node_modules/caniuse-api", + }, + Object { + "deps": Object {}, + "name": "caniuse-lite", + "root": "/common/temp/default/node_modules/.pnpm/caniuse-lite@1.0.30001599/node_modules/caniuse-lite", + }, + Object { + "deps": Object { + "rsvp": 2197, + }, + "name": "capture-exit", + "root": "/common/temp/default/node_modules/.pnpm/capture-exit@2.0.0/node_modules/capture-exit", + }, + Object { + "deps": Object {}, + "name": "case-sensitive-paths-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/case-sensitive-paths-webpack-plugin@2.4.0/node_modules/case-sensitive-paths-webpack-plugin", + }, + Object { + "deps": Object {}, + "name": "case", + "root": "/common/temp/default/node_modules/.pnpm/case@1.6.3/node_modules/case", + }, + Object { + "deps": Object {}, + "name": "ccount", + "root": "/common/temp/default/node_modules/.pnpm/ccount@1.1.0/node_modules/ccount", + }, + Object { + "deps": Object { + "traverse": 2412, + }, + "name": "chainsaw", + "root": "/common/temp/default/node_modules/.pnpm/chainsaw@0.1.0/node_modules/chainsaw", + }, + Object { + "deps": Object { + "ansi-styles": 799, + "escape-string-regexp": 1231, + "supports-color": 2360, + }, + "name": "chalk", + "root": "/common/temp/default/node_modules/.pnpm/chalk@2.4.2/node_modules/chalk", + }, + Object { + "deps": Object { + "ansi-styles": 800, + "supports-color": 2362, + }, + "name": "chalk", + "root": "/common/temp/default/node_modules/.pnpm/chalk@3.0.0/node_modules/chalk", + }, + Object { + "deps": Object { + "ansi-styles": 800, + "supports-color": 2362, + }, + "name": "chalk", + "root": "/common/temp/default/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk", + }, + Object { + "deps": Object {}, + "name": "chalk", + "root": "/common/temp/default/node_modules/.pnpm/chalk@5.3.0/node_modules/chalk", + }, + Object { + "deps": Object {}, + "name": "char-regex", + "root": "/common/temp/default/node_modules/.pnpm/char-regex@1.0.2/node_modules/char-regex", + }, + Object { + "deps": Object {}, + "name": "character-entities-legacy", + "root": "/common/temp/default/node_modules/.pnpm/character-entities-legacy@1.1.4/node_modules/character-entities-legacy", + }, + Object { + "deps": Object {}, + "name": "character-entities", + "root": "/common/temp/default/node_modules/.pnpm/character-entities@1.2.4/node_modules/character-entities", + }, + Object { + "deps": Object {}, + "name": "character-reference-invalid", + "root": "/common/temp/default/node_modules/.pnpm/character-reference-invalid@1.1.4/node_modules/character-reference-invalid", + }, + Object { + "deps": Object {}, + "name": "chardet", + "root": "/common/temp/default/node_modules/.pnpm/chardet@0.7.0/node_modules/chardet", + }, + Object { + "deps": Object { + "boolbase": 906, + "css-select": 1084, + "css-what": 1086, + "domelementtype": 1165, + "domhandler": 1168, + "domutils": 1170, + }, + "name": "cheerio-select", + "root": "/common/temp/default/node_modules/.pnpm/cheerio-select@2.1.0/node_modules/cheerio-select", + }, + Object { + "deps": Object { + "cheerio-select": 973, + "dom-serializer": 1162, + "domhandler": 1168, + "domutils": 1170, + "htmlparser2": 1472, + "parse5": 1957, + "parse5-htmlparser2-tree-adapter": 1955, + }, + "name": "cheerio", + "root": "/common/temp/default/node_modules/.pnpm/cheerio@1.0.0-rc.12/node_modules/cheerio", + }, + Object { + "deps": Object { + "anymatch": 805, + "async-each": 845, + "braces": 912, + "glob-parent": 1394, + "inherits": 1518, + "is-binary-path": 1541, + "is-glob": 1569, + "normalize-path": 1881, + "path-is-absolute": 1965, + "readdirp": 2130, + "upath": 2491, + }, + "name": "chokidar", + "root": "/common/temp/default/node_modules/.pnpm/chokidar@2.1.8/node_modules/chokidar", + }, + Object { + "deps": Object { + "anymatch": 806, + "braces": 913, + "glob-parent": 1395, + "is-binary-path": 1542, + "is-glob": 1569, + "normalize-path": 1881, + "readdirp": 2131, + }, + "name": "chokidar", + "root": "/common/temp/default/node_modules/.pnpm/chokidar@3.4.3/node_modules/chokidar", + }, + Object { + "deps": Object { + "anymatch": 806, + "braces": 913, + "glob-parent": 1395, + "is-binary-path": 1542, + "is-glob": 1569, + "normalize-path": 1881, + "readdirp": 2132, + }, + "name": "chokidar", + "root": "/common/temp/default/node_modules/.pnpm/chokidar@3.5.3/node_modules/chokidar", + }, + Object { + "deps": Object { + "anymatch": 806, + "braces": 913, + "glob-parent": 1395, + "is-binary-path": 1542, + "is-glob": 1569, + "normalize-path": 1881, + "readdirp": 2132, + }, + "name": "chokidar", + "root": "/common/temp/default/node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar", + }, + Object { + "deps": Object {}, + "name": "chownr", + "root": "/common/temp/default/node_modules/.pnpm/chownr@1.1.4/node_modules/chownr", + }, + Object { + "deps": Object {}, + "name": "chownr", + "root": "/common/temp/default/node_modules/.pnpm/chownr@2.0.0/node_modules/chownr", + }, + Object { + "deps": Object {}, + "name": "chrome-trace-event", + "root": "/common/temp/default/node_modules/.pnpm/chrome-trace-event@1.0.3/node_modules/chrome-trace-event", + }, + Object { + "deps": Object {}, + "name": "ci-info", + "root": "/common/temp/default/node_modules/.pnpm/ci-info@2.0.0/node_modules/ci-info", + }, + Object { + "deps": Object {}, + "name": "ci-info", + "root": "/common/temp/default/node_modules/.pnpm/ci-info@3.9.0/node_modules/ci-info", + }, + Object { + "deps": Object { + "inherits": 1518, + "safe-buffer": 2207, + }, + "name": "cipher-base", + "root": "/common/temp/default/node_modules/.pnpm/cipher-base@1.0.4/node_modules/cipher-base", + }, + Object { + "deps": Object {}, + "name": "cjs-module-lexer", + "root": "/common/temp/default/node_modules/.pnpm/cjs-module-lexer@1.2.3/node_modules/cjs-module-lexer", + }, + Object { + "deps": Object { + "arr-union": 820, + "define-property": 1126, + "isobject": 1614, + "static-extend": 2313, + }, + "name": "class-utils", + "root": "/common/temp/default/node_modules/.pnpm/class-utils@0.3.6/node_modules/class-utils", + }, + Object { + "deps": Object { + "source-map": 2294, + }, + "name": "clean-css", + "root": "/common/temp/default/node_modules/.pnpm/clean-css@4.2.4/node_modules/clean-css", + }, + Object { + "deps": Object { + "source-map": 2294, + }, + "name": "clean-css", + "root": "/common/temp/default/node_modules/.pnpm/clean-css@5.3.3/node_modules/clean-css", + }, + Object { + "deps": Object {}, + "name": "clean-stack", + "root": "/common/temp/default/node_modules/.pnpm/clean-stack@2.2.0/node_modules/clean-stack", + }, + Object { + "deps": Object {}, + "name": "cli-boxes", + "root": "/common/temp/default/node_modules/.pnpm/cli-boxes@2.2.1/node_modules/cli-boxes", + }, + Object { + "deps": Object {}, + "name": "cli-boxes", + "root": "/common/temp/default/node_modules/.pnpm/cli-boxes@3.0.0/node_modules/cli-boxes", + }, + Object { + "deps": Object { + "restore-cursor": 2185, + }, + "name": "cli-cursor", + "root": "/common/temp/default/node_modules/.pnpm/cli-cursor@3.1.0/node_modules/cli-cursor", + }, + Object { + "deps": Object {}, + "name": "cli-spinners", + "root": "/common/temp/default/node_modules/.pnpm/cli-spinners@2.9.2/node_modules/cli-spinners", + }, + Object { + "deps": Object { + "@colors/colors": 202, + "string-width": 2331, + }, + "name": "cli-table3", + "root": "/common/temp/default/node_modules/.pnpm/cli-table3@0.6.3/node_modules/cli-table3", + }, + Object { + "deps": Object { + "colors": 1021, + }, + "name": "cli-table", + "root": "/common/temp/default/node_modules/.pnpm/cli-table@0.3.11/node_modules/cli-table", + }, + Object { + "deps": Object {}, + "name": "cli-width", + "root": "/common/temp/default/node_modules/.pnpm/cli-width@3.0.0/node_modules/cli-width", + }, + Object { + "deps": Object { + "string-width": 2330, + "strip-ansi": 2342, + "wrap-ansi": 2583, + }, + "name": "cliui", + "root": "/common/temp/default/node_modules/.pnpm/cliui@5.0.0/node_modules/cliui", + }, + Object { + "deps": Object { + "string-width": 2331, + "strip-ansi": 2343, + "wrap-ansi": 2584, + }, + "name": "cliui", + "root": "/common/temp/default/node_modules/.pnpm/cliui@6.0.0/node_modules/cliui", + }, + Object { + "deps": Object { + "string-width": 2331, + "strip-ansi": 2343, + "wrap-ansi": 2585, + }, + "name": "cliui", + "root": "/common/temp/default/node_modules/.pnpm/cliui@7.0.4/node_modules/cliui", + }, + Object { + "deps": Object { + "string-width": 2331, + "strip-ansi": 2343, + "wrap-ansi": 2585, + }, + "name": "cliui", + "root": "/common/temp/default/node_modules/.pnpm/cliui@8.0.1/node_modules/cliui", + }, + Object { + "deps": Object { + "is-plain-object": 1586, + "kind-of": 1713, + "shallow-clone": 2259, + }, + "name": "clone-deep", + "root": "/common/temp/default/node_modules/.pnpm/clone-deep@4.0.1/node_modules/clone-deep", + }, + Object { + "deps": Object { + "mimic-response": 1814, + }, + "name": "clone-response", + "root": "/common/temp/default/node_modules/.pnpm/clone-response@1.0.3/node_modules/clone-response", + }, + Object { + "deps": Object {}, + "name": "clone", + "root": "/common/temp/default/node_modules/.pnpm/clone@1.0.4/node_modules/clone", + }, + Object { + "deps": Object {}, + "name": "clsx", + "root": "/common/temp/default/node_modules/.pnpm/clsx@1.2.1/node_modules/clsx", + }, + Object { + "deps": Object {}, + "name": "cluster-key-slot", + "root": "/common/temp/default/node_modules/.pnpm/cluster-key-slot@1.1.2/node_modules/cluster-key-slot", + }, + Object { + "deps": Object {}, + "name": "cmd-extension", + "root": "/common/temp/default/node_modules/.pnpm/cmd-extension@1.0.2/node_modules/cmd-extension", + }, + Object { + "deps": Object {}, + "name": "co", + "root": "/common/temp/default/node_modules/.pnpm/co@4.6.0/node_modules/co", + }, + Object { + "deps": Object {}, + "name": "code-point-at", + "root": "/common/temp/default/node_modules/.pnpm/code-point-at@1.1.0/node_modules/code-point-at", + }, + Object { + "deps": Object {}, + "name": "collapse-white-space", + "root": "/common/temp/default/node_modules/.pnpm/collapse-white-space@1.0.6/node_modules/collapse-white-space", + }, + Object { + "deps": Object { + "@types/node": 623, + }, + "name": "collect-v8-coverage", + "root": "/common/temp/default/node_modules/.pnpm/collect-v8-coverage@1.0.2_@types+node@18.17.15/node_modules/collect-v8-coverage", + }, + Object { + "deps": Object { + "@types/node": 624, + }, + "name": "collect-v8-coverage", + "root": "/common/temp/default/node_modules/.pnpm/collect-v8-coverage@1.0.2_@types+node@20.11.30/node_modules/collect-v8-coverage", + }, + Object { + "deps": Object { + "@types/node": 625, + }, + "name": "collect-v8-coverage", + "root": "/common/temp/default/node_modules/.pnpm/collect-v8-coverage@1.0.2_@types+node@20.12.12/node_modules/collect-v8-coverage", + }, + Object { + "deps": Object { + "map-visit": 1781, + "object-visit": 1901, + }, + "name": "collection-visit", + "root": "/common/temp/default/node_modules/.pnpm/collection-visit@1.0.0/node_modules/collection-visit", + }, + Object { + "deps": Object { + "color-name": 1016, + }, + "name": "color-convert", + "root": "/common/temp/default/node_modules/.pnpm/color-convert@1.9.3/node_modules/color-convert", + }, + Object { + "deps": Object { + "color-name": 1017, + }, + "name": "color-convert", + "root": "/common/temp/default/node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert", + }, + Object { + "deps": Object {}, + "name": "color-name", + "root": "/common/temp/default/node_modules/.pnpm/color-name@1.1.3/node_modules/color-name", + }, + Object { + "deps": Object {}, + "name": "color-name", + "root": "/common/temp/default/node_modules/.pnpm/color-name@1.1.4/node_modules/color-name", + }, + Object { + "deps": Object {}, + "name": "color-support", + "root": "/common/temp/default/node_modules/.pnpm/color-support@1.1.3/node_modules/color-support", + }, + Object { + "deps": Object {}, + "name": "colord", + "root": "/common/temp/default/node_modules/.pnpm/colord@2.9.3/node_modules/colord", + }, + Object { + "deps": Object {}, + "name": "colorette", + "root": "/common/temp/default/node_modules/.pnpm/colorette@2.0.20/node_modules/colorette", + }, + Object { + "deps": Object {}, + "name": "colors", + "root": "/common/temp/default/node_modules/.pnpm/colors@1.0.3/node_modules/colors", + }, + Object { + "deps": Object {}, + "name": "colors", + "root": "/common/temp/default/node_modules/.pnpm/colors@1.2.5/node_modules/colors", + }, + Object { + "deps": Object { + "delayed-stream": 1129, + }, + "name": "combined-stream", + "root": "/common/temp/default/node_modules/.pnpm/combined-stream@1.0.8/node_modules/combined-stream", + }, + Object { + "deps": Object {}, + "name": "comma-separated-tokens", + "root": "/common/temp/default/node_modules/.pnpm/comma-separated-tokens@1.0.8/node_modules/comma-separated-tokens", + }, + Object { + "deps": Object {}, + "name": "commander", + "root": "/common/temp/default/node_modules/.pnpm/commander@10.0.1/node_modules/commander", + }, + Object { + "deps": Object {}, + "name": "commander", + "root": "/common/temp/default/node_modules/.pnpm/commander@12.0.0/node_modules/commander", + }, + Object { + "deps": Object {}, + "name": "commander", + "root": "/common/temp/default/node_modules/.pnpm/commander@2.20.3/node_modules/commander", + }, + Object { + "deps": Object {}, + "name": "commander", + "root": "/common/temp/default/node_modules/.pnpm/commander@4.1.1/node_modules/commander", + }, + Object { + "deps": Object {}, + "name": "commander", + "root": "/common/temp/default/node_modules/.pnpm/commander@6.2.1/node_modules/commander", + }, + Object { + "deps": Object {}, + "name": "commander", + "root": "/common/temp/default/node_modules/.pnpm/commander@7.2.0/node_modules/commander", + }, + Object { + "deps": Object {}, + "name": "commander", + "root": "/common/temp/default/node_modules/.pnpm/commander@8.3.0/node_modules/commander", + }, + Object { + "deps": Object {}, + "name": "comment-parser", + "root": "/common/temp/default/node_modules/.pnpm/comment-parser@1.3.0/node_modules/comment-parser", + }, + Object { + "deps": Object {}, + "name": "common-path-prefix", + "root": "/common/temp/default/node_modules/.pnpm/common-path-prefix@3.0.0/node_modules/common-path-prefix", + }, + Object { + "deps": Object {}, + "name": "commondir", + "root": "/common/temp/default/node_modules/.pnpm/commondir@1.0.1/node_modules/commondir", + }, + Object { + "deps": Object {}, + "name": "component-emitter", + "root": "/common/temp/default/node_modules/.pnpm/component-emitter@1.3.1/node_modules/component-emitter", + }, + Object { + "deps": Object { + "buffer-crc32": 925, + "crc32-stream": 1069, + "normalize-path": 1881, + "readable-stream": 2127, + }, + "name": "compress-commons", + "root": "/common/temp/default/node_modules/.pnpm/compress-commons@4.1.2/node_modules/compress-commons", + }, + Object { + "deps": Object { + "mime-db": 1808, + }, + "name": "compressible", + "root": "/common/temp/default/node_modules/.pnpm/compressible@2.0.18/node_modules/compressible", + }, + Object { + "deps": Object { + "accepts": 763, + "bytes": 938, + "compressible": 1037, + "debug": 1104, + "on-headers": 1913, + "safe-buffer": 2206, + "vary": 2526, + }, + "name": "compression", + "root": "/common/temp/default/node_modules/.pnpm/compression@1.7.4/node_modules/compression", + }, + Object { + "deps": Object {}, + "name": "compute-scroll-into-view", + "root": "/common/temp/default/node_modules/.pnpm/compute-scroll-into-view@1.0.20/node_modules/compute-scroll-into-view", + }, + Object { + "deps": Object {}, + "name": "concat-map", + "root": "/common/temp/default/node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map", + }, + Object { + "deps": Object { + "buffer-from": 927, + "inherits": 1518, + "readable-stream": 2126, + "typedarray": 2455, + }, + "name": "concat-stream", + "root": "/common/temp/default/node_modules/.pnpm/concat-stream@1.6.2/node_modules/concat-stream", + }, + Object { + "deps": Object { + "ajv": 788, + "ajv-formats": 782, + "atomically": 854, + "debounce-fn": 1103, + "dot-prop": 1173, + "env-paths": 1205, + "json-schema-typed": 1690, + "onetime": 1915, + "pkg-up": 1988, + "semver": 2238, + }, + "name": "conf", + "root": "/common/temp/default/node_modules/.pnpm/conf@10.2.0/node_modules/conf", + }, + Object { + "deps": Object { + "dot-prop": 1172, + "graceful-fs": 1418, + "make-dir": 1772, + "unique-string": 2475, + "write-file-atomic": 2589, + "xdg-basedir": 2596, + }, + "name": "configstore", + "root": "/common/temp/default/node_modules/.pnpm/configstore@5.0.1/node_modules/configstore", + }, + Object { + "deps": Object {}, + "name": "connect-history-api-fallback", + "root": "/common/temp/default/node_modules/.pnpm/connect-history-api-fallback@2.0.0/node_modules/connect-history-api-fallback", + }, + Object { + "deps": Object {}, + "name": "console-browserify", + "root": "/common/temp/default/node_modules/.pnpm/console-browserify@1.2.0/node_modules/console-browserify", + }, + Object { + "deps": Object {}, + "name": "console-control-strings", + "root": "/common/temp/default/node_modules/.pnpm/console-control-strings@1.1.0/node_modules/console-control-strings", + }, + Object { + "deps": Object {}, + "name": "constants-browserify", + "root": "/common/temp/default/node_modules/.pnpm/constants-browserify@1.0.0/node_modules/constants-browserify", + }, + Object { + "deps": Object {}, + "name": "constructs", + "root": "/common/temp/default/node_modules/.pnpm/constructs@10.0.130/node_modules/constructs", + }, + Object { + "deps": Object { + "safe-buffer": 2207, + }, + "name": "content-disposition", + "root": "/common/temp/default/node_modules/.pnpm/content-disposition@0.5.4/node_modules/content-disposition", + }, + Object { + "deps": Object {}, + "name": "content-type", + "root": "/common/temp/default/node_modules/.pnpm/content-type@1.0.5/node_modules/content-type", + }, + Object { + "deps": Object {}, + "name": "convert-source-map", + "root": "/common/temp/default/node_modules/.pnpm/convert-source-map@1.9.0/node_modules/convert-source-map", + }, + Object { + "deps": Object {}, + "name": "convert-source-map", + "root": "/common/temp/default/node_modules/.pnpm/convert-source-map@2.0.0/node_modules/convert-source-map", + }, + Object { + "deps": Object {}, + "name": "cookie-signature", + "root": "/common/temp/default/node_modules/.pnpm/cookie-signature@1.0.6/node_modules/cookie-signature", + }, + Object { + "deps": Object {}, + "name": "cookie", + "root": "/common/temp/default/node_modules/.pnpm/cookie@0.5.0/node_modules/cookie", + }, + Object { + "deps": Object {}, + "name": "cookie", + "root": "/common/temp/default/node_modules/.pnpm/cookie@0.6.0/node_modules/cookie", + }, + Object { + "deps": Object { + "aproba": 808, + "fs-write-stream-atomic": 1367, + "iferr": 1498, + "mkdirp": 1842, + "rimraf": 2194, + "run-queue": 2201, + }, + "name": "copy-concurrently", + "root": "/common/temp/default/node_modules/.pnpm/copy-concurrently@1.0.5/node_modules/copy-concurrently", + }, + Object { + "deps": Object {}, + "name": "copy-descriptor", + "root": "/common/temp/default/node_modules/.pnpm/copy-descriptor@0.1.1/node_modules/copy-descriptor", + }, + Object { + "deps": Object { + "toggle-selection": 2406, + }, + "name": "copy-to-clipboard", + "root": "/common/temp/default/node_modules/.pnpm/copy-to-clipboard@3.3.3/node_modules/copy-to-clipboard", + }, + Object { + "deps": Object { + "browserslist": 922, + }, + "name": "core-js-compat", + "root": "/common/temp/default/node_modules/.pnpm/core-js-compat@3.36.0/node_modules/core-js-compat", + }, + Object { + "deps": Object {}, + "name": "core-js-pure", + "root": "/common/temp/default/node_modules/.pnpm/core-js-pure@3.36.0/node_modules/core-js-pure", + }, + Object { + "deps": Object {}, + "name": "core-js", + "root": "/common/temp/default/node_modules/.pnpm/core-js@3.36.0/node_modules/core-js", + }, + Object { + "deps": Object {}, + "name": "core-util-is", + "root": "/common/temp/default/node_modules/.pnpm/core-util-is@1.0.3/node_modules/core-util-is", + }, + Object { + "deps": Object { + "object-assign": 1897, + "vary": 2526, + }, + "name": "cors", + "root": "/common/temp/default/node_modules/.pnpm/cors@2.8.5/node_modules/cors", + }, + Object { + "deps": Object { + "@types/parse-json": 631, + "import-fresh": 1506, + "parse-json": 1952, + "path-type": 1971, + "yaml": 2611, + }, + "name": "cosmiconfig", + "root": "/common/temp/default/node_modules/.pnpm/cosmiconfig@6.0.0/node_modules/cosmiconfig", + }, + Object { + "deps": Object { + "@types/parse-json": 631, + "import-fresh": 1506, + "parse-json": 1952, + "path-type": 1971, + "yaml": 2611, + }, + "name": "cosmiconfig", + "root": "/common/temp/default/node_modules/.pnpm/cosmiconfig@7.1.0/node_modules/cosmiconfig", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "make-dir": 1772, + "nested-error-stacks": 1863, + "p-event": 1929, + }, + "name": "cp-file", + "root": "/common/temp/default/node_modules/.pnpm/cp-file@7.0.0/node_modules/cp-file", + }, + Object { + "deps": Object { + "arrify": 836, + "cp-file": 1066, + "globby": 1415, + "has-glob": 1430, + "junk": 1703, + "nested-error-stacks": 1863, + "p-all": 1926, + "p-filter": 1930, + "p-map": 1938, + }, + "name": "cpy", + "root": "/common/temp/default/node_modules/.pnpm/cpy@8.1.2/node_modules/cpy", + }, + Object { + "deps": Object {}, + "name": "crc-32", + "root": "/common/temp/default/node_modules/.pnpm/crc-32@1.2.2/node_modules/crc-32", + }, + Object { + "deps": Object { + "crc-32": 1068, + "readable-stream": 2127, + }, + "name": "crc32-stream", + "root": "/common/temp/default/node_modules/.pnpm/crc32-stream@4.0.3/node_modules/crc32-stream", + }, + Object { + "deps": Object { + "bn.js": 901, + "elliptic": 1187, + }, + "name": "create-ecdh", + "root": "/common/temp/default/node_modules/.pnpm/create-ecdh@4.0.4/node_modules/create-ecdh", + }, + Object { + "deps": Object { + "cipher-base": 984, + "inherits": 1518, + "md5.js": 1785, + "ripemd160": 2196, + "sha.js": 2258, + }, + "name": "create-hash", + "root": "/common/temp/default/node_modules/.pnpm/create-hash@1.2.0/node_modules/create-hash", + }, + Object { + "deps": Object { + "cipher-base": 984, + "create-hash": 1071, + "inherits": 1518, + "ripemd160": 2196, + "safe-buffer": 2207, + "sha.js": 2258, + }, + "name": "create-hmac", + "root": "/common/temp/default/node_modules/.pnpm/create-hmac@1.1.7/node_modules/create-hmac", + }, + Object { + "deps": Object { + "@jest/types": 349, + "chalk": 966, + "exit": 1285, + "graceful-fs": 1418, + "jest-config": 1630, + "jest-util": 1662, + "prompts": 2059, + }, + "name": "create-jest", + "root": "/common/temp/default/node_modules/.pnpm/create-jest@29.7.0_@types+node@18.17.15/node_modules/create-jest", + }, + Object { + "deps": Object { + "nice-try": 1864, + "path-key": 1966, + "semver": 2236, + "shebang-command": 2261, + "which": 2573, + }, + "name": "cross-spawn", + "root": "/common/temp/default/node_modules/.pnpm/cross-spawn@6.0.5/node_modules/cross-spawn", + }, + Object { + "deps": Object { + "path-key": 1967, + "shebang-command": 2262, + "which": 2574, + }, + "name": "cross-spawn", + "root": "/common/temp/default/node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn", + }, + Object { + "deps": Object { + "browserify-cipher": 917, + "browserify-sign": 920, + "create-ecdh": 1070, + "create-hash": 1071, + "create-hmac": 1072, + "diffie-hellman": 1153, + "inherits": 1518, + "pbkdf2": 1972, + "public-encrypt": 2067, + "randombytes": 2089, + "randomfill": 2090, + }, + "name": "crypto-browserify", + "root": "/common/temp/default/node_modules/.pnpm/crypto-browserify@3.12.0/node_modules/crypto-browserify", + }, + Object { + "deps": Object {}, + "name": "crypto-random-string", + "root": "/common/temp/default/node_modules/.pnpm/crypto-random-string@2.0.0/node_modules/crypto-random-string", + }, + Object { + "deps": Object { + "postcss": 2038, + }, + "name": "css-declaration-sorter", + "root": "/common/temp/default/node_modules/.pnpm/css-declaration-sorter@6.4.1_postcss@8.4.36/node_modules/css-declaration-sorter", + }, + Object { + "deps": Object { + "camelcase": 954, + "cssesc": 1087, + "icss-utils": 1494, + "loader-utils": 1734, + "normalize-path": 1881, + "postcss": 2037, + "postcss-modules-extract-imports": 2012, + "postcss-modules-local-by-default": 2014, + "postcss-modules-scope": 2016, + "postcss-modules-values": 2018, + "postcss-value-parser": 2036, + "schema-utils": 2227, + "semver": 2237, + "webpack": 2558, + }, + "name": "css-loader", + "root": "/common/temp/default/node_modules/.pnpm/css-loader@3.6.0_webpack@4.47.0/node_modules/css-loader", + }, + Object { + "deps": Object { + "icss-utils": 1495, + "loader-utils": 1736, + "postcss": 2038, + "postcss-modules-extract-imports": 2013, + "postcss-modules-local-by-default": 2015, + "postcss-modules-scope": 2017, + "postcss-modules-values": 2019, + "postcss-value-parser": 2036, + "schema-utils": 2228, + "semver": 2238, + "webpack": 2558, + }, + "name": "css-loader", + "root": "/common/temp/default/node_modules/.pnpm/css-loader@5.2.7_webpack@4.47.0/node_modules/css-loader", + }, + Object { + "deps": Object { + "icss-utils": 1495, + "postcss": 2038, + "postcss-modules-extract-imports": 2013, + "postcss-modules-local-by-default": 2015, + "postcss-modules-scope": 2017, + "postcss-modules-values": 2019, + "postcss-value-parser": 2036, + "semver": 2238, + "webpack": 2559, + }, + "name": "css-loader", + "root": "/common/temp/default/node_modules/.pnpm/css-loader@6.6.0_webpack@5.82.1/node_modules/css-loader", + }, + Object { + "deps": Object { + "cssnano": 1090, + "jest-worker": 1667, + "postcss": 2038, + "schema-utils": 2229, + "serialize-javascript": 2244, + "source-map": 2294, + "webpack": 2559, + }, + "name": "css-minimizer-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/css-minimizer-webpack-plugin@3.4.1_webpack@5.82.1/node_modules/css-minimizer-webpack-plugin", + }, + Object { + "deps": Object { + "boolbase": 906, + "css-what": 1086, + "domhandler": 1167, + "domutils": 1169, + "nth-check": 1893, + }, + "name": "css-select", + "root": "/common/temp/default/node_modules/.pnpm/css-select@4.3.0/node_modules/css-select", + }, + Object { + "deps": Object { + "boolbase": 906, + "css-what": 1086, + "domhandler": 1168, + "domutils": 1170, + "nth-check": 1893, + }, + "name": "css-select", + "root": "/common/temp/default/node_modules/.pnpm/css-select@5.1.0/node_modules/css-select", + }, + Object { + "deps": Object { + "mdn-data": 1790, + "source-map": 2294, + }, + "name": "css-tree", + "root": "/common/temp/default/node_modules/.pnpm/css-tree@1.1.3/node_modules/css-tree", + }, + Object { + "deps": Object {}, + "name": "css-what", + "root": "/common/temp/default/node_modules/.pnpm/css-what@6.1.0/node_modules/css-what", + }, + Object { + "deps": Object {}, + "name": "cssesc", + "root": "/common/temp/default/node_modules/.pnpm/cssesc@3.0.0/node_modules/cssesc", + }, + Object { + "deps": Object { + "css-declaration-sorter": 1078, + "cssnano-utils": 1089, + "postcss": 2038, + "postcss-calc": 1995, + "postcss-colormin": 1996, + "postcss-convert-values": 1997, + "postcss-discard-comments": 1998, + "postcss-discard-duplicates": 1999, + "postcss-discard-empty": 2000, + "postcss-discard-overridden": 2001, + "postcss-merge-longhand": 2006, + "postcss-merge-rules": 2007, + "postcss-minify-font-values": 2008, + "postcss-minify-gradients": 2009, + "postcss-minify-params": 2010, + "postcss-minify-selectors": 2011, + "postcss-normalize-charset": 2021, + "postcss-normalize-display-values": 2022, + "postcss-normalize-positions": 2023, + "postcss-normalize-repeat-style": 2024, + "postcss-normalize-string": 2025, + "postcss-normalize-timing-functions": 2026, + "postcss-normalize-unicode": 2027, + "postcss-normalize-url": 2028, + "postcss-normalize-whitespace": 2029, + "postcss-ordered-values": 2030, + "postcss-reduce-initial": 2031, + "postcss-reduce-transforms": 2032, + "postcss-svgo": 2034, + "postcss-unique-selectors": 2035, + }, + "name": "cssnano-preset-default", + "root": "/common/temp/default/node_modules/.pnpm/cssnano-preset-default@5.2.14_postcss@8.4.36/node_modules/cssnano-preset-default", + }, + Object { + "deps": Object { + "postcss": 2038, + }, + "name": "cssnano-utils", + "root": "/common/temp/default/node_modules/.pnpm/cssnano-utils@3.1.0_postcss@8.4.36/node_modules/cssnano-utils", + }, + Object { + "deps": Object { + "cssnano-preset-default": 1088, + "lilconfig": 1726, + "postcss": 2038, + "yaml": 2611, + }, + "name": "cssnano", + "root": "/common/temp/default/node_modules/.pnpm/cssnano@5.1.15_postcss@8.4.36/node_modules/cssnano", + }, + Object { + "deps": Object { + "css-tree": 1085, + }, + "name": "csso", + "root": "/common/temp/default/node_modules/.pnpm/csso@4.2.0/node_modules/csso", + }, + Object { + "deps": Object {}, + "name": "cssom", + "root": "/common/temp/default/node_modules/.pnpm/cssom@0.3.8/node_modules/cssom", + }, + Object { + "deps": Object {}, + "name": "cssom", + "root": "/common/temp/default/node_modules/.pnpm/cssom@0.5.0/node_modules/cssom", + }, + Object { + "deps": Object { + "cssom": 1092, + }, + "name": "cssstyle", + "root": "/common/temp/default/node_modules/.pnpm/cssstyle@2.3.0/node_modules/cssstyle", + }, + Object { + "deps": Object {}, + "name": "csstype", + "root": "/common/temp/default/node_modules/.pnpm/csstype@2.6.21/node_modules/csstype", + }, + Object { + "deps": Object {}, + "name": "csstype", + "root": "/common/temp/default/node_modules/.pnpm/csstype@3.1.3/node_modules/csstype", + }, + Object { + "deps": Object {}, + "name": "cyclist", + "root": "/common/temp/default/node_modules/.pnpm/cyclist@1.0.2/node_modules/cyclist", + }, + Object { + "deps": Object { + "abab": 760, + "whatwg-mimetype": 2564, + "whatwg-url": 2565, + }, + "name": "data-urls", + "root": "/common/temp/default/node_modules/.pnpm/data-urls@3.0.2/node_modules/data-urls", + }, + Object { + "deps": Object { + "call-bind": 946, + "es-errors": 1214, + "is-data-view": 1550, + }, + "name": "data-view-buffer", + "root": "/common/temp/default/node_modules/.pnpm/data-view-buffer@1.0.1/node_modules/data-view-buffer", + }, + Object { + "deps": Object { + "call-bind": 946, + "es-errors": 1214, + "is-data-view": 1550, + }, + "name": "data-view-byte-length", + "root": "/common/temp/default/node_modules/.pnpm/data-view-byte-length@1.0.1/node_modules/data-view-byte-length", + }, + Object { + "deps": Object { + "call-bind": 946, + "es-errors": 1214, + "is-data-view": 1550, + }, + "name": "data-view-byte-offset", + "root": "/common/temp/default/node_modules/.pnpm/data-view-byte-offset@1.0.0/node_modules/data-view-byte-offset", + }, + Object { + "deps": Object {}, + "name": "date-format", + "root": "/common/temp/default/node_modules/.pnpm/date-format@4.0.14/node_modules/date-format", + }, + Object { + "deps": Object { + "mimic-fn": 1813, + }, + "name": "debounce-fn", + "root": "/common/temp/default/node_modules/.pnpm/debounce-fn@4.0.0/node_modules/debounce-fn", + }, + Object { + "deps": Object { + "ms": 1847, + }, + "name": "debug", + "root": "/common/temp/default/node_modules/.pnpm/debug@2.6.9/node_modules/debug", + }, + Object { + "deps": Object { + "ms": 1850, + }, + "name": "debug", + "root": "/common/temp/default/node_modules/.pnpm/debug@3.2.7/node_modules/debug", + }, + Object { + "deps": Object { + "ms": 1849, + "supports-color": 2363, + }, + "name": "debug", + "root": "/common/temp/default/node_modules/.pnpm/debug@4.3.4_supports-color@8.1.1/node_modules/debug", + }, + Object { + "deps": Object {}, + "name": "debuglog", + "root": "/common/temp/default/node_modules/.pnpm/debuglog@1.0.1/node_modules/debuglog", + }, + Object { + "deps": Object { + "decamelize": 1109, + "map-obj": 1778, + }, + "name": "decamelize-keys", + "root": "/common/temp/default/node_modules/.pnpm/decamelize-keys@1.1.1/node_modules/decamelize-keys", + }, + Object { + "deps": Object {}, + "name": "decamelize", + "root": "/common/temp/default/node_modules/.pnpm/decamelize@1.2.0/node_modules/decamelize", + }, + Object { + "deps": Object {}, + "name": "decamelize", + "root": "/common/temp/default/node_modules/.pnpm/decamelize@4.0.0/node_modules/decamelize", + }, + Object { + "deps": Object {}, + "name": "decimal.js", + "root": "/common/temp/default/node_modules/.pnpm/decimal.js@10.4.3/node_modules/decimal.js", + }, + Object { + "deps": Object {}, + "name": "decode-uri-component", + "root": "/common/temp/default/node_modules/.pnpm/decode-uri-component@0.2.2/node_modules/decode-uri-component", + }, + Object { + "deps": Object { + "mimic-response": 1815, + }, + "name": "decompress-response", + "root": "/common/temp/default/node_modules/.pnpm/decompress-response@6.0.0/node_modules/decompress-response", + }, + Object { + "deps": Object {}, + "name": "dedent", + "root": "/common/temp/default/node_modules/.pnpm/dedent@0.7.0/node_modules/dedent", + }, + Object { + "deps": Object {}, + "name": "dedent", + "root": "/common/temp/default/node_modules/.pnpm/dedent@1.5.1/node_modules/dedent", + }, + Object { + "deps": Object {}, + "name": "deep-extend", + "root": "/common/temp/default/node_modules/.pnpm/deep-extend@0.6.0/node_modules/deep-extend", + }, + Object { + "deps": Object {}, + "name": "deep-is", + "root": "/common/temp/default/node_modules/.pnpm/deep-is@0.1.4/node_modules/deep-is", + }, + Object { + "deps": Object {}, + "name": "deep-object-diff", + "root": "/common/temp/default/node_modules/.pnpm/deep-object-diff@1.1.9/node_modules/deep-object-diff", + }, + Object { + "deps": Object {}, + "name": "deepmerge", + "root": "/common/temp/default/node_modules/.pnpm/deepmerge@4.3.1/node_modules/deepmerge", + }, + Object { + "deps": Object { + "execa": 1284, + }, + "name": "default-gateway", + "root": "/common/temp/default/node_modules/.pnpm/default-gateway@6.0.3/node_modules/default-gateway", + }, + Object { + "deps": Object { + "clone": 1003, + }, + "name": "defaults", + "root": "/common/temp/default/node_modules/.pnpm/defaults@1.0.4/node_modules/defaults", + }, + Object { + "deps": Object {}, + "name": "defer-to-connect", + "root": "/common/temp/default/node_modules/.pnpm/defer-to-connect@2.0.1/node_modules/defer-to-connect", + }, + Object { + "deps": Object { + "es-define-property": 1213, + "es-errors": 1214, + "gopd": 1416, + }, + "name": "define-data-property", + "root": "/common/temp/default/node_modules/.pnpm/define-data-property@1.1.4/node_modules/define-data-property", + }, + Object { + "deps": Object {}, + "name": "define-lazy-prop", + "root": "/common/temp/default/node_modules/.pnpm/define-lazy-prop@2.0.0/node_modules/define-lazy-prop", + }, + Object { + "deps": Object { + "define-data-property": 1123, + "has-property-descriptors": 1431, + "object-keys": 1900, + }, + "name": "define-properties", + "root": "/common/temp/default/node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties", + }, + Object { + "deps": Object { + "is-descriptor": 1553, + }, + "name": "define-property", + "root": "/common/temp/default/node_modules/.pnpm/define-property@0.2.5/node_modules/define-property", + }, + Object { + "deps": Object { + "is-descriptor": 1554, + }, + "name": "define-property", + "root": "/common/temp/default/node_modules/.pnpm/define-property@1.0.0/node_modules/define-property", + }, + Object { + "deps": Object { + "is-descriptor": 1554, + "isobject": 1614, + }, + "name": "define-property", + "root": "/common/temp/default/node_modules/.pnpm/define-property@2.0.2/node_modules/define-property", + }, + Object { + "deps": Object {}, + "name": "delayed-stream", + "root": "/common/temp/default/node_modules/.pnpm/delayed-stream@1.0.0/node_modules/delayed-stream", + }, + Object { + "deps": Object {}, + "name": "delegates", + "root": "/common/temp/default/node_modules/.pnpm/delegates@1.0.0/node_modules/delegates", + }, + Object { + "deps": Object { + "immer": 1504, + }, + "name": "dendriform-immer-patch-optimiser", + "root": "/common/temp/default/node_modules/.pnpm/dendriform-immer-patch-optimiser@2.1.3_immer@9.0.21/node_modules/dendriform-immer-patch-optimiser", + }, + Object { + "deps": Object { + "@babel/parser": 92, + "@babel/traverse": 195, + "@vue/compiler-sfc": 720, + "callsite": 949, + "camelcase": 955, + "cosmiconfig": 1065, + "debug": 1106, + "deps-regex": 1136, + "findup-sync": 1336, + "ignore": 1502, + "is-core-module": 1548, + "js-yaml": 1677, + "json5": 1694, + "lodash": 1760, + "minimatch": 1825, + "multimatch": 1852, + "please-upgrade-node": 1989, + "readdirp": 2132, + "require-package-name": 2170, + "resolve": 2182, + "resolve-from": 2179, + "semver": 2238, + "yargs": 2621, + }, + "name": "depcheck", + "root": "/common/temp/default/node_modules/.pnpm/depcheck@1.4.7/node_modules/depcheck", + }, + Object { + "deps": Object {}, + "name": "depd", + "root": "/common/temp/default/node_modules/.pnpm/depd@1.1.2/node_modules/depd", + }, + Object { + "deps": Object {}, + "name": "depd", + "root": "/common/temp/default/node_modules/.pnpm/depd@2.0.0/node_modules/depd", + }, + Object { + "deps": Object { + "@pnpm/crypto.base32-hash": 377, + "@pnpm/types": 389, + "encode-registry": 1194, + "semver": 2238, + }, + "name": "dependency-path", + "root": "/common/temp/default/node_modules/.pnpm/dependency-path@9.2.8/node_modules/dependency-path", + }, + Object { + "deps": Object {}, + "name": "deps-regex", + "root": "/common/temp/default/node_modules/.pnpm/deps-regex@0.2.0/node_modules/deps-regex", + }, + Object { + "deps": Object { + "inherits": 1518, + "minimalistic-assert": 1819, + }, + "name": "des.js", + "root": "/common/temp/default/node_modules/.pnpm/des.js@1.1.0/node_modules/des.js", + }, + Object { + "deps": Object {}, + "name": "destroy", + "root": "/common/temp/default/node_modules/.pnpm/destroy@1.0.4/node_modules/destroy", + }, + Object { + "deps": Object {}, + "name": "destroy", + "root": "/common/temp/default/node_modules/.pnpm/destroy@1.2.0/node_modules/destroy", + }, + Object { + "deps": Object { + "repeat-string": 2166, + }, + "name": "detab", + "root": "/common/temp/default/node_modules/.pnpm/detab@2.0.4/node_modules/detab", + }, + Object { + "deps": Object {}, + "name": "detect-file", + "root": "/common/temp/default/node_modules/.pnpm/detect-file@1.0.0/node_modules/detect-file", + }, + Object { + "deps": Object {}, + "name": "detect-indent", + "root": "/common/temp/default/node_modules/.pnpm/detect-indent@6.1.0/node_modules/detect-indent", + }, + Object { + "deps": Object {}, + "name": "detect-libc", + "root": "/common/temp/default/node_modules/.pnpm/detect-libc@2.0.2/node_modules/detect-libc", + }, + Object { + "deps": Object {}, + "name": "detect-newline", + "root": "/common/temp/default/node_modules/.pnpm/detect-newline@3.1.0/node_modules/detect-newline", + }, + Object { + "deps": Object {}, + "name": "detect-node", + "root": "/common/temp/default/node_modules/.pnpm/detect-node@2.1.0/node_modules/detect-node", + }, + Object { + "deps": Object { + "address": 773, + "debug": 1104, + }, + "name": "detect-port-alt", + "root": "/common/temp/default/node_modules/.pnpm/detect-port-alt@1.1.6/node_modules/detect-port-alt", + }, + Object { + "deps": Object { + "address": 773, + "debug": 1106, + }, + "name": "detect-port", + "root": "/common/temp/default/node_modules/.pnpm/detect-port@1.5.1/node_modules/detect-port", + }, + Object { + "deps": Object { + "asap": 837, + "wrappy": 2587, + }, + "name": "dezalgo", + "root": "/common/temp/default/node_modules/.pnpm/dezalgo@1.0.4/node_modules/dezalgo", + }, + Object { + "deps": Object {}, + "name": "diff-sequences", + "root": "/common/temp/default/node_modules/.pnpm/diff-sequences@27.5.1/node_modules/diff-sequences", + }, + Object { + "deps": Object {}, + "name": "diff-sequences", + "root": "/common/temp/default/node_modules/.pnpm/diff-sequences@29.6.3/node_modules/diff-sequences", + }, + Object { + "deps": Object {}, + "name": "diff", + "root": "/common/temp/default/node_modules/.pnpm/diff@4.0.2/node_modules/diff", + }, + Object { + "deps": Object {}, + "name": "diff", + "root": "/common/temp/default/node_modules/.pnpm/diff@5.0.0/node_modules/diff", + }, + Object { + "deps": Object { + "bn.js": 901, + "miller-rabin": 1807, + "randombytes": 2089, + }, + "name": "diffie-hellman", + "root": "/common/temp/default/node_modules/.pnpm/diffie-hellman@5.0.3/node_modules/diffie-hellman", + }, + Object { + "deps": Object { + "path-type": 1970, + }, + "name": "dir-glob", + "root": "/common/temp/default/node_modules/.pnpm/dir-glob@2.2.2/node_modules/dir-glob", + }, + Object { + "deps": Object { + "path-type": 1971, + }, + "name": "dir-glob", + "root": "/common/temp/default/node_modules/.pnpm/dir-glob@3.0.1/node_modules/dir-glob", + }, + Object { + "deps": Object { + "@leichtgewicht/ip-codec": 356, + }, + "name": "dns-packet", + "root": "/common/temp/default/node_modules/.pnpm/dns-packet@5.6.1/node_modules/dns-packet", + }, + Object { + "deps": Object { + "esutils": 1276, + }, + "name": "doctrine", + "root": "/common/temp/default/node_modules/.pnpm/doctrine@2.1.0/node_modules/doctrine", + }, + Object { + "deps": Object { + "esutils": 1276, + }, + "name": "doctrine", + "root": "/common/temp/default/node_modules/.pnpm/doctrine@3.0.0/node_modules/doctrine", + }, + Object { + "deps": Object { + "utila": 2513, + }, + "name": "dom-converter", + "root": "/common/temp/default/node_modules/.pnpm/dom-converter@0.2.0/node_modules/dom-converter", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "csstype": 1096, + }, + "name": "dom-helpers", + "root": "/common/temp/default/node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers", + }, + Object { + "deps": Object { + "domelementtype": 1165, + "domhandler": 1167, + "entities": 1203, + }, + "name": "dom-serializer", + "root": "/common/temp/default/node_modules/.pnpm/dom-serializer@1.4.1/node_modules/dom-serializer", + }, + Object { + "deps": Object { + "domelementtype": 1165, + "domhandler": 1168, + "entities": 1204, + }, + "name": "dom-serializer", + "root": "/common/temp/default/node_modules/.pnpm/dom-serializer@2.0.0/node_modules/dom-serializer", + }, + Object { + "deps": Object {}, + "name": "dom-walk", + "root": "/common/temp/default/node_modules/.pnpm/dom-walk@0.1.2/node_modules/dom-walk", + }, + Object { + "deps": Object {}, + "name": "domain-browser", + "root": "/common/temp/default/node_modules/.pnpm/domain-browser@1.2.0/node_modules/domain-browser", + }, + Object { + "deps": Object {}, + "name": "domelementtype", + "root": "/common/temp/default/node_modules/.pnpm/domelementtype@2.3.0/node_modules/domelementtype", + }, + Object { + "deps": Object { + "webidl-conversions": 2542, + }, + "name": "domexception", + "root": "/common/temp/default/node_modules/.pnpm/domexception@4.0.0/node_modules/domexception", + }, + Object { + "deps": Object { + "domelementtype": 1165, + }, + "name": "domhandler", + "root": "/common/temp/default/node_modules/.pnpm/domhandler@4.3.1/node_modules/domhandler", + }, + Object { + "deps": Object { + "domelementtype": 1165, + }, + "name": "domhandler", + "root": "/common/temp/default/node_modules/.pnpm/domhandler@5.0.3/node_modules/domhandler", + }, + Object { + "deps": Object { + "dom-serializer": 1161, + "domelementtype": 1165, + "domhandler": 1167, + }, + "name": "domutils", + "root": "/common/temp/default/node_modules/.pnpm/domutils@2.8.0/node_modules/domutils", + }, + Object { + "deps": Object { + "dom-serializer": 1162, + "domelementtype": 1165, + "domhandler": 1168, + }, + "name": "domutils", + "root": "/common/temp/default/node_modules/.pnpm/domutils@3.1.0/node_modules/domutils", + }, + Object { + "deps": Object { + "no-case": 1865, + "tslib": 2425, + }, + "name": "dot-case", + "root": "/common/temp/default/node_modules/.pnpm/dot-case@3.0.4/node_modules/dot-case", + }, + Object { + "deps": Object { + "is-obj": 1580, + }, + "name": "dot-prop", + "root": "/common/temp/default/node_modules/.pnpm/dot-prop@5.3.0/node_modules/dot-prop", + }, + Object { + "deps": Object { + "is-obj": 1580, + }, + "name": "dot-prop", + "root": "/common/temp/default/node_modules/.pnpm/dot-prop@6.0.1/node_modules/dot-prop", + }, + Object { + "deps": Object {}, + "name": "dotenv-expand", + "root": "/common/temp/default/node_modules/.pnpm/dotenv-expand@5.1.0/node_modules/dotenv-expand", + }, + Object { + "deps": Object {}, + "name": "dotenv", + "root": "/common/temp/default/node_modules/.pnpm/dotenv@10.0.0/node_modules/dotenv", + }, + Object { + "deps": Object {}, + "name": "dotenv", + "root": "/common/temp/default/node_modules/.pnpm/dotenv@16.4.5/node_modules/dotenv", + }, + Object { + "deps": Object {}, + "name": "dotenv", + "root": "/common/temp/default/node_modules/.pnpm/dotenv@8.6.0/node_modules/dotenv", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "compute-scroll-into-view": 1039, + "prop-types": 2060, + "react": 2119, + "react-is": 2107, + "tslib": 2425, + }, + "name": "downshift", + "root": "/common/temp/default/node_modules/.pnpm/downshift@6.1.12_react@17.0.2/node_modules/downshift", + }, + Object { + "deps": Object { + "readable-stream": 2126, + }, + "name": "duplexer2", + "root": "/common/temp/default/node_modules/.pnpm/duplexer2@0.1.4/node_modules/duplexer2", + }, + Object { + "deps": Object {}, + "name": "duplexer", + "root": "/common/temp/default/node_modules/.pnpm/duplexer@0.1.2/node_modules/duplexer", + }, + Object { + "deps": Object { + "end-of-stream": 1197, + "inherits": 1518, + "readable-stream": 2126, + "stream-shift": 2322, + }, + "name": "duplexify", + "root": "/common/temp/default/node_modules/.pnpm/duplexify@3.7.1/node_modules/duplexify", + }, + Object { + "deps": Object {}, + "name": "eastasianwidth", + "root": "/common/temp/default/node_modules/.pnpm/eastasianwidth@0.2.0/node_modules/eastasianwidth", + }, + Object { + "deps": Object { + "safe-buffer": 2207, + }, + "name": "ecdsa-sig-formatter", + "root": "/common/temp/default/node_modules/.pnpm/ecdsa-sig-formatter@1.0.11/node_modules/ecdsa-sig-formatter", + }, + Object { + "deps": Object {}, + "name": "ee-first", + "root": "/common/temp/default/node_modules/.pnpm/ee-first@1.1.1/node_modules/ee-first", + }, + Object { + "deps": Object {}, + "name": "electron-to-chromium", + "root": "/common/temp/default/node_modules/.pnpm/electron-to-chromium@1.4.709/node_modules/electron-to-chromium", + }, + Object { + "deps": Object { + "batch-processor": 888, + }, + "name": "element-resize-detector", + "root": "/common/temp/default/node_modules/.pnpm/element-resize-detector@1.2.4/node_modules/element-resize-detector", + }, + Object { + "deps": Object { + "bn.js": 901, + "brorand": 914, + "hash.js": 1444, + "hmac-drbg": 1456, + "inherits": 1518, + "minimalistic-assert": 1819, + "minimalistic-crypto-utils": 1820, + }, + "name": "elliptic", + "root": "/common/temp/default/node_modules/.pnpm/elliptic@6.5.5/node_modules/elliptic", + }, + Object { + "deps": Object {}, + "name": "emittery", + "root": "/common/temp/default/node_modules/.pnpm/emittery@0.13.1/node_modules/emittery", + }, + Object { + "deps": Object {}, + "name": "emoji-regex", + "root": "/common/temp/default/node_modules/.pnpm/emoji-regex@7.0.3/node_modules/emoji-regex", + }, + Object { + "deps": Object {}, + "name": "emoji-regex", + "root": "/common/temp/default/node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex", + }, + Object { + "deps": Object {}, + "name": "emoji-regex", + "root": "/common/temp/default/node_modules/.pnpm/emoji-regex@9.2.2/node_modules/emoji-regex", + }, + Object { + "deps": Object {}, + "name": "emojis-list", + "root": "/common/temp/default/node_modules/.pnpm/emojis-list@3.0.0/node_modules/emojis-list", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@emotion/core": 206, + "@emotion/weak-memoize": 223, + "@types/react": 641, + "hoist-non-react-statics": 1457, + "react": 2119, + }, + "name": "emotion-theming", + "root": "/common/temp/default/node_modules/.pnpm/emotion-theming@10.3.0_@emotion+core@10.3.1_@types+react@17.0.74_react@17.0.2/node_modules/emotion-theming", + }, + Object { + "deps": Object { + "mem": 1793, + }, + "name": "encode-registry", + "root": "/common/temp/default/node_modules/.pnpm/encode-registry@3.0.1/node_modules/encode-registry", + }, + Object { + "deps": Object {}, + "name": "encodeurl", + "root": "/common/temp/default/node_modules/.pnpm/encodeurl@1.0.2/node_modules/encodeurl", + }, + Object { + "deps": Object { + "iconv-lite": 1493, + }, + "name": "encoding", + "root": "/common/temp/default/node_modules/.pnpm/encoding@0.1.13/node_modules/encoding", + }, + Object { + "deps": Object { + "once": 1914, + }, + "name": "end-of-stream", + "root": "/common/temp/default/node_modules/.pnpm/end-of-stream@1.4.4/node_modules/end-of-stream", + }, + Object { + "deps": Object { + "dedent": 1114, + "fast-json-parse": 1301, + "objectorarray": 1909, + }, + "name": "endent", + "root": "/common/temp/default/node_modules/.pnpm/endent@2.1.0/node_modules/endent", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "memory-fs": 1797, + "tapable": 2372, + }, + "name": "enhanced-resolve", + "root": "/common/temp/default/node_modules/.pnpm/enhanced-resolve@4.5.0/node_modules/enhanced-resolve", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "tapable": 2373, + }, + "name": "enhanced-resolve", + "root": "/common/temp/default/node_modules/.pnpm/enhanced-resolve@5.16.0/node_modules/enhanced-resolve", + }, + Object { + "deps": Object { + "ansi-colors": 792, + "strip-ansi": 2343, + }, + "name": "enquirer", + "root": "/common/temp/default/node_modules/.pnpm/enquirer@2.4.1/node_modules/enquirer", + }, + Object { + "deps": Object {}, + "name": "entities", + "root": "/common/temp/default/node_modules/.pnpm/entities@2.1.0/node_modules/entities", + }, + Object { + "deps": Object {}, + "name": "entities", + "root": "/common/temp/default/node_modules/.pnpm/entities@2.2.0/node_modules/entities", + }, + Object { + "deps": Object {}, + "name": "entities", + "root": "/common/temp/default/node_modules/.pnpm/entities@4.5.0/node_modules/entities", + }, + Object { + "deps": Object {}, + "name": "env-paths", + "root": "/common/temp/default/node_modules/.pnpm/env-paths@2.2.1/node_modules/env-paths", + }, + Object { + "deps": Object {}, + "name": "envinfo", + "root": "/common/temp/default/node_modules/.pnpm/envinfo@7.11.1/node_modules/envinfo", + }, + Object { + "deps": Object {}, + "name": "err-code", + "root": "/common/temp/default/node_modules/.pnpm/err-code@2.0.3/node_modules/err-code", + }, + Object { + "deps": Object { + "prr": 2064, + }, + "name": "errno", + "root": "/common/temp/default/node_modules/.pnpm/errno@0.1.8/node_modules/errno", + }, + Object { + "deps": Object { + "is-arrayish": 1538, + }, + "name": "error-ex", + "root": "/common/temp/default/node_modules/.pnpm/error-ex@1.3.2/node_modules/error-ex", + }, + Object { + "deps": Object { + "stackframe": 2311, + }, + "name": "error-stack-parser", + "root": "/common/temp/default/node_modules/.pnpm/error-stack-parser@2.1.4/node_modules/error-stack-parser", + }, + Object { + "deps": Object { + "array-buffer-byte-length": 821, + "arraybuffer.prototype.slice": 834, + "available-typed-arrays": 857, + "call-bind": 946, + "data-view-buffer": 1099, + "data-view-byte-length": 1100, + "data-view-byte-offset": 1101, + "es-define-property": 1213, + "es-errors": 1214, + "es-object-atoms": 1218, + "es-set-tostringtag": 1219, + "es-to-primitive": 1221, + "function.prototype.name": 1371, + "get-intrinsic": 1381, + "get-symbol-description": 1387, + "globalthis": 1413, + "gopd": 1416, + "has-property-descriptors": 1431, + "has-proto": 1432, + "has-symbols": 1433, + "hasown": 1445, + "internal-slot": 1524, + "is-array-buffer": 1537, + "is-callable": 1546, + "is-data-view": 1550, + "is-negative-zero": 1575, + "is-regex": 1589, + "is-shared-array-buffer": 1591, + "is-string": 1594, + "is-typed-array": 1597, + "is-weakref": 1601, + "object-inspect": 1899, + "object-keys": 1900, + "object.assign": 1902, + "regexp.prototype.flags": 2147, + "safe-array-concat": 2204, + "safe-regex-test": 2208, + "string.prototype.trim": 2336, + "string.prototype.trimend": 2337, + "string.prototype.trimstart": 2338, + "typed-array-buffer": 2449, + "typed-array-byte-length": 2450, + "typed-array-byte-offset": 2451, + "typed-array-length": 2452, + "unbox-primitive": 2462, + "which-typed-array": 2572, + }, + "name": "es-abstract", + "root": "/common/temp/default/node_modules/.pnpm/es-abstract@1.23.2/node_modules/es-abstract", + }, + Object { + "deps": Object {}, + "name": "es-array-method-boxes-properly", + "root": "/common/temp/default/node_modules/.pnpm/es-array-method-boxes-properly@1.0.0/node_modules/es-array-method-boxes-properly", + }, + Object { + "deps": Object { + "get-intrinsic": 1381, + }, + "name": "es-define-property", + "root": "/common/temp/default/node_modules/.pnpm/es-define-property@1.0.0/node_modules/es-define-property", + }, + Object { + "deps": Object {}, + "name": "es-errors", + "root": "/common/temp/default/node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors", + }, + Object { + "deps": Object { + "call-bind": 946, + "get-intrinsic": 1381, + "has-symbols": 1433, + "is-arguments": 1536, + "is-map": 1574, + "is-set": 1590, + "is-string": 1594, + "isarray": 1611, + "stop-iteration-iterator": 2316, + }, + "name": "es-get-iterator", + "root": "/common/temp/default/node_modules/.pnpm/es-get-iterator@1.1.3/node_modules/es-get-iterator", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-errors": 1214, + "es-set-tostringtag": 1219, + "function-bind": 1370, + "get-intrinsic": 1381, + "globalthis": 1413, + "has-property-descriptors": 1431, + "has-proto": 1432, + "has-symbols": 1433, + "internal-slot": 1524, + "iterator.prototype": 1624, + "safe-array-concat": 2204, + }, + "name": "es-iterator-helpers", + "root": "/common/temp/default/node_modules/.pnpm/es-iterator-helpers@1.0.18/node_modules/es-iterator-helpers", + }, + Object { + "deps": Object {}, + "name": "es-module-lexer", + "root": "/common/temp/default/node_modules/.pnpm/es-module-lexer@1.4.1/node_modules/es-module-lexer", + }, + Object { + "deps": Object { + "es-errors": 1214, + }, + "name": "es-object-atoms", + "root": "/common/temp/default/node_modules/.pnpm/es-object-atoms@1.0.0/node_modules/es-object-atoms", + }, + Object { + "deps": Object { + "get-intrinsic": 1381, + "has-tostringtag": 1434, + "hasown": 1445, + }, + "name": "es-set-tostringtag", + "root": "/common/temp/default/node_modules/.pnpm/es-set-tostringtag@2.0.3/node_modules/es-set-tostringtag", + }, + Object { + "deps": Object { + "hasown": 1445, + }, + "name": "es-shim-unscopables", + "root": "/common/temp/default/node_modules/.pnpm/es-shim-unscopables@1.0.2/node_modules/es-shim-unscopables", + }, + Object { + "deps": Object { + "is-callable": 1546, + "is-date-object": 1551, + "is-symbol": 1596, + }, + "name": "es-to-primitive", + "root": "/common/temp/default/node_modules/.pnpm/es-to-primitive@1.2.1/node_modules/es-to-primitive", + }, + Object { + "deps": Object {}, + "name": "es5-shim", + "root": "/common/temp/default/node_modules/.pnpm/es5-shim@4.6.7/node_modules/es5-shim", + }, + Object { + "deps": Object {}, + "name": "es6-shim", + "root": "/common/temp/default/node_modules/.pnpm/es6-shim@0.35.8/node_modules/es6-shim", + }, + Object { + "deps": Object {}, + "name": "esbuild-linux-64", + "root": "/common/temp/default/node_modules/.pnpm/esbuild-linux-64@0.14.54/node_modules/esbuild-linux-64", + }, + Object { + "deps": Object { + "esbuild": 1226, + "source-map-support": 2291, + "tslib": 2426, + }, + "name": "esbuild-runner", + "root": "/common/temp/default/node_modules/.pnpm/esbuild-runner@2.2.2_esbuild@0.14.54/node_modules/esbuild-runner", + }, + Object { + "deps": Object { + "esbuild-linux-64": 1224, + }, + "name": "esbuild", + "root": "/common/temp/default/node_modules/.pnpm/esbuild@0.14.54/node_modules/esbuild", + }, + Object { + "deps": Object { + "@esbuild/linux-x64": 225, + }, + "name": "esbuild", + "root": "/common/temp/default/node_modules/.pnpm/esbuild@0.20.2/node_modules/esbuild", + }, + Object { + "deps": Object {}, + "name": "escalade", + "root": "/common/temp/default/node_modules/.pnpm/escalade@3.1.2/node_modules/escalade", + }, + Object { + "deps": Object {}, + "name": "escape-goat", + "root": "/common/temp/default/node_modules/.pnpm/escape-goat@2.1.1/node_modules/escape-goat", + }, + Object { + "deps": Object {}, + "name": "escape-html", + "root": "/common/temp/default/node_modules/.pnpm/escape-html@1.0.3/node_modules/escape-html", + }, + Object { + "deps": Object {}, + "name": "escape-string-regexp", + "root": "/common/temp/default/node_modules/.pnpm/escape-string-regexp@1.0.5/node_modules/escape-string-regexp", + }, + Object { + "deps": Object {}, + "name": "escape-string-regexp", + "root": "/common/temp/default/node_modules/.pnpm/escape-string-regexp@2.0.0/node_modules/escape-string-regexp", + }, + Object { + "deps": Object {}, + "name": "escape-string-regexp", + "root": "/common/temp/default/node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp", + }, + Object { + "deps": Object { + "esprima": 1269, + "estraverse": 1273, + "esutils": 1276, + "source-map": 2294, + }, + "name": "escodegen", + "root": "/common/temp/default/node_modules/.pnpm/escodegen@2.1.0/node_modules/escodegen", + }, + Object { + "deps": Object { + "debug": 1105, + "is-core-module": 1548, + "resolve": 2182, + }, + "name": "eslint-import-resolver-node", + "root": "/common/temp/default/node_modules/.pnpm/eslint-import-resolver-node@0.3.9/node_modules/eslint-import-resolver-node", + }, + Object { + "deps": Object { + "debug": 1105, + "eslint": 1264, + }, + "name": "eslint-module-utils", + "root": "/common/temp/default/node_modules/.pnpm/eslint-module-utils@2.8.1_eslint@8.57.0/node_modules/eslint-module-utils", + }, + Object { + "deps": Object { + "@typescript-eslint/utils": 710, + "eslint": 1264, + "tslib": 2425, + "tsutils": 2436, + "typescript": 2459, + }, + "name": "eslint-plugin-deprecation", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-deprecation@2.0.0_eslint@8.57.0_typescript@5.4.2/node_modules/eslint-plugin-deprecation", + }, + Object { + "deps": Object { + "eslint": 1264, + }, + "name": "eslint-plugin-header", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-header@3.1.1_eslint@8.57.0/node_modules/eslint-plugin-header", + }, + Object { + "deps": Object { + "array-includes": 824, + "array.prototype.flat": 829, + "debug": 1104, + "doctrine": 1157, + "eslint": 1264, + "eslint-import-resolver-node": 1235, + "eslint-module-utils": 1236, + "has": 1441, + "is-core-module": 1548, + "is-glob": 1569, + "minimatch": 1821, + "object.values": 1908, + "resolve": 2182, + "tsconfig-paths": 2423, + }, + "name": "eslint-plugin-import", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-import@2.25.4_eslint@8.57.0/node_modules/eslint-plugin-import", + }, + Object { + "deps": Object { + "@es-joy/jsdoccomment": 224, + "comment-parser": 1032, + "debug": 1106, + "escape-string-regexp": 1233, + "eslint": 1264, + "esquery": 1270, + "regextras": 2150, + "semver": 2238, + "spdx-expression-parse": 2299, + }, + "name": "eslint-plugin-jsdoc", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-jsdoc@37.6.1_eslint@8.57.0/node_modules/eslint-plugin-jsdoc", + }, + Object { + "deps": Object { + "eslint": 1260, + }, + "name": "eslint-plugin-promise", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-promise@6.1.1_eslint@7.11.0/node_modules/eslint-plugin-promise", + }, + Object { + "deps": Object { + "eslint": 1261, + }, + "name": "eslint-plugin-promise", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-promise@6.1.1_eslint@7.30.0/node_modules/eslint-plugin-promise", + }, + Object { + "deps": Object { + "eslint": 1262, + }, + "name": "eslint-plugin-promise", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-promise@6.1.1_eslint@7.7.0/node_modules/eslint-plugin-promise", + }, + Object { + "deps": Object { + "eslint": 1264, + }, + "name": "eslint-plugin-promise", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-promise@6.1.1_eslint@8.57.0/node_modules/eslint-plugin-promise", + }, + Object { + "deps": Object { + "eslint": 1264, + }, + "name": "eslint-plugin-react-hooks", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-react-hooks@4.3.0_eslint@8.57.0/node_modules/eslint-plugin-react-hooks", + }, + Object { + "deps": Object { + "array-includes": 824, + "array.prototype.flatmap": 830, + "array.prototype.tosorted": 833, + "doctrine": 1157, + "es-iterator-helpers": 1216, + "eslint": 1260, + "estraverse": 1273, + "jsx-ast-utils": 1700, + "minimatch": 1822, + "object.entries": 1903, + "object.fromentries": 1904, + "object.hasown": 1906, + "object.values": 1908, + "prop-types": 2060, + "resolve": 2183, + "semver": 2237, + "string.prototype.matchall": 2333, + }, + "name": "eslint-plugin-react", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-react@7.33.2_eslint@7.11.0/node_modules/eslint-plugin-react", + }, + Object { + "deps": Object { + "array-includes": 824, + "array.prototype.flatmap": 830, + "array.prototype.tosorted": 833, + "doctrine": 1157, + "es-iterator-helpers": 1216, + "eslint": 1261, + "estraverse": 1273, + "jsx-ast-utils": 1700, + "minimatch": 1822, + "object.entries": 1903, + "object.fromentries": 1904, + "object.hasown": 1906, + "object.values": 1908, + "prop-types": 2060, + "resolve": 2183, + "semver": 2237, + "string.prototype.matchall": 2333, + }, + "name": "eslint-plugin-react", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-react@7.33.2_eslint@7.30.0/node_modules/eslint-plugin-react", + }, + Object { + "deps": Object { + "array-includes": 824, + "array.prototype.flatmap": 830, + "array.prototype.tosorted": 833, + "doctrine": 1157, + "es-iterator-helpers": 1216, + "eslint": 1262, + "estraverse": 1273, + "jsx-ast-utils": 1700, + "minimatch": 1822, + "object.entries": 1903, + "object.fromentries": 1904, + "object.hasown": 1906, + "object.values": 1908, + "prop-types": 2060, + "resolve": 2183, + "semver": 2237, + "string.prototype.matchall": 2333, + }, + "name": "eslint-plugin-react", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-react@7.33.2_eslint@7.7.0/node_modules/eslint-plugin-react", + }, + Object { + "deps": Object { + "array-includes": 824, + "array.prototype.flatmap": 830, + "array.prototype.tosorted": 833, + "doctrine": 1157, + "es-iterator-helpers": 1216, + "eslint": 1264, + "estraverse": 1273, + "jsx-ast-utils": 1700, + "minimatch": 1822, + "object.entries": 1903, + "object.fromentries": 1904, + "object.hasown": 1906, + "object.values": 1908, + "prop-types": 2060, + "resolve": 2183, + "semver": 2237, + "string.prototype.matchall": 2333, + }, + "name": "eslint-plugin-react", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-react@7.33.2_eslint@8.57.0/node_modules/eslint-plugin-react", + }, + Object { + "deps": Object { + "@microsoft/tsdoc": 367, + "@microsoft/tsdoc-config": 366, + }, + "name": "eslint-plugin-tsdoc", + "root": "/common/temp/default/node_modules/.pnpm/eslint-plugin-tsdoc@0.3.0/node_modules/eslint-plugin-tsdoc", + }, + Object { + "deps": Object { + "esrecurse": 1271, + "estraverse": 1272, + }, + "name": "eslint-scope", + "root": "/common/temp/default/node_modules/.pnpm/eslint-scope@4.0.3/node_modules/eslint-scope", + }, + Object { + "deps": Object { + "esrecurse": 1271, + "estraverse": 1272, + }, + "name": "eslint-scope", + "root": "/common/temp/default/node_modules/.pnpm/eslint-scope@5.1.1/node_modules/eslint-scope", + }, + Object { + "deps": Object { + "esrecurse": 1271, + "estraverse": 1273, + }, + "name": "eslint-scope", + "root": "/common/temp/default/node_modules/.pnpm/eslint-scope@7.2.2/node_modules/eslint-scope", + }, + Object { + "deps": Object { + "eslint-visitor-keys": 1256, + }, + "name": "eslint-utils", + "root": "/common/temp/default/node_modules/.pnpm/eslint-utils@2.1.0/node_modules/eslint-utils", + }, + Object { + "deps": Object { + "eslint": 1264, + "eslint-visitor-keys": 1257, + }, + "name": "eslint-utils", + "root": "/common/temp/default/node_modules/.pnpm/eslint-utils@3.0.0_eslint@8.57.0/node_modules/eslint-utils", + }, + Object { + "deps": Object {}, + "name": "eslint-visitor-keys", + "root": "/common/temp/default/node_modules/.pnpm/eslint-visitor-keys@1.3.0/node_modules/eslint-visitor-keys", + }, + Object { + "deps": Object {}, + "name": "eslint-visitor-keys", + "root": "/common/temp/default/node_modules/.pnpm/eslint-visitor-keys@2.1.0/node_modules/eslint-visitor-keys", + }, + Object { + "deps": Object {}, + "name": "eslint-visitor-keys", + "root": "/common/temp/default/node_modules/.pnpm/eslint-visitor-keys@3.4.3/node_modules/eslint-visitor-keys", + }, + Object { + "deps": Object {}, + "name": "eslint-visitor-keys", + "root": "/common/temp/default/node_modules/.pnpm/eslint-visitor-keys@4.0.0/node_modules/eslint-visitor-keys", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "@eslint/eslintrc": 231, + "ajv": 786, + "chalk": 966, + "cross-spawn": 1075, + "debug": 1106, + "doctrine": 1158, + "enquirer": 1201, + "eslint-scope": 1252, + "eslint-utils": 1254, + "eslint-visitor-keys": 1257, + "espree": 1267, + "esquery": 1270, + "esutils": 1276, + "file-entry-cache": 1318, + "functional-red-black-tree": 1372, + "glob-parent": 1395, + "globals": 1410, + "ignore": 1500, + "import-fresh": 1506, + "imurmurhash": 1511, + "is-glob": 1569, + "js-yaml": 1676, + "json-stable-stringify-without-jsonify": 1691, + "levn": 1723, + "lodash": 1760, + "minimatch": 1821, + "natural-compare": 1859, + "optionator": 1919, + "progress": 2054, + "regexpp": 2148, + "semver": 2238, + "strip-ansi": 2343, + "strip-json-comments": 2351, + "table": 2369, + "text-table": 2386, + "v8-compile-cache": 2520, + }, + "name": "eslint", + "root": "/common/temp/default/node_modules/.pnpm/eslint@7.11.0/node_modules/eslint", + }, + Object { + "deps": Object { + "@babel/code-frame": 55, + "@eslint/eslintrc": 232, + "@humanwhocodes/config-array": 319, + "ajv": 786, + "chalk": 966, + "cross-spawn": 1075, + "debug": 1106, + "doctrine": 1158, + "enquirer": 1201, + "escape-string-regexp": 1233, + "eslint-scope": 1252, + "eslint-utils": 1254, + "eslint-visitor-keys": 1257, + "espree": 1267, + "esquery": 1270, + "esutils": 1276, + "fast-deep-equal": 1298, + "file-entry-cache": 1319, + "functional-red-black-tree": 1372, + "glob-parent": 1395, + "globals": 1411, + "ignore": 1500, + "import-fresh": 1506, + "imurmurhash": 1511, + "is-glob": 1569, + "js-yaml": 1676, + "json-stable-stringify-without-jsonify": 1691, + "levn": 1723, + "lodash.merge": 1755, + "minimatch": 1821, + "natural-compare": 1859, + "optionator": 1919, + "progress": 2054, + "regexpp": 2148, + "semver": 2238, + "strip-ansi": 2343, + "strip-json-comments": 2351, + "table": 2370, + "text-table": 2386, + "v8-compile-cache": 2520, + }, + "name": "eslint", + "root": "/common/temp/default/node_modules/.pnpm/eslint@7.30.0/node_modules/eslint", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "ajv": 786, + "chalk": 966, + "cross-spawn": 1075, + "debug": 1106, + "doctrine": 1158, + "enquirer": 1201, + "eslint-scope": 1252, + "eslint-utils": 1254, + "eslint-visitor-keys": 1256, + "espree": 1267, + "esquery": 1270, + "esutils": 1276, + "file-entry-cache": 1318, + "functional-red-black-tree": 1372, + "glob-parent": 1395, + "globals": 1410, + "ignore": 1500, + "import-fresh": 1506, + "imurmurhash": 1511, + "is-glob": 1569, + "js-yaml": 1676, + "json-stable-stringify-without-jsonify": 1691, + "levn": 1723, + "lodash": 1760, + "minimatch": 1821, + "natural-compare": 1859, + "optionator": 1919, + "progress": 2054, + "regexpp": 2148, + "semver": 2238, + "strip-ansi": 2343, + "strip-json-comments": 2351, + "table": 2369, + "text-table": 2386, + "v8-compile-cache": 2520, + }, + "name": "eslint", + "root": "/common/temp/default/node_modules/.pnpm/eslint@7.7.0/node_modules/eslint", + }, + Object { + "deps": Object { + "@eslint/eslintrc": 233, + "@humanwhocodes/config-array": 317, + "@humanwhocodes/gitignore-to-minimatch": 321, + "@humanwhocodes/module-importer": 322, + "ajv": 786, + "chalk": 966, + "cross-spawn": 1075, + "debug": 1106, + "doctrine": 1158, + "escape-string-regexp": 1233, + "eslint-scope": 1253, + "eslint-utils": 1255, + "eslint-visitor-keys": 1258, + "espree": 1268, + "esquery": 1270, + "esutils": 1276, + "fast-deep-equal": 1298, + "file-entry-cache": 1319, + "find-up": 1333, + "glob-parent": 1396, + "globals": 1411, + "globby": 1414, + "grapheme-splitter": 1420, + "ignore": 1502, + "import-fresh": 1506, + "imurmurhash": 1511, + "is-glob": 1569, + "js-sdsl": 1672, + "js-yaml": 1678, + "json-stable-stringify-without-jsonify": 1691, + "levn": 1723, + "lodash.merge": 1755, + "minimatch": 1822, + "natural-compare": 1859, + "optionator": 1919, + "regexpp": 2148, + "strip-ansi": 2343, + "strip-json-comments": 2351, + "text-table": 2386, + }, + "name": "eslint", + "root": "/common/temp/default/node_modules/.pnpm/eslint@8.23.1/node_modules/eslint", + }, + Object { + "deps": Object { + "@eslint-community/eslint-utils": 229, + "@eslint-community/regexpp": 230, + "@eslint/eslintrc": 234, + "@eslint/js": 236, + "@humanwhocodes/config-array": 318, + "@humanwhocodes/module-importer": 322, + "@nodelib/fs.walk": 372, + "@ungap/structured-clone": 716, + "ajv": 786, + "chalk": 966, + "cross-spawn": 1075, + "debug": 1106, + "doctrine": 1158, + "escape-string-regexp": 1233, + "eslint-scope": 1253, + "eslint-visitor-keys": 1258, + "espree": 1268, + "esquery": 1270, + "esutils": 1276, + "fast-deep-equal": 1298, + "file-entry-cache": 1319, + "find-up": 1333, + "glob-parent": 1396, + "globals": 1411, + "graphemer": 1421, + "ignore": 1502, + "imurmurhash": 1511, + "is-glob": 1569, + "is-path-inside": 1582, + "js-yaml": 1678, + "json-stable-stringify-without-jsonify": 1691, + "levn": 1723, + "lodash.merge": 1755, + "minimatch": 1822, + "natural-compare": 1859, + "optionator": 1919, + "strip-ansi": 2343, + "text-table": 2386, + }, + "name": "eslint", + "root": "/common/temp/default/node_modules/.pnpm/eslint@8.57.0_supports-color@8.1.1/node_modules/eslint", + }, + Object { + "deps": Object { + "@eslint/eslintrc": 233, + "@humanwhocodes/config-array": 320, + "ajv": 786, + "chalk": 966, + "cross-spawn": 1075, + "debug": 1106, + "doctrine": 1158, + "enquirer": 1201, + "escape-string-regexp": 1233, + "eslint-scope": 1253, + "eslint-utils": 1255, + "eslint-visitor-keys": 1258, + "espree": 1268, + "esquery": 1270, + "esutils": 1276, + "fast-deep-equal": 1298, + "file-entry-cache": 1319, + "functional-red-black-tree": 1372, + "glob-parent": 1396, + "globals": 1411, + "ignore": 1500, + "import-fresh": 1506, + "imurmurhash": 1511, + "is-glob": 1569, + "js-yaml": 1678, + "json-stable-stringify-without-jsonify": 1691, + "levn": 1723, + "lodash.merge": 1755, + "minimatch": 1821, + "natural-compare": 1859, + "optionator": 1919, + "progress": 2054, + "regexpp": 2148, + "semver": 2238, + "strip-ansi": 2343, + "strip-json-comments": 2351, + "text-table": 2386, + "v8-compile-cache": 2520, + }, + "name": "eslint", + "root": "/common/temp/default/node_modules/.pnpm/eslint@8.6.0/node_modules/eslint", + }, + Object { + "deps": Object { + "acorn": 772, + "acorn-jsx": 767, + "eslint-visitor-keys": 1259, + }, + "name": "espree", + "root": "/common/temp/default/node_modules/.pnpm/espree@10.0.1/node_modules/espree", + }, + Object { + "deps": Object { + "acorn": 771, + "acorn-jsx": 766, + "eslint-visitor-keys": 1256, + }, + "name": "espree", + "root": "/common/temp/default/node_modules/.pnpm/espree@7.3.1/node_modules/espree", + }, + Object { + "deps": Object { + "acorn": 772, + "acorn-jsx": 767, + "eslint-visitor-keys": 1258, + }, + "name": "espree", + "root": "/common/temp/default/node_modules/.pnpm/espree@9.6.1/node_modules/espree", + }, + Object { + "deps": Object {}, + "name": "esprima", + "root": "/common/temp/default/node_modules/.pnpm/esprima@4.0.1/node_modules/esprima", + }, + Object { + "deps": Object { + "estraverse": 1273, + }, + "name": "esquery", + "root": "/common/temp/default/node_modules/.pnpm/esquery@1.5.0/node_modules/esquery", + }, + Object { + "deps": Object { + "estraverse": 1273, + }, + "name": "esrecurse", + "root": "/common/temp/default/node_modules/.pnpm/esrecurse@4.3.0/node_modules/esrecurse", + }, + Object { + "deps": Object {}, + "name": "estraverse", + "root": "/common/temp/default/node_modules/.pnpm/estraverse@4.3.0/node_modules/estraverse", + }, + Object { + "deps": Object {}, + "name": "estraverse", + "root": "/common/temp/default/node_modules/.pnpm/estraverse@5.3.0/node_modules/estraverse", + }, + Object { + "deps": Object { + "@babel/traverse": 195, + "@babel/types": 196, + "c8": 940, + }, + "name": "estree-to-babel", + "root": "/common/temp/default/node_modules/.pnpm/estree-to-babel@3.2.1/node_modules/estree-to-babel", + }, + Object { + "deps": Object {}, + "name": "estree-walker", + "root": "/common/temp/default/node_modules/.pnpm/estree-walker@2.0.2/node_modules/estree-walker", + }, + Object { + "deps": Object {}, + "name": "esutils", + "root": "/common/temp/default/node_modules/.pnpm/esutils@2.0.3/node_modules/esutils", + }, + Object { + "deps": Object {}, + "name": "etag", + "root": "/common/temp/default/node_modules/.pnpm/etag@1.8.1/node_modules/etag", + }, + Object { + "deps": Object {}, + "name": "eventemitter3", + "root": "/common/temp/default/node_modules/.pnpm/eventemitter3@4.0.7/node_modules/eventemitter3", + }, + Object { + "deps": Object {}, + "name": "events", + "root": "/common/temp/default/node_modules/.pnpm/events@1.1.1/node_modules/events", + }, + Object { + "deps": Object {}, + "name": "events", + "root": "/common/temp/default/node_modules/.pnpm/events@3.3.0/node_modules/events", + }, + Object { + "deps": Object { + "md5.js": 1785, + "safe-buffer": 2207, + }, + "name": "evp_bytestokey", + "root": "/common/temp/default/node_modules/.pnpm/evp_bytestokey@1.0.3/node_modules/evp_bytestokey", + }, + Object { + "deps": Object {}, + "name": "exec-sh", + "root": "/common/temp/default/node_modules/.pnpm/exec-sh@0.3.6/node_modules/exec-sh", + }, + Object { + "deps": Object { + "cross-spawn": 1074, + "get-stream": 1384, + "is-stream": 1592, + "npm-run-path": 1889, + "p-finally": 1931, + "signal-exit": 2267, + "strip-eof": 2347, + }, + "name": "execa", + "root": "/common/temp/default/node_modules/.pnpm/execa@1.0.0/node_modules/execa", + }, + Object { + "deps": Object { + "cross-spawn": 1075, + "get-stream": 1386, + "human-signals": 1490, + "is-stream": 1593, + "merge-stream": 1801, + "npm-run-path": 1890, + "onetime": 1915, + "signal-exit": 2267, + "strip-final-newline": 2348, + }, + "name": "execa", + "root": "/common/temp/default/node_modules/.pnpm/execa@5.1.1/node_modules/execa", + }, + Object { + "deps": Object {}, + "name": "exit", + "root": "/common/temp/default/node_modules/.pnpm/exit@0.1.2/node_modules/exit", + }, + Object { + "deps": Object { + "debug": 1104, + "define-property": 1126, + "extend-shallow": 1291, + "posix-character-classes": 1993, + "regex-not": 2146, + "snapdragon": 2279, + "to-regex": 2405, + }, + "name": "expand-brackets", + "root": "/common/temp/default/node_modules/.pnpm/expand-brackets@2.1.4/node_modules/expand-brackets", + }, + Object { + "deps": Object {}, + "name": "expand-template", + "root": "/common/temp/default/node_modules/.pnpm/expand-template@2.0.3/node_modules/expand-template", + }, + Object { + "deps": Object { + "homedir-polyfill": 1458, + }, + "name": "expand-tilde", + "root": "/common/temp/default/node_modules/.pnpm/expand-tilde@2.0.2/node_modules/expand-tilde", + }, + Object { + "deps": Object { + "@jest/expect-utils": 331, + "jest-get-type": 1640, + "jest-matcher-utils": 1646, + "jest-message-util": 1647, + "jest-util": 1662, + }, + "name": "expect", + "root": "/common/temp/default/node_modules/.pnpm/expect@29.7.0/node_modules/expect", + }, + Object { + "deps": Object { + "accepts": 763, + "array-flatten": 823, + "body-parser": 903, + "content-disposition": 1049, + "content-type": 1050, + "cookie": 1055, + "cookie-signature": 1053, + "debug": 1104, + "depd": 1134, + "encodeurl": 1195, + "escape-html": 1230, + "etag": 1277, + "finalhandler": 1326, + "fresh": 1357, + "http-errors": 1477, + "merge-descriptors": 1799, + "methods": 1803, + "on-finished": 1912, + "parseurl": 1958, + "path-to-regexp": 1969, + "proxy-addr": 2062, + "qs": 2078, + "range-parser": 2091, + "safe-buffer": 2207, + "send": 2241, + "serve-static": 2248, + "setprototypeof": 2257, + "statuses": 2315, + "type-is": 2448, + "utils-merge": 2514, + "vary": 2526, + }, + "name": "express", + "root": "/common/temp/default/node_modules/.pnpm/express@4.19.2/node_modules/express", + }, + Object { + "deps": Object { + "is-extendable": 1558, + }, + "name": "extend-shallow", + "root": "/common/temp/default/node_modules/.pnpm/extend-shallow@2.0.1/node_modules/extend-shallow", + }, + Object { + "deps": Object { + "assign-symbols": 840, + "is-extendable": 1559, + }, + "name": "extend-shallow", + "root": "/common/temp/default/node_modules/.pnpm/extend-shallow@3.0.2/node_modules/extend-shallow", + }, + Object { + "deps": Object {}, + "name": "extend", + "root": "/common/temp/default/node_modules/.pnpm/extend@3.0.2/node_modules/extend", + }, + Object { + "deps": Object { + "chardet": 972, + "iconv-lite": 1492, + "tmp": 2397, + }, + "name": "external-editor", + "root": "/common/temp/default/node_modules/.pnpm/external-editor@3.1.0/node_modules/external-editor", + }, + Object { + "deps": Object { + "array-unique": 828, + "define-property": 1127, + "expand-brackets": 1286, + "extend-shallow": 1291, + "fragment-cache": 1356, + "regex-not": 2146, + "snapdragon": 2279, + "to-regex": 2405, + }, + "name": "extglob", + "root": "/common/temp/default/node_modules/.pnpm/extglob@2.0.4/node_modules/extglob", + }, + Object { + "deps": Object { + "concat-stream": 1041, + "debug": 1104, + "mkdirp": 1842, + "yauzl": 2623, + }, + "name": "extract-zip", + "root": "/common/temp/default/node_modules/.pnpm/extract-zip@1.7.0/node_modules/extract-zip", + }, + Object { + "deps": Object {}, + "name": "fast-decode-uri-component", + "root": "/common/temp/default/node_modules/.pnpm/fast-decode-uri-component@1.0.1/node_modules/fast-decode-uri-component", + }, + Object { + "deps": Object {}, + "name": "fast-deep-equal", + "root": "/common/temp/default/node_modules/.pnpm/fast-deep-equal@3.1.3/node_modules/fast-deep-equal", + }, + Object { + "deps": Object { + "@mrmlnc/readdir-enhanced": 368, + "@nodelib/fs.stat": 370, + "glob-parent": 1394, + "is-glob": 1569, + "merge2": 1802, + "micromatch": 1805, + }, + "name": "fast-glob", + "root": "/common/temp/default/node_modules/.pnpm/fast-glob@2.2.7/node_modules/fast-glob", + }, + Object { + "deps": Object { + "@nodelib/fs.stat": 371, + "@nodelib/fs.walk": 372, + "glob-parent": 1395, + "merge2": 1802, + "micromatch": 1806, + }, + "name": "fast-glob", + "root": "/common/temp/default/node_modules/.pnpm/fast-glob@3.3.2/node_modules/fast-glob", + }, + Object { + "deps": Object {}, + "name": "fast-json-parse", + "root": "/common/temp/default/node_modules/.pnpm/fast-json-parse@1.0.3/node_modules/fast-json-parse", + }, + Object { + "deps": Object {}, + "name": "fast-json-stable-stringify", + "root": "/common/temp/default/node_modules/.pnpm/fast-json-stable-stringify@2.1.0/node_modules/fast-json-stable-stringify", + }, + Object { + "deps": Object { + "ajv": 786, + "deepmerge": 1119, + "rfdc": 2192, + "string-similarity": 2328, + }, + "name": "fast-json-stringify", + "root": "/common/temp/default/node_modules/.pnpm/fast-json-stringify@2.7.13/node_modules/fast-json-stringify", + }, + Object { + "deps": Object {}, + "name": "fast-levenshtein", + "root": "/common/temp/default/node_modules/.pnpm/fast-levenshtein@2.0.6/node_modules/fast-levenshtein", + }, + Object { + "deps": Object {}, + "name": "fast-redact", + "root": "/common/temp/default/node_modules/.pnpm/fast-redact@3.4.0/node_modules/fast-redact", + }, + Object { + "deps": Object {}, + "name": "fast-safe-stringify", + "root": "/common/temp/default/node_modules/.pnpm/fast-safe-stringify@2.1.1/node_modules/fast-safe-stringify", + }, + Object { + "deps": Object { + "strnum": 2352, + }, + "name": "fast-xml-parser", + "root": "/common/temp/default/node_modules/.pnpm/fast-xml-parser@4.2.5/node_modules/fast-xml-parser", + }, + Object { + "deps": Object {}, + "name": "fastify-error", + "root": "/common/temp/default/node_modules/.pnpm/fastify-error@0.3.1/node_modules/fastify-error", + }, + Object { + "deps": Object {}, + "name": "fastify-warning", + "root": "/common/temp/default/node_modules/.pnpm/fastify-warning@0.2.0/node_modules/fastify-warning", + }, + Object { + "deps": Object { + "@fastify/ajv-compiler": 237, + "@fastify/proxy-addr": 239, + "abstract-logging": 762, + "avvio": 858, + "fast-json-stringify": 1303, + "fastify-error": 1308, + "fastify-warning": 1309, + "find-my-way": 1329, + "flatstr": 1340, + "light-my-request": 1725, + "pino": 1983, + "readable-stream": 2127, + "rfdc": 2192, + "secure-json-parse": 2230, + "semver": 2238, + "tiny-lru": 2396, + }, + "name": "fastify", + "root": "/common/temp/default/node_modules/.pnpm/fastify@3.16.2/node_modules/fastify", + }, + Object { + "deps": Object { + "reusify": 2190, + }, + "name": "fastq", + "root": "/common/temp/default/node_modules/.pnpm/fastq@1.17.1/node_modules/fastq", + }, + Object { + "deps": Object { + "format": 1353, + }, + "name": "fault", + "root": "/common/temp/default/node_modules/.pnpm/fault@1.0.4/node_modules/fault", + }, + Object { + "deps": Object { + "websocket-driver": 2560, + }, + "name": "faye-websocket", + "root": "/common/temp/default/node_modules/.pnpm/faye-websocket@0.11.4/node_modules/faye-websocket", + }, + Object { + "deps": Object { + "bser": 923, + }, + "name": "fb-watchman", + "root": "/common/temp/default/node_modules/.pnpm/fb-watchman@2.0.2/node_modules/fb-watchman", + }, + Object { + "deps": Object { + "pend": 1973, + }, + "name": "fd-slicer", + "root": "/common/temp/default/node_modules/.pnpm/fd-slicer@1.1.0/node_modules/fd-slicer", + }, + Object { + "deps": Object {}, + "name": "figgy-pudding", + "root": "/common/temp/default/node_modules/.pnpm/figgy-pudding@3.5.2/node_modules/figgy-pudding", + }, + Object { + "deps": Object { + "escape-string-regexp": 1231, + }, + "name": "figures", + "root": "/common/temp/default/node_modules/.pnpm/figures@3.0.0/node_modules/figures", + }, + Object { + "deps": Object { + "flat-cache": 1337, + }, + "name": "file-entry-cache", + "root": "/common/temp/default/node_modules/.pnpm/file-entry-cache@5.0.1/node_modules/file-entry-cache", + }, + Object { + "deps": Object { + "flat-cache": 1338, + }, + "name": "file-entry-cache", + "root": "/common/temp/default/node_modules/.pnpm/file-entry-cache@6.0.1/node_modules/file-entry-cache", + }, + Object { + "deps": Object { + "loader-utils": 1736, + "schema-utils": 2227, + "webpack": 2558, + }, + "name": "file-loader", + "root": "/common/temp/default/node_modules/.pnpm/file-loader@6.0.0_webpack@4.47.0/node_modules/file-loader", + }, + Object { + "deps": Object { + "loader-utils": 1736, + "schema-utils": 2228, + "webpack": 2558, + }, + "name": "file-loader", + "root": "/common/temp/default/node_modules/.pnpm/file-loader@6.2.0_webpack@4.47.0/node_modules/file-loader", + }, + Object { + "deps": Object { + "fs-extra": 1360, + "ramda": 2088, + }, + "name": "file-system-cache", + "root": "/common/temp/default/node_modules/.pnpm/file-system-cache@1.1.0/node_modules/file-system-cache", + }, + Object { + "deps": Object {}, + "name": "file-uri-to-path", + "root": "/common/temp/default/node_modules/.pnpm/file-uri-to-path@1.0.0/node_modules/file-uri-to-path", + }, + Object { + "deps": Object { + "extend-shallow": 1291, + "is-number": 1578, + "repeat-string": 2166, + "to-regex-range": 2403, + }, + "name": "fill-range", + "root": "/common/temp/default/node_modules/.pnpm/fill-range@4.0.0/node_modules/fill-range", + }, + Object { + "deps": Object { + "to-regex-range": 2404, + }, + "name": "fill-range", + "root": "/common/temp/default/node_modules/.pnpm/fill-range@7.0.1/node_modules/fill-range", + }, + Object { + "deps": Object { + "debug": 1104, + "encodeurl": 1195, + "escape-html": 1230, + "on-finished": 1912, + "parseurl": 1958, + "statuses": 2315, + "unpipe": 2488, + }, + "name": "finalhandler", + "root": "/common/temp/default/node_modules/.pnpm/finalhandler@1.2.0/node_modules/finalhandler", + }, + Object { + "deps": Object { + "commondir": 1034, + "make-dir": 1771, + "pkg-dir": 1985, + }, + "name": "find-cache-dir", + "root": "/common/temp/default/node_modules/.pnpm/find-cache-dir@2.1.0/node_modules/find-cache-dir", + }, + Object { + "deps": Object { + "commondir": 1034, + "make-dir": 1772, + "pkg-dir": 1986, + }, + "name": "find-cache-dir", + "root": "/common/temp/default/node_modules/.pnpm/find-cache-dir@3.3.2/node_modules/find-cache-dir", + }, + Object { + "deps": Object { + "fast-decode-uri-component": 1297, + "fast-deep-equal": 1298, + "safe-regex2": 2209, + "semver-store": 2235, + }, + "name": "find-my-way", + "root": "/common/temp/default/node_modules/.pnpm/find-my-way@4.5.1/node_modules/find-my-way", + }, + Object { + "deps": Object {}, + "name": "find-root", + "root": "/common/temp/default/node_modules/.pnpm/find-root@1.1.0/node_modules/find-root", + }, + Object { + "deps": Object { + "locate-path": 1738, + }, + "name": "find-up", + "root": "/common/temp/default/node_modules/.pnpm/find-up@3.0.0/node_modules/find-up", + }, + Object { + "deps": Object { + "locate-path": 1739, + "path-exists": 1964, + }, + "name": "find-up", + "root": "/common/temp/default/node_modules/.pnpm/find-up@4.1.0/node_modules/find-up", + }, + Object { + "deps": Object { + "locate-path": 1740, + "path-exists": 1964, + }, + "name": "find-up", + "root": "/common/temp/default/node_modules/.pnpm/find-up@5.0.0/node_modules/find-up", + }, + Object { + "deps": Object { + "micromatch": 1806, + "pkg-dir": 1986, + }, + "name": "find-yarn-workspace-root2", + "root": "/common/temp/default/node_modules/.pnpm/find-yarn-workspace-root2@1.2.16/node_modules/find-yarn-workspace-root2", + }, + Object { + "deps": Object { + "detect-file": 1141, + "is-glob": 1569, + "micromatch": 1805, + "resolve-dir": 2176, + }, + "name": "findup-sync", + "root": "/common/temp/default/node_modules/.pnpm/findup-sync@3.0.0/node_modules/findup-sync", + }, + Object { + "deps": Object { + "detect-file": 1141, + "is-glob": 1569, + "micromatch": 1806, + "resolve-dir": 2176, + }, + "name": "findup-sync", + "root": "/common/temp/default/node_modules/.pnpm/findup-sync@5.0.0/node_modules/findup-sync", + }, + Object { + "deps": Object { + "flatted": 1341, + "rimraf": 2193, + "write": 2592, + }, + "name": "flat-cache", + "root": "/common/temp/default/node_modules/.pnpm/flat-cache@2.0.1/node_modules/flat-cache", + }, + Object { + "deps": Object { + "flatted": 1342, + "keyv": 1710, + "rimraf": 2195, + }, + "name": "flat-cache", + "root": "/common/temp/default/node_modules/.pnpm/flat-cache@3.2.0/node_modules/flat-cache", + }, + Object { + "deps": Object {}, + "name": "flat", + "root": "/common/temp/default/node_modules/.pnpm/flat@5.0.2/node_modules/flat", + }, + Object { + "deps": Object {}, + "name": "flatstr", + "root": "/common/temp/default/node_modules/.pnpm/flatstr@1.0.12/node_modules/flatstr", + }, + Object { + "deps": Object {}, + "name": "flatted", + "root": "/common/temp/default/node_modules/.pnpm/flatted@2.0.2/node_modules/flatted", + }, + Object { + "deps": Object {}, + "name": "flatted", + "root": "/common/temp/default/node_modules/.pnpm/flatted@3.3.1/node_modules/flatted", + }, + Object { + "deps": Object {}, + "name": "flow-parser", + "root": "/common/temp/default/node_modules/.pnpm/flow-parser@0.231.0/node_modules/flow-parser", + }, + Object { + "deps": Object { + "inherits": 1518, + "readable-stream": 2126, + }, + "name": "flush-write-stream", + "root": "/common/temp/default/node_modules/.pnpm/flush-write-stream@1.1.1/node_modules/flush-write-stream", + }, + Object { + "deps": Object {}, + "name": "follow-redirects", + "root": "/common/temp/default/node_modules/.pnpm/follow-redirects@1.15.6/node_modules/follow-redirects", + }, + Object { + "deps": Object { + "is-callable": 1546, + }, + "name": "for-each", + "root": "/common/temp/default/node_modules/.pnpm/for-each@0.3.3/node_modules/for-each", + }, + Object { + "deps": Object {}, + "name": "for-in", + "root": "/common/temp/default/node_modules/.pnpm/for-in@1.0.2/node_modules/for-in", + }, + Object { + "deps": Object { + "cross-spawn": 1075, + "signal-exit": 2267, + }, + "name": "foreground-child", + "root": "/common/temp/default/node_modules/.pnpm/foreground-child@2.0.0/node_modules/foreground-child", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "chalk": 964, + "micromatch": 1805, + "minimatch": 1821, + "semver": 2236, + "tapable": 2372, + "worker-rpc": 2581, + }, + "name": "fork-ts-checker-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/fork-ts-checker-webpack-plugin@4.1.6/node_modules/fork-ts-checker-webpack-plugin", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "@types/json-schema": 604, + "chalk": 966, + "chokidar": 976, + "cosmiconfig": 1064, + "deepmerge": 1119, + "eslint": 1264, + "fs-extra": 1364, + "glob": 1401, + "memfs": 1794, + "minimatch": 1821, + "schema-utils": 2226, + "semver": 2238, + "tapable": 2372, + "typescript": 2459, + "webpack": 2558, + }, + "name": "fork-ts-checker-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/fork-ts-checker-webpack-plugin@6.5.3_eslint@8.57.0_typescript@5.4.2_webpack@4.47.0/node_modules/fork-ts-checker-webpack-plugin", + }, + Object { + "deps": Object { + "asynckit": 850, + "combined-stream": 1023, + "mime-types": 1809, + }, + "name": "form-data", + "root": "/common/temp/default/node_modules/.pnpm/form-data@3.0.1/node_modules/form-data", + }, + Object { + "deps": Object { + "asynckit": 850, + "combined-stream": 1023, + "mime-types": 1809, + }, + "name": "form-data", + "root": "/common/temp/default/node_modules/.pnpm/form-data@4.0.0/node_modules/form-data", + }, + Object { + "deps": Object {}, + "name": "format", + "root": "/common/temp/default/node_modules/.pnpm/format@0.2.2/node_modules/format", + }, + Object { + "deps": Object {}, + "name": "forwarded", + "root": "/common/temp/default/node_modules/.pnpm/forwarded@0.2.0/node_modules/forwarded", + }, + Object { + "deps": Object {}, + "name": "fraction.js", + "root": "/common/temp/default/node_modules/.pnpm/fraction.js@4.3.7/node_modules/fraction.js", + }, + Object { + "deps": Object { + "map-cache": 1777, + }, + "name": "fragment-cache", + "root": "/common/temp/default/node_modules/.pnpm/fragment-cache@0.2.1/node_modules/fragment-cache", + }, + Object { + "deps": Object {}, + "name": "fresh", + "root": "/common/temp/default/node_modules/.pnpm/fresh@0.5.2/node_modules/fresh", + }, + Object { + "deps": Object { + "inherits": 1518, + "readable-stream": 2126, + }, + "name": "from2", + "root": "/common/temp/default/node_modules/.pnpm/from2@2.3.0/node_modules/from2", + }, + Object { + "deps": Object {}, + "name": "fs-constants", + "root": "/common/temp/default/node_modules/.pnpm/fs-constants@1.0.0/node_modules/fs-constants", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "jsonfile": 1696, + "universalify": 2487, + }, + "name": "fs-extra", + "root": "/common/temp/default/node_modules/.pnpm/fs-extra@10.1.0/node_modules/fs-extra", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "jsonfile": 1696, + "universalify": 2487, + }, + "name": "fs-extra", + "root": "/common/temp/default/node_modules/.pnpm/fs-extra@11.2.0/node_modules/fs-extra", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "jsonfile": 1695, + "universalify": 2485, + }, + "name": "fs-extra", + "root": "/common/temp/default/node_modules/.pnpm/fs-extra@7.0.1/node_modules/fs-extra", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "jsonfile": 1695, + "universalify": 2485, + }, + "name": "fs-extra", + "root": "/common/temp/default/node_modules/.pnpm/fs-extra@8.1.0/node_modules/fs-extra", + }, + Object { + "deps": Object { + "at-least-node": 851, + "graceful-fs": 1418, + "jsonfile": 1696, + "universalify": 2487, + }, + "name": "fs-extra", + "root": "/common/temp/default/node_modules/.pnpm/fs-extra@9.1.0/node_modules/fs-extra", + }, + Object { + "deps": Object { + "minipass": 1835, + }, + "name": "fs-minipass", + "root": "/common/temp/default/node_modules/.pnpm/fs-minipass@2.1.0/node_modules/fs-minipass", + }, + Object { + "deps": Object {}, + "name": "fs-monkey", + "root": "/common/temp/default/node_modules/.pnpm/fs-monkey@1.0.3/node_modules/fs-monkey", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "iferr": 1498, + "imurmurhash": 1511, + "readable-stream": 2126, + }, + "name": "fs-write-stream-atomic", + "root": "/common/temp/default/node_modules/.pnpm/fs-write-stream-atomic@1.0.10/node_modules/fs-write-stream-atomic", + }, + Object { + "deps": Object {}, + "name": "fs.realpath", + "root": "/common/temp/default/node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "inherits": 1518, + "mkdirp": 1842, + "rimraf": 2194, + }, + "name": "fstream", + "root": "/common/temp/default/node_modules/.pnpm/fstream@1.0.12/node_modules/fstream", + }, + Object { + "deps": Object {}, + "name": "function-bind", + "root": "/common/temp/default/node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "functions-have-names": 1373, + }, + "name": "function.prototype.name", + "root": "/common/temp/default/node_modules/.pnpm/function.prototype.name@1.1.6/node_modules/function.prototype.name", + }, + Object { + "deps": Object {}, + "name": "functional-red-black-tree", + "root": "/common/temp/default/node_modules/.pnpm/functional-red-black-tree@1.0.1/node_modules/functional-red-black-tree", + }, + Object { + "deps": Object {}, + "name": "functions-have-names", + "root": "/common/temp/default/node_modules/.pnpm/functions-have-names@1.2.3/node_modules/functions-have-names", + }, + Object { + "deps": Object {}, + "name": "fuse.js", + "root": "/common/temp/default/node_modules/.pnpm/fuse.js@3.6.1/node_modules/fuse.js", + }, + Object { + "deps": Object { + "aproba": 808, + "console-control-strings": 1046, + "has-unicode": 1435, + "object-assign": 1897, + "signal-exit": 2267, + "string-width": 2329, + "strip-ansi": 2341, + "wide-align": 2575, + }, + "name": "gauge", + "root": "/common/temp/default/node_modules/.pnpm/gauge@2.7.4/node_modules/gauge", + }, + Object { + "deps": Object { + "aproba": 809, + "color-support": 1018, + "console-control-strings": 1046, + "has-unicode": 1435, + "object-assign": 1897, + "signal-exit": 2267, + "string-width": 2331, + "strip-ansi": 2343, + "wide-align": 2575, + }, + "name": "gauge", + "root": "/common/temp/default/node_modules/.pnpm/gauge@3.0.2/node_modules/gauge", + }, + Object { + "deps": Object { + "loader-utils": 1737, + }, + "name": "generic-names", + "root": "/common/temp/default/node_modules/.pnpm/generic-names@4.0.0/node_modules/generic-names", + }, + Object { + "deps": Object {}, + "name": "generic-pool", + "root": "/common/temp/default/node_modules/.pnpm/generic-pool@3.9.0/node_modules/generic-pool", + }, + Object { + "deps": Object {}, + "name": "gensync", + "root": "/common/temp/default/node_modules/.pnpm/gensync@1.0.0-beta.2/node_modules/gensync", + }, + Object { + "deps": Object {}, + "name": "get-caller-file", + "root": "/common/temp/default/node_modules/.pnpm/get-caller-file@2.0.5/node_modules/get-caller-file", + }, + Object { + "deps": Object { + "es-errors": 1214, + "function-bind": 1370, + "has-proto": 1432, + "has-symbols": 1433, + "hasown": 1445, + }, + "name": "get-intrinsic", + "root": "/common/temp/default/node_modules/.pnpm/get-intrinsic@1.2.4/node_modules/get-intrinsic", + }, + Object { + "deps": Object {}, + "name": "get-package-type", + "root": "/common/temp/default/node_modules/.pnpm/get-package-type@0.1.0/node_modules/get-package-type", + }, + Object { + "deps": Object {}, + "name": "get-port", + "root": "/common/temp/default/node_modules/.pnpm/get-port@5.1.1/node_modules/get-port", + }, + Object { + "deps": Object { + "pump": 2069, + }, + "name": "get-stream", + "root": "/common/temp/default/node_modules/.pnpm/get-stream@4.1.0/node_modules/get-stream", + }, + Object { + "deps": Object { + "pump": 2069, + }, + "name": "get-stream", + "root": "/common/temp/default/node_modules/.pnpm/get-stream@5.2.0/node_modules/get-stream", + }, + Object { + "deps": Object {}, + "name": "get-stream", + "root": "/common/temp/default/node_modules/.pnpm/get-stream@6.0.1/node_modules/get-stream", + }, + Object { + "deps": Object { + "call-bind": 946, + "es-errors": 1214, + "get-intrinsic": 1381, + }, + "name": "get-symbol-description", + "root": "/common/temp/default/node_modules/.pnpm/get-symbol-description@1.0.2/node_modules/get-symbol-description", + }, + Object { + "deps": Object {}, + "name": "get-value", + "root": "/common/temp/default/node_modules/.pnpm/get-value@2.0.6/node_modules/get-value", + }, + Object { + "deps": Object {}, + "name": "git-repo-info", + "root": "/common/temp/default/node_modules/.pnpm/git-repo-info@2.1.1/node_modules/git-repo-info", + }, + Object { + "deps": Object {}, + "name": "github-from-package", + "root": "/common/temp/default/node_modules/.pnpm/github-from-package@0.0.0/node_modules/github-from-package", + }, + Object { + "deps": Object {}, + "name": "github-slugger", + "root": "/common/temp/default/node_modules/.pnpm/github-slugger@1.5.0/node_modules/github-slugger", + }, + Object { + "deps": Object {}, + "name": "giturl", + "root": "/common/temp/default/node_modules/.pnpm/giturl@1.0.3/node_modules/giturl", + }, + Object { + "deps": Object {}, + "name": "glob-escape", + "root": "/common/temp/default/node_modules/.pnpm/glob-escape@0.0.2/node_modules/glob-escape", + }, + Object { + "deps": Object { + "is-glob": 1568, + "path-dirname": 1962, + }, + "name": "glob-parent", + "root": "/common/temp/default/node_modules/.pnpm/glob-parent@3.1.0/node_modules/glob-parent", + }, + Object { + "deps": Object { + "is-glob": 1569, + }, + "name": "glob-parent", + "root": "/common/temp/default/node_modules/.pnpm/glob-parent@5.1.2/node_modules/glob-parent", + }, + Object { + "deps": Object { + "is-glob": 1569, + }, + "name": "glob-parent", + "root": "/common/temp/default/node_modules/.pnpm/glob-parent@6.0.2/node_modules/glob-parent", + }, + Object { + "deps": Object { + "@types/glob": 581, + "glob": 1401, + }, + "name": "glob-promise", + "root": "/common/temp/default/node_modules/.pnpm/glob-promise@3.4.0_glob@7.2.3/node_modules/glob-promise", + }, + Object { + "deps": Object {}, + "name": "glob-to-regexp", + "root": "/common/temp/default/node_modules/.pnpm/glob-to-regexp@0.3.0/node_modules/glob-to-regexp", + }, + Object { + "deps": Object {}, + "name": "glob-to-regexp", + "root": "/common/temp/default/node_modules/.pnpm/glob-to-regexp@0.4.1/node_modules/glob-to-regexp", + }, + Object { + "deps": Object { + "fs.realpath": 1368, + "inflight": 1516, + "inherits": 1518, + "minimatch": 1821, + "once": 1914, + "path-is-absolute": 1965, + }, + "name": "glob", + "root": "/common/temp/default/node_modules/.pnpm/glob@7.0.6/node_modules/glob", + }, + Object { + "deps": Object { + "fs.realpath": 1368, + "inflight": 1516, + "inherits": 1518, + "minimatch": 1822, + "once": 1914, + "path-is-absolute": 1965, + }, + "name": "glob", + "root": "/common/temp/default/node_modules/.pnpm/glob@7.2.3/node_modules/glob", + }, + Object { + "deps": Object { + "fs.realpath": 1368, + "inflight": 1516, + "inherits": 1518, + "minimatch": 1824, + "once": 1914, + }, + "name": "glob", + "root": "/common/temp/default/node_modules/.pnpm/glob@8.1.0/node_modules/glob", + }, + Object { + "deps": Object { + "ini": 1520, + }, + "name": "global-dirs", + "root": "/common/temp/default/node_modules/.pnpm/global-dirs@3.0.1/node_modules/global-dirs", + }, + Object { + "deps": Object { + "global-prefix": 1406, + "is-windows": 1605, + "resolve-dir": 2176, + }, + "name": "global-modules", + "root": "/common/temp/default/node_modules/.pnpm/global-modules@1.0.0/node_modules/global-modules", + }, + Object { + "deps": Object { + "global-prefix": 1407, + }, + "name": "global-modules", + "root": "/common/temp/default/node_modules/.pnpm/global-modules@2.0.0/node_modules/global-modules", + }, + Object { + "deps": Object { + "expand-tilde": 1288, + "homedir-polyfill": 1458, + "ini": 1519, + "is-windows": 1605, + "which": 2573, + }, + "name": "global-prefix", + "root": "/common/temp/default/node_modules/.pnpm/global-prefix@1.0.2/node_modules/global-prefix", + }, + Object { + "deps": Object { + "ini": 1519, + "kind-of": 1713, + "which": 2573, + }, + "name": "global-prefix", + "root": "/common/temp/default/node_modules/.pnpm/global-prefix@3.0.0/node_modules/global-prefix", + }, + Object { + "deps": Object { + "min-document": 1816, + "process": 2053, + }, + "name": "global", + "root": "/common/temp/default/node_modules/.pnpm/global@4.4.0/node_modules/global", + }, + Object { + "deps": Object {}, + "name": "globals", + "root": "/common/temp/default/node_modules/.pnpm/globals@11.12.0/node_modules/globals", + }, + Object { + "deps": Object { + "type-fest": 2446, + }, + "name": "globals", + "root": "/common/temp/default/node_modules/.pnpm/globals@12.4.0/node_modules/globals", + }, + Object { + "deps": Object { + "type-fest": 2443, + }, + "name": "globals", + "root": "/common/temp/default/node_modules/.pnpm/globals@13.24.0/node_modules/globals", + }, + Object { + "deps": Object {}, + "name": "globals", + "root": "/common/temp/default/node_modules/.pnpm/globals@14.0.0/node_modules/globals", + }, + Object { + "deps": Object { + "define-properties": 1125, + }, + "name": "globalthis", + "root": "/common/temp/default/node_modules/.pnpm/globalthis@1.0.3/node_modules/globalthis", + }, + Object { + "deps": Object { + "array-union": 826, + "dir-glob": 1155, + "fast-glob": 1300, + "ignore": 1502, + "merge2": 1802, + "slash": 2273, + }, + "name": "globby", + "root": "/common/temp/default/node_modules/.pnpm/globby@11.1.0/node_modules/globby", + }, + Object { + "deps": Object { + "@types/glob": 581, + "array-union": 825, + "dir-glob": 1154, + "fast-glob": 1299, + "glob": 1401, + "ignore": 1500, + "pify": 1979, + "slash": 2272, + }, + "name": "globby", + "root": "/common/temp/default/node_modules/.pnpm/globby@9.2.0/node_modules/globby", + }, + Object { + "deps": Object { + "get-intrinsic": 1381, + }, + "name": "gopd", + "root": "/common/temp/default/node_modules/.pnpm/gopd@1.0.1/node_modules/gopd", + }, + Object { + "deps": Object { + "@sindresorhus/is": 466, + "@szmarczak/http-timer": 551, + "@types/cacheable-request": 564, + "@types/responselike": 644, + "cacheable-lookup": 944, + "cacheable-request": 945, + "decompress-response": 1113, + "http2-wrapper": 1485, + "lowercase-keys": 1766, + "p-cancelable": 1927, + "responselike": 2184, + }, + "name": "got", + "root": "/common/temp/default/node_modules/.pnpm/got@11.8.6/node_modules/got", + }, + Object { + "deps": Object {}, + "name": "graceful-fs", + "root": "/common/temp/default/node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs", + }, + Object { + "deps": Object {}, + "name": "graceful-fs", + "root": "/common/temp/default/node_modules/.pnpm/graceful-fs@4.2.4/node_modules/graceful-fs", + }, + Object { + "deps": Object {}, + "name": "grapheme-splitter", + "root": "/common/temp/default/node_modules/.pnpm/grapheme-splitter@1.0.4/node_modules/grapheme-splitter", + }, + Object { + "deps": Object {}, + "name": "graphemer", + "root": "/common/temp/default/node_modules/.pnpm/graphemer@1.4.0/node_modules/graphemer", + }, + Object { + "deps": Object {}, + "name": "graphql", + "root": "/common/temp/default/node_modules/.pnpm/graphql@16.8.1/node_modules/graphql", + }, + Object { + "deps": Object { + "duplexer": 1180, + }, + "name": "gzip-size", + "root": "/common/temp/default/node_modules/.pnpm/gzip-size@6.0.0/node_modules/gzip-size", + }, + Object { + "deps": Object {}, + "name": "handle-thing", + "root": "/common/temp/default/node_modules/.pnpm/handle-thing@2.0.1/node_modules/handle-thing", + }, + Object { + "deps": Object { + "minimist": 1829, + "neo-async": 1862, + "source-map": 2294, + "uglify-js": 2461, + "wordwrap": 2579, + }, + "name": "handlebars", + "root": "/common/temp/default/node_modules/.pnpm/handlebars@4.7.8/node_modules/handlebars", + }, + Object { + "deps": Object {}, + "name": "hard-rejection", + "root": "/common/temp/default/node_modules/.pnpm/hard-rejection@2.1.0/node_modules/hard-rejection", + }, + Object { + "deps": Object {}, + "name": "has-bigints", + "root": "/common/temp/default/node_modules/.pnpm/has-bigints@1.0.2/node_modules/has-bigints", + }, + Object { + "deps": Object {}, + "name": "has-flag", + "root": "/common/temp/default/node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag", + }, + Object { + "deps": Object {}, + "name": "has-flag", + "root": "/common/temp/default/node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag", + }, + Object { + "deps": Object { + "is-glob": 1568, + }, + "name": "has-glob", + "root": "/common/temp/default/node_modules/.pnpm/has-glob@1.0.0/node_modules/has-glob", + }, + Object { + "deps": Object { + "es-define-property": 1213, + }, + "name": "has-property-descriptors", + "root": "/common/temp/default/node_modules/.pnpm/has-property-descriptors@1.0.2/node_modules/has-property-descriptors", + }, + Object { + "deps": Object {}, + "name": "has-proto", + "root": "/common/temp/default/node_modules/.pnpm/has-proto@1.0.3/node_modules/has-proto", + }, + Object { + "deps": Object {}, + "name": "has-symbols", + "root": "/common/temp/default/node_modules/.pnpm/has-symbols@1.0.3/node_modules/has-symbols", + }, + Object { + "deps": Object { + "has-symbols": 1433, + }, + "name": "has-tostringtag", + "root": "/common/temp/default/node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag", + }, + Object { + "deps": Object {}, + "name": "has-unicode", + "root": "/common/temp/default/node_modules/.pnpm/has-unicode@2.0.1/node_modules/has-unicode", + }, + Object { + "deps": Object { + "get-value": 1388, + "has-values": 1438, + "isobject": 1613, + }, + "name": "has-value", + "root": "/common/temp/default/node_modules/.pnpm/has-value@0.3.1/node_modules/has-value", + }, + Object { + "deps": Object { + "get-value": 1388, + "has-values": 1439, + "isobject": 1614, + }, + "name": "has-value", + "root": "/common/temp/default/node_modules/.pnpm/has-value@1.0.0/node_modules/has-value", + }, + Object { + "deps": Object {}, + "name": "has-values", + "root": "/common/temp/default/node_modules/.pnpm/has-values@0.1.4/node_modules/has-values", + }, + Object { + "deps": Object { + "is-number": 1578, + "kind-of": 1712, + }, + "name": "has-values", + "root": "/common/temp/default/node_modules/.pnpm/has-values@1.0.0/node_modules/has-values", + }, + Object { + "deps": Object {}, + "name": "has-yarn", + "root": "/common/temp/default/node_modules/.pnpm/has-yarn@2.1.0/node_modules/has-yarn", + }, + Object { + "deps": Object {}, + "name": "has", + "root": "/common/temp/default/node_modules/.pnpm/has@1.0.4/node_modules/has", + }, + Object { + "deps": Object { + "inherits": 1518, + "safe-buffer": 2207, + }, + "name": "hash-base", + "root": "/common/temp/default/node_modules/.pnpm/hash-base@3.0.4/node_modules/hash-base", + }, + Object { + "deps": Object { + "inherits": 1518, + "readable-stream": 2127, + "safe-buffer": 2207, + }, + "name": "hash-base", + "root": "/common/temp/default/node_modules/.pnpm/hash-base@3.1.0/node_modules/hash-base", + }, + Object { + "deps": Object { + "inherits": 1518, + "minimalistic-assert": 1819, + }, + "name": "hash.js", + "root": "/common/temp/default/node_modules/.pnpm/hash.js@1.1.7/node_modules/hash.js", + }, + Object { + "deps": Object { + "function-bind": 1370, + }, + "name": "hasown", + "root": "/common/temp/default/node_modules/.pnpm/hasown@2.0.2/node_modules/hasown", + }, + Object { + "deps": Object { + "@types/unist": 664, + "comma-separated-tokens": 1024, + "property-information": 2061, + "space-separated-tokens": 2296, + "style-to-object": 2356, + "unist-util-is": 2478, + "web-namespaces": 2540, + }, + "name": "hast-to-hyperscript", + "root": "/common/temp/default/node_modules/.pnpm/hast-to-hyperscript@9.0.1/node_modules/hast-to-hyperscript", + }, + Object { + "deps": Object { + "@types/parse5": 632, + "hastscript": 1451, + "property-information": 2061, + "vfile": 2529, + "vfile-location": 2527, + "web-namespaces": 2540, + }, + "name": "hast-util-from-parse5", + "root": "/common/temp/default/node_modules/.pnpm/hast-util-from-parse5@6.0.1/node_modules/hast-util-from-parse5", + }, + Object { + "deps": Object {}, + "name": "hast-util-parse-selector", + "root": "/common/temp/default/node_modules/.pnpm/hast-util-parse-selector@2.2.5/node_modules/hast-util-parse-selector", + }, + Object { + "deps": Object { + "@types/hast": 583, + "hast-util-from-parse5": 1447, + "hast-util-to-parse5": 1450, + "html-void-elements": 1468, + "parse5": 1956, + "unist-util-position": 2479, + "vfile": 2529, + "web-namespaces": 2540, + "xtend": 2606, + "zwitch": 2629, + }, + "name": "hast-util-raw", + "root": "/common/temp/default/node_modules/.pnpm/hast-util-raw@6.0.1/node_modules/hast-util-raw", + }, + Object { + "deps": Object { + "hast-to-hyperscript": 1446, + "property-information": 2061, + "web-namespaces": 2540, + "xtend": 2606, + "zwitch": 2629, + }, + "name": "hast-util-to-parse5", + "root": "/common/temp/default/node_modules/.pnpm/hast-util-to-parse5@6.0.0/node_modules/hast-util-to-parse5", + }, + Object { + "deps": Object { + "@types/hast": 583, + "comma-separated-tokens": 1024, + "hast-util-parse-selector": 1448, + "property-information": 2061, + "space-separated-tokens": 2296, + }, + "name": "hastscript", + "root": "/common/temp/default/node_modules/.pnpm/hastscript@6.0.0/node_modules/hastscript", + }, + Object { + "deps": Object {}, + "name": "he", + "root": "/common/temp/default/node_modules/.pnpm/he@1.2.0/node_modules/he", + }, + Object { + "deps": Object { + "chalk": 964, + "is-es2016-keyword": 1557, + "js-tokens": 1674, + }, + "name": "highlight-es", + "root": "/common/temp/default/node_modules/.pnpm/highlight-es@1.0.3/node_modules/highlight-es", + }, + Object { + "deps": Object {}, + "name": "highlight.js", + "root": "/common/temp/default/node_modules/.pnpm/highlight.js@10.7.3/node_modules/highlight.js", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + }, + "name": "history", + "root": "/common/temp/default/node_modules/.pnpm/history@5.0.0/node_modules/history", + }, + Object { + "deps": Object { + "hash.js": 1444, + "minimalistic-assert": 1819, + "minimalistic-crypto-utils": 1820, + }, + "name": "hmac-drbg", + "root": "/common/temp/default/node_modules/.pnpm/hmac-drbg@1.0.1/node_modules/hmac-drbg", + }, + Object { + "deps": Object { + "react-is": 2106, + }, + "name": "hoist-non-react-statics", + "root": "/common/temp/default/node_modules/.pnpm/hoist-non-react-statics@3.3.2/node_modules/hoist-non-react-statics", + }, + Object { + "deps": Object { + "parse-passwd": 1953, + }, + "name": "homedir-polyfill", + "root": "/common/temp/default/node_modules/.pnpm/homedir-polyfill@1.0.3/node_modules/homedir-polyfill", + }, + Object { + "deps": Object {}, + "name": "hosted-git-info", + "root": "/common/temp/default/node_modules/.pnpm/hosted-git-info@2.8.9/node_modules/hosted-git-info", + }, + Object { + "deps": Object { + "lru-cache": 1769, + }, + "name": "hosted-git-info", + "root": "/common/temp/default/node_modules/.pnpm/hosted-git-info@4.1.0/node_modules/hosted-git-info", + }, + Object { + "deps": Object { + "inherits": 1518, + "obuf": 1910, + "readable-stream": 2126, + "wbuf": 2538, + }, + "name": "hpack.js", + "root": "/common/temp/default/node_modules/.pnpm/hpack.js@2.1.6/node_modules/hpack.js", + }, + Object { + "deps": Object { + "whatwg-encoding": 2562, + }, + "name": "html-encoding-sniffer", + "root": "/common/temp/default/node_modules/.pnpm/html-encoding-sniffer@3.0.0/node_modules/html-encoding-sniffer", + }, + Object { + "deps": Object {}, + "name": "html-entities", + "root": "/common/temp/default/node_modules/.pnpm/html-entities@2.5.2/node_modules/html-entities", + }, + Object { + "deps": Object {}, + "name": "html-escaper", + "root": "/common/temp/default/node_modules/.pnpm/html-escaper@2.0.2/node_modules/html-escaper", + }, + Object { + "deps": Object { + "camel-case": 951, + "clean-css": 987, + "commander": 1028, + "he": 1452, + "param-case": 1948, + "relateurl": 2154, + "terser": 2383, + }, + "name": "html-minifier-terser", + "root": "/common/temp/default/node_modules/.pnpm/html-minifier-terser@5.1.1/node_modules/html-minifier-terser", + }, + Object { + "deps": Object { + "camel-case": 951, + "clean-css": 988, + "commander": 1031, + "he": 1452, + "param-case": 1948, + "relateurl": 2154, + "terser": 2384, + }, + "name": "html-minifier-terser", + "root": "/common/temp/default/node_modules/.pnpm/html-minifier-terser@6.1.0/node_modules/html-minifier-terser", + }, + Object { + "deps": Object {}, + "name": "html-tags", + "root": "/common/temp/default/node_modules/.pnpm/html-tags@3.3.1/node_modules/html-tags", + }, + Object { + "deps": Object {}, + "name": "html-void-elements", + "root": "/common/temp/default/node_modules/.pnpm/html-void-elements@1.0.5/node_modules/html-void-elements", + }, + Object { + "deps": Object { + "@types/html-minifier-terser": 586, + "@types/tapable": 658, + "@types/webpack": 672, + "html-minifier-terser": 1465, + "loader-utils": 1734, + "lodash": 1760, + "pretty-error": 2043, + "tapable": 2372, + "util.promisify": 2509, + "webpack": 2558, + }, + "name": "html-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/html-webpack-plugin@4.5.2_webpack@4.47.0/node_modules/html-webpack-plugin", + }, + Object { + "deps": Object { + "@types/html-minifier-terser": 587, + "html-minifier-terser": 1466, + "lodash": 1760, + "pretty-error": 2044, + "tapable": 2373, + "webpack": 2559, + }, + "name": "html-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/html-webpack-plugin@5.5.4_webpack@5.82.1/node_modules/html-webpack-plugin", + }, + Object { + "deps": Object { + "domelementtype": 1165, + "domhandler": 1167, + "domutils": 1169, + "entities": 1203, + }, + "name": "htmlparser2", + "root": "/common/temp/default/node_modules/.pnpm/htmlparser2@6.1.0/node_modules/htmlparser2", + }, + Object { + "deps": Object { + "domelementtype": 1165, + "domhandler": 1168, + "domutils": 1170, + "entities": 1204, + }, + "name": "htmlparser2", + "root": "/common/temp/default/node_modules/.pnpm/htmlparser2@8.0.2/node_modules/htmlparser2", + }, + Object { + "deps": Object {}, + "name": "http-cache-semantics", + "root": "/common/temp/default/node_modules/.pnpm/http-cache-semantics@4.1.1/node_modules/http-cache-semantics", + }, + Object { + "deps": Object {}, + "name": "http-deceiver", + "root": "/common/temp/default/node_modules/.pnpm/http-deceiver@1.2.7/node_modules/http-deceiver", + }, + Object { + "deps": Object { + "depd": 1133, + "inherits": 1517, + "setprototypeof": 2256, + "statuses": 2314, + }, + "name": "http-errors", + "root": "/common/temp/default/node_modules/.pnpm/http-errors@1.6.3/node_modules/http-errors", + }, + Object { + "deps": Object { + "depd": 1133, + "inherits": 1518, + "setprototypeof": 2257, + "statuses": 2314, + "toidentifier": 2407, + }, + "name": "http-errors", + "root": "/common/temp/default/node_modules/.pnpm/http-errors@1.8.1/node_modules/http-errors", + }, + Object { + "deps": Object { + "depd": 1134, + "inherits": 1518, + "setprototypeof": 2257, + "statuses": 2315, + "toidentifier": 2407, + }, + "name": "http-errors", + "root": "/common/temp/default/node_modules/.pnpm/http-errors@2.0.0/node_modules/http-errors", + }, + Object { + "deps": Object {}, + "name": "http-parser-js", + "root": "/common/temp/default/node_modules/.pnpm/http-parser-js@0.5.8/node_modules/http-parser-js", + }, + Object { + "deps": Object { + "@tootallnate/once": 552, + "agent-base": 775, + "debug": 1106, + }, + "name": "http-proxy-agent", + "root": "/common/temp/default/node_modules/.pnpm/http-proxy-agent@4.0.1/node_modules/http-proxy-agent", + }, + Object { + "deps": Object { + "@tootallnate/once": 553, + "agent-base": 775, + "debug": 1106, + }, + "name": "http-proxy-agent", + "root": "/common/temp/default/node_modules/.pnpm/http-proxy-agent@5.0.0/node_modules/http-proxy-agent", + }, + Object { + "deps": Object { + "agent-base": 776, + "debug": 1106, + }, + "name": "http-proxy-agent", + "root": "/common/temp/default/node_modules/.pnpm/http-proxy-agent@7.0.2/node_modules/http-proxy-agent", + }, + Object { + "deps": Object { + "@types/express": 579, + "@types/http-proxy": 590, + "http-proxy": 1483, + "is-glob": 1569, + "is-plain-obj": 1585, + "micromatch": 1806, + }, + "name": "http-proxy-middleware", + "root": "/common/temp/default/node_modules/.pnpm/http-proxy-middleware@2.0.6/node_modules/http-proxy-middleware", + }, + Object { + "deps": Object { + "eventemitter3": 1278, + "follow-redirects": 1345, + "requires-port": 2171, + }, + "name": "http-proxy", + "root": "/common/temp/default/node_modules/.pnpm/http-proxy@1.18.1/node_modules/http-proxy", + }, + Object { + "deps": Object { + "@types/express": 579, + "merge-descriptors": 1800, + "send": 2240, + "setprototypeof": 2257, + }, + "name": "http2-express-bridge", + "root": "/common/temp/default/node_modules/.pnpm/http2-express-bridge@1.0.7_@types+express@4.17.21/node_modules/http2-express-bridge", + }, + Object { + "deps": Object { + "quick-lru": 2086, + "resolve-alpn": 2173, + }, + "name": "http2-wrapper", + "root": "/common/temp/default/node_modules/.pnpm/http2-wrapper@1.0.3/node_modules/http2-wrapper", + }, + Object { + "deps": Object {}, + "name": "https-browserify", + "root": "/common/temp/default/node_modules/.pnpm/https-browserify@1.0.0/node_modules/https-browserify", + }, + Object { + "deps": Object { + "agent-base": 774, + "debug": 1106, + }, + "name": "https-proxy-agent", + "root": "/common/temp/default/node_modules/.pnpm/https-proxy-agent@4.0.0/node_modules/https-proxy-agent", + }, + Object { + "deps": Object { + "agent-base": 775, + "debug": 1106, + }, + "name": "https-proxy-agent", + "root": "/common/temp/default/node_modules/.pnpm/https-proxy-agent@5.0.1/node_modules/https-proxy-agent", + }, + Object { + "deps": Object { + "agent-base": 776, + "debug": 1106, + }, + "name": "https-proxy-agent", + "root": "/common/temp/default/node_modules/.pnpm/https-proxy-agent@7.0.4/node_modules/https-proxy-agent", + }, + Object { + "deps": Object {}, + "name": "human-signals", + "root": "/common/temp/default/node_modules/.pnpm/human-signals@2.1.0/node_modules/human-signals", + }, + Object { + "deps": Object { + "ms": 1850, + }, + "name": "humanize-ms", + "root": "/common/temp/default/node_modules/.pnpm/humanize-ms@1.2.1/node_modules/humanize-ms", + }, + Object { + "deps": Object { + "safer-buffer": 2211, + }, + "name": "iconv-lite", + "root": "/common/temp/default/node_modules/.pnpm/iconv-lite@0.4.24/node_modules/iconv-lite", + }, + Object { + "deps": Object { + "safer-buffer": 2211, + }, + "name": "iconv-lite", + "root": "/common/temp/default/node_modules/.pnpm/iconv-lite@0.6.3/node_modules/iconv-lite", + }, + Object { + "deps": Object { + "postcss": 2037, + }, + "name": "icss-utils", + "root": "/common/temp/default/node_modules/.pnpm/icss-utils@4.1.1/node_modules/icss-utils", + }, + Object { + "deps": Object { + "postcss": 2038, + }, + "name": "icss-utils", + "root": "/common/temp/default/node_modules/.pnpm/icss-utils@5.1.0_postcss@8.4.36/node_modules/icss-utils", + }, + Object { + "deps": Object {}, + "name": "ieee754", + "root": "/common/temp/default/node_modules/.pnpm/ieee754@1.1.13/node_modules/ieee754", + }, + Object { + "deps": Object {}, + "name": "ieee754", + "root": "/common/temp/default/node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754", + }, + Object { + "deps": Object {}, + "name": "iferr", + "root": "/common/temp/default/node_modules/.pnpm/iferr@0.1.5/node_modules/iferr", + }, + Object { + "deps": Object { + "minimatch": 1821, + }, + "name": "ignore-walk", + "root": "/common/temp/default/node_modules/.pnpm/ignore-walk@3.0.4/node_modules/ignore-walk", + }, + Object { + "deps": Object {}, + "name": "ignore", + "root": "/common/temp/default/node_modules/.pnpm/ignore@4.0.6/node_modules/ignore", + }, + Object { + "deps": Object {}, + "name": "ignore", + "root": "/common/temp/default/node_modules/.pnpm/ignore@5.1.9/node_modules/ignore", + }, + Object { + "deps": Object {}, + "name": "ignore", + "root": "/common/temp/default/node_modules/.pnpm/ignore@5.3.1/node_modules/ignore", + }, + Object { + "deps": Object {}, + "name": "immediate", + "root": "/common/temp/default/node_modules/.pnpm/immediate@3.0.6/node_modules/immediate", + }, + Object { + "deps": Object {}, + "name": "immer", + "root": "/common/temp/default/node_modules/.pnpm/immer@9.0.21/node_modules/immer", + }, + Object { + "deps": Object {}, + "name": "immutable", + "root": "/common/temp/default/node_modules/.pnpm/immutable@4.3.5/node_modules/immutable", + }, + Object { + "deps": Object { + "parent-module": 1949, + "resolve-from": 2178, + }, + "name": "import-fresh", + "root": "/common/temp/default/node_modules/.pnpm/import-fresh@3.3.0/node_modules/import-fresh", + }, + Object { + "deps": Object {}, + "name": "import-lazy", + "root": "/common/temp/default/node_modules/.pnpm/import-lazy@2.1.0/node_modules/import-lazy", + }, + Object { + "deps": Object {}, + "name": "import-lazy", + "root": "/common/temp/default/node_modules/.pnpm/import-lazy@4.0.0/node_modules/import-lazy", + }, + Object { + "deps": Object { + "pkg-dir": 1985, + "resolve-cwd": 2174, + }, + "name": "import-local", + "root": "/common/temp/default/node_modules/.pnpm/import-local@2.0.0/node_modules/import-local", + }, + Object { + "deps": Object { + "pkg-dir": 1986, + "resolve-cwd": 2175, + }, + "name": "import-local", + "root": "/common/temp/default/node_modules/.pnpm/import-local@3.1.0/node_modules/import-local", + }, + Object { + "deps": Object {}, + "name": "imurmurhash", + "root": "/common/temp/default/node_modules/.pnpm/imurmurhash@0.1.4/node_modules/imurmurhash", + }, + Object { + "deps": Object {}, + "name": "indent-string", + "root": "/common/temp/default/node_modules/.pnpm/indent-string@4.0.0/node_modules/indent-string", + }, + Object { + "deps": Object {}, + "name": "indent-string", + "root": "/common/temp/default/node_modules/.pnpm/indent-string@5.0.0/node_modules/indent-string", + }, + Object { + "deps": Object {}, + "name": "individual", + "root": "/common/temp/default/node_modules/.pnpm/individual@3.0.0/node_modules/individual", + }, + Object { + "deps": Object {}, + "name": "infer-owner", + "root": "/common/temp/default/node_modules/.pnpm/infer-owner@1.0.4/node_modules/infer-owner", + }, + Object { + "deps": Object { + "once": 1914, + "wrappy": 2587, + }, + "name": "inflight", + "root": "/common/temp/default/node_modules/.pnpm/inflight@1.0.6/node_modules/inflight", + }, + Object { + "deps": Object {}, + "name": "inherits", + "root": "/common/temp/default/node_modules/.pnpm/inherits@2.0.3/node_modules/inherits", + }, + Object { + "deps": Object {}, + "name": "inherits", + "root": "/common/temp/default/node_modules/.pnpm/inherits@2.0.4/node_modules/inherits", + }, + Object { + "deps": Object {}, + "name": "ini", + "root": "/common/temp/default/node_modules/.pnpm/ini@1.3.8/node_modules/ini", + }, + Object { + "deps": Object {}, + "name": "ini", + "root": "/common/temp/default/node_modules/.pnpm/ini@2.0.0/node_modules/ini", + }, + Object { + "deps": Object {}, + "name": "inline-style-parser", + "root": "/common/temp/default/node_modules/.pnpm/inline-style-parser@0.1.1/node_modules/inline-style-parser", + }, + Object { + "deps": Object {}, + "name": "inpath", + "root": "/common/temp/default/node_modules/.pnpm/inpath@1.0.2/node_modules/inpath", + }, + Object { + "deps": Object { + "ansi-escapes": 793, + "chalk": 966, + "cli-cursor": 992, + "cli-width": 996, + "external-editor": 1294, + "figures": 1317, + "lodash": 1760, + "mute-stream": 1853, + "run-async": 2199, + "rxjs": 2202, + "string-width": 2331, + "strip-ansi": 2343, + "through": 2393, + }, + "name": "inquirer", + "root": "/common/temp/default/node_modules/.pnpm/inquirer@7.3.3/node_modules/inquirer", + }, + Object { + "deps": Object { + "es-errors": 1214, + "hasown": 1445, + "side-channel": 2266, + }, + "name": "internal-slot", + "root": "/common/temp/default/node_modules/.pnpm/internal-slot@1.0.7/node_modules/internal-slot", + }, + Object { + "deps": Object {}, + "name": "interpret", + "root": "/common/temp/default/node_modules/.pnpm/interpret@1.4.0/node_modules/interpret", + }, + Object { + "deps": Object {}, + "name": "interpret", + "root": "/common/temp/default/node_modules/.pnpm/interpret@2.2.0/node_modules/interpret", + }, + Object { + "deps": Object { + "loose-envify": 1764, + }, + "name": "invariant", + "root": "/common/temp/default/node_modules/.pnpm/invariant@2.2.4/node_modules/invariant", + }, + Object { + "deps": Object { + "jsbn": 1679, + "sprintf-js": 2306, + }, + "name": "ip-address", + "root": "/common/temp/default/node_modules/.pnpm/ip-address@9.0.5/node_modules/ip-address", + }, + Object { + "deps": Object {}, + "name": "ip", + "root": "/common/temp/default/node_modules/.pnpm/ip@1.1.9/node_modules/ip", + }, + Object { + "deps": Object {}, + "name": "ipaddr.js", + "root": "/common/temp/default/node_modules/.pnpm/ipaddr.js@1.9.1/node_modules/ipaddr.js", + }, + Object { + "deps": Object {}, + "name": "ipaddr.js", + "root": "/common/temp/default/node_modules/.pnpm/ipaddr.js@2.1.0/node_modules/ipaddr.js", + }, + Object { + "deps": Object {}, + "name": "is-absolute-url", + "root": "/common/temp/default/node_modules/.pnpm/is-absolute-url@3.0.3/node_modules/is-absolute-url", + }, + Object { + "deps": Object { + "hasown": 1445, + }, + "name": "is-accessor-descriptor", + "root": "/common/temp/default/node_modules/.pnpm/is-accessor-descriptor@1.0.1/node_modules/is-accessor-descriptor", + }, + Object { + "deps": Object {}, + "name": "is-alphabetical", + "root": "/common/temp/default/node_modules/.pnpm/is-alphabetical@1.0.4/node_modules/is-alphabetical", + }, + Object { + "deps": Object { + "is-alphabetical": 1534, + "is-decimal": 1552, + }, + "name": "is-alphanumerical", + "root": "/common/temp/default/node_modules/.pnpm/is-alphanumerical@1.0.4/node_modules/is-alphanumerical", + }, + Object { + "deps": Object { + "call-bind": 946, + "has-tostringtag": 1434, + }, + "name": "is-arguments", + "root": "/common/temp/default/node_modules/.pnpm/is-arguments@1.1.1/node_modules/is-arguments", + }, + Object { + "deps": Object { + "call-bind": 946, + "get-intrinsic": 1381, + }, + "name": "is-array-buffer", + "root": "/common/temp/default/node_modules/.pnpm/is-array-buffer@3.0.4/node_modules/is-array-buffer", + }, + Object { + "deps": Object {}, + "name": "is-arrayish", + "root": "/common/temp/default/node_modules/.pnpm/is-arrayish@0.2.1/node_modules/is-arrayish", + }, + Object { + "deps": Object { + "has-tostringtag": 1434, + }, + "name": "is-async-function", + "root": "/common/temp/default/node_modules/.pnpm/is-async-function@2.0.0/node_modules/is-async-function", + }, + Object { + "deps": Object { + "has-bigints": 1427, + }, + "name": "is-bigint", + "root": "/common/temp/default/node_modules/.pnpm/is-bigint@1.0.4/node_modules/is-bigint", + }, + Object { + "deps": Object { + "binary-extensions": 894, + }, + "name": "is-binary-path", + "root": "/common/temp/default/node_modules/.pnpm/is-binary-path@1.0.1/node_modules/is-binary-path", + }, + Object { + "deps": Object { + "binary-extensions": 895, + }, + "name": "is-binary-path", + "root": "/common/temp/default/node_modules/.pnpm/is-binary-path@2.1.0/node_modules/is-binary-path", + }, + Object { + "deps": Object { + "call-bind": 946, + "has-tostringtag": 1434, + }, + "name": "is-boolean-object", + "root": "/common/temp/default/node_modules/.pnpm/is-boolean-object@1.1.2/node_modules/is-boolean-object", + }, + Object { + "deps": Object {}, + "name": "is-buffer", + "root": "/common/temp/default/node_modules/.pnpm/is-buffer@1.1.6/node_modules/is-buffer", + }, + Object { + "deps": Object {}, + "name": "is-buffer", + "root": "/common/temp/default/node_modules/.pnpm/is-buffer@2.0.5/node_modules/is-buffer", + }, + Object { + "deps": Object {}, + "name": "is-callable", + "root": "/common/temp/default/node_modules/.pnpm/is-callable@1.2.7/node_modules/is-callable", + }, + Object { + "deps": Object { + "ci-info": 982, + }, + "name": "is-ci", + "root": "/common/temp/default/node_modules/.pnpm/is-ci@2.0.0/node_modules/is-ci", + }, + Object { + "deps": Object { + "hasown": 1445, + }, + "name": "is-core-module", + "root": "/common/temp/default/node_modules/.pnpm/is-core-module@2.13.1/node_modules/is-core-module", + }, + Object { + "deps": Object { + "hasown": 1445, + }, + "name": "is-data-descriptor", + "root": "/common/temp/default/node_modules/.pnpm/is-data-descriptor@1.0.1/node_modules/is-data-descriptor", + }, + Object { + "deps": Object { + "is-typed-array": 1597, + }, + "name": "is-data-view", + "root": "/common/temp/default/node_modules/.pnpm/is-data-view@1.0.1/node_modules/is-data-view", + }, + Object { + "deps": Object { + "has-tostringtag": 1434, + }, + "name": "is-date-object", + "root": "/common/temp/default/node_modules/.pnpm/is-date-object@1.0.5/node_modules/is-date-object", + }, + Object { + "deps": Object {}, + "name": "is-decimal", + "root": "/common/temp/default/node_modules/.pnpm/is-decimal@1.0.4/node_modules/is-decimal", + }, + Object { + "deps": Object { + "is-accessor-descriptor": 1533, + "is-data-descriptor": 1549, + }, + "name": "is-descriptor", + "root": "/common/temp/default/node_modules/.pnpm/is-descriptor@0.1.7/node_modules/is-descriptor", + }, + Object { + "deps": Object { + "is-accessor-descriptor": 1533, + "is-data-descriptor": 1549, + }, + "name": "is-descriptor", + "root": "/common/temp/default/node_modules/.pnpm/is-descriptor@1.0.3/node_modules/is-descriptor", + }, + Object { + "deps": Object {}, + "name": "is-docker", + "root": "/common/temp/default/node_modules/.pnpm/is-docker@2.2.1/node_modules/is-docker", + }, + Object { + "deps": Object { + "is-object": 1581, + "is-window": 1604, + }, + "name": "is-dom", + "root": "/common/temp/default/node_modules/.pnpm/is-dom@1.1.0/node_modules/is-dom", + }, + Object { + "deps": Object {}, + "name": "is-es2016-keyword", + "root": "/common/temp/default/node_modules/.pnpm/is-es2016-keyword@1.0.0/node_modules/is-es2016-keyword", + }, + Object { + "deps": Object {}, + "name": "is-extendable", + "root": "/common/temp/default/node_modules/.pnpm/is-extendable@0.1.1/node_modules/is-extendable", + }, + Object { + "deps": Object { + "is-plain-object": 1586, + }, + "name": "is-extendable", + "root": "/common/temp/default/node_modules/.pnpm/is-extendable@1.0.1/node_modules/is-extendable", + }, + Object { + "deps": Object {}, + "name": "is-extglob", + "root": "/common/temp/default/node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob", + }, + Object { + "deps": Object { + "call-bind": 946, + }, + "name": "is-finalizationregistry", + "root": "/common/temp/default/node_modules/.pnpm/is-finalizationregistry@1.0.2/node_modules/is-finalizationregistry", + }, + Object { + "deps": Object { + "number-is-nan": 1895, + }, + "name": "is-fullwidth-code-point", + "root": "/common/temp/default/node_modules/.pnpm/is-fullwidth-code-point@1.0.0/node_modules/is-fullwidth-code-point", + }, + Object { + "deps": Object {}, + "name": "is-fullwidth-code-point", + "root": "/common/temp/default/node_modules/.pnpm/is-fullwidth-code-point@2.0.0/node_modules/is-fullwidth-code-point", + }, + Object { + "deps": Object {}, + "name": "is-fullwidth-code-point", + "root": "/common/temp/default/node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point", + }, + Object { + "deps": Object {}, + "name": "is-function", + "root": "/common/temp/default/node_modules/.pnpm/is-function@1.0.2/node_modules/is-function", + }, + Object { + "deps": Object {}, + "name": "is-generator-fn", + "root": "/common/temp/default/node_modules/.pnpm/is-generator-fn@2.1.0/node_modules/is-generator-fn", + }, + Object { + "deps": Object { + "has-tostringtag": 1434, + }, + "name": "is-generator-function", + "root": "/common/temp/default/node_modules/.pnpm/is-generator-function@1.0.10/node_modules/is-generator-function", + }, + Object { + "deps": Object { + "is-extglob": 1560, + }, + "name": "is-glob", + "root": "/common/temp/default/node_modules/.pnpm/is-glob@3.1.0/node_modules/is-glob", + }, + Object { + "deps": Object { + "is-extglob": 1560, + }, + "name": "is-glob", + "root": "/common/temp/default/node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob", + }, + Object { + "deps": Object {}, + "name": "is-hexadecimal", + "root": "/common/temp/default/node_modules/.pnpm/is-hexadecimal@1.0.4/node_modules/is-hexadecimal", + }, + Object { + "deps": Object { + "global-dirs": 1403, + "is-path-inside": 1582, + }, + "name": "is-installed-globally", + "root": "/common/temp/default/node_modules/.pnpm/is-installed-globally@0.4.0/node_modules/is-installed-globally", + }, + Object { + "deps": Object {}, + "name": "is-interactive", + "root": "/common/temp/default/node_modules/.pnpm/is-interactive@1.0.0/node_modules/is-interactive", + }, + Object { + "deps": Object {}, + "name": "is-lambda", + "root": "/common/temp/default/node_modules/.pnpm/is-lambda@1.0.1/node_modules/is-lambda", + }, + Object { + "deps": Object {}, + "name": "is-map", + "root": "/common/temp/default/node_modules/.pnpm/is-map@2.0.3/node_modules/is-map", + }, + Object { + "deps": Object {}, + "name": "is-negative-zero", + "root": "/common/temp/default/node_modules/.pnpm/is-negative-zero@2.0.3/node_modules/is-negative-zero", + }, + Object { + "deps": Object {}, + "name": "is-npm", + "root": "/common/temp/default/node_modules/.pnpm/is-npm@5.0.0/node_modules/is-npm", + }, + Object { + "deps": Object { + "has-tostringtag": 1434, + }, + "name": "is-number-object", + "root": "/common/temp/default/node_modules/.pnpm/is-number-object@1.0.7/node_modules/is-number-object", + }, + Object { + "deps": Object { + "kind-of": 1711, + }, + "name": "is-number", + "root": "/common/temp/default/node_modules/.pnpm/is-number@3.0.0/node_modules/is-number", + }, + Object { + "deps": Object {}, + "name": "is-number", + "root": "/common/temp/default/node_modules/.pnpm/is-number@7.0.0/node_modules/is-number", + }, + Object { + "deps": Object {}, + "name": "is-obj", + "root": "/common/temp/default/node_modules/.pnpm/is-obj@2.0.0/node_modules/is-obj", + }, + Object { + "deps": Object {}, + "name": "is-object", + "root": "/common/temp/default/node_modules/.pnpm/is-object@1.0.2/node_modules/is-object", + }, + Object { + "deps": Object {}, + "name": "is-path-inside", + "root": "/common/temp/default/node_modules/.pnpm/is-path-inside@3.0.3/node_modules/is-path-inside", + }, + Object { + "deps": Object {}, + "name": "is-plain-obj", + "root": "/common/temp/default/node_modules/.pnpm/is-plain-obj@1.1.0/node_modules/is-plain-obj", + }, + Object { + "deps": Object {}, + "name": "is-plain-obj", + "root": "/common/temp/default/node_modules/.pnpm/is-plain-obj@2.1.0/node_modules/is-plain-obj", + }, + Object { + "deps": Object {}, + "name": "is-plain-obj", + "root": "/common/temp/default/node_modules/.pnpm/is-plain-obj@3.0.0/node_modules/is-plain-obj", + }, + Object { + "deps": Object { + "isobject": 1614, + }, + "name": "is-plain-object", + "root": "/common/temp/default/node_modules/.pnpm/is-plain-object@2.0.4/node_modules/is-plain-object", + }, + Object { + "deps": Object {}, + "name": "is-plain-object", + "root": "/common/temp/default/node_modules/.pnpm/is-plain-object@5.0.0/node_modules/is-plain-object", + }, + Object { + "deps": Object {}, + "name": "is-potential-custom-element-name", + "root": "/common/temp/default/node_modules/.pnpm/is-potential-custom-element-name@1.0.1/node_modules/is-potential-custom-element-name", + }, + Object { + "deps": Object { + "call-bind": 946, + "has-tostringtag": 1434, + }, + "name": "is-regex", + "root": "/common/temp/default/node_modules/.pnpm/is-regex@1.1.4/node_modules/is-regex", + }, + Object { + "deps": Object {}, + "name": "is-set", + "root": "/common/temp/default/node_modules/.pnpm/is-set@2.0.3/node_modules/is-set", + }, + Object { + "deps": Object { + "call-bind": 946, + }, + "name": "is-shared-array-buffer", + "root": "/common/temp/default/node_modules/.pnpm/is-shared-array-buffer@1.0.3/node_modules/is-shared-array-buffer", + }, + Object { + "deps": Object {}, + "name": "is-stream", + "root": "/common/temp/default/node_modules/.pnpm/is-stream@1.1.0/node_modules/is-stream", + }, + Object { + "deps": Object {}, + "name": "is-stream", + "root": "/common/temp/default/node_modules/.pnpm/is-stream@2.0.1/node_modules/is-stream", + }, + Object { + "deps": Object { + "has-tostringtag": 1434, + }, + "name": "is-string", + "root": "/common/temp/default/node_modules/.pnpm/is-string@1.0.7/node_modules/is-string", + }, + Object { + "deps": Object { + "better-path-resolve": 891, + }, + "name": "is-subdir", + "root": "/common/temp/default/node_modules/.pnpm/is-subdir@1.2.0/node_modules/is-subdir", + }, + Object { + "deps": Object { + "has-symbols": 1433, + }, + "name": "is-symbol", + "root": "/common/temp/default/node_modules/.pnpm/is-symbol@1.0.4/node_modules/is-symbol", + }, + Object { + "deps": Object { + "which-typed-array": 2572, + }, + "name": "is-typed-array", + "root": "/common/temp/default/node_modules/.pnpm/is-typed-array@1.1.13/node_modules/is-typed-array", + }, + Object { + "deps": Object {}, + "name": "is-typedarray", + "root": "/common/temp/default/node_modules/.pnpm/is-typedarray@1.0.0/node_modules/is-typedarray", + }, + Object { + "deps": Object {}, + "name": "is-unicode-supported", + "root": "/common/temp/default/node_modules/.pnpm/is-unicode-supported@0.1.0/node_modules/is-unicode-supported", + }, + Object { + "deps": Object {}, + "name": "is-weakmap", + "root": "/common/temp/default/node_modules/.pnpm/is-weakmap@2.0.2/node_modules/is-weakmap", + }, + Object { + "deps": Object { + "call-bind": 946, + }, + "name": "is-weakref", + "root": "/common/temp/default/node_modules/.pnpm/is-weakref@1.0.2/node_modules/is-weakref", + }, + Object { + "deps": Object { + "call-bind": 946, + "get-intrinsic": 1381, + }, + "name": "is-weakset", + "root": "/common/temp/default/node_modules/.pnpm/is-weakset@2.0.3/node_modules/is-weakset", + }, + Object { + "deps": Object {}, + "name": "is-whitespace-character", + "root": "/common/temp/default/node_modules/.pnpm/is-whitespace-character@1.0.4/node_modules/is-whitespace-character", + }, + Object { + "deps": Object {}, + "name": "is-window", + "root": "/common/temp/default/node_modules/.pnpm/is-window@1.0.2/node_modules/is-window", + }, + Object { + "deps": Object {}, + "name": "is-windows", + "root": "/common/temp/default/node_modules/.pnpm/is-windows@1.0.2/node_modules/is-windows", + }, + Object { + "deps": Object {}, + "name": "is-word-character", + "root": "/common/temp/default/node_modules/.pnpm/is-word-character@1.0.4/node_modules/is-word-character", + }, + Object { + "deps": Object {}, + "name": "is-wsl", + "root": "/common/temp/default/node_modules/.pnpm/is-wsl@1.1.0/node_modules/is-wsl", + }, + Object { + "deps": Object { + "is-docker": 1555, + }, + "name": "is-wsl", + "root": "/common/temp/default/node_modules/.pnpm/is-wsl@2.2.0/node_modules/is-wsl", + }, + Object { + "deps": Object {}, + "name": "is-yarn-global", + "root": "/common/temp/default/node_modules/.pnpm/is-yarn-global@0.3.0/node_modules/is-yarn-global", + }, + Object { + "deps": Object {}, + "name": "isarray", + "root": "/common/temp/default/node_modules/.pnpm/isarray@1.0.0/node_modules/isarray", + }, + Object { + "deps": Object {}, + "name": "isarray", + "root": "/common/temp/default/node_modules/.pnpm/isarray@2.0.5/node_modules/isarray", + }, + Object { + "deps": Object {}, + "name": "isexe", + "root": "/common/temp/default/node_modules/.pnpm/isexe@2.0.0/node_modules/isexe", + }, + Object { + "deps": Object { + "isarray": 1610, + }, + "name": "isobject", + "root": "/common/temp/default/node_modules/.pnpm/isobject@2.1.0/node_modules/isobject", + }, + Object { + "deps": Object {}, + "name": "isobject", + "root": "/common/temp/default/node_modules/.pnpm/isobject@3.0.1/node_modules/isobject", + }, + Object { + "deps": Object {}, + "name": "isobject", + "root": "/common/temp/default/node_modules/.pnpm/isobject@4.0.0/node_modules/isobject", + }, + Object { + "deps": Object {}, + "name": "istanbul-lib-coverage", + "root": "/common/temp/default/node_modules/.pnpm/istanbul-lib-coverage@3.2.2/node_modules/istanbul-lib-coverage", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/parser": 92, + "@istanbuljs/schema": 326, + "istanbul-lib-coverage": 1616, + "semver": 2237, + }, + "name": "istanbul-lib-instrument", + "root": "/common/temp/default/node_modules/.pnpm/istanbul-lib-instrument@5.2.1_supports-color@8.1.1/node_modules/istanbul-lib-instrument", + }, + Object { + "deps": Object { + "@babel/core": 60, + "@babel/parser": 92, + "@istanbuljs/schema": 326, + "istanbul-lib-coverage": 1616, + "semver": 2238, + }, + "name": "istanbul-lib-instrument", + "root": "/common/temp/default/node_modules/.pnpm/istanbul-lib-instrument@6.0.2/node_modules/istanbul-lib-instrument", + }, + Object { + "deps": Object { + "istanbul-lib-coverage": 1616, + "make-dir": 1773, + "supports-color": 2362, + }, + "name": "istanbul-lib-report", + "root": "/common/temp/default/node_modules/.pnpm/istanbul-lib-report@3.0.1/node_modules/istanbul-lib-report", + }, + Object { + "deps": Object { + "debug": 1106, + "istanbul-lib-coverage": 1616, + "source-map": 2294, + }, + "name": "istanbul-lib-source-maps", + "root": "/common/temp/default/node_modules/.pnpm/istanbul-lib-source-maps@4.0.1_supports-color@8.1.1/node_modules/istanbul-lib-source-maps", + }, + Object { + "deps": Object { + "html-escaper": 1464, + "istanbul-lib-report": 1619, + }, + "name": "istanbul-reports", + "root": "/common/temp/default/node_modules/.pnpm/istanbul-reports@3.1.7/node_modules/istanbul-reports", + }, + Object { + "deps": Object {}, + "name": "iterate-iterator", + "root": "/common/temp/default/node_modules/.pnpm/iterate-iterator@1.0.2/node_modules/iterate-iterator", + }, + Object { + "deps": Object { + "es-get-iterator": 1215, + "iterate-iterator": 1622, + }, + "name": "iterate-value", + "root": "/common/temp/default/node_modules/.pnpm/iterate-value@1.0.2/node_modules/iterate-value", + }, + Object { + "deps": Object { + "define-properties": 1125, + "get-intrinsic": 1381, + "has-symbols": 1433, + "reflect.getprototypeof": 2139, + "set-function-name": 2252, + }, + "name": "iterator.prototype", + "root": "/common/temp/default/node_modules/.pnpm/iterator.prototype@1.1.2/node_modules/iterator.prototype", + }, + Object { + "deps": Object { + "execa": 1284, + "jest-util": 1662, + "p-limit": 1933, + }, + "name": "jest-changed-files", + "root": "/common/temp/default/node_modules/.pnpm/jest-changed-files@29.7.0/node_modules/jest-changed-files", + }, + Object { + "deps": Object { + "@jest/environment": 330, + "@jest/expect": 332, + "@jest/test-result": 341, + "@jest/types": 349, + "@types/node": 625, + "chalk": 966, + "co": 1007, + "dedent": 1115, + "is-generator-fn": 1566, + "jest-each": 1635, + "jest-matcher-utils": 1646, + "jest-message-util": 1647, + "jest-runtime": 1657, + "jest-snapshot": 1660, + "jest-util": 1662, + "p-limit": 1933, + "pretty-format": 2046, + "pure-rand": 2076, + "slash": 2273, + "stack-utils": 2310, + }, + "name": "jest-circus", + "root": "/common/temp/default/node_modules/.pnpm/jest-circus@29.7.0_supports-color@8.1.1/node_modules/jest-circus", + }, + Object { + "deps": Object { + "@jest/core": 329, + "@jest/test-result": 339, + "@jest/types": 349, + "chalk": 966, + "create-jest": 1073, + "exit": 1285, + "import-local": 1510, + "jest-config": 1630, + "jest-util": 1662, + "jest-validate": 1663, + "yargs": 2622, + }, + "name": "jest-cli", + "root": "/common/temp/default/node_modules/.pnpm/jest-cli@29.7.0_@types+node@18.17.15/node_modules/jest-cli", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@jest/test-sequencer": 342, + "@jest/types": 348, + "@types/node": 623, + "babel-jest": 865, + "chalk": 966, + "ci-info": 983, + "deepmerge": 1119, + "glob": 1401, + "graceful-fs": 1418, + "jest-circus": 1626, + "jest-environment-node": 1637, + "jest-get-type": 1640, + "jest-regex-util": 1652, + "jest-resolve": 1654, + "jest-runner": 1656, + "jest-util": 1662, + "jest-validate": 1663, + "micromatch": 1806, + "parse-json": 1952, + "pretty-format": 2046, + "slash": 2273, + "strip-json-comments": 2351, + }, + "name": "jest-config", + "root": "/common/temp/default/node_modules/.pnpm/jest-config@29.5.0_@types+node@18.17.15_supports-color@8.1.1/node_modules/jest-config", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@jest/test-sequencer": 343, + "@jest/types": 348, + "@types/node": 625, + "babel-jest": 865, + "chalk": 966, + "ci-info": 983, + "deepmerge": 1119, + "glob": 1401, + "graceful-fs": 1418, + "jest-circus": 1626, + "jest-environment-node": 1637, + "jest-get-type": 1640, + "jest-regex-util": 1652, + "jest-resolve": 1654, + "jest-runner": 1656, + "jest-util": 1662, + "jest-validate": 1663, + "micromatch": 1806, + "parse-json": 1952, + "pretty-format": 2046, + "slash": 2273, + "strip-json-comments": 2351, + }, + "name": "jest-config", + "root": "/common/temp/default/node_modules/.pnpm/jest-config@29.5.0_@types+node@20.12.12_supports-color@8.1.1/node_modules/jest-config", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@jest/test-sequencer": 342, + "@jest/types": 349, + "@types/node": 623, + "babel-jest": 865, + "chalk": 966, + "ci-info": 983, + "deepmerge": 1119, + "glob": 1401, + "graceful-fs": 1418, + "jest-circus": 1626, + "jest-environment-node": 1638, + "jest-get-type": 1640, + "jest-regex-util": 1652, + "jest-resolve": 1655, + "jest-runner": 1656, + "jest-util": 1662, + "jest-validate": 1663, + "micromatch": 1806, + "parse-json": 1952, + "pretty-format": 2046, + "slash": 2273, + "strip-json-comments": 2351, + }, + "name": "jest-config", + "root": "/common/temp/default/node_modules/.pnpm/jest-config@29.7.0_@types+node@18.17.15/node_modules/jest-config", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@jest/test-sequencer": 343, + "@jest/types": 349, + "@types/node": 625, + "babel-jest": 865, + "chalk": 966, + "ci-info": 983, + "deepmerge": 1119, + "glob": 1401, + "graceful-fs": 1418, + "jest-circus": 1626, + "jest-environment-node": 1638, + "jest-get-type": 1640, + "jest-regex-util": 1652, + "jest-resolve": 1655, + "jest-runner": 1656, + "jest-util": 1662, + "jest-validate": 1663, + "micromatch": 1806, + "parse-json": 1952, + "pretty-format": 2046, + "slash": 2273, + "strip-json-comments": 2351, + }, + "name": "jest-config", + "root": "/common/temp/default/node_modules/.pnpm/jest-config@29.7.0_@types+node@20.12.12/node_modules/jest-config", + }, + Object { + "deps": Object { + "chalk": 966, + "diff-sequences": 1149, + "jest-get-type": 1639, + "pretty-format": 2045, + }, + "name": "jest-diff", + "root": "/common/temp/default/node_modules/.pnpm/jest-diff@27.5.1/node_modules/jest-diff", + }, + Object { + "deps": Object { + "chalk": 966, + "diff-sequences": 1150, + "jest-get-type": 1640, + "pretty-format": 2046, + }, + "name": "jest-diff", + "root": "/common/temp/default/node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff", + }, + Object { + "deps": Object { + "detect-newline": 1144, + }, + "name": "jest-docblock", + "root": "/common/temp/default/node_modules/.pnpm/jest-docblock@29.7.0/node_modules/jest-docblock", + }, + Object { + "deps": Object { + "@jest/types": 349, + "chalk": 966, + "jest-get-type": 1640, + "jest-util": 1662, + "pretty-format": 2046, + }, + "name": "jest-each", + "root": "/common/temp/default/node_modules/.pnpm/jest-each@29.7.0/node_modules/jest-each", + }, + Object { + "deps": Object { + "@jest/environment": 330, + "@jest/fake-timers": 333, + "@jest/types": 348, + "@types/jsdom": 603, + "@types/node": 625, + "jest-mock": 1648, + "jest-util": 1662, + "jsdom": 1682, + }, + "name": "jest-environment-jsdom", + "root": "/common/temp/default/node_modules/.pnpm/jest-environment-jsdom@29.5.0/node_modules/jest-environment-jsdom", + }, + Object { + "deps": Object { + "@jest/environment": 330, + "@jest/fake-timers": 333, + "@jest/types": 348, + "@types/node": 625, + "jest-mock": 1648, + "jest-util": 1662, + }, + "name": "jest-environment-node", + "root": "/common/temp/default/node_modules/.pnpm/jest-environment-node@29.5.0/node_modules/jest-environment-node", + }, + Object { + "deps": Object { + "@jest/environment": 330, + "@jest/fake-timers": 333, + "@jest/types": 349, + "@types/node": 625, + "jest-mock": 1648, + "jest-util": 1662, + }, + "name": "jest-environment-node", + "root": "/common/temp/default/node_modules/.pnpm/jest-environment-node@29.7.0/node_modules/jest-environment-node", + }, + Object { + "deps": Object {}, + "name": "jest-get-type", + "root": "/common/temp/default/node_modules/.pnpm/jest-get-type@27.5.1/node_modules/jest-get-type", + }, + Object { + "deps": Object {}, + "name": "jest-get-type", + "root": "/common/temp/default/node_modules/.pnpm/jest-get-type@29.6.3/node_modules/jest-get-type", + }, + Object { + "deps": Object { + "@jest/types": 347, + "@types/graceful-fs": 582, + "@types/node": 625, + "anymatch": 806, + "fb-watchman": 1314, + "graceful-fs": 1418, + "jest-regex-util": 1651, + "jest-serializer": 1658, + "jest-util": 1661, + "jest-worker": 1666, + "micromatch": 1806, + "sane": 2212, + "walker": 2533, + }, + "name": "jest-haste-map", + "root": "/common/temp/default/node_modules/.pnpm/jest-haste-map@26.6.2/node_modules/jest-haste-map", + }, + Object { + "deps": Object { + "@jest/types": 349, + "@types/graceful-fs": 582, + "@types/node": 625, + "anymatch": 806, + "fb-watchman": 1314, + "graceful-fs": 1418, + "jest-regex-util": 1652, + "jest-util": 1662, + "jest-worker": 1668, + "micromatch": 1806, + "walker": 2533, + }, + "name": "jest-haste-map", + "root": "/common/temp/default/node_modules/.pnpm/jest-haste-map@29.7.0/node_modules/jest-haste-map", + }, + Object { + "deps": Object { + "mkdirp": 1843, + "strip-ansi": 2342, + "uuid": 2518, + "xml": 2601, + }, + "name": "jest-junit", + "root": "/common/temp/default/node_modules/.pnpm/jest-junit@12.3.0/node_modules/jest-junit", + }, + Object { + "deps": Object { + "jest-get-type": 1640, + "pretty-format": 2046, + }, + "name": "jest-leak-detector", + "root": "/common/temp/default/node_modules/.pnpm/jest-leak-detector@29.7.0/node_modules/jest-leak-detector", + }, + Object { + "deps": Object { + "chalk": 966, + "jest-diff": 1632, + "jest-get-type": 1639, + "pretty-format": 2045, + }, + "name": "jest-matcher-utils", + "root": "/common/temp/default/node_modules/.pnpm/jest-matcher-utils@27.5.1/node_modules/jest-matcher-utils", + }, + Object { + "deps": Object { + "chalk": 966, + "jest-diff": 1633, + "jest-get-type": 1640, + "pretty-format": 2046, + }, + "name": "jest-matcher-utils", + "root": "/common/temp/default/node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "@jest/types": 349, + "@types/stack-utils": 655, + "chalk": 966, + "graceful-fs": 1418, + "micromatch": 1806, + "pretty-format": 2046, + "slash": 2273, + "stack-utils": 2310, + }, + "name": "jest-message-util", + "root": "/common/temp/default/node_modules/.pnpm/jest-message-util@29.7.0/node_modules/jest-message-util", + }, + Object { + "deps": Object { + "@jest/types": 349, + "@types/node": 625, + "jest-util": 1662, + }, + "name": "jest-mock", + "root": "/common/temp/default/node_modules/.pnpm/jest-mock@29.7.0/node_modules/jest-mock", + }, + Object { + "deps": Object { + "jest-resolve": 1654, + }, + "name": "jest-pnp-resolver", + "root": "/common/temp/default/node_modules/.pnpm/jest-pnp-resolver@1.2.3_jest-resolve@29.5.0/node_modules/jest-pnp-resolver", + }, + Object { + "deps": Object { + "jest-resolve": 1655, + }, + "name": "jest-pnp-resolver", + "root": "/common/temp/default/node_modules/.pnpm/jest-pnp-resolver@1.2.3_jest-resolve@29.7.0/node_modules/jest-pnp-resolver", + }, + Object { + "deps": Object {}, + "name": "jest-regex-util", + "root": "/common/temp/default/node_modules/.pnpm/jest-regex-util@26.0.0/node_modules/jest-regex-util", + }, + Object { + "deps": Object {}, + "name": "jest-regex-util", + "root": "/common/temp/default/node_modules/.pnpm/jest-regex-util@29.6.3/node_modules/jest-regex-util", + }, + Object { + "deps": Object { + "jest-regex-util": 1652, + "jest-snapshot": 1660, + }, + "name": "jest-resolve-dependencies", + "root": "/common/temp/default/node_modules/.pnpm/jest-resolve-dependencies@29.7.0_supports-color@8.1.1/node_modules/jest-resolve-dependencies", + }, + Object { + "deps": Object { + "chalk": 966, + "graceful-fs": 1418, + "jest-haste-map": 1642, + "jest-pnp-resolver": 1649, + "jest-util": 1662, + "jest-validate": 1663, + "resolve": 2182, + "resolve.exports": 2181, + "slash": 2273, + }, + "name": "jest-resolve", + "root": "/common/temp/default/node_modules/.pnpm/jest-resolve@29.5.0/node_modules/jest-resolve", + }, + Object { + "deps": Object { + "chalk": 966, + "graceful-fs": 1418, + "jest-haste-map": 1642, + "jest-pnp-resolver": 1650, + "jest-util": 1662, + "jest-validate": 1663, + "resolve": 2182, + "resolve.exports": 2181, + "slash": 2273, + }, + "name": "jest-resolve", + "root": "/common/temp/default/node_modules/.pnpm/jest-resolve@29.7.0/node_modules/jest-resolve", + }, + Object { + "deps": Object { + "@jest/console": 327, + "@jest/environment": 330, + "@jest/test-result": 341, + "@jest/transform": 346, + "@jest/types": 349, + "@types/node": 625, + "chalk": 966, + "emittery": 1188, + "graceful-fs": 1418, + "jest-docblock": 1634, + "jest-environment-node": 1638, + "jest-haste-map": 1642, + "jest-leak-detector": 1644, + "jest-message-util": 1647, + "jest-resolve": 1655, + "jest-runtime": 1657, + "jest-util": 1662, + "jest-watcher": 1665, + "jest-worker": 1668, + "p-limit": 1933, + "source-map-support": 2290, + }, + "name": "jest-runner", + "root": "/common/temp/default/node_modules/.pnpm/jest-runner@29.7.0_supports-color@8.1.1/node_modules/jest-runner", + }, + Object { + "deps": Object { + "@jest/environment": 330, + "@jest/fake-timers": 333, + "@jest/globals": 334, + "@jest/source-map": 338, + "@jest/test-result": 341, + "@jest/transform": 346, + "@jest/types": 349, + "@types/node": 625, + "chalk": 966, + "cjs-module-lexer": 985, + "collect-v8-coverage": 1012, + "glob": 1401, + "graceful-fs": 1418, + "jest-haste-map": 1642, + "jest-message-util": 1647, + "jest-mock": 1648, + "jest-regex-util": 1652, + "jest-resolve": 1655, + "jest-snapshot": 1660, + "jest-util": 1662, + "slash": 2273, + "strip-bom": 2346, + }, + "name": "jest-runtime", + "root": "/common/temp/default/node_modules/.pnpm/jest-runtime@29.7.0_supports-color@8.1.1/node_modules/jest-runtime", + }, + Object { + "deps": Object { + "@types/node": 625, + "graceful-fs": 1418, + }, + "name": "jest-serializer", + "root": "/common/temp/default/node_modules/.pnpm/jest-serializer@26.6.2/node_modules/jest-serializer", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/generator": 61, + "@babel/plugin-syntax-jsx": 119, + "@babel/plugin-syntax-typescript": 129, + "@babel/traverse": 195, + "@babel/types": 196, + "@jest/expect-utils": 331, + "@jest/transform": 345, + "@jest/types": 348, + "@types/babel__traverse": 561, + "@types/prettier": 633, + "babel-preset-current-node-syntax": 882, + "chalk": 966, + "expect": 1289, + "graceful-fs": 1418, + "jest-diff": 1633, + "jest-get-type": 1640, + "jest-matcher-utils": 1646, + "jest-message-util": 1647, + "jest-util": 1662, + "natural-compare": 1859, + "pretty-format": 2046, + "semver": 2238, + }, + "name": "jest-snapshot", + "root": "/common/temp/default/node_modules/.pnpm/jest-snapshot@29.5.0_supports-color@8.1.1/node_modules/jest-snapshot", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/generator": 61, + "@babel/plugin-syntax-jsx": 119, + "@babel/plugin-syntax-typescript": 129, + "@babel/types": 196, + "@jest/expect-utils": 331, + "@jest/transform": 346, + "@jest/types": 349, + "babel-preset-current-node-syntax": 882, + "chalk": 966, + "expect": 1289, + "graceful-fs": 1418, + "jest-diff": 1633, + "jest-get-type": 1640, + "jest-matcher-utils": 1646, + "jest-message-util": 1647, + "jest-util": 1662, + "natural-compare": 1859, + "pretty-format": 2046, + "semver": 2238, + }, + "name": "jest-snapshot", + "root": "/common/temp/default/node_modules/.pnpm/jest-snapshot@29.7.0_supports-color@8.1.1/node_modules/jest-snapshot", + }, + Object { + "deps": Object { + "@jest/types": 347, + "@types/node": 625, + "chalk": 966, + "graceful-fs": 1418, + "is-ci": 1547, + "micromatch": 1806, + }, + "name": "jest-util", + "root": "/common/temp/default/node_modules/.pnpm/jest-util@26.6.2/node_modules/jest-util", + }, + Object { + "deps": Object { + "@jest/types": 349, + "@types/node": 625, + "chalk": 966, + "ci-info": 983, + "graceful-fs": 1418, + "picomatch": 1976, + }, + "name": "jest-util", + "root": "/common/temp/default/node_modules/.pnpm/jest-util@29.7.0/node_modules/jest-util", + }, + Object { + "deps": Object { + "@jest/types": 349, + "camelcase": 955, + "chalk": 966, + "jest-get-type": 1640, + "leven": 1722, + "pretty-format": 2046, + }, + "name": "jest-validate", + "root": "/common/temp/default/node_modules/.pnpm/jest-validate@29.7.0/node_modules/jest-validate", + }, + Object { + "deps": Object { + "ansi-escapes": 793, + "chalk": 965, + "prompts": 2059, + }, + "name": "jest-watch-select-projects", + "root": "/common/temp/default/node_modules/.pnpm/jest-watch-select-projects@2.0.0/node_modules/jest-watch-select-projects", + }, + Object { + "deps": Object { + "@jest/test-result": 341, + "@jest/types": 349, + "@types/node": 625, + "ansi-escapes": 793, + "chalk": 966, + "emittery": 1188, + "jest-util": 1662, + "string-length": 2327, + }, + "name": "jest-watcher", + "root": "/common/temp/default/node_modules/.pnpm/jest-watcher@29.7.0/node_modules/jest-watcher", + }, + Object { + "deps": Object { + "@types/node": 625, + "merge-stream": 1801, + "supports-color": 2362, + }, + "name": "jest-worker", + "root": "/common/temp/default/node_modules/.pnpm/jest-worker@26.6.2/node_modules/jest-worker", + }, + Object { + "deps": Object { + "@types/node": 625, + "merge-stream": 1801, + "supports-color": 2363, + }, + "name": "jest-worker", + "root": "/common/temp/default/node_modules/.pnpm/jest-worker@27.5.1/node_modules/jest-worker", + }, + Object { + "deps": Object { + "@types/node": 625, + "jest-util": 1662, + "merge-stream": 1801, + "supports-color": 2363, + }, + "name": "jest-worker", + "root": "/common/temp/default/node_modules/.pnpm/jest-worker@29.7.0/node_modules/jest-worker", + }, + Object { + "deps": Object { + "@jest/core": 328, + "@jest/types": 348, + "import-local": 1510, + "jest-cli": 1627, + }, + "name": "jest", + "root": "/common/temp/default/node_modules/.pnpm/jest@29.3.1_@types+node@18.17.15/node_modules/jest", + }, + Object { + "deps": Object {}, + "name": "jju", + "root": "/common/temp/default/node_modules/.pnpm/jju@1.4.0/node_modules/jju", + }, + Object { + "deps": Object {}, + "name": "jmespath", + "root": "/common/temp/default/node_modules/.pnpm/jmespath@0.16.0/node_modules/jmespath", + }, + Object { + "deps": Object {}, + "name": "js-sdsl", + "root": "/common/temp/default/node_modules/.pnpm/js-sdsl@4.4.2/node_modules/js-sdsl", + }, + Object { + "deps": Object {}, + "name": "js-string-escape", + "root": "/common/temp/default/node_modules/.pnpm/js-string-escape@1.0.1/node_modules/js-string-escape", + }, + Object { + "deps": Object {}, + "name": "js-tokens", + "root": "/common/temp/default/node_modules/.pnpm/js-tokens@3.0.2/node_modules/js-tokens", + }, + Object { + "deps": Object {}, + "name": "js-tokens", + "root": "/common/temp/default/node_modules/.pnpm/js-tokens@4.0.0/node_modules/js-tokens", + }, + Object { + "deps": Object { + "argparse": 816, + "esprima": 1269, + }, + "name": "js-yaml", + "root": "/common/temp/default/node_modules/.pnpm/js-yaml@3.13.1/node_modules/js-yaml", + }, + Object { + "deps": Object { + "argparse": 816, + "esprima": 1269, + }, + "name": "js-yaml", + "root": "/common/temp/default/node_modules/.pnpm/js-yaml@3.14.1/node_modules/js-yaml", + }, + Object { + "deps": Object { + "argparse": 817, + }, + "name": "js-yaml", + "root": "/common/temp/default/node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml", + }, + Object { + "deps": Object {}, + "name": "jsbn", + "root": "/common/temp/default/node_modules/.pnpm/jsbn@1.1.0/node_modules/jsbn", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/parser": 92, + "@babel/plugin-proposal-class-properties": 96, + "@babel/plugin-proposal-nullish-coalescing-operator": 99, + "@babel/plugin-proposal-optional-chaining": 102, + "@babel/plugin-transform-modules-commonjs": 154, + "@babel/preset-env": 186, + "@babel/preset-flow": 187, + "@babel/preset-typescript": 190, + "@babel/register": 191, + "babel-core": 864, + "chalk": 966, + "flow-parser": 1343, + "graceful-fs": 1418, + "micromatch": 1805, + "neo-async": 1862, + "node-dir": 1869, + "recast": 2134, + "temp": 2378, + "write-file-atomic": 2588, + }, + "name": "jscodeshift", + "root": "/common/temp/default/node_modules/.pnpm/jscodeshift@0.13.1_@babel+preset-env@7.24.0/node_modules/jscodeshift", + }, + Object { + "deps": Object {}, + "name": "jsdoc-type-pratt-parser", + "root": "/common/temp/default/node_modules/.pnpm/jsdoc-type-pratt-parser@2.2.5/node_modules/jsdoc-type-pratt-parser", + }, + Object { + "deps": Object { + "abab": 760, + "acorn": 772, + "acorn-globals": 764, + "cssom": 1093, + "cssstyle": 1094, + "data-urls": 1098, + "decimal.js": 1111, + "domexception": 1166, + "escodegen": 1234, + "form-data": 1352, + "html-encoding-sniffer": 1462, + "http-proxy-agent": 1480, + "https-proxy-agent": 1488, + "is-potential-custom-element-name": 1588, + "nwsapi": 1896, + "parse5": 1957, + "saxes": 2222, + "symbol-tree": 2366, + "tough-cookie": 2409, + "w3c-xmlserializer": 2532, + "webidl-conversions": 2542, + "whatwg-encoding": 2562, + "whatwg-mimetype": 2564, + "whatwg-url": 2565, + "ws": 2595, + "xml-name-validator": 2597, + }, + "name": "jsdom", + "root": "/common/temp/default/node_modules/.pnpm/jsdom@20.0.3/node_modules/jsdom", + }, + Object { + "deps": Object {}, + "name": "jsesc", + "root": "/common/temp/default/node_modules/.pnpm/jsesc@0.5.0/node_modules/jsesc", + }, + Object { + "deps": Object {}, + "name": "jsesc", + "root": "/common/temp/default/node_modules/.pnpm/jsesc@2.5.2/node_modules/jsesc", + }, + Object { + "deps": Object {}, + "name": "json-buffer", + "root": "/common/temp/default/node_modules/.pnpm/json-buffer@3.0.1/node_modules/json-buffer", + }, + Object { + "deps": Object {}, + "name": "json-parse-better-errors", + "root": "/common/temp/default/node_modules/.pnpm/json-parse-better-errors@1.0.2/node_modules/json-parse-better-errors", + }, + Object { + "deps": Object {}, + "name": "json-parse-even-better-errors", + "root": "/common/temp/default/node_modules/.pnpm/json-parse-even-better-errors@2.3.1/node_modules/json-parse-even-better-errors", + }, + Object { + "deps": Object {}, + "name": "json-schema-traverse", + "root": "/common/temp/default/node_modules/.pnpm/json-schema-traverse@0.4.1/node_modules/json-schema-traverse", + }, + Object { + "deps": Object {}, + "name": "json-schema-traverse", + "root": "/common/temp/default/node_modules/.pnpm/json-schema-traverse@1.0.0/node_modules/json-schema-traverse", + }, + Object { + "deps": Object {}, + "name": "json-schema-typed", + "root": "/common/temp/default/node_modules/.pnpm/json-schema-typed@7.0.3/node_modules/json-schema-typed", + }, + Object { + "deps": Object {}, + "name": "json-stable-stringify-without-jsonify", + "root": "/common/temp/default/node_modules/.pnpm/json-stable-stringify-without-jsonify@1.0.1/node_modules/json-stable-stringify-without-jsonify", + }, + Object { + "deps": Object {}, + "name": "json-stringify-safe", + "root": "/common/temp/default/node_modules/.pnpm/json-stringify-safe@5.0.1/node_modules/json-stringify-safe", + }, + Object { + "deps": Object { + "minimist": 1829, + }, + "name": "json5", + "root": "/common/temp/default/node_modules/.pnpm/json5@1.0.2/node_modules/json5", + }, + Object { + "deps": Object {}, + "name": "json5", + "root": "/common/temp/default/node_modules/.pnpm/json5@2.2.3/node_modules/json5", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + }, + "name": "jsonfile", + "root": "/common/temp/default/node_modules/.pnpm/jsonfile@4.0.0/node_modules/jsonfile", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "universalify": 2487, + }, + "name": "jsonfile", + "root": "/common/temp/default/node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile", + }, + Object { + "deps": Object {}, + "name": "jsonpath-plus", + "root": "/common/temp/default/node_modules/.pnpm/jsonpath-plus@4.0.0/node_modules/jsonpath-plus", + }, + Object { + "deps": Object {}, + "name": "jsonschema", + "root": "/common/temp/default/node_modules/.pnpm/jsonschema@1.4.1/node_modules/jsonschema", + }, + Object { + "deps": Object { + "jws": 1706, + "lodash.includes": 1747, + "lodash.isboolean": 1748, + "lodash.isinteger": 1750, + "lodash.isnumber": 1751, + "lodash.isplainobject": 1752, + "lodash.isstring": 1753, + "lodash.once": 1756, + "ms": 1850, + "semver": 2238, + }, + "name": "jsonwebtoken", + "root": "/common/temp/default/node_modules/.pnpm/jsonwebtoken@9.0.2/node_modules/jsonwebtoken", + }, + Object { + "deps": Object { + "array-includes": 824, + "array.prototype.flat": 829, + "object.assign": 1902, + "object.values": 1908, + }, + "name": "jsx-ast-utils", + "root": "/common/temp/default/node_modules/.pnpm/jsx-ast-utils@3.3.5/node_modules/jsx-ast-utils", + }, + Object { + "deps": Object { + "pako": 1946, + }, + "name": "jszip", + "root": "/common/temp/default/node_modules/.pnpm/jszip@2.7.0/node_modules/jszip", + }, + Object { + "deps": Object { + "lie": 1724, + "pako": 1946, + "readable-stream": 2126, + "set-immediate-shim": 2253, + }, + "name": "jszip", + "root": "/common/temp/default/node_modules/.pnpm/jszip@3.8.0/node_modules/jszip", + }, + Object { + "deps": Object {}, + "name": "junk", + "root": "/common/temp/default/node_modules/.pnpm/junk@3.1.0/node_modules/junk", + }, + Object { + "deps": Object { + "buffer-equal-constant-time": 926, + "ecdsa-sig-formatter": 1183, + "safe-buffer": 2207, + }, + "name": "jwa", + "root": "/common/temp/default/node_modules/.pnpm/jwa@1.4.1/node_modules/jwa", + }, + Object { + "deps": Object { + "buffer-equal-constant-time": 926, + "ecdsa-sig-formatter": 1183, + "safe-buffer": 2207, + }, + "name": "jwa", + "root": "/common/temp/default/node_modules/.pnpm/jwa@2.0.0/node_modules/jwa", + }, + Object { + "deps": Object { + "jwa": 1704, + "safe-buffer": 2207, + }, + "name": "jws", + "root": "/common/temp/default/node_modules/.pnpm/jws@3.2.2/node_modules/jws", + }, + Object { + "deps": Object { + "jwa": 1705, + "safe-buffer": 2207, + }, + "name": "jws", + "root": "/common/temp/default/node_modules/.pnpm/jws@4.0.0/node_modules/jws", + }, + Object { + "deps": Object {}, + "name": "keyborg", + "root": "/common/temp/default/node_modules/.pnpm/keyborg@2.5.0/node_modules/keyborg", + }, + Object { + "deps": Object { + "node-addon-api": 1868, + "prebuild-install": 2039, + }, + "name": "keytar", + "root": "/common/temp/default/node_modules/.pnpm/keytar@7.9.0/node_modules/keytar", + }, + Object { + "deps": Object { + "json-buffer": 1685, + }, + "name": "keyv", + "root": "/common/temp/default/node_modules/.pnpm/keyv@4.5.4/node_modules/keyv", + }, + Object { + "deps": Object { + "is-buffer": 1544, + }, + "name": "kind-of", + "root": "/common/temp/default/node_modules/.pnpm/kind-of@3.2.2/node_modules/kind-of", + }, + Object { + "deps": Object { + "is-buffer": 1544, + }, + "name": "kind-of", + "root": "/common/temp/default/node_modules/.pnpm/kind-of@4.0.0/node_modules/kind-of", + }, + Object { + "deps": Object {}, + "name": "kind-of", + "root": "/common/temp/default/node_modules/.pnpm/kind-of@6.0.3/node_modules/kind-of", + }, + Object { + "deps": Object {}, + "name": "kleur", + "root": "/common/temp/default/node_modules/.pnpm/kleur@3.0.3/node_modules/kleur", + }, + Object { + "deps": Object {}, + "name": "klona", + "root": "/common/temp/default/node_modules/.pnpm/klona@2.0.6/node_modules/klona", + }, + Object { + "deps": Object { + "chalk": 966, + "dotenv": 1176, + "kysely": 1718, + "micromatch": 1806, + "minimist": 1829, + }, + "name": "kysely-codegen", + "root": "/common/temp/default/node_modules/.pnpm/kysely-codegen@0.6.2_kysely@0.21.6/node_modules/kysely-codegen", + }, + Object { + "deps": Object { + "aws-sdk": 862, + "kysely": 1718, + }, + "name": "kysely-data-api", + "root": "/common/temp/default/node_modules/.pnpm/kysely-data-api@0.1.4_aws-sdk@2.1580.0_kysely@0.21.6/node_modules/kysely-data-api", + }, + Object { + "deps": Object {}, + "name": "kysely", + "root": "/common/temp/default/node_modules/.pnpm/kysely@0.21.6/node_modules/kysely", + }, + Object { + "deps": Object { + "package-json": 1945, + }, + "name": "latest-version", + "root": "/common/temp/default/node_modules/.pnpm/latest-version@5.1.0/node_modules/latest-version", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "app-root-dir": 807, + "core-js": 1061, + "dotenv": 1177, + "dotenv-expand": 1174, + }, + "name": "lazy-universal-dotenv", + "root": "/common/temp/default/node_modules/.pnpm/lazy-universal-dotenv@3.0.1/node_modules/lazy-universal-dotenv", + }, + Object { + "deps": Object { + "readable-stream": 2126, + }, + "name": "lazystream", + "root": "/common/temp/default/node_modules/.pnpm/lazystream@1.0.1/node_modules/lazystream", + }, + Object { + "deps": Object {}, + "name": "leven", + "root": "/common/temp/default/node_modules/.pnpm/leven@3.1.0/node_modules/leven", + }, + Object { + "deps": Object { + "prelude-ls": 2041, + "type-check": 2440, + }, + "name": "levn", + "root": "/common/temp/default/node_modules/.pnpm/levn@0.4.1/node_modules/levn", + }, + Object { + "deps": Object { + "immediate": 1503, + }, + "name": "lie", + "root": "/common/temp/default/node_modules/.pnpm/lie@3.3.0/node_modules/lie", + }, + Object { + "deps": Object { + "ajv": 788, + "cookie": 1054, + "process-warning": 2052, + "set-cookie-parser": 2250, + }, + "name": "light-my-request", + "root": "/common/temp/default/node_modules/.pnpm/light-my-request@4.12.0/node_modules/light-my-request", + }, + Object { + "deps": Object {}, + "name": "lilconfig", + "root": "/common/temp/default/node_modules/.pnpm/lilconfig@2.1.0/node_modules/lilconfig", + }, + Object { + "deps": Object {}, + "name": "lines-and-columns", + "root": "/common/temp/default/node_modules/.pnpm/lines-and-columns@1.2.4/node_modules/lines-and-columns", + }, + Object { + "deps": Object { + "uc.micro": 2460, + }, + "name": "linkify-it", + "root": "/common/temp/default/node_modules/.pnpm/linkify-it@3.0.3/node_modules/linkify-it", + }, + Object { + "deps": Object {}, + "name": "listenercount", + "root": "/common/temp/default/node_modules/.pnpm/listenercount@1.0.1/node_modules/listenercount", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "parse-json": 1952, + "strip-bom": 2346, + "type-fest": 2445, + }, + "name": "load-json-file", + "root": "/common/temp/default/node_modules/.pnpm/load-json-file@6.2.0/node_modules/load-json-file", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "js-yaml": 1676, + "pify": 1979, + "strip-bom": 2345, + }, + "name": "load-yaml-file", + "root": "/common/temp/default/node_modules/.pnpm/load-yaml-file@0.2.0/node_modules/load-yaml-file", + }, + Object { + "deps": Object {}, + "name": "loader-runner", + "root": "/common/temp/default/node_modules/.pnpm/loader-runner@2.4.0/node_modules/loader-runner", + }, + Object { + "deps": Object {}, + "name": "loader-runner", + "root": "/common/temp/default/node_modules/.pnpm/loader-runner@4.3.0/node_modules/loader-runner", + }, + Object { + "deps": Object { + "big.js": 893, + "emojis-list": 1192, + "json5": 1693, + }, + "name": "loader-utils", + "root": "/common/temp/default/node_modules/.pnpm/loader-utils@1.4.2/node_modules/loader-utils", + }, + Object { + "deps": Object { + "big.js": 893, + "emojis-list": 1192, + "json5": 1694, + }, + "name": "loader-utils", + "root": "/common/temp/default/node_modules/.pnpm/loader-utils@2.0.0/node_modules/loader-utils", + }, + Object { + "deps": Object { + "big.js": 893, + "emojis-list": 1192, + "json5": 1694, + }, + "name": "loader-utils", + "root": "/common/temp/default/node_modules/.pnpm/loader-utils@2.0.4/node_modules/loader-utils", + }, + Object { + "deps": Object {}, + "name": "loader-utils", + "root": "/common/temp/default/node_modules/.pnpm/loader-utils@3.2.1/node_modules/loader-utils", + }, + Object { + "deps": Object { + "p-locate": 1934, + "path-exists": 1963, + }, + "name": "locate-path", + "root": "/common/temp/default/node_modules/.pnpm/locate-path@3.0.0/node_modules/locate-path", + }, + Object { + "deps": Object { + "p-locate": 1935, + }, + "name": "locate-path", + "root": "/common/temp/default/node_modules/.pnpm/locate-path@5.0.0/node_modules/locate-path", + }, + Object { + "deps": Object { + "p-locate": 1936, + }, + "name": "locate-path", + "root": "/common/temp/default/node_modules/.pnpm/locate-path@6.0.0/node_modules/locate-path", + }, + Object { + "deps": Object {}, + "name": "lodash.camelcase", + "root": "/common/temp/default/node_modules/.pnpm/lodash.camelcase@4.3.0/node_modules/lodash.camelcase", + }, + Object { + "deps": Object {}, + "name": "lodash.debounce", + "root": "/common/temp/default/node_modules/.pnpm/lodash.debounce@4.0.8/node_modules/lodash.debounce", + }, + Object { + "deps": Object {}, + "name": "lodash.defaults", + "root": "/common/temp/default/node_modules/.pnpm/lodash.defaults@4.2.0/node_modules/lodash.defaults", + }, + Object { + "deps": Object {}, + "name": "lodash.difference", + "root": "/common/temp/default/node_modules/.pnpm/lodash.difference@4.5.0/node_modules/lodash.difference", + }, + Object { + "deps": Object {}, + "name": "lodash.flatten", + "root": "/common/temp/default/node_modules/.pnpm/lodash.flatten@4.4.0/node_modules/lodash.flatten", + }, + Object { + "deps": Object {}, + "name": "lodash.get", + "root": "/common/temp/default/node_modules/.pnpm/lodash.get@4.4.2/node_modules/lodash.get", + }, + Object { + "deps": Object {}, + "name": "lodash.includes", + "root": "/common/temp/default/node_modules/.pnpm/lodash.includes@4.3.0/node_modules/lodash.includes", + }, + Object { + "deps": Object {}, + "name": "lodash.isboolean", + "root": "/common/temp/default/node_modules/.pnpm/lodash.isboolean@3.0.3/node_modules/lodash.isboolean", + }, + Object { + "deps": Object {}, + "name": "lodash.isequal", + "root": "/common/temp/default/node_modules/.pnpm/lodash.isequal@4.5.0/node_modules/lodash.isequal", + }, + Object { + "deps": Object {}, + "name": "lodash.isinteger", + "root": "/common/temp/default/node_modules/.pnpm/lodash.isinteger@4.0.4/node_modules/lodash.isinteger", + }, + Object { + "deps": Object {}, + "name": "lodash.isnumber", + "root": "/common/temp/default/node_modules/.pnpm/lodash.isnumber@3.0.3/node_modules/lodash.isnumber", + }, + Object { + "deps": Object {}, + "name": "lodash.isplainobject", + "root": "/common/temp/default/node_modules/.pnpm/lodash.isplainobject@4.0.6/node_modules/lodash.isplainobject", + }, + Object { + "deps": Object {}, + "name": "lodash.isstring", + "root": "/common/temp/default/node_modules/.pnpm/lodash.isstring@4.0.1/node_modules/lodash.isstring", + }, + Object { + "deps": Object {}, + "name": "lodash.memoize", + "root": "/common/temp/default/node_modules/.pnpm/lodash.memoize@4.1.2/node_modules/lodash.memoize", + }, + Object { + "deps": Object {}, + "name": "lodash.merge", + "root": "/common/temp/default/node_modules/.pnpm/lodash.merge@4.6.2/node_modules/lodash.merge", + }, + Object { + "deps": Object {}, + "name": "lodash.once", + "root": "/common/temp/default/node_modules/.pnpm/lodash.once@4.1.1/node_modules/lodash.once", + }, + Object { + "deps": Object {}, + "name": "lodash.truncate", + "root": "/common/temp/default/node_modules/.pnpm/lodash.truncate@4.4.2/node_modules/lodash.truncate", + }, + Object { + "deps": Object {}, + "name": "lodash.union", + "root": "/common/temp/default/node_modules/.pnpm/lodash.union@4.6.0/node_modules/lodash.union", + }, + Object { + "deps": Object {}, + "name": "lodash.uniq", + "root": "/common/temp/default/node_modules/.pnpm/lodash.uniq@4.5.0/node_modules/lodash.uniq", + }, + Object { + "deps": Object {}, + "name": "lodash", + "root": "/common/temp/default/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash", + }, + Object { + "deps": Object { + "chalk": 966, + "is-unicode-supported": 1599, + }, + "name": "log-symbols", + "root": "/common/temp/default/node_modules/.pnpm/log-symbols@4.1.0/node_modules/log-symbols", + }, + Object { + "deps": Object { + "date-format": 1102, + "debug": 1106, + "flatted": 1342, + "rfdc": 2192, + "streamroller": 2323, + }, + "name": "log4js", + "root": "/common/temp/default/node_modules/.pnpm/log4js@6.9.1/node_modules/log4js", + }, + Object { + "deps": Object {}, + "name": "long", + "root": "/common/temp/default/node_modules/.pnpm/long@4.0.0/node_modules/long", + }, + Object { + "deps": Object { + "js-tokens": 1675, + }, + "name": "loose-envify", + "root": "/common/temp/default/node_modules/.pnpm/loose-envify@1.4.0/node_modules/loose-envify", + }, + Object { + "deps": Object { + "tslib": 2425, + }, + "name": "lower-case", + "root": "/common/temp/default/node_modules/.pnpm/lower-case@2.0.2/node_modules/lower-case", + }, + Object { + "deps": Object {}, + "name": "lowercase-keys", + "root": "/common/temp/default/node_modules/.pnpm/lowercase-keys@2.0.0/node_modules/lowercase-keys", + }, + Object { + "deps": Object { + "fault": 1312, + "highlight.js": 1454, + }, + "name": "lowlight", + "root": "/common/temp/default/node_modules/.pnpm/lowlight@1.20.0/node_modules/lowlight", + }, + Object { + "deps": Object { + "yallist": 2609, + }, + "name": "lru-cache", + "root": "/common/temp/default/node_modules/.pnpm/lru-cache@5.1.1/node_modules/lru-cache", + }, + Object { + "deps": Object { + "yallist": 2610, + }, + "name": "lru-cache", + "root": "/common/temp/default/node_modules/.pnpm/lru-cache@6.0.0/node_modules/lru-cache", + }, + Object { + "deps": Object { + "@jridgewell/sourcemap-codec": 354, + }, + "name": "magic-string", + "root": "/common/temp/default/node_modules/.pnpm/magic-string@0.30.8/node_modules/magic-string", + }, + Object { + "deps": Object { + "pify": 1979, + "semver": 2236, + }, + "name": "make-dir", + "root": "/common/temp/default/node_modules/.pnpm/make-dir@2.1.0/node_modules/make-dir", + }, + Object { + "deps": Object { + "semver": 2237, + }, + "name": "make-dir", + "root": "/common/temp/default/node_modules/.pnpm/make-dir@3.1.0/node_modules/make-dir", + }, + Object { + "deps": Object { + "semver": 2238, + }, + "name": "make-dir", + "root": "/common/temp/default/node_modules/.pnpm/make-dir@4.0.0/node_modules/make-dir", + }, + Object { + "deps": Object { + "agentkeepalive": 777, + "cacache": 942, + "http-cache-semantics": 1473, + "http-proxy-agent": 1479, + "https-proxy-agent": 1488, + "is-lambda": 1573, + "lru-cache": 1769, + "minipass": 1835, + "minipass-collect": 1830, + "minipass-fetch": 1831, + "minipass-flush": 1832, + "minipass-pipeline": 1833, + "promise-retry": 2056, + "socks-proxy-agent": 2281, + "ssri": 2308, + }, + "name": "make-fetch-happen", + "root": "/common/temp/default/node_modules/.pnpm/make-fetch-happen@8.0.14/node_modules/make-fetch-happen", + }, + Object { + "deps": Object { + "tmpl": 2399, + }, + "name": "makeerror", + "root": "/common/temp/default/node_modules/.pnpm/makeerror@1.0.12/node_modules/makeerror", + }, + Object { + "deps": Object { + "p-defer": 1928, + }, + "name": "map-age-cleaner", + "root": "/common/temp/default/node_modules/.pnpm/map-age-cleaner@0.1.3/node_modules/map-age-cleaner", + }, + Object { + "deps": Object {}, + "name": "map-cache", + "root": "/common/temp/default/node_modules/.pnpm/map-cache@0.2.2/node_modules/map-cache", + }, + Object { + "deps": Object {}, + "name": "map-obj", + "root": "/common/temp/default/node_modules/.pnpm/map-obj@1.0.1/node_modules/map-obj", + }, + Object { + "deps": Object {}, + "name": "map-obj", + "root": "/common/temp/default/node_modules/.pnpm/map-obj@4.3.0/node_modules/map-obj", + }, + Object { + "deps": Object {}, + "name": "map-or-similar", + "root": "/common/temp/default/node_modules/.pnpm/map-or-similar@1.5.0/node_modules/map-or-similar", + }, + Object { + "deps": Object { + "object-visit": 1901, + }, + "name": "map-visit", + "root": "/common/temp/default/node_modules/.pnpm/map-visit@1.0.0/node_modules/map-visit", + }, + Object { + "deps": Object {}, + "name": "markdown-escapes", + "root": "/common/temp/default/node_modules/.pnpm/markdown-escapes@1.0.4/node_modules/markdown-escapes", + }, + Object { + "deps": Object { + "argparse": 817, + "entities": 1202, + "linkify-it": 1728, + "mdurl": 1791, + "uc.micro": 2460, + }, + "name": "markdown-it", + "root": "/common/temp/default/node_modules/.pnpm/markdown-it@12.3.2/node_modules/markdown-it", + }, + Object { + "deps": Object { + "react": 2119, + }, + "name": "markdown-to-jsx", + "root": "/common/temp/default/node_modules/.pnpm/markdown-to-jsx@7.4.3_react@17.0.2/node_modules/markdown-to-jsx", + }, + Object { + "deps": Object { + "hash-base": 1443, + "inherits": 1518, + "safe-buffer": 2207, + }, + "name": "md5.js", + "root": "/common/temp/default/node_modules/.pnpm/md5.js@1.3.5/node_modules/md5.js", + }, + Object { + "deps": Object { + "unist-util-remove": 2481, + }, + "name": "mdast-squeeze-paragraphs", + "root": "/common/temp/default/node_modules/.pnpm/mdast-squeeze-paragraphs@4.0.0/node_modules/mdast-squeeze-paragraphs", + }, + Object { + "deps": Object { + "unist-util-visit": 2484, + }, + "name": "mdast-util-definitions", + "root": "/common/temp/default/node_modules/.pnpm/mdast-util-definitions@4.0.0/node_modules/mdast-util-definitions", + }, + Object { + "deps": Object { + "@types/mdast": 610, + "@types/unist": 664, + "mdast-util-definitions": 1787, + "mdurl": 1791, + "unist-builder": 2476, + "unist-util-generated": 2477, + "unist-util-position": 2479, + "unist-util-visit": 2484, + }, + "name": "mdast-util-to-hast", + "root": "/common/temp/default/node_modules/.pnpm/mdast-util-to-hast@10.0.1/node_modules/mdast-util-to-hast", + }, + Object { + "deps": Object {}, + "name": "mdast-util-to-string", + "root": "/common/temp/default/node_modules/.pnpm/mdast-util-to-string@1.1.0/node_modules/mdast-util-to-string", + }, + Object { + "deps": Object {}, + "name": "mdn-data", + "root": "/common/temp/default/node_modules/.pnpm/mdn-data@2.0.14/node_modules/mdn-data", + }, + Object { + "deps": Object {}, + "name": "mdurl", + "root": "/common/temp/default/node_modules/.pnpm/mdurl@1.0.1/node_modules/mdurl", + }, + Object { + "deps": Object {}, + "name": "media-typer", + "root": "/common/temp/default/node_modules/.pnpm/media-typer@0.3.0/node_modules/media-typer", + }, + Object { + "deps": Object { + "map-age-cleaner": 1776, + "mimic-fn": 1813, + }, + "name": "mem", + "root": "/common/temp/default/node_modules/.pnpm/mem@8.1.1/node_modules/mem", + }, + Object { + "deps": Object { + "fs-monkey": 1366, + }, + "name": "memfs", + "root": "/common/temp/default/node_modules/.pnpm/memfs@3.4.3/node_modules/memfs", + }, + Object { + "deps": Object { + "map-or-similar": 1780, + }, + "name": "memoizerific", + "root": "/common/temp/default/node_modules/.pnpm/memoizerific@1.11.3/node_modules/memoizerific", + }, + Object { + "deps": Object { + "errno": 1208, + "readable-stream": 2126, + }, + "name": "memory-fs", + "root": "/common/temp/default/node_modules/.pnpm/memory-fs@0.4.1/node_modules/memory-fs", + }, + Object { + "deps": Object { + "errno": 1208, + "readable-stream": 2126, + }, + "name": "memory-fs", + "root": "/common/temp/default/node_modules/.pnpm/memory-fs@0.5.0/node_modules/memory-fs", + }, + Object { + "deps": Object { + "@types/minimist": 615, + "camelcase-keys": 953, + "decamelize": 1109, + "decamelize-keys": 1108, + "hard-rejection": 1426, + "minimist-options": 1828, + "normalize-package-data": 1879, + "read-pkg-up": 2122, + "redent": 2136, + "trim-newlines": 2413, + "type-fest": 2442, + "yargs-parser": 2616, + }, + "name": "meow", + "root": "/common/temp/default/node_modules/.pnpm/meow@9.0.0/node_modules/meow", + }, + Object { + "deps": Object {}, + "name": "merge-descriptors", + "root": "/common/temp/default/node_modules/.pnpm/merge-descriptors@1.0.1/node_modules/merge-descriptors", + }, + Object { + "deps": Object {}, + "name": "merge-descriptors", + "root": "/common/temp/default/node_modules/.pnpm/merge-descriptors@1.0.3/node_modules/merge-descriptors", + }, + Object { + "deps": Object {}, + "name": "merge-stream", + "root": "/common/temp/default/node_modules/.pnpm/merge-stream@2.0.0/node_modules/merge-stream", + }, + Object { + "deps": Object {}, + "name": "merge2", + "root": "/common/temp/default/node_modules/.pnpm/merge2@1.4.1/node_modules/merge2", + }, + Object { + "deps": Object {}, + "name": "methods", + "root": "/common/temp/default/node_modules/.pnpm/methods@1.1.2/node_modules/methods", + }, + Object { + "deps": Object {}, + "name": "microevent.ts", + "root": "/common/temp/default/node_modules/.pnpm/microevent.ts@0.1.1/node_modules/microevent.ts", + }, + Object { + "deps": Object { + "arr-diff": 818, + "array-unique": 828, + "braces": 912, + "define-property": 1128, + "extend-shallow": 1292, + "extglob": 1295, + "fragment-cache": 1356, + "kind-of": 1713, + "nanomatch": 1857, + "object.pick": 1907, + "regex-not": 2146, + "snapdragon": 2279, + "to-regex": 2405, + }, + "name": "micromatch", + "root": "/common/temp/default/node_modules/.pnpm/micromatch@3.1.10/node_modules/micromatch", + }, + Object { + "deps": Object { + "braces": 913, + "picomatch": 1976, + }, + "name": "micromatch", + "root": "/common/temp/default/node_modules/.pnpm/micromatch@4.0.5/node_modules/micromatch", + }, + Object { + "deps": Object { + "bn.js": 901, + "brorand": 914, + }, + "name": "miller-rabin", + "root": "/common/temp/default/node_modules/.pnpm/miller-rabin@4.0.1/node_modules/miller-rabin", + }, + Object { + "deps": Object {}, + "name": "mime-db", + "root": "/common/temp/default/node_modules/.pnpm/mime-db@1.52.0/node_modules/mime-db", + }, + Object { + "deps": Object { + "mime-db": 1808, + }, + "name": "mime-types", + "root": "/common/temp/default/node_modules/.pnpm/mime-types@2.1.35/node_modules/mime-types", + }, + Object { + "deps": Object {}, + "name": "mime", + "root": "/common/temp/default/node_modules/.pnpm/mime@1.6.0/node_modules/mime", + }, + Object { + "deps": Object {}, + "name": "mime", + "root": "/common/temp/default/node_modules/.pnpm/mime@2.6.0/node_modules/mime", + }, + Object { + "deps": Object {}, + "name": "mimic-fn", + "root": "/common/temp/default/node_modules/.pnpm/mimic-fn@2.1.0/node_modules/mimic-fn", + }, + Object { + "deps": Object {}, + "name": "mimic-fn", + "root": "/common/temp/default/node_modules/.pnpm/mimic-fn@3.1.0/node_modules/mimic-fn", + }, + Object { + "deps": Object {}, + "name": "mimic-response", + "root": "/common/temp/default/node_modules/.pnpm/mimic-response@1.0.1/node_modules/mimic-response", + }, + Object { + "deps": Object {}, + "name": "mimic-response", + "root": "/common/temp/default/node_modules/.pnpm/mimic-response@3.1.0/node_modules/mimic-response", + }, + Object { + "deps": Object { + "dom-walk": 1163, + }, + "name": "min-document", + "root": "/common/temp/default/node_modules/.pnpm/min-document@2.19.0/node_modules/min-document", + }, + Object { + "deps": Object {}, + "name": "min-indent", + "root": "/common/temp/default/node_modules/.pnpm/min-indent@1.0.1/node_modules/min-indent", + }, + Object { + "deps": Object { + "schema-utils": 2229, + "webpack": 2559, + }, + "name": "mini-css-extract-plugin", + "root": "/common/temp/default/node_modules/.pnpm/mini-css-extract-plugin@2.5.3_webpack@5.82.1/node_modules/mini-css-extract-plugin", + }, + Object { + "deps": Object {}, + "name": "minimalistic-assert", + "root": "/common/temp/default/node_modules/.pnpm/minimalistic-assert@1.0.1/node_modules/minimalistic-assert", + }, + Object { + "deps": Object {}, + "name": "minimalistic-crypto-utils", + "root": "/common/temp/default/node_modules/.pnpm/minimalistic-crypto-utils@1.0.1/node_modules/minimalistic-crypto-utils", + }, + Object { + "deps": Object { + "brace-expansion": 910, + }, + "name": "minimatch", + "root": "/common/temp/default/node_modules/.pnpm/minimatch@3.0.8/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 910, + }, + "name": "minimatch", + "root": "/common/temp/default/node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 911, + }, + "name": "minimatch", + "root": "/common/temp/default/node_modules/.pnpm/minimatch@5.0.1/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 911, + }, + "name": "minimatch", + "root": "/common/temp/default/node_modules/.pnpm/minimatch@5.1.6/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 911, + }, + "name": "minimatch", + "root": "/common/temp/default/node_modules/.pnpm/minimatch@7.4.6/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 911, + }, + "name": "minimatch", + "root": "/common/temp/default/node_modules/.pnpm/minimatch@9.0.3/node_modules/minimatch", + }, + Object { + "deps": Object { + "brace-expansion": 911, + }, + "name": "minimatch", + "root": "/common/temp/default/node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch", + }, + Object { + "deps": Object { + "arrify": 835, + "is-plain-obj": 1583, + "kind-of": 1713, + }, + "name": "minimist-options", + "root": "/common/temp/default/node_modules/.pnpm/minimist-options@4.1.0/node_modules/minimist-options", + }, + Object { + "deps": Object {}, + "name": "minimist", + "root": "/common/temp/default/node_modules/.pnpm/minimist@1.2.8/node_modules/minimist", + }, + Object { + "deps": Object { + "minipass": 1835, + }, + "name": "minipass-collect", + "root": "/common/temp/default/node_modules/.pnpm/minipass-collect@1.0.2/node_modules/minipass-collect", + }, + Object { + "deps": Object { + "encoding": 1196, + "minipass": 1835, + "minipass-sized": 1834, + "minizlib": 1838, + }, + "name": "minipass-fetch", + "root": "/common/temp/default/node_modules/.pnpm/minipass-fetch@1.4.1/node_modules/minipass-fetch", + }, + Object { + "deps": Object { + "minipass": 1835, + }, + "name": "minipass-flush", + "root": "/common/temp/default/node_modules/.pnpm/minipass-flush@1.0.5/node_modules/minipass-flush", + }, + Object { + "deps": Object { + "minipass": 1835, + }, + "name": "minipass-pipeline", + "root": "/common/temp/default/node_modules/.pnpm/minipass-pipeline@1.2.4/node_modules/minipass-pipeline", + }, + Object { + "deps": Object { + "minipass": 1835, + }, + "name": "minipass-sized", + "root": "/common/temp/default/node_modules/.pnpm/minipass-sized@1.0.3/node_modules/minipass-sized", + }, + Object { + "deps": Object { + "yallist": 2610, + }, + "name": "minipass", + "root": "/common/temp/default/node_modules/.pnpm/minipass@3.3.6/node_modules/minipass", + }, + Object { + "deps": Object {}, + "name": "minipass", + "root": "/common/temp/default/node_modules/.pnpm/minipass@4.2.8/node_modules/minipass", + }, + Object { + "deps": Object {}, + "name": "minipass", + "root": "/common/temp/default/node_modules/.pnpm/minipass@5.0.0/node_modules/minipass", + }, + Object { + "deps": Object { + "minipass": 1835, + "yallist": 2610, + }, + "name": "minizlib", + "root": "/common/temp/default/node_modules/.pnpm/minizlib@2.1.2/node_modules/minizlib", + }, + Object { + "deps": Object { + "concat-stream": 1041, + "duplexify": 1181, + "end-of-stream": 1197, + "flush-write-stream": 1344, + "from2": 1358, + "parallel-transform": 1947, + "pump": 2069, + "pumpify": 2070, + "stream-each": 2320, + "through2": 2391, + }, + "name": "mississippi", + "root": "/common/temp/default/node_modules/.pnpm/mississippi@3.0.0/node_modules/mississippi", + }, + Object { + "deps": Object { + "for-in": 1347, + "is-extendable": 1559, + }, + "name": "mixin-deep", + "root": "/common/temp/default/node_modules/.pnpm/mixin-deep@1.3.2/node_modules/mixin-deep", + }, + Object { + "deps": Object {}, + "name": "mkdirp-classic", + "root": "/common/temp/default/node_modules/.pnpm/mkdirp-classic@0.5.3/node_modules/mkdirp-classic", + }, + Object { + "deps": Object { + "minimist": 1829, + }, + "name": "mkdirp", + "root": "/common/temp/default/node_modules/.pnpm/mkdirp@0.5.6/node_modules/mkdirp", + }, + Object { + "deps": Object {}, + "name": "mkdirp", + "root": "/common/temp/default/node_modules/.pnpm/mkdirp@1.0.4/node_modules/mkdirp", + }, + Object { + "deps": Object { + "ansi-colors": 791, + "browser-stdout": 915, + "chokidar": 977, + "debug": 1106, + "diff": 1152, + "escape-string-regexp": 1233, + "find-up": 1333, + "glob": 1402, + "he": 1452, + "js-yaml": 1678, + "log-symbols": 1761, + "minimatch": 1823, + "ms": 1850, + "serialize-javascript": 2244, + "strip-json-comments": 2351, + "supports-color": 2363, + "workerpool": 2582, + "yargs": 2621, + "yargs-parser": 2615, + "yargs-unparser": 2618, + }, + "name": "mocha", + "root": "/common/temp/default/node_modules/.pnpm/mocha@10.4.0/node_modules/mocha", + }, + Object { + "deps": Object { + "aproba": 808, + "copy-concurrently": 1056, + "fs-write-stream-atomic": 1367, + "mkdirp": 1842, + "rimraf": 2194, + "run-queue": 2201, + }, + "name": "move-concurrently", + "root": "/common/temp/default/node_modules/.pnpm/move-concurrently@1.0.1/node_modules/move-concurrently", + }, + Object { + "deps": Object {}, + "name": "mrmime", + "root": "/common/temp/default/node_modules/.pnpm/mrmime@1.0.1/node_modules/mrmime", + }, + Object { + "deps": Object {}, + "name": "ms", + "root": "/common/temp/default/node_modules/.pnpm/ms@2.0.0/node_modules/ms", + }, + Object { + "deps": Object {}, + "name": "ms", + "root": "/common/temp/default/node_modules/.pnpm/ms@2.1.1/node_modules/ms", + }, + Object { + "deps": Object {}, + "name": "ms", + "root": "/common/temp/default/node_modules/.pnpm/ms@2.1.2/node_modules/ms", + }, + Object { + "deps": Object {}, + "name": "ms", + "root": "/common/temp/default/node_modules/.pnpm/ms@2.1.3/node_modules/ms", + }, + Object { + "deps": Object { + "dns-packet": 1156, + "thunky": 2394, + }, + "name": "multicast-dns", + "root": "/common/temp/default/node_modules/.pnpm/multicast-dns@7.2.5/node_modules/multicast-dns", + }, + Object { + "deps": Object { + "@types/minimatch": 614, + "array-differ": 822, + "array-union": 826, + "arrify": 836, + "minimatch": 1821, + }, + "name": "multimatch", + "root": "/common/temp/default/node_modules/.pnpm/multimatch@5.0.0/node_modules/multimatch", + }, + Object { + "deps": Object {}, + "name": "mute-stream", + "root": "/common/temp/default/node_modules/.pnpm/mute-stream@0.0.8/node_modules/mute-stream", + }, + Object { + "deps": Object { + "any-promise": 804, + "object-assign": 1897, + "thenify-all": 2387, + }, + "name": "mz", + "root": "/common/temp/default/node_modules/.pnpm/mz@2.7.0/node_modules/mz", + }, + Object { + "deps": Object {}, + "name": "nan", + "root": "/common/temp/default/node_modules/.pnpm/nan@2.19.0/node_modules/nan", + }, + Object { + "deps": Object {}, + "name": "nanoid", + "root": "/common/temp/default/node_modules/.pnpm/nanoid@3.3.7/node_modules/nanoid", + }, + Object { + "deps": Object { + "arr-diff": 818, + "array-unique": 828, + "define-property": 1128, + "extend-shallow": 1292, + "fragment-cache": 1356, + "is-windows": 1605, + "kind-of": 1713, + "object.pick": 1907, + "regex-not": 2146, + "snapdragon": 2279, + "to-regex": 2405, + }, + "name": "nanomatch", + "root": "/common/temp/default/node_modules/.pnpm/nanomatch@1.2.13/node_modules/nanomatch", + }, + Object { + "deps": Object {}, + "name": "napi-build-utils", + "root": "/common/temp/default/node_modules/.pnpm/napi-build-utils@1.0.2/node_modules/napi-build-utils", + }, + Object { + "deps": Object {}, + "name": "natural-compare", + "root": "/common/temp/default/node_modules/.pnpm/natural-compare@1.4.0/node_modules/natural-compare", + }, + Object { + "deps": Object { + "json-stringify-safe": 1692, + "minimist": 1829, + "readable-stream": 2127, + "split2": 2304, + "through2": 2392, + }, + "name": "ndjson", + "root": "/common/temp/default/node_modules/.pnpm/ndjson@2.0.0/node_modules/ndjson", + }, + Object { + "deps": Object {}, + "name": "negotiator", + "root": "/common/temp/default/node_modules/.pnpm/negotiator@0.6.3/node_modules/negotiator", + }, + Object { + "deps": Object {}, + "name": "neo-async", + "root": "/common/temp/default/node_modules/.pnpm/neo-async@2.6.2/node_modules/neo-async", + }, + Object { + "deps": Object {}, + "name": "nested-error-stacks", + "root": "/common/temp/default/node_modules/.pnpm/nested-error-stacks@2.1.1/node_modules/nested-error-stacks", + }, + Object { + "deps": Object {}, + "name": "nice-try", + "root": "/common/temp/default/node_modules/.pnpm/nice-try@1.0.5/node_modules/nice-try", + }, + Object { + "deps": Object { + "lower-case": 1765, + "tslib": 2425, + }, + "name": "no-case", + "root": "/common/temp/default/node_modules/.pnpm/no-case@3.0.4/node_modules/no-case", + }, + Object { + "deps": Object { + "semver": 2238, + }, + "name": "node-abi", + "root": "/common/temp/default/node_modules/.pnpm/node-abi@3.56.0/node_modules/node-abi", + }, + Object { + "deps": Object {}, + "name": "node-addon-api", + "root": "/common/temp/default/node_modules/.pnpm/node-addon-api@3.2.1/node_modules/node-addon-api", + }, + Object { + "deps": Object {}, + "name": "node-addon-api", + "root": "/common/temp/default/node_modules/.pnpm/node-addon-api@4.3.0/node_modules/node-addon-api", + }, + Object { + "deps": Object { + "minimatch": 1821, + }, + "name": "node-dir", + "root": "/common/temp/default/node_modules/.pnpm/node-dir@0.1.17/node_modules/node-dir", + }, + Object { + "deps": Object { + "lodash": 1760, + }, + "name": "node-emoji", + "root": "/common/temp/default/node_modules/.pnpm/node-emoji@1.11.0/node_modules/node-emoji", + }, + Object { + "deps": Object { + "whatwg-url": 2566, + }, + "name": "node-fetch", + "root": "/common/temp/default/node_modules/.pnpm/node-fetch@2.6.7/node_modules/node-fetch", + }, + Object { + "deps": Object {}, + "name": "node-forge", + "root": "/common/temp/default/node_modules/.pnpm/node-forge@1.3.1/node_modules/node-forge", + }, + Object { + "deps": Object { + "env-paths": 1205, + "glob": 1401, + "graceful-fs": 1418, + "make-fetch-happen": 1774, + "nopt": 1877, + "npmlog": 1891, + "rimraf": 2195, + "semver": 2238, + "tar": 2376, + "which": 2574, + }, + "name": "node-gyp", + "root": "/common/temp/default/node_modules/.pnpm/node-gyp@8.1.0/node_modules/node-gyp", + }, + Object { + "deps": Object {}, + "name": "node-int64", + "root": "/common/temp/default/node_modules/.pnpm/node-int64@0.4.0/node_modules/node-int64", + }, + Object { + "deps": Object { + "assert": 839, + "browserify-zlib": 921, + "buffer": 930, + "console-browserify": 1045, + "constants-browserify": 1047, + "crypto-browserify": 1076, + "domain-browser": 1164, + "events": 1280, + "https-browserify": 1486, + "os-browserify": 1921, + "path-browserify": 1961, + "process": 2053, + "punycode": 2072, + "querystring-es3": 2080, + "readable-stream": 2126, + "stream-browserify": 2319, + "stream-http": 2321, + "string_decoder": 2340, + "timers-browserify": 2395, + "tty-browserify": 2437, + "url": 2501, + "util": 2511, + "vm-browserify": 2530, + }, + "name": "node-libs-browser", + "root": "/common/temp/default/node_modules/.pnpm/node-libs-browser@2.2.1/node_modules/node-libs-browser", + }, + Object { + "deps": Object {}, + "name": "node-releases", + "root": "/common/temp/default/node_modules/.pnpm/node-releases@2.0.14/node_modules/node-releases", + }, + Object { + "deps": Object { + "abbrev": 761, + }, + "name": "nopt", + "root": "/common/temp/default/node_modules/.pnpm/nopt@5.0.0/node_modules/nopt", + }, + Object { + "deps": Object { + "hosted-git-info": 1459, + "resolve": 2182, + "semver": 2236, + "validate-npm-package-license": 2522, + }, + "name": "normalize-package-data", + "root": "/common/temp/default/node_modules/.pnpm/normalize-package-data@2.5.0/node_modules/normalize-package-data", + }, + Object { + "deps": Object { + "hosted-git-info": 1460, + "is-core-module": 1548, + "semver": 2238, + "validate-npm-package-license": 2522, + }, + "name": "normalize-package-data", + "root": "/common/temp/default/node_modules/.pnpm/normalize-package-data@3.0.3/node_modules/normalize-package-data", + }, + Object { + "deps": Object { + "remove-trailing-separator": 2162, + }, + "name": "normalize-path", + "root": "/common/temp/default/node_modules/.pnpm/normalize-path@2.1.1/node_modules/normalize-path", + }, + Object { + "deps": Object {}, + "name": "normalize-path", + "root": "/common/temp/default/node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path", + }, + Object { + "deps": Object {}, + "name": "normalize-range", + "root": "/common/temp/default/node_modules/.pnpm/normalize-range@0.1.2/node_modules/normalize-range", + }, + Object { + "deps": Object {}, + "name": "normalize-url", + "root": "/common/temp/default/node_modules/.pnpm/normalize-url@6.1.0/node_modules/normalize-url", + }, + Object { + "deps": Object { + "npm-normalize-package-bin": 1886, + }, + "name": "npm-bundled", + "root": "/common/temp/default/node_modules/.pnpm/npm-bundled@1.1.2/node_modules/npm-bundled", + }, + Object { + "deps": Object { + "callsite-record": 948, + "chalk": 966, + "co": 1007, + "depcheck": 1132, + "execa": 1284, + "giturl": 1392, + "global-modules": 1405, + "globby": 1414, + "inquirer": 1523, + "is-ci": 1547, + "lodash": 1760, + "meow": 1798, + "minimatch": 1821, + "node-emoji": 1870, + "ora": 1920, + "package-json": 1945, + "path-exists": 1964, + "pkg-dir": 1987, + "preferred-pm": 2040, + "rc-config-loader": 2094, + "semver": 2238, + "semver-diff": 2234, + "strip-ansi": 2343, + "text-table": 2386, + "throat": 2389, + "update-notifier": 2493, + "xtend": 2606, + }, + "name": "npm-check", + "root": "/common/temp/default/node_modules/.pnpm/npm-check@6.0.1/node_modules/npm-check", + }, + Object { + "deps": Object {}, + "name": "npm-normalize-package-bin", + "root": "/common/temp/default/node_modules/.pnpm/npm-normalize-package-bin@1.0.1/node_modules/npm-normalize-package-bin", + }, + Object { + "deps": Object { + "hosted-git-info": 1459, + "osenv": 1924, + "semver": 2236, + "validate-npm-package-name": 2523, + }, + "name": "npm-package-arg", + "root": "/common/temp/default/node_modules/.pnpm/npm-package-arg@6.1.1/node_modules/npm-package-arg", + }, + Object { + "deps": Object { + "glob": 1401, + "ignore-walk": 1499, + "npm-bundled": 1884, + "npm-normalize-package-bin": 1886, + }, + "name": "npm-packlist", + "root": "/common/temp/default/node_modules/.pnpm/npm-packlist@2.1.5/node_modules/npm-packlist", + }, + Object { + "deps": Object { + "path-key": 1966, + }, + "name": "npm-run-path", + "root": "/common/temp/default/node_modules/.pnpm/npm-run-path@2.0.2/node_modules/npm-run-path", + }, + Object { + "deps": Object { + "path-key": 1967, + }, + "name": "npm-run-path", + "root": "/common/temp/default/node_modules/.pnpm/npm-run-path@4.0.1/node_modules/npm-run-path", + }, + Object { + "deps": Object { + "are-we-there-yet": 814, + "console-control-strings": 1046, + "gauge": 1375, + "set-blocking": 2249, + }, + "name": "npmlog", + "root": "/common/temp/default/node_modules/.pnpm/npmlog@4.1.2/node_modules/npmlog", + }, + Object { + "deps": Object { + "are-we-there-yet": 815, + "console-control-strings": 1046, + "gauge": 1376, + "set-blocking": 2249, + }, + "name": "npmlog", + "root": "/common/temp/default/node_modules/.pnpm/npmlog@5.0.1/node_modules/npmlog", + }, + Object { + "deps": Object { + "boolbase": 906, + }, + "name": "nth-check", + "root": "/common/temp/default/node_modules/.pnpm/nth-check@2.1.1/node_modules/nth-check", + }, + Object { + "deps": Object {}, + "name": "num2fraction", + "root": "/common/temp/default/node_modules/.pnpm/num2fraction@1.2.2/node_modules/num2fraction", + }, + Object { + "deps": Object {}, + "name": "number-is-nan", + "root": "/common/temp/default/node_modules/.pnpm/number-is-nan@1.0.1/node_modules/number-is-nan", + }, + Object { + "deps": Object {}, + "name": "nwsapi", + "root": "/common/temp/default/node_modules/.pnpm/nwsapi@2.2.7/node_modules/nwsapi", + }, + Object { + "deps": Object {}, + "name": "object-assign", + "root": "/common/temp/default/node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign", + }, + Object { + "deps": Object { + "copy-descriptor": 1057, + "define-property": 1126, + "kind-of": 1711, + }, + "name": "object-copy", + "root": "/common/temp/default/node_modules/.pnpm/object-copy@0.1.0/node_modules/object-copy", + }, + Object { + "deps": Object {}, + "name": "object-inspect", + "root": "/common/temp/default/node_modules/.pnpm/object-inspect@1.13.1/node_modules/object-inspect", + }, + Object { + "deps": Object {}, + "name": "object-keys", + "root": "/common/temp/default/node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys", + }, + Object { + "deps": Object { + "isobject": 1614, + }, + "name": "object-visit", + "root": "/common/temp/default/node_modules/.pnpm/object-visit@1.0.1/node_modules/object-visit", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "has-symbols": 1433, + "object-keys": 1900, + }, + "name": "object.assign", + "root": "/common/temp/default/node_modules/.pnpm/object.assign@4.1.5/node_modules/object.assign", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-object-atoms": 1218, + }, + "name": "object.entries", + "root": "/common/temp/default/node_modules/.pnpm/object.entries@1.1.8/node_modules/object.entries", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + }, + "name": "object.fromentries", + "root": "/common/temp/default/node_modules/.pnpm/object.fromentries@2.0.7/node_modules/object.fromentries", + }, + Object { + "deps": Object { + "array.prototype.reduce": 832, + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "safe-array-concat": 2204, + }, + "name": "object.getownpropertydescriptors", + "root": "/common/temp/default/node_modules/.pnpm/object.getownpropertydescriptors@2.1.7/node_modules/object.getownpropertydescriptors", + }, + Object { + "deps": Object { + "define-properties": 1125, + "es-abstract": 1211, + }, + "name": "object.hasown", + "root": "/common/temp/default/node_modules/.pnpm/object.hasown@1.1.3/node_modules/object.hasown", + }, + Object { + "deps": Object { + "isobject": 1614, + }, + "name": "object.pick", + "root": "/common/temp/default/node_modules/.pnpm/object.pick@1.3.0/node_modules/object.pick", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-object-atoms": 1218, + }, + "name": "object.values", + "root": "/common/temp/default/node_modules/.pnpm/object.values@1.2.0/node_modules/object.values", + }, + Object { + "deps": Object {}, + "name": "objectorarray", + "root": "/common/temp/default/node_modules/.pnpm/objectorarray@1.0.5/node_modules/objectorarray", + }, + Object { + "deps": Object {}, + "name": "obuf", + "root": "/common/temp/default/node_modules/.pnpm/obuf@1.1.2/node_modules/obuf", + }, + Object { + "deps": Object { + "ee-first": 1184, + }, + "name": "on-finished", + "root": "/common/temp/default/node_modules/.pnpm/on-finished@2.3.0/node_modules/on-finished", + }, + Object { + "deps": Object { + "ee-first": 1184, + }, + "name": "on-finished", + "root": "/common/temp/default/node_modules/.pnpm/on-finished@2.4.1/node_modules/on-finished", + }, + Object { + "deps": Object {}, + "name": "on-headers", + "root": "/common/temp/default/node_modules/.pnpm/on-headers@1.0.2/node_modules/on-headers", + }, + Object { + "deps": Object { + "wrappy": 2587, + }, + "name": "once", + "root": "/common/temp/default/node_modules/.pnpm/once@1.4.0/node_modules/once", + }, + Object { + "deps": Object { + "mimic-fn": 1812, + }, + "name": "onetime", + "root": "/common/temp/default/node_modules/.pnpm/onetime@5.1.2/node_modules/onetime", + }, + Object { + "deps": Object { + "is-docker": 1555, + "is-wsl": 1608, + }, + "name": "open", + "root": "/common/temp/default/node_modules/.pnpm/open@7.4.2/node_modules/open", + }, + Object { + "deps": Object { + "define-lazy-prop": 1124, + "is-docker": 1555, + "is-wsl": 1608, + }, + "name": "open", + "root": "/common/temp/default/node_modules/.pnpm/open@8.4.2/node_modules/open", + }, + Object { + "deps": Object {}, + "name": "opener", + "root": "/common/temp/default/node_modules/.pnpm/opener@1.5.2/node_modules/opener", + }, + Object { + "deps": Object { + "@aashutoshrathi/word-wrap": 0, + "deep-is": 1117, + "fast-levenshtein": 1304, + "levn": 1723, + "prelude-ls": 2041, + "type-check": 2440, + }, + "name": "optionator", + "root": "/common/temp/default/node_modules/.pnpm/optionator@0.9.3/node_modules/optionator", + }, + Object { + "deps": Object { + "bl": 898, + "chalk": 966, + "cli-cursor": 992, + "cli-spinners": 993, + "is-interactive": 1572, + "is-unicode-supported": 1599, + "log-symbols": 1761, + "strip-ansi": 2343, + "wcwidth": 2539, + }, + "name": "ora", + "root": "/common/temp/default/node_modules/.pnpm/ora@5.4.1/node_modules/ora", + }, + Object { + "deps": Object {}, + "name": "os-browserify", + "root": "/common/temp/default/node_modules/.pnpm/os-browserify@0.3.0/node_modules/os-browserify", + }, + Object { + "deps": Object {}, + "name": "os-homedir", + "root": "/common/temp/default/node_modules/.pnpm/os-homedir@1.0.2/node_modules/os-homedir", + }, + Object { + "deps": Object {}, + "name": "os-tmpdir", + "root": "/common/temp/default/node_modules/.pnpm/os-tmpdir@1.0.2/node_modules/os-tmpdir", + }, + Object { + "deps": Object { + "os-homedir": 1922, + "os-tmpdir": 1923, + }, + "name": "osenv", + "root": "/common/temp/default/node_modules/.pnpm/osenv@0.1.5/node_modules/osenv", + }, + Object { + "deps": Object {}, + "name": "overlayscrollbars", + "root": "/common/temp/default/node_modules/.pnpm/overlayscrollbars@1.13.3/node_modules/overlayscrollbars", + }, + Object { + "deps": Object { + "p-map": 1937, + }, + "name": "p-all", + "root": "/common/temp/default/node_modules/.pnpm/p-all@2.1.0/node_modules/p-all", + }, + Object { + "deps": Object {}, + "name": "p-cancelable", + "root": "/common/temp/default/node_modules/.pnpm/p-cancelable@2.1.1/node_modules/p-cancelable", + }, + Object { + "deps": Object {}, + "name": "p-defer", + "root": "/common/temp/default/node_modules/.pnpm/p-defer@1.0.0/node_modules/p-defer", + }, + Object { + "deps": Object { + "p-timeout": 1943, + }, + "name": "p-event", + "root": "/common/temp/default/node_modules/.pnpm/p-event@4.2.0/node_modules/p-event", + }, + Object { + "deps": Object { + "p-map": 1937, + }, + "name": "p-filter", + "root": "/common/temp/default/node_modules/.pnpm/p-filter@2.1.0/node_modules/p-filter", + }, + Object { + "deps": Object {}, + "name": "p-finally", + "root": "/common/temp/default/node_modules/.pnpm/p-finally@1.0.0/node_modules/p-finally", + }, + Object { + "deps": Object { + "p-try": 1944, + }, + "name": "p-limit", + "root": "/common/temp/default/node_modules/.pnpm/p-limit@2.3.0/node_modules/p-limit", + }, + Object { + "deps": Object { + "yocto-queue": 2625, + }, + "name": "p-limit", + "root": "/common/temp/default/node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit", + }, + Object { + "deps": Object { + "p-limit": 1932, + }, + "name": "p-locate", + "root": "/common/temp/default/node_modules/.pnpm/p-locate@3.0.0/node_modules/p-locate", + }, + Object { + "deps": Object { + "p-limit": 1932, + }, + "name": "p-locate", + "root": "/common/temp/default/node_modules/.pnpm/p-locate@4.1.0/node_modules/p-locate", + }, + Object { + "deps": Object { + "p-limit": 1933, + }, + "name": "p-locate", + "root": "/common/temp/default/node_modules/.pnpm/p-locate@5.0.0/node_modules/p-locate", + }, + Object { + "deps": Object {}, + "name": "p-map", + "root": "/common/temp/default/node_modules/.pnpm/p-map@2.1.0/node_modules/p-map", + }, + Object { + "deps": Object { + "aggregate-error": 778, + }, + "name": "p-map", + "root": "/common/temp/default/node_modules/.pnpm/p-map@3.0.0/node_modules/p-map", + }, + Object { + "deps": Object { + "aggregate-error": 778, + }, + "name": "p-map", + "root": "/common/temp/default/node_modules/.pnpm/p-map@4.0.0/node_modules/p-map", + }, + Object { + "deps": Object {}, + "name": "p-reflect", + "root": "/common/temp/default/node_modules/.pnpm/p-reflect@2.1.0/node_modules/p-reflect", + }, + Object { + "deps": Object { + "@types/retry": 645, + "retry": 2189, + }, + "name": "p-retry", + "root": "/common/temp/default/node_modules/.pnpm/p-retry@4.6.2/node_modules/p-retry", + }, + Object { + "deps": Object { + "p-limit": 1932, + "p-reflect": 1940, + }, + "name": "p-settle", + "root": "/common/temp/default/node_modules/.pnpm/p-settle@4.1.1/node_modules/p-settle", + }, + Object { + "deps": Object { + "p-finally": 1931, + }, + "name": "p-timeout", + "root": "/common/temp/default/node_modules/.pnpm/p-timeout@3.2.0/node_modules/p-timeout", + }, + Object { + "deps": Object {}, + "name": "p-try", + "root": "/common/temp/default/node_modules/.pnpm/p-try@2.2.0/node_modules/p-try", + }, + Object { + "deps": Object { + "got": 1417, + "registry-auth-token": 2151, + "registry-url": 2152, + "semver": 2238, + }, + "name": "package-json", + "root": "/common/temp/default/node_modules/.pnpm/package-json@7.0.0/node_modules/package-json", + }, + Object { + "deps": Object {}, + "name": "pako", + "root": "/common/temp/default/node_modules/.pnpm/pako@1.0.11/node_modules/pako", + }, + Object { + "deps": Object { + "cyclist": 1097, + "inherits": 1518, + "readable-stream": 2126, + }, + "name": "parallel-transform", + "root": "/common/temp/default/node_modules/.pnpm/parallel-transform@1.2.0/node_modules/parallel-transform", + }, + Object { + "deps": Object { + "dot-case": 1171, + "tslib": 2425, + }, + "name": "param-case", + "root": "/common/temp/default/node_modules/.pnpm/param-case@3.0.4/node_modules/param-case", + }, + Object { + "deps": Object { + "callsites": 950, + }, + "name": "parent-module", + "root": "/common/temp/default/node_modules/.pnpm/parent-module@1.0.1/node_modules/parent-module", + }, + Object { + "deps": Object { + "asn1.js": 838, + "browserify-aes": 916, + "evp_bytestokey": 1281, + "hash-base": 1442, + "pbkdf2": 1972, + "safe-buffer": 2207, + }, + "name": "parse-asn1", + "root": "/common/temp/default/node_modules/.pnpm/parse-asn1@5.1.7/node_modules/parse-asn1", + }, + Object { + "deps": Object { + "character-entities": 970, + "character-entities-legacy": 969, + "character-reference-invalid": 971, + "is-alphanumerical": 1535, + "is-decimal": 1552, + "is-hexadecimal": 1570, + }, + "name": "parse-entities", + "root": "/common/temp/default/node_modules/.pnpm/parse-entities@2.0.0/node_modules/parse-entities", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "error-ex": 1209, + "json-parse-even-better-errors": 1687, + "lines-and-columns": 1727, + }, + "name": "parse-json", + "root": "/common/temp/default/node_modules/.pnpm/parse-json@5.2.0/node_modules/parse-json", + }, + Object { + "deps": Object {}, + "name": "parse-passwd", + "root": "/common/temp/default/node_modules/.pnpm/parse-passwd@1.0.0/node_modules/parse-passwd", + }, + Object { + "deps": Object { + "semver": 2236, + }, + "name": "parse-semver", + "root": "/common/temp/default/node_modules/.pnpm/parse-semver@1.1.1/node_modules/parse-semver", + }, + Object { + "deps": Object { + "domhandler": 1168, + "parse5": 1957, + }, + "name": "parse5-htmlparser2-tree-adapter", + "root": "/common/temp/default/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@7.0.0/node_modules/parse5-htmlparser2-tree-adapter", + }, + Object { + "deps": Object {}, + "name": "parse5", + "root": "/common/temp/default/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5", + }, + Object { + "deps": Object { + "entities": 1204, + }, + "name": "parse5", + "root": "/common/temp/default/node_modules/.pnpm/parse5@7.1.2/node_modules/parse5", + }, + Object { + "deps": Object {}, + "name": "parseurl", + "root": "/common/temp/default/node_modules/.pnpm/parseurl@1.3.3/node_modules/parseurl", + }, + Object { + "deps": Object { + "no-case": 1865, + "tslib": 2425, + }, + "name": "pascal-case", + "root": "/common/temp/default/node_modules/.pnpm/pascal-case@3.1.2/node_modules/pascal-case", + }, + Object { + "deps": Object {}, + "name": "pascalcase", + "root": "/common/temp/default/node_modules/.pnpm/pascalcase@0.1.1/node_modules/pascalcase", + }, + Object { + "deps": Object {}, + "name": "path-browserify", + "root": "/common/temp/default/node_modules/.pnpm/path-browserify@0.0.1/node_modules/path-browserify", + }, + Object { + "deps": Object {}, + "name": "path-dirname", + "root": "/common/temp/default/node_modules/.pnpm/path-dirname@1.0.2/node_modules/path-dirname", + }, + Object { + "deps": Object {}, + "name": "path-exists", + "root": "/common/temp/default/node_modules/.pnpm/path-exists@3.0.0/node_modules/path-exists", + }, + Object { + "deps": Object {}, + "name": "path-exists", + "root": "/common/temp/default/node_modules/.pnpm/path-exists@4.0.0/node_modules/path-exists", + }, + Object { + "deps": Object {}, + "name": "path-is-absolute", + "root": "/common/temp/default/node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute", + }, + Object { + "deps": Object {}, + "name": "path-key", + "root": "/common/temp/default/node_modules/.pnpm/path-key@2.0.1/node_modules/path-key", + }, + Object { + "deps": Object {}, + "name": "path-key", + "root": "/common/temp/default/node_modules/.pnpm/path-key@3.1.1/node_modules/path-key", + }, + Object { + "deps": Object {}, + "name": "path-parse", + "root": "/common/temp/default/node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse", + }, + Object { + "deps": Object {}, + "name": "path-to-regexp", + "root": "/common/temp/default/node_modules/.pnpm/path-to-regexp@0.1.7/node_modules/path-to-regexp", + }, + Object { + "deps": Object { + "pify": 1978, + }, + "name": "path-type", + "root": "/common/temp/default/node_modules/.pnpm/path-type@3.0.0/node_modules/path-type", + }, + Object { + "deps": Object {}, + "name": "path-type", + "root": "/common/temp/default/node_modules/.pnpm/path-type@4.0.0/node_modules/path-type", + }, + Object { + "deps": Object { + "create-hash": 1071, + "create-hmac": 1072, + "ripemd160": 2196, + "safe-buffer": 2207, + "sha.js": 2258, + }, + "name": "pbkdf2", + "root": "/common/temp/default/node_modules/.pnpm/pbkdf2@3.1.2/node_modules/pbkdf2", + }, + Object { + "deps": Object {}, + "name": "pend", + "root": "/common/temp/default/node_modules/.pnpm/pend@1.2.0/node_modules/pend", + }, + Object { + "deps": Object {}, + "name": "picocolors", + "root": "/common/temp/default/node_modules/.pnpm/picocolors@0.2.1/node_modules/picocolors", + }, + Object { + "deps": Object {}, + "name": "picocolors", + "root": "/common/temp/default/node_modules/.pnpm/picocolors@1.0.0/node_modules/picocolors", + }, + Object { + "deps": Object {}, + "name": "picomatch", + "root": "/common/temp/default/node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch", + }, + Object { + "deps": Object {}, + "name": "pidof", + "root": "/common/temp/default/node_modules/.pnpm/pidof@1.0.2/node_modules/pidof", + }, + Object { + "deps": Object {}, + "name": "pify", + "root": "/common/temp/default/node_modules/.pnpm/pify@3.0.0/node_modules/pify", + }, + Object { + "deps": Object {}, + "name": "pify", + "root": "/common/temp/default/node_modules/.pnpm/pify@4.0.1/node_modules/pify", + }, + Object { + "deps": Object { + "pinkie": 1981, + }, + "name": "pinkie-promise", + "root": "/common/temp/default/node_modules/.pnpm/pinkie-promise@2.0.1/node_modules/pinkie-promise", + }, + Object { + "deps": Object {}, + "name": "pinkie", + "root": "/common/temp/default/node_modules/.pnpm/pinkie@2.0.4/node_modules/pinkie", + }, + Object { + "deps": Object {}, + "name": "pino-std-serializers", + "root": "/common/temp/default/node_modules/.pnpm/pino-std-serializers@3.2.0/node_modules/pino-std-serializers", + }, + Object { + "deps": Object { + "fast-redact": 1305, + "fast-safe-stringify": 1306, + "flatstr": 1340, + "pino-std-serializers": 1982, + "process-warning": 2052, + "quick-format-unescaped": 2084, + "sonic-boom": 2283, + }, + "name": "pino", + "root": "/common/temp/default/node_modules/.pnpm/pino@6.14.0/node_modules/pino", + }, + Object { + "deps": Object {}, + "name": "pirates", + "root": "/common/temp/default/node_modules/.pnpm/pirates@4.0.6/node_modules/pirates", + }, + Object { + "deps": Object { + "find-up": 1331, + }, + "name": "pkg-dir", + "root": "/common/temp/default/node_modules/.pnpm/pkg-dir@3.0.0/node_modules/pkg-dir", + }, + Object { + "deps": Object { + "find-up": 1332, + }, + "name": "pkg-dir", + "root": "/common/temp/default/node_modules/.pnpm/pkg-dir@4.2.0/node_modules/pkg-dir", + }, + Object { + "deps": Object { + "find-up": 1333, + }, + "name": "pkg-dir", + "root": "/common/temp/default/node_modules/.pnpm/pkg-dir@5.0.0/node_modules/pkg-dir", + }, + Object { + "deps": Object { + "find-up": 1331, + }, + "name": "pkg-up", + "root": "/common/temp/default/node_modules/.pnpm/pkg-up@3.1.0/node_modules/pkg-up", + }, + Object { + "deps": Object { + "semver-compare": 2233, + }, + "name": "please-upgrade-node", + "root": "/common/temp/default/node_modules/.pnpm/please-upgrade-node@3.2.0/node_modules/please-upgrade-node", + }, + Object { + "deps": Object { + "ts-pnp": 2422, + }, + "name": "pnp-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/pnp-webpack-plugin@1.6.4_typescript@5.4.2/node_modules/pnp-webpack-plugin", + }, + Object { + "deps": Object { + "@pnpm/dependency-path": 379, + "yaml": 2612, + }, + "name": "pnpm-sync-lib", + "root": "/common/temp/default/node_modules/.pnpm/pnpm-sync-lib@0.2.9/node_modules/pnpm-sync-lib", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + }, + "name": "polished", + "root": "/common/temp/default/node_modules/.pnpm/polished@4.3.1/node_modules/polished", + }, + Object { + "deps": Object {}, + "name": "posix-character-classes", + "root": "/common/temp/default/node_modules/.pnpm/posix-character-classes@0.1.1/node_modules/posix-character-classes", + }, + Object { + "deps": Object {}, + "name": "possible-typed-array-names", + "root": "/common/temp/default/node_modules/.pnpm/possible-typed-array-names@1.0.0/node_modules/possible-typed-array-names", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-selector-parser": 2033, + "postcss-value-parser": 2036, + }, + "name": "postcss-calc", + "root": "/common/temp/default/node_modules/.pnpm/postcss-calc@8.2.4_postcss@8.4.36/node_modules/postcss-calc", + }, + Object { + "deps": Object { + "browserslist": 922, + "caniuse-api": 957, + "colord": 1019, + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-colormin", + "root": "/common/temp/default/node_modules/.pnpm/postcss-colormin@5.3.1_postcss@8.4.36/node_modules/postcss-colormin", + }, + Object { + "deps": Object { + "browserslist": 922, + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-convert-values", + "root": "/common/temp/default/node_modules/.pnpm/postcss-convert-values@5.1.3_postcss@8.4.36/node_modules/postcss-convert-values", + }, + Object { + "deps": Object { + "postcss": 2038, + }, + "name": "postcss-discard-comments", + "root": "/common/temp/default/node_modules/.pnpm/postcss-discard-comments@5.1.2_postcss@8.4.36/node_modules/postcss-discard-comments", + }, + Object { + "deps": Object { + "postcss": 2038, + }, + "name": "postcss-discard-duplicates", + "root": "/common/temp/default/node_modules/.pnpm/postcss-discard-duplicates@5.1.0_postcss@8.4.36/node_modules/postcss-discard-duplicates", + }, + Object { + "deps": Object { + "postcss": 2038, + }, + "name": "postcss-discard-empty", + "root": "/common/temp/default/node_modules/.pnpm/postcss-discard-empty@5.1.1_postcss@8.4.36/node_modules/postcss-discard-empty", + }, + Object { + "deps": Object { + "postcss": 2038, + }, + "name": "postcss-discard-overridden", + "root": "/common/temp/default/node_modules/.pnpm/postcss-discard-overridden@5.1.0_postcss@8.4.36/node_modules/postcss-discard-overridden", + }, + Object { + "deps": Object { + "postcss": 2037, + }, + "name": "postcss-flexbugs-fixes", + "root": "/common/temp/default/node_modules/.pnpm/postcss-flexbugs-fixes@4.2.1/node_modules/postcss-flexbugs-fixes", + }, + Object { + "deps": Object { + "cosmiconfig": 1065, + "klona": 1715, + "loader-utils": 1736, + "postcss": 2038, + "schema-utils": 2228, + "semver": 2238, + "webpack": 2558, + }, + "name": "postcss-loader", + "root": "/common/temp/default/node_modules/.pnpm/postcss-loader@4.1.0_postcss@8.4.36_webpack@4.47.0/node_modules/postcss-loader", + }, + Object { + "deps": Object { + "cosmiconfig": 1065, + "klona": 1715, + "loader-utils": 1736, + "postcss": 2037, + "schema-utils": 2228, + "semver": 2238, + "webpack": 2558, + }, + "name": "postcss-loader", + "root": "/common/temp/default/node_modules/.pnpm/postcss-loader@4.3.0_postcss@7.0.39_webpack@4.47.0/node_modules/postcss-loader", + }, + Object { + "deps": Object { + "cosmiconfig": 1065, + "klona": 1715, + "postcss": 2038, + "semver": 2238, + "webpack": 2559, + }, + "name": "postcss-loader", + "root": "/common/temp/default/node_modules/.pnpm/postcss-loader@6.2.1_postcss@8.4.36_webpack@5.82.1/node_modules/postcss-loader", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + "stylehacks": 2357, + }, + "name": "postcss-merge-longhand", + "root": "/common/temp/default/node_modules/.pnpm/postcss-merge-longhand@5.1.7_postcss@8.4.36/node_modules/postcss-merge-longhand", + }, + Object { + "deps": Object { + "browserslist": 922, + "caniuse-api": 957, + "cssnano-utils": 1089, + "postcss": 2038, + "postcss-selector-parser": 2033, + }, + "name": "postcss-merge-rules", + "root": "/common/temp/default/node_modules/.pnpm/postcss-merge-rules@5.1.4_postcss@8.4.36/node_modules/postcss-merge-rules", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-minify-font-values", + "root": "/common/temp/default/node_modules/.pnpm/postcss-minify-font-values@5.1.0_postcss@8.4.36/node_modules/postcss-minify-font-values", + }, + Object { + "deps": Object { + "colord": 1019, + "cssnano-utils": 1089, + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-minify-gradients", + "root": "/common/temp/default/node_modules/.pnpm/postcss-minify-gradients@5.1.1_postcss@8.4.36/node_modules/postcss-minify-gradients", + }, + Object { + "deps": Object { + "browserslist": 922, + "cssnano-utils": 1089, + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-minify-params", + "root": "/common/temp/default/node_modules/.pnpm/postcss-minify-params@5.1.4_postcss@8.4.36/node_modules/postcss-minify-params", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-selector-parser": 2033, + }, + "name": "postcss-minify-selectors", + "root": "/common/temp/default/node_modules/.pnpm/postcss-minify-selectors@5.2.1_postcss@8.4.36/node_modules/postcss-minify-selectors", + }, + Object { + "deps": Object { + "postcss": 2037, + }, + "name": "postcss-modules-extract-imports", + "root": "/common/temp/default/node_modules/.pnpm/postcss-modules-extract-imports@2.0.0/node_modules/postcss-modules-extract-imports", + }, + Object { + "deps": Object { + "postcss": 2038, + }, + "name": "postcss-modules-extract-imports", + "root": "/common/temp/default/node_modules/.pnpm/postcss-modules-extract-imports@3.0.0_postcss@8.4.36/node_modules/postcss-modules-extract-imports", + }, + Object { + "deps": Object { + "icss-utils": 1494, + "postcss": 2037, + "postcss-selector-parser": 2033, + "postcss-value-parser": 2036, + }, + "name": "postcss-modules-local-by-default", + "root": "/common/temp/default/node_modules/.pnpm/postcss-modules-local-by-default@3.0.3/node_modules/postcss-modules-local-by-default", + }, + Object { + "deps": Object { + "icss-utils": 1495, + "postcss": 2038, + "postcss-selector-parser": 2033, + "postcss-value-parser": 2036, + }, + "name": "postcss-modules-local-by-default", + "root": "/common/temp/default/node_modules/.pnpm/postcss-modules-local-by-default@4.0.4_postcss@8.4.36/node_modules/postcss-modules-local-by-default", + }, + Object { + "deps": Object { + "postcss": 2037, + "postcss-selector-parser": 2033, + }, + "name": "postcss-modules-scope", + "root": "/common/temp/default/node_modules/.pnpm/postcss-modules-scope@2.2.0/node_modules/postcss-modules-scope", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-selector-parser": 2033, + }, + "name": "postcss-modules-scope", + "root": "/common/temp/default/node_modules/.pnpm/postcss-modules-scope@3.1.1_postcss@8.4.36/node_modules/postcss-modules-scope", + }, + Object { + "deps": Object { + "icss-utils": 1494, + "postcss": 2037, + }, + "name": "postcss-modules-values", + "root": "/common/temp/default/node_modules/.pnpm/postcss-modules-values@3.0.0/node_modules/postcss-modules-values", + }, + Object { + "deps": Object { + "icss-utils": 1495, + "postcss": 2038, + }, + "name": "postcss-modules-values", + "root": "/common/temp/default/node_modules/.pnpm/postcss-modules-values@4.0.0_postcss@8.4.36/node_modules/postcss-modules-values", + }, + Object { + "deps": Object { + "generic-names": 1377, + "icss-utils": 1495, + "lodash.camelcase": 1741, + "postcss": 2038, + "postcss-modules-extract-imports": 2013, + "postcss-modules-local-by-default": 2015, + "postcss-modules-scope": 2017, + "postcss-modules-values": 2019, + "string-hash": 2326, + }, + "name": "postcss-modules", + "root": "/common/temp/default/node_modules/.pnpm/postcss-modules@6.0.0_postcss@8.4.36/node_modules/postcss-modules", + }, + Object { + "deps": Object { + "postcss": 2038, + }, + "name": "postcss-normalize-charset", + "root": "/common/temp/default/node_modules/.pnpm/postcss-normalize-charset@5.1.0_postcss@8.4.36/node_modules/postcss-normalize-charset", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-normalize-display-values", + "root": "/common/temp/default/node_modules/.pnpm/postcss-normalize-display-values@5.1.0_postcss@8.4.36/node_modules/postcss-normalize-display-values", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-normalize-positions", + "root": "/common/temp/default/node_modules/.pnpm/postcss-normalize-positions@5.1.1_postcss@8.4.36/node_modules/postcss-normalize-positions", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-normalize-repeat-style", + "root": "/common/temp/default/node_modules/.pnpm/postcss-normalize-repeat-style@5.1.1_postcss@8.4.36/node_modules/postcss-normalize-repeat-style", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-normalize-string", + "root": "/common/temp/default/node_modules/.pnpm/postcss-normalize-string@5.1.0_postcss@8.4.36/node_modules/postcss-normalize-string", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-normalize-timing-functions", + "root": "/common/temp/default/node_modules/.pnpm/postcss-normalize-timing-functions@5.1.0_postcss@8.4.36/node_modules/postcss-normalize-timing-functions", + }, + Object { + "deps": Object { + "browserslist": 922, + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-normalize-unicode", + "root": "/common/temp/default/node_modules/.pnpm/postcss-normalize-unicode@5.1.1_postcss@8.4.36/node_modules/postcss-normalize-unicode", + }, + Object { + "deps": Object { + "normalize-url": 1883, + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-normalize-url", + "root": "/common/temp/default/node_modules/.pnpm/postcss-normalize-url@5.1.0_postcss@8.4.36/node_modules/postcss-normalize-url", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-normalize-whitespace", + "root": "/common/temp/default/node_modules/.pnpm/postcss-normalize-whitespace@5.1.1_postcss@8.4.36/node_modules/postcss-normalize-whitespace", + }, + Object { + "deps": Object { + "cssnano-utils": 1089, + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-ordered-values", + "root": "/common/temp/default/node_modules/.pnpm/postcss-ordered-values@5.1.3_postcss@8.4.36/node_modules/postcss-ordered-values", + }, + Object { + "deps": Object { + "browserslist": 922, + "caniuse-api": 957, + "postcss": 2038, + }, + "name": "postcss-reduce-initial", + "root": "/common/temp/default/node_modules/.pnpm/postcss-reduce-initial@5.1.2_postcss@8.4.36/node_modules/postcss-reduce-initial", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + }, + "name": "postcss-reduce-transforms", + "root": "/common/temp/default/node_modules/.pnpm/postcss-reduce-transforms@5.1.0_postcss@8.4.36/node_modules/postcss-reduce-transforms", + }, + Object { + "deps": Object { + "cssesc": 1087, + "util-deprecate": 2508, + }, + "name": "postcss-selector-parser", + "root": "/common/temp/default/node_modules/.pnpm/postcss-selector-parser@6.0.16/node_modules/postcss-selector-parser", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-value-parser": 2036, + "svgo": 2365, + }, + "name": "postcss-svgo", + "root": "/common/temp/default/node_modules/.pnpm/postcss-svgo@5.1.0_postcss@8.4.36/node_modules/postcss-svgo", + }, + Object { + "deps": Object { + "postcss": 2038, + "postcss-selector-parser": 2033, + }, + "name": "postcss-unique-selectors", + "root": "/common/temp/default/node_modules/.pnpm/postcss-unique-selectors@5.1.1_postcss@8.4.36/node_modules/postcss-unique-selectors", + }, + Object { + "deps": Object {}, + "name": "postcss-value-parser", + "root": "/common/temp/default/node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser", + }, + Object { + "deps": Object { + "picocolors": 1974, + "source-map": 2294, + }, + "name": "postcss", + "root": "/common/temp/default/node_modules/.pnpm/postcss@7.0.39/node_modules/postcss", + }, + Object { + "deps": Object { + "nanoid": 1856, + "picocolors": 1975, + "source-map-js": 2286, + }, + "name": "postcss", + "root": "/common/temp/default/node_modules/.pnpm/postcss@8.4.36/node_modules/postcss", + }, + Object { + "deps": Object { + "detect-libc": 1143, + "expand-template": 1287, + "github-from-package": 1390, + "minimist": 1829, + "mkdirp-classic": 1841, + "napi-build-utils": 1858, + "node-abi": 1866, + "pump": 2069, + "rc": 2095, + "simple-get": 2269, + "tar-fs": 2374, + "tunnel-agent": 2438, + }, + "name": "prebuild-install", + "root": "/common/temp/default/node_modules/.pnpm/prebuild-install@7.1.2/node_modules/prebuild-install", + }, + Object { + "deps": Object { + "find-up": 1333, + "find-yarn-workspace-root2": 1334, + "path-exists": 1964, + "which-pm": 2571, + }, + "name": "preferred-pm", + "root": "/common/temp/default/node_modules/.pnpm/preferred-pm@3.1.3/node_modules/preferred-pm", + }, + Object { + "deps": Object {}, + "name": "prelude-ls", + "root": "/common/temp/default/node_modules/.pnpm/prelude-ls@1.2.1/node_modules/prelude-ls", + }, + Object { + "deps": Object {}, + "name": "prettier", + "root": "/common/temp/default/node_modules/.pnpm/prettier@2.3.0/node_modules/prettier", + }, + Object { + "deps": Object { + "lodash": 1760, + "renderkid": 2163, + }, + "name": "pretty-error", + "root": "/common/temp/default/node_modules/.pnpm/pretty-error@2.1.2/node_modules/pretty-error", + }, + Object { + "deps": Object { + "lodash": 1760, + "renderkid": 2164, + }, + "name": "pretty-error", + "root": "/common/temp/default/node_modules/.pnpm/pretty-error@4.0.0/node_modules/pretty-error", + }, + Object { + "deps": Object { + "ansi-regex": 797, + "ansi-styles": 801, + "react-is": 2107, + }, + "name": "pretty-format", + "root": "/common/temp/default/node_modules/.pnpm/pretty-format@27.5.1/node_modules/pretty-format", + }, + Object { + "deps": Object { + "@jest/schemas": 337, + "ansi-styles": 801, + "react-is": 2108, + }, + "name": "pretty-format", + "root": "/common/temp/default/node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format", + }, + Object { + "deps": Object {}, + "name": "pretty-hrtime", + "root": "/common/temp/default/node_modules/.pnpm/pretty-hrtime@1.0.3/node_modules/pretty-hrtime", + }, + Object { + "deps": Object {}, + "name": "prismjs", + "root": "/common/temp/default/node_modules/.pnpm/prismjs@1.27.0/node_modules/prismjs", + }, + Object { + "deps": Object {}, + "name": "prismjs", + "root": "/common/temp/default/node_modules/.pnpm/prismjs@1.29.0/node_modules/prismjs", + }, + Object { + "deps": Object {}, + "name": "private", + "root": "/common/temp/default/node_modules/.pnpm/private@0.1.8/node_modules/private", + }, + Object { + "deps": Object {}, + "name": "process-nextick-args", + "root": "/common/temp/default/node_modules/.pnpm/process-nextick-args@2.0.1/node_modules/process-nextick-args", + }, + Object { + "deps": Object {}, + "name": "process-warning", + "root": "/common/temp/default/node_modules/.pnpm/process-warning@1.0.0/node_modules/process-warning", + }, + Object { + "deps": Object {}, + "name": "process", + "root": "/common/temp/default/node_modules/.pnpm/process@0.11.10/node_modules/process", + }, + Object { + "deps": Object {}, + "name": "progress", + "root": "/common/temp/default/node_modules/.pnpm/progress@2.0.3/node_modules/progress", + }, + Object { + "deps": Object {}, + "name": "promise-inflight", + "root": "/common/temp/default/node_modules/.pnpm/promise-inflight@1.0.1/node_modules/promise-inflight", + }, + Object { + "deps": Object { + "err-code": 1207, + "retry": 2188, + }, + "name": "promise-retry", + "root": "/common/temp/default/node_modules/.pnpm/promise-retry@2.0.1/node_modules/promise-retry", + }, + Object { + "deps": Object { + "array.prototype.map": 831, + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "get-intrinsic": 1381, + "iterate-value": 1623, + }, + "name": "promise.allsettled", + "root": "/common/temp/default/node_modules/.pnpm/promise.allsettled@1.0.7/node_modules/promise.allsettled", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-errors": 1214, + "set-function-name": 2252, + }, + "name": "promise.prototype.finally", + "root": "/common/temp/default/node_modules/.pnpm/promise.prototype.finally@3.1.8/node_modules/promise.prototype.finally", + }, + Object { + "deps": Object { + "kleur": 1714, + "sisteransi": 2271, + }, + "name": "prompts", + "root": "/common/temp/default/node_modules/.pnpm/prompts@2.4.2/node_modules/prompts", + }, + Object { + "deps": Object { + "loose-envify": 1764, + "object-assign": 1897, + "react-is": 2106, + }, + "name": "prop-types", + "root": "/common/temp/default/node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types", + }, + Object { + "deps": Object { + "xtend": 2606, + }, + "name": "property-information", + "root": "/common/temp/default/node_modules/.pnpm/property-information@5.6.0/node_modules/property-information", + }, + Object { + "deps": Object { + "forwarded": 1354, + "ipaddr.js": 1530, + }, + "name": "proxy-addr", + "root": "/common/temp/default/node_modules/.pnpm/proxy-addr@2.0.7/node_modules/proxy-addr", + }, + Object { + "deps": Object {}, + "name": "proxy-from-env", + "root": "/common/temp/default/node_modules/.pnpm/proxy-from-env@1.1.0/node_modules/proxy-from-env", + }, + Object { + "deps": Object {}, + "name": "prr", + "root": "/common/temp/default/node_modules/.pnpm/prr@1.0.1/node_modules/prr", + }, + Object { + "deps": Object { + "commander": 1026, + }, + "name": "pseudolocale", + "root": "/common/temp/default/node_modules/.pnpm/pseudolocale@1.1.0/node_modules/pseudolocale", + }, + Object { + "deps": Object {}, + "name": "psl", + "root": "/common/temp/default/node_modules/.pnpm/psl@1.9.0/node_modules/psl", + }, + Object { + "deps": Object { + "bn.js": 901, + "browserify-rsa": 919, + "create-hash": 1071, + "parse-asn1": 1950, + "randombytes": 2089, + "safe-buffer": 2207, + }, + "name": "public-encrypt", + "root": "/common/temp/default/node_modules/.pnpm/public-encrypt@4.0.3/node_modules/public-encrypt", + }, + Object { + "deps": Object { + "end-of-stream": 1197, + "once": 1914, + }, + "name": "pump", + "root": "/common/temp/default/node_modules/.pnpm/pump@2.0.1/node_modules/pump", + }, + Object { + "deps": Object { + "end-of-stream": 1197, + "once": 1914, + }, + "name": "pump", + "root": "/common/temp/default/node_modules/.pnpm/pump@3.0.0/node_modules/pump", + }, + Object { + "deps": Object { + "duplexify": 1181, + "inherits": 1518, + "pump": 2068, + }, + "name": "pumpify", + "root": "/common/temp/default/node_modules/.pnpm/pumpify@1.5.1/node_modules/pumpify", + }, + Object { + "deps": Object {}, + "name": "punycode", + "root": "/common/temp/default/node_modules/.pnpm/punycode@1.3.2/node_modules/punycode", + }, + Object { + "deps": Object {}, + "name": "punycode", + "root": "/common/temp/default/node_modules/.pnpm/punycode@1.4.1/node_modules/punycode", + }, + Object { + "deps": Object {}, + "name": "punycode", + "root": "/common/temp/default/node_modules/.pnpm/punycode@2.3.1/node_modules/punycode", + }, + Object { + "deps": Object { + "escape-goat": 1229, + }, + "name": "pupa", + "root": "/common/temp/default/node_modules/.pnpm/pupa@2.1.1/node_modules/pupa", + }, + Object { + "deps": Object { + "@types/mime-types": 611, + "debug": 1106, + "extract-zip": 1296, + "https-proxy-agent": 1487, + "mime": 1811, + "mime-types": 1809, + "progress": 2054, + "proxy-from-env": 2063, + "rimraf": 2194, + "ws": 2593, + }, + "name": "puppeteer-core", + "root": "/common/temp/default/node_modules/.pnpm/puppeteer-core@2.1.1/node_modules/puppeteer-core", + }, + Object { + "deps": Object {}, + "name": "pure-rand", + "root": "/common/temp/default/node_modules/.pnpm/pure-rand@6.0.4/node_modules/pure-rand", + }, + Object { + "deps": Object {}, + "name": "q", + "root": "/common/temp/default/node_modules/.pnpm/q@1.5.1/node_modules/q", + }, + Object { + "deps": Object { + "side-channel": 2266, + }, + "name": "qs", + "root": "/common/temp/default/node_modules/.pnpm/qs@6.11.0/node_modules/qs", + }, + Object { + "deps": Object { + "side-channel": 2266, + }, + "name": "qs", + "root": "/common/temp/default/node_modules/.pnpm/qs@6.12.0/node_modules/qs", + }, + Object { + "deps": Object {}, + "name": "querystring-es3", + "root": "/common/temp/default/node_modules/.pnpm/querystring-es3@0.2.1/node_modules/querystring-es3", + }, + Object { + "deps": Object {}, + "name": "querystring", + "root": "/common/temp/default/node_modules/.pnpm/querystring@0.2.0/node_modules/querystring", + }, + Object { + "deps": Object {}, + "name": "querystringify", + "root": "/common/temp/default/node_modules/.pnpm/querystringify@2.2.0/node_modules/querystringify", + }, + Object { + "deps": Object {}, + "name": "queue-microtask", + "root": "/common/temp/default/node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask", + }, + Object { + "deps": Object {}, + "name": "quick-format-unescaped", + "root": "/common/temp/default/node_modules/.pnpm/quick-format-unescaped@4.0.4/node_modules/quick-format-unescaped", + }, + Object { + "deps": Object {}, + "name": "quick-lru", + "root": "/common/temp/default/node_modules/.pnpm/quick-lru@4.0.1/node_modules/quick-lru", + }, + Object { + "deps": Object {}, + "name": "quick-lru", + "root": "/common/temp/default/node_modules/.pnpm/quick-lru@5.1.1/node_modules/quick-lru", + }, + Object { + "deps": Object {}, + "name": "ramda", + "root": "/common/temp/default/node_modules/.pnpm/ramda@0.27.2/node_modules/ramda", + }, + Object { + "deps": Object {}, + "name": "ramda", + "root": "/common/temp/default/node_modules/.pnpm/ramda@0.28.0/node_modules/ramda", + }, + Object { + "deps": Object { + "safe-buffer": 2207, + }, + "name": "randombytes", + "root": "/common/temp/default/node_modules/.pnpm/randombytes@2.1.0/node_modules/randombytes", + }, + Object { + "deps": Object { + "randombytes": 2089, + "safe-buffer": 2207, + }, + "name": "randomfill", + "root": "/common/temp/default/node_modules/.pnpm/randomfill@1.0.4/node_modules/randomfill", + }, + Object { + "deps": Object {}, + "name": "range-parser", + "root": "/common/temp/default/node_modules/.pnpm/range-parser@1.2.1/node_modules/range-parser", + }, + Object { + "deps": Object { + "bytes": 939, + "http-errors": 1477, + "iconv-lite": 1492, + "unpipe": 2488, + }, + "name": "raw-body", + "root": "/common/temp/default/node_modules/.pnpm/raw-body@2.5.2/node_modules/raw-body", + }, + Object { + "deps": Object { + "loader-utils": 1736, + "schema-utils": 2228, + "webpack": 2558, + }, + "name": "raw-loader", + "root": "/common/temp/default/node_modules/.pnpm/raw-loader@4.0.2_webpack@4.47.0/node_modules/raw-loader", + }, + Object { + "deps": Object { + "debug": 1106, + "js-yaml": 1678, + "json5": 1694, + "require-from-string": 2168, + }, + "name": "rc-config-loader", + "root": "/common/temp/default/node_modules/.pnpm/rc-config-loader@4.1.3/node_modules/rc-config-loader", + }, + Object { + "deps": Object { + "deep-extend": 1116, + "ini": 1519, + "minimist": 1829, + "strip-json-comments": 2350, + }, + "name": "rc", + "root": "/common/temp/default/node_modules/.pnpm/rc@1.2.8/node_modules/rc", + }, + Object { + "deps": Object { + "react": 2119, + "react-dom": 2099, + }, + "name": "react-colorful", + "root": "/common/temp/default/node_modules/.pnpm/react-colorful@5.6.1_react-dom@17.0.2_react@17.0.2/node_modules/react-colorful", + }, + Object { + "deps": Object { + "typescript": 2459, + }, + "name": "react-docgen-typescript", + "root": "/common/temp/default/node_modules/.pnpm/react-docgen-typescript@2.2.2_typescript@5.4.2/node_modules/react-docgen-typescript", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@babel/generator": 61, + "@babel/runtime": 193, + "ast-types": 842, + "commander": 1027, + "doctrine": 1158, + "estree-to-babel": 1274, + "neo-async": 1862, + "node-dir": 1869, + "strip-indent": 2349, + }, + "name": "react-docgen", + "root": "/common/temp/default/node_modules/.pnpm/react-docgen@5.4.3/node_modules/react-docgen", + }, + Object { + "deps": Object { + "loose-envify": 1764, + "object-assign": 1897, + "react": 2119, + "scheduler": 2224, + }, + "name": "react-dom", + "root": "/common/temp/default/node_modules/.pnpm/react-dom@17.0.2_react@17.0.2/node_modules/react-dom", + }, + Object { + "deps": Object { + "clsx": 1004, + "prop-types": 2060, + "react": 2119, + "react-dom": 2099, + }, + "name": "react-draggable", + "root": "/common/temp/default/node_modules/.pnpm/react-draggable@4.4.6_react-dom@17.0.2_react@17.0.2/node_modules/react-draggable", + }, + Object { + "deps": Object { + "@base2/pretty-print-object": 198, + "is-plain-object": 1587, + "react": 2119, + "react-dom": 2099, + "react-is": 2107, + }, + "name": "react-element-to-jsx-string", + "root": "/common/temp/default/node_modules/.pnpm/react-element-to-jsx-string@14.3.4_react-dom@17.0.2_react@17.0.2/node_modules/react-element-to-jsx-string", + }, + Object { + "deps": Object {}, + "name": "react-fast-compare", + "root": "/common/temp/default/node_modules/.pnpm/react-fast-compare@3.2.2/node_modules/react-fast-compare", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "invariant": 1527, + "prop-types": 2060, + "react": 2119, + "react-dom": 2099, + "react-fast-compare": 2102, + "shallowequal": 2260, + }, + "name": "react-helmet-async", + "root": "/common/temp/default/node_modules/.pnpm/react-helmet-async@1.3.0_react-dom@17.0.2_react@17.0.2/node_modules/react-helmet-async", + }, + Object { + "deps": Object { + "react": 2119, + }, + "name": "react-hook-form", + "root": "/common/temp/default/node_modules/.pnpm/react-hook-form@7.24.2_react@17.0.2/node_modules/react-hook-form", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "is-dom": 1556, + "prop-types": 2060, + "react": 2119, + }, + "name": "react-inspector", + "root": "/common/temp/default/node_modules/.pnpm/react-inspector@5.1.1_react@17.0.2/node_modules/react-inspector", + }, + Object { + "deps": Object {}, + "name": "react-is", + "root": "/common/temp/default/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is", + }, + Object { + "deps": Object {}, + "name": "react-is", + "root": "/common/temp/default/node_modules/.pnpm/react-is@17.0.2/node_modules/react-is", + }, + Object { + "deps": Object {}, + "name": "react-is", + "root": "/common/temp/default/node_modules/.pnpm/react-is@18.2.0/node_modules/react-is", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@popperjs/core": 393, + "react": 2119, + "react-dom": 2099, + "react-popper": 2110, + }, + "name": "react-popper-tooltip", + "root": "/common/temp/default/node_modules/.pnpm/react-popper-tooltip@3.1.1_react-dom@17.0.2_react@17.0.2/node_modules/react-popper-tooltip", + }, + Object { + "deps": Object { + "@popperjs/core": 393, + "react": 2119, + "react-dom": 2099, + "react-fast-compare": 2102, + "warning": 2534, + }, + "name": "react-popper", + "root": "/common/temp/default/node_modules/.pnpm/react-popper@2.3.0_@popperjs+core@2.11.8_react-dom@17.0.2_react@17.0.2/node_modules/react-popper", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "@reduxjs/toolkit": 417, + "@types/hoist-non-react-statics": 585, + "@types/react": 641, + "@types/react-dom": 638, + "@types/use-sync-external-store": 666, + "hoist-non-react-statics": 1457, + "react": 2119, + "react-dom": 2099, + "react-is": 2108, + "redux": 2138, + "use-sync-external-store": 2506, + }, + "name": "react-redux", + "root": "/common/temp/default/node_modules/.pnpm/react-redux@8.0.7_@reduxjs+toolkit@1.8.6_@types+react-dom@17.0.25_@types+react@17.0.74_react-_fxbgebfgcimhtvtdsot4e7klsa/node_modules/react-redux", + }, + Object { + "deps": Object {}, + "name": "react-refresh", + "root": "/common/temp/default/node_modules/.pnpm/react-refresh@0.11.0/node_modules/react-refresh", + }, + Object { + "deps": Object { + "@remix-run/router": 418, + "@types/react": 641, + "react": 2119, + "react-dom": 2099, + "react-router": 2114, + }, + "name": "react-router-dom", + "root": "/common/temp/default/node_modules/.pnpm/react-router-dom@6.22.3_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/react-router-dom", + }, + Object { + "deps": Object { + "@remix-run/router": 418, + "@types/react": 641, + "react": 2119, + }, + "name": "react-router", + "root": "/common/temp/default/node_modules/.pnpm/react-router@6.22.3_@types+react@17.0.74_react@17.0.2/node_modules/react-router", + }, + Object { + "deps": Object { + "element-resize-detector": 1186, + "invariant": 1527, + "shallowequal": 2260, + "throttle-debounce": 2390, + }, + "name": "react-sizeme", + "root": "/common/temp/default/node_modules/.pnpm/react-sizeme@3.0.2/node_modules/react-sizeme", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "highlight.js": 1454, + "lowlight": 1767, + "prismjs": 2049, + "react": 2119, + "refractor": 2140, + }, + "name": "react-syntax-highlighter", + "root": "/common/temp/default/node_modules/.pnpm/react-syntax-highlighter@13.5.3_react@17.0.2/node_modules/react-syntax-highlighter", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "react": 2119, + "use-composed-ref": 2502, + "use-latest": 2505, + }, + "name": "react-textarea-autosize", + "root": "/common/temp/default/node_modules/.pnpm/react-textarea-autosize@8.5.3_@types+react@17.0.74_react@17.0.2/node_modules/react-textarea-autosize", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + "dom-helpers": 1160, + "loose-envify": 1764, + "prop-types": 2060, + "react": 2119, + "react-dom": 2099, + }, + "name": "react-transition-group", + "root": "/common/temp/default/node_modules/.pnpm/react-transition-group@4.4.5_react-dom@17.0.2_react@17.0.2/node_modules/react-transition-group", + }, + Object { + "deps": Object { + "loose-envify": 1764, + "object-assign": 1897, + }, + "name": "react", + "root": "/common/temp/default/node_modules/.pnpm/react@17.0.2/node_modules/react", + }, + Object { + "deps": Object { + "glob": 1401, + "json-parse-even-better-errors": 1687, + "normalize-package-data": 1878, + "npm-normalize-package-bin": 1886, + }, + "name": "read-package-json", + "root": "/common/temp/default/node_modules/.pnpm/read-package-json@2.1.2/node_modules/read-package-json", + }, + Object { + "deps": Object { + "debuglog": 1107, + "dezalgo": 1148, + "once": 1914, + "read-package-json": 2120, + "readdir-scoped-modules": 2129, + }, + "name": "read-package-tree", + "root": "/common/temp/default/node_modules/.pnpm/read-package-tree@5.1.6/node_modules/read-package-tree", + }, + Object { + "deps": Object { + "find-up": 1332, + "read-pkg": 2123, + "type-fest": 2446, + }, + "name": "read-pkg-up", + "root": "/common/temp/default/node_modules/.pnpm/read-pkg-up@7.0.1/node_modules/read-pkg-up", + }, + Object { + "deps": Object { + "@types/normalize-package-data": 626, + "normalize-package-data": 1878, + "parse-json": 1952, + "type-fest": 2445, + }, + "name": "read-pkg", + "root": "/common/temp/default/node_modules/.pnpm/read-pkg@5.2.0/node_modules/read-pkg", + }, + Object { + "deps": Object { + "js-yaml": 1678, + "strip-bom": 2346, + }, + "name": "read-yaml-file", + "root": "/common/temp/default/node_modules/.pnpm/read-yaml-file@2.1.0/node_modules/read-yaml-file", + }, + Object { + "deps": Object { + "mute-stream": 1853, + }, + "name": "read", + "root": "/common/temp/default/node_modules/.pnpm/read@1.0.7/node_modules/read", + }, + Object { + "deps": Object { + "core-util-is": 1062, + "inherits": 1518, + "isarray": 1610, + "process-nextick-args": 2051, + "safe-buffer": 2206, + "string_decoder": 2339, + "util-deprecate": 2508, + }, + "name": "readable-stream", + "root": "/common/temp/default/node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream", + }, + Object { + "deps": Object { + "inherits": 1518, + "string_decoder": 2340, + "util-deprecate": 2508, + }, + "name": "readable-stream", + "root": "/common/temp/default/node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream", + }, + Object { + "deps": Object { + "minimatch": 1824, + }, + "name": "readdir-glob", + "root": "/common/temp/default/node_modules/.pnpm/readdir-glob@1.1.3/node_modules/readdir-glob", + }, + Object { + "deps": Object { + "debuglog": 1107, + "dezalgo": 1148, + "graceful-fs": 1418, + "once": 1914, + }, + "name": "readdir-scoped-modules", + "root": "/common/temp/default/node_modules/.pnpm/readdir-scoped-modules@1.1.0/node_modules/readdir-scoped-modules", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "micromatch": 1805, + "readable-stream": 2126, + }, + "name": "readdirp", + "root": "/common/temp/default/node_modules/.pnpm/readdirp@2.2.1/node_modules/readdirp", + }, + Object { + "deps": Object { + "picomatch": 1976, + }, + "name": "readdirp", + "root": "/common/temp/default/node_modules/.pnpm/readdirp@3.5.0/node_modules/readdirp", + }, + Object { + "deps": Object { + "picomatch": 1976, + }, + "name": "readdirp", + "root": "/common/temp/default/node_modules/.pnpm/readdirp@3.6.0/node_modules/readdirp", + }, + Object { + "deps": Object { + "ast-types": 841, + "esprima": 1269, + "private": 2050, + "source-map": 2294, + }, + "name": "recast", + "root": "/common/temp/default/node_modules/.pnpm/recast@0.19.1/node_modules/recast", + }, + Object { + "deps": Object { + "ast-types": 842, + "esprima": 1269, + "source-map": 2294, + "tslib": 2425, + }, + "name": "recast", + "root": "/common/temp/default/node_modules/.pnpm/recast@0.20.5/node_modules/recast", + }, + Object { + "deps": Object { + "resolve": 2182, + }, + "name": "rechoir", + "root": "/common/temp/default/node_modules/.pnpm/rechoir@0.6.2/node_modules/rechoir", + }, + Object { + "deps": Object { + "indent-string": 1512, + "strip-indent": 2349, + }, + "name": "redent", + "root": "/common/temp/default/node_modules/.pnpm/redent@3.0.0/node_modules/redent", + }, + Object { + "deps": Object { + "redux": 2138, + }, + "name": "redux-thunk", + "root": "/common/temp/default/node_modules/.pnpm/redux-thunk@2.4.2_redux@4.2.1/node_modules/redux-thunk", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + }, + "name": "redux", + "root": "/common/temp/default/node_modules/.pnpm/redux@4.2.1/node_modules/redux", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-errors": 1214, + "get-intrinsic": 1381, + "globalthis": 1413, + "which-builtin-type": 2568, + }, + "name": "reflect.getprototypeof", + "root": "/common/temp/default/node_modules/.pnpm/reflect.getprototypeof@1.0.6/node_modules/reflect.getprototypeof", + }, + Object { + "deps": Object { + "hastscript": 1451, + "parse-entities": 1951, + "prismjs": 2048, + }, + "name": "refractor", + "root": "/common/temp/default/node_modules/.pnpm/refractor@3.6.0/node_modules/refractor", + }, + Object { + "deps": Object { + "regenerate": 2142, + }, + "name": "regenerate-unicode-properties", + "root": "/common/temp/default/node_modules/.pnpm/regenerate-unicode-properties@10.1.1/node_modules/regenerate-unicode-properties", + }, + Object { + "deps": Object {}, + "name": "regenerate", + "root": "/common/temp/default/node_modules/.pnpm/regenerate@1.4.2/node_modules/regenerate", + }, + Object { + "deps": Object {}, + "name": "regenerator-runtime", + "root": "/common/temp/default/node_modules/.pnpm/regenerator-runtime@0.13.11/node_modules/regenerator-runtime", + }, + Object { + "deps": Object {}, + "name": "regenerator-runtime", + "root": "/common/temp/default/node_modules/.pnpm/regenerator-runtime@0.14.1/node_modules/regenerator-runtime", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + }, + "name": "regenerator-transform", + "root": "/common/temp/default/node_modules/.pnpm/regenerator-transform@0.15.2/node_modules/regenerator-transform", + }, + Object { + "deps": Object { + "extend-shallow": 1292, + "safe-regex": 2210, + }, + "name": "regex-not", + "root": "/common/temp/default/node_modules/.pnpm/regex-not@1.0.2/node_modules/regex-not", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-errors": 1214, + "set-function-name": 2252, + }, + "name": "regexp.prototype.flags", + "root": "/common/temp/default/node_modules/.pnpm/regexp.prototype.flags@1.5.2/node_modules/regexp.prototype.flags", + }, + Object { + "deps": Object {}, + "name": "regexpp", + "root": "/common/temp/default/node_modules/.pnpm/regexpp@3.2.0/node_modules/regexpp", + }, + Object { + "deps": Object { + "@babel/regjsgen": 192, + "regenerate": 2142, + "regenerate-unicode-properties": 2141, + "regjsparser": 2153, + "unicode-match-property-ecmascript": 2468, + "unicode-match-property-value-ecmascript": 2469, + }, + "name": "regexpu-core", + "root": "/common/temp/default/node_modules/.pnpm/regexpu-core@5.3.2/node_modules/regexpu-core", + }, + Object { + "deps": Object {}, + "name": "regextras", + "root": "/common/temp/default/node_modules/.pnpm/regextras@0.8.0/node_modules/regextras", + }, + Object { + "deps": Object { + "rc": 2095, + }, + "name": "registry-auth-token", + "root": "/common/temp/default/node_modules/.pnpm/registry-auth-token@4.2.2/node_modules/registry-auth-token", + }, + Object { + "deps": Object { + "rc": 2095, + }, + "name": "registry-url", + "root": "/common/temp/default/node_modules/.pnpm/registry-url@5.1.0/node_modules/registry-url", + }, + Object { + "deps": Object { + "jsesc": 1683, + }, + "name": "regjsparser", + "root": "/common/temp/default/node_modules/.pnpm/regjsparser@0.9.1/node_modules/regjsparser", + }, + Object { + "deps": Object {}, + "name": "relateurl", + "root": "/common/temp/default/node_modules/.pnpm/relateurl@0.2.7/node_modules/relateurl", + }, + Object { + "deps": Object { + "extend": 1293, + "is-absolute-url": 1532, + "mdast-util-definitions": 1787, + "space-separated-tokens": 2296, + "unist-util-visit": 2484, + }, + "name": "remark-external-links", + "root": "/common/temp/default/node_modules/.pnpm/remark-external-links@8.0.0/node_modules/remark-external-links", + }, + Object { + "deps": Object {}, + "name": "remark-footnotes", + "root": "/common/temp/default/node_modules/.pnpm/remark-footnotes@2.0.0/node_modules/remark-footnotes", + }, + Object { + "deps": Object { + "@babel/core": 58, + "@babel/helper-plugin-utils": 79, + "@babel/plugin-proposal-object-rest-spread": 100, + "@babel/plugin-syntax-jsx": 118, + "@mdx-js/util": 361, + "is-alphabetical": 1534, + "remark-parse": 2158, + "unified": 2471, + }, + "name": "remark-mdx", + "root": "/common/temp/default/node_modules/.pnpm/remark-mdx@1.6.22/node_modules/remark-mdx", + }, + Object { + "deps": Object { + "ccount": 962, + "collapse-white-space": 1009, + "is-alphabetical": 1534, + "is-decimal": 1552, + "is-whitespace-character": 1603, + "is-word-character": 1606, + "markdown-escapes": 1782, + "parse-entities": 1951, + "repeat-string": 2166, + "state-toggle": 2312, + "trim": 2415, + "trim-trailing-lines": 2414, + "unherit": 2466, + "unist-util-remove-position": 2480, + "vfile-location": 2527, + "xtend": 2606, + }, + "name": "remark-parse", + "root": "/common/temp/default/node_modules/.pnpm/remark-parse@8.0.3/node_modules/remark-parse", + }, + Object { + "deps": Object { + "github-slugger": 1391, + "mdast-util-to-string": 1789, + "unist-util-visit": 2484, + }, + "name": "remark-slug", + "root": "/common/temp/default/node_modules/.pnpm/remark-slug@6.1.0/node_modules/remark-slug", + }, + Object { + "deps": Object { + "mdast-squeeze-paragraphs": 1786, + }, + "name": "remark-squeeze-paragraphs", + "root": "/common/temp/default/node_modules/.pnpm/remark-squeeze-paragraphs@4.0.0/node_modules/remark-squeeze-paragraphs", + }, + Object { + "deps": Object {}, + "name": "remeda", + "root": "/common/temp/default/node_modules/.pnpm/remeda@0.0.32/node_modules/remeda", + }, + Object { + "deps": Object {}, + "name": "remove-trailing-separator", + "root": "/common/temp/default/node_modules/.pnpm/remove-trailing-separator@1.1.0/node_modules/remove-trailing-separator", + }, + Object { + "deps": Object { + "css-select": 1083, + "dom-converter": 1159, + "htmlparser2": 1471, + "lodash": 1760, + "strip-ansi": 2341, + }, + "name": "renderkid", + "root": "/common/temp/default/node_modules/.pnpm/renderkid@2.0.7/node_modules/renderkid", + }, + Object { + "deps": Object { + "css-select": 1083, + "dom-converter": 1159, + "htmlparser2": 1471, + "lodash": 1760, + "strip-ansi": 2343, + }, + "name": "renderkid", + "root": "/common/temp/default/node_modules/.pnpm/renderkid@3.0.0/node_modules/renderkid", + }, + Object { + "deps": Object {}, + "name": "repeat-element", + "root": "/common/temp/default/node_modules/.pnpm/repeat-element@1.1.4/node_modules/repeat-element", + }, + Object { + "deps": Object {}, + "name": "repeat-string", + "root": "/common/temp/default/node_modules/.pnpm/repeat-string@1.6.1/node_modules/repeat-string", + }, + Object { + "deps": Object {}, + "name": "require-directory", + "root": "/common/temp/default/node_modules/.pnpm/require-directory@2.1.1/node_modules/require-directory", + }, + Object { + "deps": Object {}, + "name": "require-from-string", + "root": "/common/temp/default/node_modules/.pnpm/require-from-string@2.0.2/node_modules/require-from-string", + }, + Object { + "deps": Object {}, + "name": "require-main-filename", + "root": "/common/temp/default/node_modules/.pnpm/require-main-filename@2.0.0/node_modules/require-main-filename", + }, + Object { + "deps": Object {}, + "name": "require-package-name", + "root": "/common/temp/default/node_modules/.pnpm/require-package-name@2.0.1/node_modules/require-package-name", + }, + Object { + "deps": Object {}, + "name": "requires-port", + "root": "/common/temp/default/node_modules/.pnpm/requires-port@1.0.0/node_modules/requires-port", + }, + Object { + "deps": Object {}, + "name": "reselect", + "root": "/common/temp/default/node_modules/.pnpm/reselect@4.1.8/node_modules/reselect", + }, + Object { + "deps": Object {}, + "name": "resolve-alpn", + "root": "/common/temp/default/node_modules/.pnpm/resolve-alpn@1.2.1/node_modules/resolve-alpn", + }, + Object { + "deps": Object { + "resolve-from": 2177, + }, + "name": "resolve-cwd", + "root": "/common/temp/default/node_modules/.pnpm/resolve-cwd@2.0.0/node_modules/resolve-cwd", + }, + Object { + "deps": Object { + "resolve-from": 2179, + }, + "name": "resolve-cwd", + "root": "/common/temp/default/node_modules/.pnpm/resolve-cwd@3.0.0/node_modules/resolve-cwd", + }, + Object { + "deps": Object { + "expand-tilde": 1288, + "global-modules": 1404, + }, + "name": "resolve-dir", + "root": "/common/temp/default/node_modules/.pnpm/resolve-dir@1.0.1/node_modules/resolve-dir", + }, + Object { + "deps": Object {}, + "name": "resolve-from", + "root": "/common/temp/default/node_modules/.pnpm/resolve-from@3.0.0/node_modules/resolve-from", + }, + Object { + "deps": Object {}, + "name": "resolve-from", + "root": "/common/temp/default/node_modules/.pnpm/resolve-from@4.0.0/node_modules/resolve-from", + }, + Object { + "deps": Object {}, + "name": "resolve-from", + "root": "/common/temp/default/node_modules/.pnpm/resolve-from@5.0.0/node_modules/resolve-from", + }, + Object { + "deps": Object {}, + "name": "resolve-url", + "root": "/common/temp/default/node_modules/.pnpm/resolve-url@0.2.1/node_modules/resolve-url", + }, + Object { + "deps": Object {}, + "name": "resolve.exports", + "root": "/common/temp/default/node_modules/.pnpm/resolve.exports@2.0.2/node_modules/resolve.exports", + }, + Object { + "deps": Object { + "is-core-module": 1548, + "path-parse": 1968, + "supports-preserve-symlinks-flag": 2364, + }, + "name": "resolve", + "root": "/common/temp/default/node_modules/.pnpm/resolve@1.22.8/node_modules/resolve", + }, + Object { + "deps": Object { + "is-core-module": 1548, + "path-parse": 1968, + "supports-preserve-symlinks-flag": 2364, + }, + "name": "resolve", + "root": "/common/temp/default/node_modules/.pnpm/resolve@2.0.0-next.5/node_modules/resolve", + }, + Object { + "deps": Object { + "lowercase-keys": 1766, + }, + "name": "responselike", + "root": "/common/temp/default/node_modules/.pnpm/responselike@2.0.1/node_modules/responselike", + }, + Object { + "deps": Object { + "onetime": 1915, + "signal-exit": 2267, + }, + "name": "restore-cursor", + "root": "/common/temp/default/node_modules/.pnpm/restore-cursor@3.1.0/node_modules/restore-cursor", + }, + Object { + "deps": Object {}, + "name": "ret", + "root": "/common/temp/default/node_modules/.pnpm/ret@0.1.15/node_modules/ret", + }, + Object { + "deps": Object {}, + "name": "ret", + "root": "/common/temp/default/node_modules/.pnpm/ret@0.2.2/node_modules/ret", + }, + Object { + "deps": Object {}, + "name": "retry", + "root": "/common/temp/default/node_modules/.pnpm/retry@0.12.0/node_modules/retry", + }, + Object { + "deps": Object {}, + "name": "retry", + "root": "/common/temp/default/node_modules/.pnpm/retry@0.13.1/node_modules/retry", + }, + Object { + "deps": Object {}, + "name": "reusify", + "root": "/common/temp/default/node_modules/.pnpm/reusify@1.0.4/node_modules/reusify", + }, + Object { + "deps": Object {}, + "name": "rfc4648", + "root": "/common/temp/default/node_modules/.pnpm/rfc4648@1.5.3/node_modules/rfc4648", + }, + Object { + "deps": Object {}, + "name": "rfdc", + "root": "/common/temp/default/node_modules/.pnpm/rfdc@1.3.1/node_modules/rfdc", + }, + Object { + "deps": Object { + "glob": 1401, + }, + "name": "rimraf", + "root": "/common/temp/default/node_modules/.pnpm/rimraf@2.6.3/node_modules/rimraf", + }, + Object { + "deps": Object { + "glob": 1401, + }, + "name": "rimraf", + "root": "/common/temp/default/node_modules/.pnpm/rimraf@2.7.1/node_modules/rimraf", + }, + Object { + "deps": Object { + "glob": 1401, + }, + "name": "rimraf", + "root": "/common/temp/default/node_modules/.pnpm/rimraf@3.0.2/node_modules/rimraf", + }, + Object { + "deps": Object { + "hash-base": 1443, + "inherits": 1518, + }, + "name": "ripemd160", + "root": "/common/temp/default/node_modules/.pnpm/ripemd160@2.0.2/node_modules/ripemd160", + }, + Object { + "deps": Object {}, + "name": "rsvp", + "root": "/common/temp/default/node_modules/.pnpm/rsvp@4.8.5/node_modules/rsvp", + }, + Object { + "deps": Object { + "@babel/runtime": 193, + }, + "name": "rtl-css-js", + "root": "/common/temp/default/node_modules/.pnpm/rtl-css-js@1.16.1/node_modules/rtl-css-js", + }, + Object { + "deps": Object {}, + "name": "run-async", + "root": "/common/temp/default/node_modules/.pnpm/run-async@2.4.1/node_modules/run-async", + }, + Object { + "deps": Object { + "queue-microtask": 2083, + }, + "name": "run-parallel", + "root": "/common/temp/default/node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel", + }, + Object { + "deps": Object { + "aproba": 808, + }, + "name": "run-queue", + "root": "/common/temp/default/node_modules/.pnpm/run-queue@1.0.3/node_modules/run-queue", + }, + Object { + "deps": Object { + "tslib": 2424, + }, + "name": "rxjs", + "root": "/common/temp/default/node_modules/.pnpm/rxjs@6.6.7/node_modules/rxjs", + }, + Object { + "deps": Object { + "tslib": 2425, + }, + "name": "rxjs", + "root": "/common/temp/default/node_modules/.pnpm/rxjs@7.8.1/node_modules/rxjs", + }, + Object { + "deps": Object { + "call-bind": 946, + "get-intrinsic": 1381, + "has-symbols": 1433, + "isarray": 1611, + }, + "name": "safe-array-concat", + "root": "/common/temp/default/node_modules/.pnpm/safe-array-concat@1.1.2/node_modules/safe-array-concat", + }, + Object { + "deps": Object {}, + "name": "safe-buffer", + "root": "/common/temp/default/node_modules/.pnpm/safe-buffer@5.1.1/node_modules/safe-buffer", + }, + Object { + "deps": Object {}, + "name": "safe-buffer", + "root": "/common/temp/default/node_modules/.pnpm/safe-buffer@5.1.2/node_modules/safe-buffer", + }, + Object { + "deps": Object {}, + "name": "safe-buffer", + "root": "/common/temp/default/node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer", + }, + Object { + "deps": Object { + "call-bind": 946, + "es-errors": 1214, + "is-regex": 1589, + }, + "name": "safe-regex-test", + "root": "/common/temp/default/node_modules/.pnpm/safe-regex-test@1.0.3/node_modules/safe-regex-test", + }, + Object { + "deps": Object { + "ret": 2187, + }, + "name": "safe-regex2", + "root": "/common/temp/default/node_modules/.pnpm/safe-regex2@2.0.0/node_modules/safe-regex2", + }, + Object { + "deps": Object { + "ret": 2186, + }, + "name": "safe-regex", + "root": "/common/temp/default/node_modules/.pnpm/safe-regex@1.1.0/node_modules/safe-regex", + }, + Object { + "deps": Object {}, + "name": "safer-buffer", + "root": "/common/temp/default/node_modules/.pnpm/safer-buffer@2.1.2/node_modules/safer-buffer", + }, + Object { + "deps": Object { + "@cnakazawa/watch": 201, + "anymatch": 805, + "capture-exit": 959, + "exec-sh": 1282, + "execa": 1283, + "fb-watchman": 1314, + "micromatch": 1805, + "minimist": 1829, + "walker": 2533, + }, + "name": "sane", + "root": "/common/temp/default/node_modules/.pnpm/sane@4.1.0/node_modules/sane", + }, + Object { + "deps": Object {}, + "name": "sass-embedded-linux-musl-x64", + "root": "/common/temp/default/node_modules/.pnpm/sass-embedded-linux-musl-x64@1.77.2/node_modules/sass-embedded-linux-musl-x64", + }, + Object { + "deps": Object {}, + "name": "sass-embedded-linux-x64", + "root": "/common/temp/default/node_modules/.pnpm/sass-embedded-linux-x64@1.77.2/node_modules/sass-embedded-linux-x64", + }, + Object { + "deps": Object { + "@bufbuild/protobuf": 200, + "buffer-builder": 924, + "immutable": 1505, + "rxjs": 2203, + "sass-embedded-linux-musl-x64": 2213, + "sass-embedded-linux-x64": 2214, + "supports-color": 2363, + "varint": 2525, + }, + "name": "sass-embedded", + "root": "/common/temp/default/node_modules/.pnpm/sass-embedded@1.77.2/node_modules/sass-embedded", + }, + Object { + "deps": Object { + "klona": 1715, + "loader-utils": 1736, + "neo-async": 1862, + "sass": 2218, + "schema-utils": 2228, + "semver": 2238, + "webpack": 2558, + }, + "name": "sass-loader", + "root": "/common/temp/default/node_modules/.pnpm/sass-loader@10.0.5_sass@1.3.2_webpack@4.47.0/node_modules/sass-loader", + }, + Object { + "deps": Object { + "klona": 1715, + "neo-async": 1862, + "sass": 2219, + "webpack": 2559, + }, + "name": "sass-loader", + "root": "/common/temp/default/node_modules/.pnpm/sass-loader@12.4.0_sass@1.49.11_webpack@5.82.1/node_modules/sass-loader", + }, + Object { + "deps": Object {}, + "name": "sass", + "root": "/common/temp/default/node_modules/.pnpm/sass@1.3.2/node_modules/sass", + }, + Object { + "deps": Object { + "chokidar": 976, + "immutable": 1505, + "source-map-js": 2286, + }, + "name": "sass", + "root": "/common/temp/default/node_modules/.pnpm/sass@1.49.11/node_modules/sass", + }, + Object { + "deps": Object {}, + "name": "sax", + "root": "/common/temp/default/node_modules/.pnpm/sax@1.2.1/node_modules/sax", + }, + Object { + "deps": Object {}, + "name": "sax", + "root": "/common/temp/default/node_modules/.pnpm/sax@1.3.0/node_modules/sax", + }, + Object { + "deps": Object { + "xmlchars": 2603, + }, + "name": "saxes", + "root": "/common/temp/default/node_modules/.pnpm/saxes@6.0.0/node_modules/saxes", + }, + Object { + "deps": Object { + "loose-envify": 1764, + "object-assign": 1897, + }, + "name": "scheduler", + "root": "/common/temp/default/node_modules/.pnpm/scheduler@0.19.0/node_modules/scheduler", + }, + Object { + "deps": Object { + "loose-envify": 1764, + "object-assign": 1897, + }, + "name": "scheduler", + "root": "/common/temp/default/node_modules/.pnpm/scheduler@0.20.2/node_modules/scheduler", + }, + Object { + "deps": Object { + "ajv": 786, + "ajv-errors": 781, + "ajv-keywords": 784, + }, + "name": "schema-utils", + "root": "/common/temp/default/node_modules/.pnpm/schema-utils@1.0.0/node_modules/schema-utils", + }, + Object { + "deps": Object { + "@types/json-schema": 604, + "ajv": 786, + "ajv-keywords": 784, + }, + "name": "schema-utils", + "root": "/common/temp/default/node_modules/.pnpm/schema-utils@2.7.0/node_modules/schema-utils", + }, + Object { + "deps": Object { + "@types/json-schema": 604, + "ajv": 786, + "ajv-keywords": 784, + }, + "name": "schema-utils", + "root": "/common/temp/default/node_modules/.pnpm/schema-utils@2.7.1/node_modules/schema-utils", + }, + Object { + "deps": Object { + "@types/json-schema": 604, + "ajv": 786, + "ajv-keywords": 784, + }, + "name": "schema-utils", + "root": "/common/temp/default/node_modules/.pnpm/schema-utils@3.3.0/node_modules/schema-utils", + }, + Object { + "deps": Object { + "@types/json-schema": 604, + "ajv": 788, + "ajv-formats": 782, + "ajv-keywords": 785, + }, + "name": "schema-utils", + "root": "/common/temp/default/node_modules/.pnpm/schema-utils@4.2.0/node_modules/schema-utils", + }, + Object { + "deps": Object {}, + "name": "secure-json-parse", + "root": "/common/temp/default/node_modules/.pnpm/secure-json-parse@2.7.0/node_modules/secure-json-parse", + }, + Object { + "deps": Object {}, + "name": "select-hose", + "root": "/common/temp/default/node_modules/.pnpm/select-hose@2.0.0/node_modules/select-hose", + }, + Object { + "deps": Object { + "@types/node-forge": 619, + "node-forge": 1872, + }, + "name": "selfsigned", + "root": "/common/temp/default/node_modules/.pnpm/selfsigned@2.4.1/node_modules/selfsigned", + }, + Object { + "deps": Object {}, + "name": "semver-compare", + "root": "/common/temp/default/node_modules/.pnpm/semver-compare@1.0.0/node_modules/semver-compare", + }, + Object { + "deps": Object { + "semver": 2237, + }, + "name": "semver-diff", + "root": "/common/temp/default/node_modules/.pnpm/semver-diff@3.1.1/node_modules/semver-diff", + }, + Object { + "deps": Object {}, + "name": "semver-store", + "root": "/common/temp/default/node_modules/.pnpm/semver-store@0.3.0/node_modules/semver-store", + }, + Object { + "deps": Object {}, + "name": "semver", + "root": "/common/temp/default/node_modules/.pnpm/semver@5.7.2/node_modules/semver", + }, + Object { + "deps": Object {}, + "name": "semver", + "root": "/common/temp/default/node_modules/.pnpm/semver@6.3.1/node_modules/semver", + }, + Object { + "deps": Object { + "lru-cache": 1769, + }, + "name": "semver", + "root": "/common/temp/default/node_modules/.pnpm/semver@7.5.4/node_modules/semver", + }, + Object { + "deps": Object {}, + "name": "semver", + "root": "/common/temp/default/node_modules/.pnpm/semver@7.6.3/node_modules/semver", + }, + Object { + "deps": Object { + "debug": 1104, + "depd": 1133, + "destroy": 1138, + "encodeurl": 1195, + "escape-html": 1230, + "etag": 1277, + "fresh": 1357, + "http-errors": 1476, + "mime": 1810, + "ms": 1850, + "on-finished": 1911, + "range-parser": 2091, + "statuses": 2314, + }, + "name": "send", + "root": "/common/temp/default/node_modules/.pnpm/send@0.17.2/node_modules/send", + }, + Object { + "deps": Object { + "debug": 1104, + "depd": 1134, + "destroy": 1139, + "encodeurl": 1195, + "escape-html": 1230, + "etag": 1277, + "fresh": 1357, + "http-errors": 1477, + "mime": 1810, + "ms": 1850, + "on-finished": 1912, + "range-parser": 2091, + "statuses": 2315, + }, + "name": "send", + "root": "/common/temp/default/node_modules/.pnpm/send@0.18.0/node_modules/send", + }, + Object { + "deps": Object { + "randombytes": 2089, + }, + "name": "serialize-javascript", + "root": "/common/temp/default/node_modules/.pnpm/serialize-javascript@4.0.0/node_modules/serialize-javascript", + }, + Object { + "deps": Object { + "randombytes": 2089, + }, + "name": "serialize-javascript", + "root": "/common/temp/default/node_modules/.pnpm/serialize-javascript@5.0.1/node_modules/serialize-javascript", + }, + Object { + "deps": Object { + "randombytes": 2089, + }, + "name": "serialize-javascript", + "root": "/common/temp/default/node_modules/.pnpm/serialize-javascript@6.0.0/node_modules/serialize-javascript", + }, + Object { + "deps": Object { + "randombytes": 2089, + }, + "name": "serialize-javascript", + "root": "/common/temp/default/node_modules/.pnpm/serialize-javascript@6.0.2/node_modules/serialize-javascript", + }, + Object { + "deps": Object { + "etag": 1277, + "fresh": 1357, + "ms": 1848, + "parseurl": 1958, + "safe-buffer": 2205, + }, + "name": "serve-favicon", + "root": "/common/temp/default/node_modules/.pnpm/serve-favicon@2.5.0/node_modules/serve-favicon", + }, + Object { + "deps": Object { + "accepts": 763, + "batch": 889, + "debug": 1104, + "escape-html": 1230, + "http-errors": 1475, + "mime-types": 1809, + "parseurl": 1958, + }, + "name": "serve-index", + "root": "/common/temp/default/node_modules/.pnpm/serve-index@1.9.1/node_modules/serve-index", + }, + Object { + "deps": Object { + "encodeurl": 1195, + "escape-html": 1230, + "parseurl": 1958, + "send": 2241, + }, + "name": "serve-static", + "root": "/common/temp/default/node_modules/.pnpm/serve-static@1.15.0/node_modules/serve-static", + }, + Object { + "deps": Object {}, + "name": "set-blocking", + "root": "/common/temp/default/node_modules/.pnpm/set-blocking@2.0.0/node_modules/set-blocking", + }, + Object { + "deps": Object {}, + "name": "set-cookie-parser", + "root": "/common/temp/default/node_modules/.pnpm/set-cookie-parser@2.6.0/node_modules/set-cookie-parser", + }, + Object { + "deps": Object { + "define-data-property": 1123, + "es-errors": 1214, + "function-bind": 1370, + "get-intrinsic": 1381, + "gopd": 1416, + "has-property-descriptors": 1431, + }, + "name": "set-function-length", + "root": "/common/temp/default/node_modules/.pnpm/set-function-length@1.2.2/node_modules/set-function-length", + }, + Object { + "deps": Object { + "define-data-property": 1123, + "es-errors": 1214, + "functions-have-names": 1373, + "has-property-descriptors": 1431, + }, + "name": "set-function-name", + "root": "/common/temp/default/node_modules/.pnpm/set-function-name@2.0.2/node_modules/set-function-name", + }, + Object { + "deps": Object {}, + "name": "set-immediate-shim", + "root": "/common/temp/default/node_modules/.pnpm/set-immediate-shim@1.0.1/node_modules/set-immediate-shim", + }, + Object { + "deps": Object { + "extend-shallow": 1291, + "is-extendable": 1558, + "is-plain-object": 1586, + "split-string": 2303, + }, + "name": "set-value", + "root": "/common/temp/default/node_modules/.pnpm/set-value@2.0.1/node_modules/set-value", + }, + Object { + "deps": Object {}, + "name": "setimmediate", + "root": "/common/temp/default/node_modules/.pnpm/setimmediate@1.0.5/node_modules/setimmediate", + }, + Object { + "deps": Object {}, + "name": "setprototypeof", + "root": "/common/temp/default/node_modules/.pnpm/setprototypeof@1.1.0/node_modules/setprototypeof", + }, + Object { + "deps": Object {}, + "name": "setprototypeof", + "root": "/common/temp/default/node_modules/.pnpm/setprototypeof@1.2.0/node_modules/setprototypeof", + }, + Object { + "deps": Object { + "inherits": 1518, + "safe-buffer": 2207, + }, + "name": "sha.js", + "root": "/common/temp/default/node_modules/.pnpm/sha.js@2.4.11/node_modules/sha.js", + }, + Object { + "deps": Object { + "kind-of": 1713, + }, + "name": "shallow-clone", + "root": "/common/temp/default/node_modules/.pnpm/shallow-clone@3.0.1/node_modules/shallow-clone", + }, + Object { + "deps": Object {}, + "name": "shallowequal", + "root": "/common/temp/default/node_modules/.pnpm/shallowequal@1.1.0/node_modules/shallowequal", + }, + Object { + "deps": Object { + "shebang-regex": 2263, + }, + "name": "shebang-command", + "root": "/common/temp/default/node_modules/.pnpm/shebang-command@1.2.0/node_modules/shebang-command", + }, + Object { + "deps": Object { + "shebang-regex": 2264, + }, + "name": "shebang-command", + "root": "/common/temp/default/node_modules/.pnpm/shebang-command@2.0.0/node_modules/shebang-command", + }, + Object { + "deps": Object {}, + "name": "shebang-regex", + "root": "/common/temp/default/node_modules/.pnpm/shebang-regex@1.0.0/node_modules/shebang-regex", + }, + Object { + "deps": Object {}, + "name": "shebang-regex", + "root": "/common/temp/default/node_modules/.pnpm/shebang-regex@3.0.0/node_modules/shebang-regex", + }, + Object { + "deps": Object { + "glob": 1400, + "interpret": 1525, + "rechoir": 2135, + }, + "name": "shelljs", + "root": "/common/temp/default/node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs", + }, + Object { + "deps": Object { + "call-bind": 946, + "es-errors": 1214, + "get-intrinsic": 1381, + "object-inspect": 1899, + }, + "name": "side-channel", + "root": "/common/temp/default/node_modules/.pnpm/side-channel@1.0.6/node_modules/side-channel", + }, + Object { + "deps": Object {}, + "name": "signal-exit", + "root": "/common/temp/default/node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit", + }, + Object { + "deps": Object {}, + "name": "simple-concat", + "root": "/common/temp/default/node_modules/.pnpm/simple-concat@1.0.1/node_modules/simple-concat", + }, + Object { + "deps": Object { + "decompress-response": 1113, + "once": 1914, + "simple-concat": 2268, + }, + "name": "simple-get", + "root": "/common/temp/default/node_modules/.pnpm/simple-get@4.0.1/node_modules/simple-get", + }, + Object { + "deps": Object { + "@polka/url": 392, + "mrmime": 1846, + "totalist": 2408, + }, + "name": "sirv", + "root": "/common/temp/default/node_modules/.pnpm/sirv@1.0.19/node_modules/sirv", + }, + Object { + "deps": Object {}, + "name": "sisteransi", + "root": "/common/temp/default/node_modules/.pnpm/sisteransi@1.0.5/node_modules/sisteransi", + }, + Object { + "deps": Object {}, + "name": "slash", + "root": "/common/temp/default/node_modules/.pnpm/slash@2.0.0/node_modules/slash", + }, + Object { + "deps": Object {}, + "name": "slash", + "root": "/common/temp/default/node_modules/.pnpm/slash@3.0.0/node_modules/slash", + }, + Object { + "deps": Object { + "ansi-styles": 799, + "astral-regex": 843, + "is-fullwidth-code-point": 1563, + }, + "name": "slice-ansi", + "root": "/common/temp/default/node_modules/.pnpm/slice-ansi@2.1.0/node_modules/slice-ansi", + }, + Object { + "deps": Object { + "ansi-styles": 800, + "astral-regex": 844, + "is-fullwidth-code-point": 1564, + }, + "name": "slice-ansi", + "root": "/common/temp/default/node_modules/.pnpm/slice-ansi@4.0.0/node_modules/slice-ansi", + }, + Object { + "deps": Object {}, + "name": "smart-buffer", + "root": "/common/temp/default/node_modules/.pnpm/smart-buffer@4.2.0/node_modules/smart-buffer", + }, + Object { + "deps": Object { + "define-property": 1127, + "isobject": 1614, + "snapdragon-util": 2278, + }, + "name": "snapdragon-node", + "root": "/common/temp/default/node_modules/.pnpm/snapdragon-node@2.1.1/node_modules/snapdragon-node", + }, + Object { + "deps": Object { + "kind-of": 1711, + }, + "name": "snapdragon-util", + "root": "/common/temp/default/node_modules/.pnpm/snapdragon-util@3.0.1/node_modules/snapdragon-util", + }, + Object { + "deps": Object { + "base": 887, + "debug": 1104, + "define-property": 1126, + "extend-shallow": 1291, + "map-cache": 1777, + "source-map": 2293, + "source-map-resolve": 2289, + "use": 2507, + }, + "name": "snapdragon", + "root": "/common/temp/default/node_modules/.pnpm/snapdragon@0.8.2/node_modules/snapdragon", + }, + Object { + "deps": Object { + "faye-websocket": 1313, + "uuid": 2518, + "websocket-driver": 2560, + }, + "name": "sockjs", + "root": "/common/temp/default/node_modules/.pnpm/sockjs@0.3.24/node_modules/sockjs", + }, + Object { + "deps": Object { + "agent-base": 775, + "debug": 1106, + "socks": 2282, + }, + "name": "socks-proxy-agent", + "root": "/common/temp/default/node_modules/.pnpm/socks-proxy-agent@5.0.1/node_modules/socks-proxy-agent", + }, + Object { + "deps": Object { + "ip-address": 1528, + "smart-buffer": 2276, + }, + "name": "socks", + "root": "/common/temp/default/node_modules/.pnpm/socks@2.8.1/node_modules/socks", + }, + Object { + "deps": Object { + "atomic-sleep": 853, + "flatstr": 1340, + }, + "name": "sonic-boom", + "root": "/common/temp/default/node_modules/.pnpm/sonic-boom@1.4.1/node_modules/sonic-boom", + }, + Object { + "deps": Object { + "is-plain-obj": 1584, + }, + "name": "sort-keys", + "root": "/common/temp/default/node_modules/.pnpm/sort-keys@4.2.0/node_modules/sort-keys", + }, + Object { + "deps": Object {}, + "name": "source-list-map", + "root": "/common/temp/default/node_modules/.pnpm/source-list-map@2.0.1/node_modules/source-list-map", + }, + Object { + "deps": Object {}, + "name": "source-map-js", + "root": "/common/temp/default/node_modules/.pnpm/source-map-js@1.1.0/node_modules/source-map-js", + }, + Object { + "deps": Object { + "abab": 760, + "iconv-lite": 1493, + "loader-utils": 1736, + "schema-utils": 2228, + "source-map": 2294, + "webpack": 2558, + "whatwg-mimetype": 2563, + }, + "name": "source-map-loader", + "root": "/common/temp/default/node_modules/.pnpm/source-map-loader@1.1.3_webpack@4.47.0/node_modules/source-map-loader", + }, + Object { + "deps": Object { + "abab": 760, + "iconv-lite": 1493, + "source-map-js": 2286, + "webpack": 2559, + }, + "name": "source-map-loader", + "root": "/common/temp/default/node_modules/.pnpm/source-map-loader@3.0.2_webpack@5.82.1/node_modules/source-map-loader", + }, + Object { + "deps": Object { + "atob": 852, + "decode-uri-component": 1112, + "resolve-url": 2180, + "source-map-url": 2292, + "urix": 2495, + }, + "name": "source-map-resolve", + "root": "/common/temp/default/node_modules/.pnpm/source-map-resolve@0.5.3/node_modules/source-map-resolve", + }, + Object { + "deps": Object { + "buffer-from": 927, + "source-map": 2294, + }, + "name": "source-map-support", + "root": "/common/temp/default/node_modules/.pnpm/source-map-support@0.5.13/node_modules/source-map-support", + }, + Object { + "deps": Object { + "buffer-from": 927, + "source-map": 2294, + }, + "name": "source-map-support", + "root": "/common/temp/default/node_modules/.pnpm/source-map-support@0.5.21/node_modules/source-map-support", + }, + Object { + "deps": Object {}, + "name": "source-map-url", + "root": "/common/temp/default/node_modules/.pnpm/source-map-url@0.4.1/node_modules/source-map-url", + }, + Object { + "deps": Object {}, + "name": "source-map", + "root": "/common/temp/default/node_modules/.pnpm/source-map@0.5.7/node_modules/source-map", + }, + Object { + "deps": Object {}, + "name": "source-map", + "root": "/common/temp/default/node_modules/.pnpm/source-map@0.6.1/node_modules/source-map", + }, + Object { + "deps": Object {}, + "name": "source-map", + "root": "/common/temp/default/node_modules/.pnpm/source-map@0.7.4/node_modules/source-map", + }, + Object { + "deps": Object {}, + "name": "space-separated-tokens", + "root": "/common/temp/default/node_modules/.pnpm/space-separated-tokens@1.1.5/node_modules/space-separated-tokens", + }, + Object { + "deps": Object { + "spdx-expression-parse": 2299, + "spdx-license-ids": 2300, + }, + "name": "spdx-correct", + "root": "/common/temp/default/node_modules/.pnpm/spdx-correct@3.2.0/node_modules/spdx-correct", + }, + Object { + "deps": Object {}, + "name": "spdx-exceptions", + "root": "/common/temp/default/node_modules/.pnpm/spdx-exceptions@2.5.0/node_modules/spdx-exceptions", + }, + Object { + "deps": Object { + "spdx-exceptions": 2298, + "spdx-license-ids": 2300, + }, + "name": "spdx-expression-parse", + "root": "/common/temp/default/node_modules/.pnpm/spdx-expression-parse@3.0.1/node_modules/spdx-expression-parse", + }, + Object { + "deps": Object {}, + "name": "spdx-license-ids", + "root": "/common/temp/default/node_modules/.pnpm/spdx-license-ids@3.0.17/node_modules/spdx-license-ids", + }, + Object { + "deps": Object { + "debug": 1106, + "detect-node": 1145, + "hpack.js": 1461, + "obuf": 1910, + "readable-stream": 2127, + "wbuf": 2538, + }, + "name": "spdy-transport", + "root": "/common/temp/default/node_modules/.pnpm/spdy-transport@3.0.0/node_modules/spdy-transport", + }, + Object { + "deps": Object { + "debug": 1106, + "handle-thing": 1424, + "http-deceiver": 1474, + "select-hose": 2231, + "spdy-transport": 2301, + }, + "name": "spdy", + "root": "/common/temp/default/node_modules/.pnpm/spdy@4.0.2/node_modules/spdy", + }, + Object { + "deps": Object { + "extend-shallow": 1292, + }, + "name": "split-string", + "root": "/common/temp/default/node_modules/.pnpm/split-string@3.1.0/node_modules/split-string", + }, + Object { + "deps": Object { + "readable-stream": 2127, + }, + "name": "split2", + "root": "/common/temp/default/node_modules/.pnpm/split2@3.2.2/node_modules/split2", + }, + Object { + "deps": Object {}, + "name": "sprintf-js", + "root": "/common/temp/default/node_modules/.pnpm/sprintf-js@1.0.3/node_modules/sprintf-js", + }, + Object { + "deps": Object {}, + "name": "sprintf-js", + "root": "/common/temp/default/node_modules/.pnpm/sprintf-js@1.1.3/node_modules/sprintf-js", + }, + Object { + "deps": Object { + "figgy-pudding": 1316, + }, + "name": "ssri", + "root": "/common/temp/default/node_modules/.pnpm/ssri@6.0.2/node_modules/ssri", + }, + Object { + "deps": Object { + "minipass": 1835, + }, + "name": "ssri", + "root": "/common/temp/default/node_modules/.pnpm/ssri@8.0.1/node_modules/ssri", + }, + Object { + "deps": Object {}, + "name": "stable", + "root": "/common/temp/default/node_modules/.pnpm/stable@0.1.8/node_modules/stable", + }, + Object { + "deps": Object { + "escape-string-regexp": 1232, + }, + "name": "stack-utils", + "root": "/common/temp/default/node_modules/.pnpm/stack-utils@2.0.6/node_modules/stack-utils", + }, + Object { + "deps": Object {}, + "name": "stackframe", + "root": "/common/temp/default/node_modules/.pnpm/stackframe@1.3.4/node_modules/stackframe", + }, + Object { + "deps": Object {}, + "name": "state-toggle", + "root": "/common/temp/default/node_modules/.pnpm/state-toggle@1.0.3/node_modules/state-toggle", + }, + Object { + "deps": Object { + "define-property": 1126, + "object-copy": 1898, + }, + "name": "static-extend", + "root": "/common/temp/default/node_modules/.pnpm/static-extend@0.1.2/node_modules/static-extend", + }, + Object { + "deps": Object {}, + "name": "statuses", + "root": "/common/temp/default/node_modules/.pnpm/statuses@1.5.0/node_modules/statuses", + }, + Object { + "deps": Object {}, + "name": "statuses", + "root": "/common/temp/default/node_modules/.pnpm/statuses@2.0.1/node_modules/statuses", + }, + Object { + "deps": Object { + "internal-slot": 1524, + }, + "name": "stop-iteration-iterator", + "root": "/common/temp/default/node_modules/.pnpm/stop-iteration-iterator@1.0.0/node_modules/stop-iteration-iterator", + }, + Object { + "deps": Object {}, + "name": "stoppable", + "root": "/common/temp/default/node_modules/.pnpm/stoppable@1.1.0/node_modules/stoppable", + }, + Object { + "deps": Object {}, + "name": "store2", + "root": "/common/temp/default/node_modules/.pnpm/store2@2.14.3/node_modules/store2", + }, + Object { + "deps": Object { + "inherits": 1518, + "readable-stream": 2126, + }, + "name": "stream-browserify", + "root": "/common/temp/default/node_modules/.pnpm/stream-browserify@2.0.2/node_modules/stream-browserify", + }, + Object { + "deps": Object { + "end-of-stream": 1197, + "stream-shift": 2322, + }, + "name": "stream-each", + "root": "/common/temp/default/node_modules/.pnpm/stream-each@1.2.3/node_modules/stream-each", + }, + Object { + "deps": Object { + "builtin-status-codes": 935, + "inherits": 1518, + "readable-stream": 2126, + "to-arraybuffer": 2400, + "xtend": 2606, + }, + "name": "stream-http", + "root": "/common/temp/default/node_modules/.pnpm/stream-http@2.8.3/node_modules/stream-http", + }, + Object { + "deps": Object {}, + "name": "stream-shift", + "root": "/common/temp/default/node_modules/.pnpm/stream-shift@1.0.3/node_modules/stream-shift", + }, + Object { + "deps": Object { + "date-format": 1102, + "debug": 1106, + "fs-extra": 1363, + }, + "name": "streamroller", + "root": "/common/temp/default/node_modules/.pnpm/streamroller@3.1.5/node_modules/streamroller", + }, + Object { + "deps": Object {}, + "name": "strict-uri-encode", + "root": "/common/temp/default/node_modules/.pnpm/strict-uri-encode@2.0.0/node_modules/strict-uri-encode", + }, + Object { + "deps": Object {}, + "name": "string-argv", + "root": "/common/temp/default/node_modules/.pnpm/string-argv@0.3.2/node_modules/string-argv", + }, + Object { + "deps": Object {}, + "name": "string-hash", + "root": "/common/temp/default/node_modules/.pnpm/string-hash@1.1.3/node_modules/string-hash", + }, + Object { + "deps": Object { + "char-regex": 968, + "strip-ansi": 2343, + }, + "name": "string-length", + "root": "/common/temp/default/node_modules/.pnpm/string-length@4.0.2/node_modules/string-length", + }, + Object { + "deps": Object {}, + "name": "string-similarity", + "root": "/common/temp/default/node_modules/.pnpm/string-similarity@4.0.4/node_modules/string-similarity", + }, + Object { + "deps": Object { + "code-point-at": 1008, + "is-fullwidth-code-point": 1562, + "strip-ansi": 2341, + }, + "name": "string-width", + "root": "/common/temp/default/node_modules/.pnpm/string-width@1.0.2/node_modules/string-width", + }, + Object { + "deps": Object { + "emoji-regex": 1189, + "is-fullwidth-code-point": 1563, + "strip-ansi": 2342, + }, + "name": "string-width", + "root": "/common/temp/default/node_modules/.pnpm/string-width@3.1.0/node_modules/string-width", + }, + Object { + "deps": Object { + "emoji-regex": 1190, + "is-fullwidth-code-point": 1564, + "strip-ansi": 2343, + }, + "name": "string-width", + "root": "/common/temp/default/node_modules/.pnpm/string-width@4.2.3/node_modules/string-width", + }, + Object { + "deps": Object { + "eastasianwidth": 1182, + "emoji-regex": 1191, + "strip-ansi": 2344, + }, + "name": "string-width", + "root": "/common/temp/default/node_modules/.pnpm/string-width@5.1.2/node_modules/string-width", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "get-intrinsic": 1381, + "has-symbols": 1433, + "internal-slot": 1524, + "regexp.prototype.flags": 2147, + "set-function-name": 2252, + "side-channel": 2266, + }, + "name": "string.prototype.matchall", + "root": "/common/temp/default/node_modules/.pnpm/string.prototype.matchall@4.0.10/node_modules/string.prototype.matchall", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + }, + "name": "string.prototype.padend", + "root": "/common/temp/default/node_modules/.pnpm/string.prototype.padend@3.1.5/node_modules/string.prototype.padend", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-object-atoms": 1218, + }, + "name": "string.prototype.padstart", + "root": "/common/temp/default/node_modules/.pnpm/string.prototype.padstart@3.1.6/node_modules/string.prototype.padstart", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + "es-object-atoms": 1218, + }, + "name": "string.prototype.trim", + "root": "/common/temp/default/node_modules/.pnpm/string.prototype.trim@1.2.9/node_modules/string.prototype.trim", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-object-atoms": 1218, + }, + "name": "string.prototype.trimend", + "root": "/common/temp/default/node_modules/.pnpm/string.prototype.trimend@1.0.8/node_modules/string.prototype.trimend", + }, + Object { + "deps": Object { + "call-bind": 946, + "define-properties": 1125, + "es-abstract": 1211, + }, + "name": "string.prototype.trimstart", + "root": "/common/temp/default/node_modules/.pnpm/string.prototype.trimstart@1.0.7/node_modules/string.prototype.trimstart", + }, + Object { + "deps": Object { + "safe-buffer": 2206, + }, + "name": "string_decoder", + "root": "/common/temp/default/node_modules/.pnpm/string_decoder@1.1.1/node_modules/string_decoder", + }, + Object { + "deps": Object { + "safe-buffer": 2207, + }, + "name": "string_decoder", + "root": "/common/temp/default/node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder", + }, + Object { + "deps": Object { + "ansi-regex": 795, + }, + "name": "strip-ansi", + "root": "/common/temp/default/node_modules/.pnpm/strip-ansi@3.0.1/node_modules/strip-ansi", + }, + Object { + "deps": Object { + "ansi-regex": 796, + }, + "name": "strip-ansi", + "root": "/common/temp/default/node_modules/.pnpm/strip-ansi@5.2.0/node_modules/strip-ansi", + }, + Object { + "deps": Object { + "ansi-regex": 797, + }, + "name": "strip-ansi", + "root": "/common/temp/default/node_modules/.pnpm/strip-ansi@6.0.1/node_modules/strip-ansi", + }, + Object { + "deps": Object { + "ansi-regex": 798, + }, + "name": "strip-ansi", + "root": "/common/temp/default/node_modules/.pnpm/strip-ansi@7.1.0/node_modules/strip-ansi", + }, + Object { + "deps": Object {}, + "name": "strip-bom", + "root": "/common/temp/default/node_modules/.pnpm/strip-bom@3.0.0/node_modules/strip-bom", + }, + Object { + "deps": Object {}, + "name": "strip-bom", + "root": "/common/temp/default/node_modules/.pnpm/strip-bom@4.0.0/node_modules/strip-bom", + }, + Object { + "deps": Object {}, + "name": "strip-eof", + "root": "/common/temp/default/node_modules/.pnpm/strip-eof@1.0.0/node_modules/strip-eof", + }, + Object { + "deps": Object {}, + "name": "strip-final-newline", + "root": "/common/temp/default/node_modules/.pnpm/strip-final-newline@2.0.0/node_modules/strip-final-newline", + }, + Object { + "deps": Object { + "min-indent": 1817, + }, + "name": "strip-indent", + "root": "/common/temp/default/node_modules/.pnpm/strip-indent@3.0.0/node_modules/strip-indent", + }, + Object { + "deps": Object {}, + "name": "strip-json-comments", + "root": "/common/temp/default/node_modules/.pnpm/strip-json-comments@2.0.1/node_modules/strip-json-comments", + }, + Object { + "deps": Object {}, + "name": "strip-json-comments", + "root": "/common/temp/default/node_modules/.pnpm/strip-json-comments@3.1.1/node_modules/strip-json-comments", + }, + Object { + "deps": Object {}, + "name": "strnum", + "root": "/common/temp/default/node_modules/.pnpm/strnum@1.0.5/node_modules/strnum", + }, + Object { + "deps": Object { + "loader-utils": 1736, + "schema-utils": 2227, + "webpack": 2558, + }, + "name": "style-loader", + "root": "/common/temp/default/node_modules/.pnpm/style-loader@1.3.0_webpack@4.47.0/node_modules/style-loader", + }, + Object { + "deps": Object { + "loader-utils": 1736, + "schema-utils": 2228, + "webpack": 2558, + }, + "name": "style-loader", + "root": "/common/temp/default/node_modules/.pnpm/style-loader@2.0.0_webpack@4.47.0/node_modules/style-loader", + }, + Object { + "deps": Object { + "webpack": 2559, + }, + "name": "style-loader", + "root": "/common/temp/default/node_modules/.pnpm/style-loader@3.3.4_webpack@5.82.1/node_modules/style-loader", + }, + Object { + "deps": Object { + "inline-style-parser": 1521, + }, + "name": "style-to-object", + "root": "/common/temp/default/node_modules/.pnpm/style-to-object@0.3.0/node_modules/style-to-object", + }, + Object { + "deps": Object { + "browserslist": 922, + "postcss": 2038, + "postcss-selector-parser": 2033, + }, + "name": "stylehacks", + "root": "/common/temp/default/node_modules/.pnpm/stylehacks@5.1.1_postcss@8.4.36/node_modules/stylehacks", + }, + Object { + "deps": Object {}, + "name": "stylis", + "root": "/common/temp/default/node_modules/.pnpm/stylis@4.3.1/node_modules/stylis", + }, + Object { + "deps": Object { + "inpath": 1522, + "pidof": 1977, + "read": 2125, + }, + "name": "sudo", + "root": "/common/temp/default/node_modules/.pnpm/sudo@1.0.3/node_modules/sudo", + }, + Object { + "deps": Object { + "has-flag": 1428, + }, + "name": "supports-color", + "root": "/common/temp/default/node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color", + }, + Object { + "deps": Object { + "has-flag": 1428, + }, + "name": "supports-color", + "root": "/common/temp/default/node_modules/.pnpm/supports-color@6.1.0/node_modules/supports-color", + }, + Object { + "deps": Object { + "has-flag": 1429, + }, + "name": "supports-color", + "root": "/common/temp/default/node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color", + }, + Object { + "deps": Object { + "has-flag": 1429, + }, + "name": "supports-color", + "root": "/common/temp/default/node_modules/.pnpm/supports-color@8.1.1/node_modules/supports-color", + }, + Object { + "deps": Object {}, + "name": "supports-preserve-symlinks-flag", + "root": "/common/temp/default/node_modules/.pnpm/supports-preserve-symlinks-flag@1.0.0/node_modules/supports-preserve-symlinks-flag", + }, + Object { + "deps": Object { + "@trysound/sax": 555, + "commander": 1030, + "css-select": 1083, + "css-tree": 1085, + "csso": 1091, + "picocolors": 1975, + "stable": 2309, + }, + "name": "svgo", + "root": "/common/temp/default/node_modules/.pnpm/svgo@2.8.0/node_modules/svgo", + }, + Object { + "deps": Object {}, + "name": "symbol-tree", + "root": "/common/temp/default/node_modules/.pnpm/symbol-tree@3.2.4/node_modules/symbol-tree", + }, + Object { + "deps": Object { + "call-bind": 946, + "es-errors": 1214, + "get-symbol-description": 1387, + "has-symbols": 1433, + "object.getownpropertydescriptors": 1905, + }, + "name": "symbol.prototype.description", + "root": "/common/temp/default/node_modules/.pnpm/symbol.prototype.description@1.0.6/node_modules/symbol.prototype.description", + }, + Object { + "deps": Object {}, + "name": "synchronous-promise", + "root": "/common/temp/default/node_modules/.pnpm/synchronous-promise@2.0.17/node_modules/synchronous-promise", + }, + Object { + "deps": Object { + "ajv": 786, + "lodash": 1760, + "slice-ansi": 2274, + "string-width": 2330, + }, + "name": "table", + "root": "/common/temp/default/node_modules/.pnpm/table@5.4.6/node_modules/table", + }, + Object { + "deps": Object { + "ajv": 788, + "lodash.truncate": 1757, + "slice-ansi": 2275, + "string-width": 2331, + "strip-ansi": 2343, + }, + "name": "table", + "root": "/common/temp/default/node_modules/.pnpm/table@6.8.1/node_modules/table", + }, + Object { + "deps": Object { + "keyborg": 1708, + "tslib": 2425, + }, + "name": "tabster", + "root": "/common/temp/default/node_modules/.pnpm/tabster@6.1.0/node_modules/tabster", + }, + Object { + "deps": Object {}, + "name": "tapable", + "root": "/common/temp/default/node_modules/.pnpm/tapable@1.1.3/node_modules/tapable", + }, + Object { + "deps": Object {}, + "name": "tapable", + "root": "/common/temp/default/node_modules/.pnpm/tapable@2.2.1/node_modules/tapable", + }, + Object { + "deps": Object { + "chownr": 979, + "mkdirp-classic": 1841, + "pump": 2069, + "tar-stream": 2375, + }, + "name": "tar-fs", + "root": "/common/temp/default/node_modules/.pnpm/tar-fs@2.1.1/node_modules/tar-fs", + }, + Object { + "deps": Object { + "bl": 898, + "end-of-stream": 1197, + "fs-constants": 1359, + "inherits": 1518, + "readable-stream": 2127, + }, + "name": "tar-stream", + "root": "/common/temp/default/node_modules/.pnpm/tar-stream@2.2.0/node_modules/tar-stream", + }, + Object { + "deps": Object { + "chownr": 980, + "fs-minipass": 1365, + "minipass": 1837, + "minizlib": 1838, + "mkdirp": 1843, + "yallist": 2610, + }, + "name": "tar", + "root": "/common/temp/default/node_modules/.pnpm/tar@6.2.1/node_modules/tar", + }, + Object { + "deps": Object { + "@types/is-function": 592, + "global": 1408, + "is-function": 1565, + "is-regex": 1589, + "is-symbol": 1596, + "isobject": 1615, + "lodash": 1760, + "memoizerific": 1795, + }, + "name": "telejson", + "root": "/common/temp/default/node_modules/.pnpm/telejson@5.3.3/node_modules/telejson", + }, + Object { + "deps": Object { + "rimraf": 2193, + }, + "name": "temp", + "root": "/common/temp/default/node_modules/.pnpm/temp@0.8.4/node_modules/temp", + }, + Object { + "deps": Object { + "cacache": 941, + "find-cache-dir": 1327, + "is-wsl": 1607, + "schema-utils": 2225, + "serialize-javascript": 2242, + "source-map": 2294, + "terser": 2383, + "webpack": 2558, + "webpack-sources": 2555, + "worker-farm": 2580, + }, + "name": "terser-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/terser-webpack-plugin@1.4.5_webpack@4.47.0/node_modules/terser-webpack-plugin", + }, + Object { + "deps": Object { + "cacache": 942, + "find-cache-dir": 1328, + "jest-worker": 1666, + "p-limit": 1933, + "schema-utils": 2227, + "serialize-javascript": 2242, + "source-map": 2294, + "terser": 2383, + "webpack": 2558, + "webpack-sources": 2555, + }, + "name": "terser-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/terser-webpack-plugin@3.0.8_webpack@4.47.0/node_modules/terser-webpack-plugin", + }, + Object { + "deps": Object { + "cacache": 942, + "find-cache-dir": 1328, + "jest-worker": 1666, + "p-limit": 1933, + "schema-utils": 2228, + "serialize-javascript": 2243, + "source-map": 2294, + "terser": 2384, + "webpack": 2558, + "webpack-sources": 2555, + }, + "name": "terser-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/terser-webpack-plugin@4.2.3_webpack@4.47.0/node_modules/terser-webpack-plugin", + }, + Object { + "deps": Object { + "@jridgewell/trace-mapping": 355, + "jest-worker": 1667, + "schema-utils": 2228, + "serialize-javascript": 2245, + "terser": 2384, + "webpack": 2559, + }, + "name": "terser-webpack-plugin", + "root": "/common/temp/default/node_modules/.pnpm/terser-webpack-plugin@5.3.10_webpack@5.82.1/node_modules/terser-webpack-plugin", + }, + Object { + "deps": Object { + "commander": 1027, + "source-map": 2294, + "source-map-support": 2291, + }, + "name": "terser", + "root": "/common/temp/default/node_modules/.pnpm/terser@4.8.1/node_modules/terser", + }, + Object { + "deps": Object { + "@jridgewell/source-map": 353, + "acorn": 772, + "commander": 1027, + "source-map-support": 2291, + }, + "name": "terser", + "root": "/common/temp/default/node_modules/.pnpm/terser@5.29.2/node_modules/terser", + }, + Object { + "deps": Object { + "@istanbuljs/schema": 326, + "glob": 1401, + "minimatch": 1821, + }, + "name": "test-exclude", + "root": "/common/temp/default/node_modules/.pnpm/test-exclude@6.0.0/node_modules/test-exclude", + }, + Object { + "deps": Object {}, + "name": "text-table", + "root": "/common/temp/default/node_modules/.pnpm/text-table@0.2.0/node_modules/text-table", + }, + Object { + "deps": Object { + "thenify": 2388, + }, + "name": "thenify-all", + "root": "/common/temp/default/node_modules/.pnpm/thenify-all@1.6.0/node_modules/thenify-all", + }, + Object { + "deps": Object { + "any-promise": 804, + }, + "name": "thenify", + "root": "/common/temp/default/node_modules/.pnpm/thenify@3.3.1/node_modules/thenify", + }, + Object { + "deps": Object {}, + "name": "throat", + "root": "/common/temp/default/node_modules/.pnpm/throat@6.0.2/node_modules/throat", + }, + Object { + "deps": Object {}, + "name": "throttle-debounce", + "root": "/common/temp/default/node_modules/.pnpm/throttle-debounce@3.0.1/node_modules/throttle-debounce", + }, + Object { + "deps": Object { + "readable-stream": 2126, + "xtend": 2606, + }, + "name": "through2", + "root": "/common/temp/default/node_modules/.pnpm/through2@2.0.5/node_modules/through2", + }, + Object { + "deps": Object { + "readable-stream": 2127, + }, + "name": "through2", + "root": "/common/temp/default/node_modules/.pnpm/through2@4.0.2/node_modules/through2", + }, + Object { + "deps": Object {}, + "name": "through", + "root": "/common/temp/default/node_modules/.pnpm/through@2.3.8/node_modules/through", + }, + Object { + "deps": Object {}, + "name": "thunky", + "root": "/common/temp/default/node_modules/.pnpm/thunky@1.1.0/node_modules/thunky", + }, + Object { + "deps": Object { + "setimmediate": 2255, + }, + "name": "timers-browserify", + "root": "/common/temp/default/node_modules/.pnpm/timers-browserify@2.0.12/node_modules/timers-browserify", + }, + Object { + "deps": Object {}, + "name": "tiny-lru", + "root": "/common/temp/default/node_modules/.pnpm/tiny-lru@7.0.6/node_modules/tiny-lru", + }, + Object { + "deps": Object { + "os-tmpdir": 1923, + }, + "name": "tmp", + "root": "/common/temp/default/node_modules/.pnpm/tmp@0.0.33/node_modules/tmp", + }, + Object { + "deps": Object {}, + "name": "tmp", + "root": "/common/temp/default/node_modules/.pnpm/tmp@0.2.3/node_modules/tmp", + }, + Object { + "deps": Object {}, + "name": "tmpl", + "root": "/common/temp/default/node_modules/.pnpm/tmpl@1.0.5/node_modules/tmpl", + }, + Object { + "deps": Object {}, + "name": "to-arraybuffer", + "root": "/common/temp/default/node_modules/.pnpm/to-arraybuffer@1.0.1/node_modules/to-arraybuffer", + }, + Object { + "deps": Object {}, + "name": "to-fast-properties", + "root": "/common/temp/default/node_modules/.pnpm/to-fast-properties@2.0.0/node_modules/to-fast-properties", + }, + Object { + "deps": Object { + "kind-of": 1711, + }, + "name": "to-object-path", + "root": "/common/temp/default/node_modules/.pnpm/to-object-path@0.3.0/node_modules/to-object-path", + }, + Object { + "deps": Object { + "is-number": 1578, + "repeat-string": 2166, + }, + "name": "to-regex-range", + "root": "/common/temp/default/node_modules/.pnpm/to-regex-range@2.1.1/node_modules/to-regex-range", + }, + Object { + "deps": Object { + "is-number": 1579, + }, + "name": "to-regex-range", + "root": "/common/temp/default/node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range", + }, + Object { + "deps": Object { + "define-property": 1128, + "extend-shallow": 1292, + "regex-not": 2146, + "safe-regex": 2210, + }, + "name": "to-regex", + "root": "/common/temp/default/node_modules/.pnpm/to-regex@3.0.2/node_modules/to-regex", + }, + Object { + "deps": Object {}, + "name": "toggle-selection", + "root": "/common/temp/default/node_modules/.pnpm/toggle-selection@1.0.6/node_modules/toggle-selection", + }, + Object { + "deps": Object {}, + "name": "toidentifier", + "root": "/common/temp/default/node_modules/.pnpm/toidentifier@1.0.1/node_modules/toidentifier", + }, + Object { + "deps": Object {}, + "name": "totalist", + "root": "/common/temp/default/node_modules/.pnpm/totalist@1.1.0/node_modules/totalist", + }, + Object { + "deps": Object { + "psl": 2066, + "punycode": 2073, + "universalify": 2486, + "url-parse": 2499, + }, + "name": "tough-cookie", + "root": "/common/temp/default/node_modules/.pnpm/tough-cookie@4.1.3/node_modules/tough-cookie", + }, + Object { + "deps": Object {}, + "name": "tr46", + "root": "/common/temp/default/node_modules/.pnpm/tr46@0.0.3/node_modules/tr46", + }, + Object { + "deps": Object { + "punycode": 2073, + }, + "name": "tr46", + "root": "/common/temp/default/node_modules/.pnpm/tr46@3.0.0/node_modules/tr46", + }, + Object { + "deps": Object {}, + "name": "traverse", + "root": "/common/temp/default/node_modules/.pnpm/traverse@0.3.9/node_modules/traverse", + }, + Object { + "deps": Object {}, + "name": "trim-newlines", + "root": "/common/temp/default/node_modules/.pnpm/trim-newlines@3.0.1/node_modules/trim-newlines", + }, + Object { + "deps": Object {}, + "name": "trim-trailing-lines", + "root": "/common/temp/default/node_modules/.pnpm/trim-trailing-lines@1.1.4/node_modules/trim-trailing-lines", + }, + Object { + "deps": Object {}, + "name": "trim", + "root": "/common/temp/default/node_modules/.pnpm/trim@0.0.1/node_modules/trim", + }, + Object { + "deps": Object {}, + "name": "trough", + "root": "/common/temp/default/node_modules/.pnpm/trough@1.0.5/node_modules/trough", + }, + Object { + "deps": Object {}, + "name": "true-case-path", + "root": "/common/temp/default/node_modules/.pnpm/true-case-path@2.2.1/node_modules/true-case-path", + }, + Object { + "deps": Object { + "typescript": 2458, + }, + "name": "ts-api-utils", + "root": "/common/temp/default/node_modules/.pnpm/ts-api-utils@1.3.0_typescript@4.9.5/node_modules/ts-api-utils", + }, + Object { + "deps": Object { + "typescript": 2459, + }, + "name": "ts-api-utils", + "root": "/common/temp/default/node_modules/.pnpm/ts-api-utils@1.3.0_typescript@5.4.2/node_modules/ts-api-utils", + }, + Object { + "deps": Object {}, + "name": "ts-dedent", + "root": "/common/temp/default/node_modules/.pnpm/ts-dedent@2.2.0/node_modules/ts-dedent", + }, + Object { + "deps": Object { + "chalk": 964, + "enhanced-resolve": 1199, + "loader-utils": 1734, + "micromatch": 1806, + "semver": 2237, + "typescript": 2459, + }, + "name": "ts-loader", + "root": "/common/temp/default/node_modules/.pnpm/ts-loader@6.0.0_typescript@5.4.2/node_modules/ts-loader", + }, + Object { + "deps": Object { + "typescript": 2459, + }, + "name": "ts-pnp", + "root": "/common/temp/default/node_modules/.pnpm/ts-pnp@1.2.0_typescript@5.4.2/node_modules/ts-pnp", + }, + Object { + "deps": Object { + "@types/json5": 605, + "json5": 1693, + "minimist": 1829, + "strip-bom": 2345, + }, + "name": "tsconfig-paths", + "root": "/common/temp/default/node_modules/.pnpm/tsconfig-paths@3.15.0/node_modules/tsconfig-paths", + }, + Object { + "deps": Object {}, + "name": "tslib", + "root": "/common/temp/default/node_modules/.pnpm/tslib@1.14.1/node_modules/tslib", + }, + Object { + "deps": Object {}, + "name": "tslib", + "root": "/common/temp/default/node_modules/.pnpm/tslib@2.3.1/node_modules/tslib", + }, + Object { + "deps": Object {}, + "name": "tslib", + "root": "/common/temp/default/node_modules/.pnpm/tslib@2.4.0/node_modules/tslib", + }, + Object { + "deps": Object {}, + "name": "tslib", + "root": "/common/temp/default/node_modules/.pnpm/tslib@2.6.2/node_modules/tslib", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "builtin-modules": 933, + "chalk": 964, + "commander": 1027, + "diff": 1151, + "glob": 1401, + "js-yaml": 1676, + "minimatch": 1821, + "mkdirp": 1842, + "resolve": 2182, + "semver": 2236, + "tslib": 2424, + "tsutils": 2432, + "typescript": 2456, + }, + "name": "tslint", + "root": "/common/temp/default/node_modules/.pnpm/tslint@5.20.1_typescript@2.9.2/node_modules/tslint", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "builtin-modules": 933, + "chalk": 964, + "commander": 1027, + "diff": 1151, + "glob": 1401, + "js-yaml": 1676, + "minimatch": 1821, + "mkdirp": 1842, + "resolve": 2182, + "semver": 2236, + "tslib": 2424, + "tsutils": 2433, + "typescript": 2457, + }, + "name": "tslint", + "root": "/common/temp/default/node_modules/.pnpm/tslint@5.20.1_typescript@3.9.10/node_modules/tslint", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "builtin-modules": 933, + "chalk": 964, + "commander": 1027, + "diff": 1151, + "glob": 1401, + "js-yaml": 1676, + "minimatch": 1821, + "mkdirp": 1842, + "resolve": 2182, + "semver": 2236, + "tslib": 2424, + "tsutils": 2434, + "typescript": 2458, + }, + "name": "tslint", + "root": "/common/temp/default/node_modules/.pnpm/tslint@5.20.1_typescript@4.9.5/node_modules/tslint", + }, + Object { + "deps": Object { + "@babel/code-frame": 56, + "builtin-modules": 933, + "chalk": 964, + "commander": 1027, + "diff": 1151, + "glob": 1401, + "js-yaml": 1676, + "minimatch": 1821, + "mkdirp": 1842, + "resolve": 2182, + "semver": 2236, + "tslib": 2424, + "tsutils": 2435, + "typescript": 2459, + }, + "name": "tslint", + "root": "/common/temp/default/node_modules/.pnpm/tslint@5.20.1_typescript@5.4.2/node_modules/tslint", + }, + Object { + "deps": Object { + "tslib": 2424, + "typescript": 2456, + }, + "name": "tsutils", + "root": "/common/temp/default/node_modules/.pnpm/tsutils@2.29.0_typescript@2.9.2/node_modules/tsutils", + }, + Object { + "deps": Object { + "tslib": 2424, + "typescript": 2457, + }, + "name": "tsutils", + "root": "/common/temp/default/node_modules/.pnpm/tsutils@2.29.0_typescript@3.9.10/node_modules/tsutils", + }, + Object { + "deps": Object { + "tslib": 2424, + "typescript": 2458, + }, + "name": "tsutils", + "root": "/common/temp/default/node_modules/.pnpm/tsutils@2.29.0_typescript@4.9.5/node_modules/tsutils", + }, + Object { + "deps": Object { + "tslib": 2424, + "typescript": 2459, + }, + "name": "tsutils", + "root": "/common/temp/default/node_modules/.pnpm/tsutils@2.29.0_typescript@5.4.2/node_modules/tsutils", + }, + Object { + "deps": Object { + "tslib": 2424, + "typescript": 2459, + }, + "name": "tsutils", + "root": "/common/temp/default/node_modules/.pnpm/tsutils@3.21.0_typescript@5.4.2/node_modules/tsutils", + }, + Object { + "deps": Object {}, + "name": "tty-browserify", + "root": "/common/temp/default/node_modules/.pnpm/tty-browserify@0.0.0/node_modules/tty-browserify", + }, + Object { + "deps": Object { + "safe-buffer": 2207, + }, + "name": "tunnel-agent", + "root": "/common/temp/default/node_modules/.pnpm/tunnel-agent@0.6.0/node_modules/tunnel-agent", + }, + Object { + "deps": Object {}, + "name": "tunnel", + "root": "/common/temp/default/node_modules/.pnpm/tunnel@0.0.6/node_modules/tunnel", + }, + Object { + "deps": Object { + "prelude-ls": 2041, + }, + "name": "type-check", + "root": "/common/temp/default/node_modules/.pnpm/type-check@0.4.0/node_modules/type-check", + }, + Object { + "deps": Object {}, + "name": "type-detect", + "root": "/common/temp/default/node_modules/.pnpm/type-detect@4.0.8/node_modules/type-detect", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/default/node_modules/.pnpm/type-fest@0.18.1/node_modules/type-fest", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/default/node_modules/.pnpm/type-fest@0.20.2/node_modules/type-fest", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/default/node_modules/.pnpm/type-fest@0.21.3/node_modules/type-fest", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/default/node_modules/.pnpm/type-fest@0.6.0/node_modules/type-fest", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/default/node_modules/.pnpm/type-fest@0.8.1/node_modules/type-fest", + }, + Object { + "deps": Object {}, + "name": "type-fest", + "root": "/common/temp/default/node_modules/.pnpm/type-fest@2.19.0/node_modules/type-fest", + }, + Object { + "deps": Object { + "media-typer": 1792, + "mime-types": 1809, + }, + "name": "type-is", + "root": "/common/temp/default/node_modules/.pnpm/type-is@1.6.18/node_modules/type-is", + }, + Object { + "deps": Object { + "call-bind": 946, + "es-errors": 1214, + "is-typed-array": 1597, + }, + "name": "typed-array-buffer", + "root": "/common/temp/default/node_modules/.pnpm/typed-array-buffer@1.0.2/node_modules/typed-array-buffer", + }, + Object { + "deps": Object { + "call-bind": 946, + "for-each": 1346, + "gopd": 1416, + "has-proto": 1432, + "is-typed-array": 1597, + }, + "name": "typed-array-byte-length", + "root": "/common/temp/default/node_modules/.pnpm/typed-array-byte-length@1.0.1/node_modules/typed-array-byte-length", + }, + Object { + "deps": Object { + "available-typed-arrays": 857, + "call-bind": 946, + "for-each": 1346, + "gopd": 1416, + "has-proto": 1432, + "is-typed-array": 1597, + }, + "name": "typed-array-byte-offset", + "root": "/common/temp/default/node_modules/.pnpm/typed-array-byte-offset@1.0.2/node_modules/typed-array-byte-offset", + }, + Object { + "deps": Object { + "call-bind": 946, + "for-each": 1346, + "gopd": 1416, + "has-proto": 1432, + "is-typed-array": 1597, + "possible-typed-array-names": 1994, + }, + "name": "typed-array-length", + "root": "/common/temp/default/node_modules/.pnpm/typed-array-length@1.0.5/node_modules/typed-array-length", + }, + Object { + "deps": Object { + "qs": 2079, + "tunnel": 2439, + "underscore": 2463, + }, + "name": "typed-rest-client", + "root": "/common/temp/default/node_modules/.pnpm/typed-rest-client@1.8.11/node_modules/typed-rest-client", + }, + Object { + "deps": Object { + "is-typedarray": 1598, + }, + "name": "typedarray-to-buffer", + "root": "/common/temp/default/node_modules/.pnpm/typedarray-to-buffer@3.1.5/node_modules/typedarray-to-buffer", + }, + Object { + "deps": Object {}, + "name": "typedarray", + "root": "/common/temp/default/node_modules/.pnpm/typedarray@0.0.6/node_modules/typedarray", + }, + Object { + "deps": Object {}, + "name": "typescript", + "root": "/common/temp/default/node_modules/.pnpm/typescript@2.9.2/node_modules/typescript", + }, + Object { + "deps": Object {}, + "name": "typescript", + "root": "/common/temp/default/node_modules/.pnpm/typescript@3.9.10/node_modules/typescript", + }, + Object { + "deps": Object {}, + "name": "typescript", + "root": "/common/temp/default/node_modules/.pnpm/typescript@4.9.5/node_modules/typescript", + }, + Object { + "deps": Object {}, + "name": "typescript", + "root": "/common/temp/default/node_modules/.pnpm/typescript@5.4.2/node_modules/typescript", + }, + Object { + "deps": Object {}, + "name": "uc.micro", + "root": "/common/temp/default/node_modules/.pnpm/uc.micro@1.0.6/node_modules/uc.micro", + }, + Object { + "deps": Object {}, + "name": "uglify-js", + "root": "/common/temp/default/node_modules/.pnpm/uglify-js@3.17.4/node_modules/uglify-js", + }, + Object { + "deps": Object { + "call-bind": 946, + "has-bigints": 1427, + "has-symbols": 1433, + "which-boxed-primitive": 2567, + }, + "name": "unbox-primitive", + "root": "/common/temp/default/node_modules/.pnpm/unbox-primitive@1.0.2/node_modules/unbox-primitive", + }, + Object { + "deps": Object {}, + "name": "underscore", + "root": "/common/temp/default/node_modules/.pnpm/underscore@1.13.6/node_modules/underscore", + }, + Object { + "deps": Object {}, + "name": "undici-types", + "root": "/common/temp/default/node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types", + }, + Object { + "deps": Object {}, + "name": "unfetch", + "root": "/common/temp/default/node_modules/.pnpm/unfetch@4.2.0/node_modules/unfetch", + }, + Object { + "deps": Object { + "inherits": 1518, + "xtend": 2606, + }, + "name": "unherit", + "root": "/common/temp/default/node_modules/.pnpm/unherit@1.1.3/node_modules/unherit", + }, + Object { + "deps": Object {}, + "name": "unicode-canonical-property-names-ecmascript", + "root": "/common/temp/default/node_modules/.pnpm/unicode-canonical-property-names-ecmascript@2.0.0/node_modules/unicode-canonical-property-names-ecmascript", + }, + Object { + "deps": Object { + "unicode-canonical-property-names-ecmascript": 2467, + "unicode-property-aliases-ecmascript": 2470, + }, + "name": "unicode-match-property-ecmascript", + "root": "/common/temp/default/node_modules/.pnpm/unicode-match-property-ecmascript@2.0.0/node_modules/unicode-match-property-ecmascript", + }, + Object { + "deps": Object {}, + "name": "unicode-match-property-value-ecmascript", + "root": "/common/temp/default/node_modules/.pnpm/unicode-match-property-value-ecmascript@2.1.0/node_modules/unicode-match-property-value-ecmascript", + }, + Object { + "deps": Object {}, + "name": "unicode-property-aliases-ecmascript", + "root": "/common/temp/default/node_modules/.pnpm/unicode-property-aliases-ecmascript@2.1.0/node_modules/unicode-property-aliases-ecmascript", + }, + Object { + "deps": Object { + "bail": 884, + "extend": 1293, + "is-buffer": 1545, + "is-plain-obj": 1584, + "trough": 2416, + "vfile": 2529, + }, + "name": "unified", + "root": "/common/temp/default/node_modules/.pnpm/unified@9.2.0/node_modules/unified", + }, + Object { + "deps": Object { + "arr-union": 820, + "get-value": 1388, + "is-extendable": 1558, + "set-value": 2254, + }, + "name": "union-value", + "root": "/common/temp/default/node_modules/.pnpm/union-value@1.0.1/node_modules/union-value", + }, + Object { + "deps": Object { + "unique-slug": 2474, + }, + "name": "unique-filename", + "root": "/common/temp/default/node_modules/.pnpm/unique-filename@1.1.1/node_modules/unique-filename", + }, + Object { + "deps": Object { + "imurmurhash": 1511, + }, + "name": "unique-slug", + "root": "/common/temp/default/node_modules/.pnpm/unique-slug@2.0.2/node_modules/unique-slug", + }, + Object { + "deps": Object { + "crypto-random-string": 1077, + }, + "name": "unique-string", + "root": "/common/temp/default/node_modules/.pnpm/unique-string@2.0.0/node_modules/unique-string", + }, + Object { + "deps": Object {}, + "name": "unist-builder", + "root": "/common/temp/default/node_modules/.pnpm/unist-builder@2.0.3/node_modules/unist-builder", + }, + Object { + "deps": Object {}, + "name": "unist-util-generated", + "root": "/common/temp/default/node_modules/.pnpm/unist-util-generated@1.1.6/node_modules/unist-util-generated", + }, + Object { + "deps": Object {}, + "name": "unist-util-is", + "root": "/common/temp/default/node_modules/.pnpm/unist-util-is@4.1.0/node_modules/unist-util-is", + }, + Object { + "deps": Object {}, + "name": "unist-util-position", + "root": "/common/temp/default/node_modules/.pnpm/unist-util-position@3.1.0/node_modules/unist-util-position", + }, + Object { + "deps": Object { + "unist-util-visit": 2484, + }, + "name": "unist-util-remove-position", + "root": "/common/temp/default/node_modules/.pnpm/unist-util-remove-position@2.0.1/node_modules/unist-util-remove-position", + }, + Object { + "deps": Object { + "unist-util-is": 2478, + }, + "name": "unist-util-remove", + "root": "/common/temp/default/node_modules/.pnpm/unist-util-remove@2.1.0/node_modules/unist-util-remove", + }, + Object { + "deps": Object { + "@types/unist": 664, + }, + "name": "unist-util-stringify-position", + "root": "/common/temp/default/node_modules/.pnpm/unist-util-stringify-position@2.0.3/node_modules/unist-util-stringify-position", + }, + Object { + "deps": Object { + "@types/unist": 664, + "unist-util-is": 2478, + }, + "name": "unist-util-visit-parents", + "root": "/common/temp/default/node_modules/.pnpm/unist-util-visit-parents@3.1.1/node_modules/unist-util-visit-parents", + }, + Object { + "deps": Object { + "@types/unist": 664, + "unist-util-is": 2478, + "unist-util-visit-parents": 2483, + }, + "name": "unist-util-visit", + "root": "/common/temp/default/node_modules/.pnpm/unist-util-visit@2.0.3/node_modules/unist-util-visit", + }, + Object { + "deps": Object {}, + "name": "universalify", + "root": "/common/temp/default/node_modules/.pnpm/universalify@0.1.2/node_modules/universalify", + }, + Object { + "deps": Object {}, + "name": "universalify", + "root": "/common/temp/default/node_modules/.pnpm/universalify@0.2.0/node_modules/universalify", + }, + Object { + "deps": Object {}, + "name": "universalify", + "root": "/common/temp/default/node_modules/.pnpm/universalify@2.0.1/node_modules/universalify", + }, + Object { + "deps": Object {}, + "name": "unpipe", + "root": "/common/temp/default/node_modules/.pnpm/unpipe@1.0.0/node_modules/unpipe", + }, + Object { + "deps": Object { + "has-value": 1436, + "isobject": 1614, + }, + "name": "unset-value", + "root": "/common/temp/default/node_modules/.pnpm/unset-value@1.0.0/node_modules/unset-value", + }, + Object { + "deps": Object { + "big-integer": 892, + "binary": 896, + "bluebird": 899, + "buffer-indexof-polyfill": 928, + "duplexer2": 1179, + "fstream": 1369, + "graceful-fs": 1418, + "listenercount": 1729, + "readable-stream": 2126, + "setimmediate": 2255, + }, + "name": "unzipper", + "root": "/common/temp/default/node_modules/.pnpm/unzipper@0.10.14/node_modules/unzipper", + }, + Object { + "deps": Object {}, + "name": "upath", + "root": "/common/temp/default/node_modules/.pnpm/upath@1.2.0/node_modules/upath", + }, + Object { + "deps": Object { + "browserslist": 922, + "escalade": 1228, + "picocolors": 1975, + }, + "name": "update-browserslist-db", + "root": "/common/temp/default/node_modules/.pnpm/update-browserslist-db@1.0.13_browserslist@4.23.0/node_modules/update-browserslist-db", + }, + Object { + "deps": Object { + "boxen": 908, + "chalk": 966, + "configstore": 1043, + "has-yarn": 1440, + "import-lazy": 1507, + "is-ci": 1547, + "is-installed-globally": 1571, + "is-npm": 1576, + "is-yarn-global": 1609, + "latest-version": 1719, + "pupa": 2074, + "semver": 2238, + "semver-diff": 2234, + "xdg-basedir": 2596, + }, + "name": "update-notifier", + "root": "/common/temp/default/node_modules/.pnpm/update-notifier@5.1.0/node_modules/update-notifier", + }, + Object { + "deps": Object { + "punycode": 2073, + }, + "name": "uri-js", + "root": "/common/temp/default/node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js", + }, + Object { + "deps": Object {}, + "name": "urix", + "root": "/common/temp/default/node_modules/.pnpm/urix@0.1.0/node_modules/urix", + }, + Object { + "deps": Object {}, + "name": "url-join", + "root": "/common/temp/default/node_modules/.pnpm/url-join@4.0.1/node_modules/url-join", + }, + Object { + "deps": Object { + "file-loader": 1321, + "loader-utils": 1736, + "mime-types": 1809, + "schema-utils": 2228, + "webpack": 2558, + }, + "name": "url-loader", + "root": "/common/temp/default/node_modules/.pnpm/url-loader@4.1.1_file-loader@6.2.0_webpack@4.47.0/node_modules/url-loader", + }, + Object { + "deps": Object { + "loader-utils": 1736, + "mime-types": 1809, + "schema-utils": 2228, + "webpack": 2559, + }, + "name": "url-loader", + "root": "/common/temp/default/node_modules/.pnpm/url-loader@4.1.1_webpack@5.82.1/node_modules/url-loader", + }, + Object { + "deps": Object { + "querystringify": 2082, + "requires-port": 2171, + }, + "name": "url-parse", + "root": "/common/temp/default/node_modules/.pnpm/url-parse@1.5.10/node_modules/url-parse", + }, + Object { + "deps": Object { + "punycode": 2071, + "querystring": 2081, + }, + "name": "url", + "root": "/common/temp/default/node_modules/.pnpm/url@0.10.3/node_modules/url", + }, + Object { + "deps": Object { + "punycode": 2072, + "qs": 2079, + }, + "name": "url", + "root": "/common/temp/default/node_modules/.pnpm/url@0.11.3/node_modules/url", + }, + Object { + "deps": Object { + "react": 2119, + }, + "name": "use-composed-ref", + "root": "/common/temp/default/node_modules/.pnpm/use-composed-ref@1.3.0_react@17.0.2/node_modules/use-composed-ref", + }, + Object { + "deps": Object { + "@types/react": 641, + "@types/react-dom": 638, + "react": 2119, + "react-dom": 2099, + }, + "name": "use-disposable", + "root": "/common/temp/default/node_modules/.pnpm/use-disposable@1.0.2_@types+react-dom@17.0.25_@types+react@17.0.74_react-dom@17.0.2_react@17.0.2/node_modules/use-disposable", + }, + Object { + "deps": Object { + "@types/react": 641, + "react": 2119, + }, + "name": "use-isomorphic-layout-effect", + "root": "/common/temp/default/node_modules/.pnpm/use-isomorphic-layout-effect@1.1.2_@types+react@17.0.74_react@17.0.2/node_modules/use-isomorphic-layout-effect", + }, + Object { + "deps": Object { + "@types/react": 641, + "react": 2119, + "use-isomorphic-layout-effect": 2504, + }, + "name": "use-latest", + "root": "/common/temp/default/node_modules/.pnpm/use-latest@1.2.1_@types+react@17.0.74_react@17.0.2/node_modules/use-latest", + }, + Object { + "deps": Object { + "react": 2119, + }, + "name": "use-sync-external-store", + "root": "/common/temp/default/node_modules/.pnpm/use-sync-external-store@1.2.0_react@17.0.2/node_modules/use-sync-external-store", + }, + Object { + "deps": Object {}, + "name": "use", + "root": "/common/temp/default/node_modules/.pnpm/use@3.1.1/node_modules/use", + }, + Object { + "deps": Object {}, + "name": "util-deprecate", + "root": "/common/temp/default/node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate", + }, + Object { + "deps": Object { + "define-properties": 1125, + "object.getownpropertydescriptors": 1905, + }, + "name": "util.promisify", + "root": "/common/temp/default/node_modules/.pnpm/util.promisify@1.0.0/node_modules/util.promisify", + }, + Object { + "deps": Object { + "inherits": 1517, + }, + "name": "util", + "root": "/common/temp/default/node_modules/.pnpm/util@0.10.4/node_modules/util", + }, + Object { + "deps": Object { + "inherits": 1517, + }, + "name": "util", + "root": "/common/temp/default/node_modules/.pnpm/util@0.11.1/node_modules/util", + }, + Object { + "deps": Object { + "inherits": 1518, + "is-arguments": 1536, + "is-generator-function": 1567, + "is-typed-array": 1597, + "which-typed-array": 2572, + }, + "name": "util", + "root": "/common/temp/default/node_modules/.pnpm/util@0.12.5/node_modules/util", + }, + Object { + "deps": Object {}, + "name": "utila", + "root": "/common/temp/default/node_modules/.pnpm/utila@0.4.0/node_modules/utila", + }, + Object { + "deps": Object {}, + "name": "utils-merge", + "root": "/common/temp/default/node_modules/.pnpm/utils-merge@1.0.1/node_modules/utils-merge", + }, + Object { + "deps": Object {}, + "name": "uuid-browser", + "root": "/common/temp/default/node_modules/.pnpm/uuid-browser@3.1.0/node_modules/uuid-browser", + }, + Object { + "deps": Object {}, + "name": "uuid", + "root": "/common/temp/default/node_modules/.pnpm/uuid@3.4.0/node_modules/uuid", + }, + Object { + "deps": Object {}, + "name": "uuid", + "root": "/common/temp/default/node_modules/.pnpm/uuid@8.0.0/node_modules/uuid", + }, + Object { + "deps": Object {}, + "name": "uuid", + "root": "/common/temp/default/node_modules/.pnpm/uuid@8.3.2/node_modules/uuid", + }, + Object { + "deps": Object {}, + "name": "uuid", + "root": "/common/temp/default/node_modules/.pnpm/uuid@9.0.1/node_modules/uuid", + }, + Object { + "deps": Object {}, + "name": "v8-compile-cache", + "root": "/common/temp/default/node_modules/.pnpm/v8-compile-cache@2.4.0/node_modules/v8-compile-cache", + }, + Object { + "deps": Object { + "@jridgewell/trace-mapping": 355, + "@types/istanbul-lib-coverage": 594, + "convert-source-map": 1052, + }, + "name": "v8-to-istanbul", + "root": "/common/temp/default/node_modules/.pnpm/v8-to-istanbul@9.2.0/node_modules/v8-to-istanbul", + }, + Object { + "deps": Object { + "spdx-correct": 2297, + "spdx-expression-parse": 2299, + }, + "name": "validate-npm-package-license", + "root": "/common/temp/default/node_modules/.pnpm/validate-npm-package-license@3.0.4/node_modules/validate-npm-package-license", + }, + Object { + "deps": Object { + "builtins": 936, + }, + "name": "validate-npm-package-name", + "root": "/common/temp/default/node_modules/.pnpm/validate-npm-package-name@3.0.0/node_modules/validate-npm-package-name", + }, + Object { + "deps": Object {}, + "name": "validator", + "root": "/common/temp/default/node_modules/.pnpm/validator@13.11.0/node_modules/validator", + }, + Object { + "deps": Object {}, + "name": "varint", + "root": "/common/temp/default/node_modules/.pnpm/varint@6.0.0/node_modules/varint", + }, + Object { + "deps": Object {}, + "name": "vary", + "root": "/common/temp/default/node_modules/.pnpm/vary@1.1.2/node_modules/vary", + }, + Object { + "deps": Object {}, + "name": "vfile-location", + "root": "/common/temp/default/node_modules/.pnpm/vfile-location@3.2.0/node_modules/vfile-location", + }, + Object { + "deps": Object { + "@types/unist": 664, + "unist-util-stringify-position": 2482, + }, + "name": "vfile-message", + "root": "/common/temp/default/node_modules/.pnpm/vfile-message@2.0.4/node_modules/vfile-message", + }, + Object { + "deps": Object { + "@types/unist": 664, + "is-buffer": 1545, + "unist-util-stringify-position": 2482, + "vfile-message": 2528, + }, + "name": "vfile", + "root": "/common/temp/default/node_modules/.pnpm/vfile@4.2.1/node_modules/vfile", + }, + Object { + "deps": Object {}, + "name": "vm-browserify", + "root": "/common/temp/default/node_modules/.pnpm/vm-browserify@1.1.2/node_modules/vm-browserify", + }, + Object { + "deps": Object { + "azure-devops-node-api": 863, + "chalk": 964, + "cheerio": 974, + "commander": 1029, + "glob": 1400, + "hosted-git-info": 1460, + "keytar": 1709, + "leven": 1722, + "markdown-it": 1783, + "mime": 1810, + "minimatch": 1821, + "parse-semver": 1954, + "read": 2125, + "semver": 2236, + "tmp": 2398, + "typed-rest-client": 2453, + "url-join": 2496, + "xml2js": 2598, + "yauzl": 2623, + "yazl": 2624, + }, + "name": "vsce", + "root": "/common/temp/default/node_modules/.pnpm/vsce@2.14.0/node_modules/vsce", + }, + Object { + "deps": Object { + "xml-name-validator": 2597, + }, + "name": "w3c-xmlserializer", + "root": "/common/temp/default/node_modules/.pnpm/w3c-xmlserializer@4.0.0/node_modules/w3c-xmlserializer", + }, + Object { + "deps": Object { + "makeerror": 1775, + }, + "name": "walker", + "root": "/common/temp/default/node_modules/.pnpm/walker@1.0.8/node_modules/walker", + }, + Object { + "deps": Object { + "loose-envify": 1764, + }, + "name": "warning", + "root": "/common/temp/default/node_modules/.pnpm/warning@4.0.3/node_modules/warning", + }, + Object { + "deps": Object { + "chokidar": 975, + }, + "name": "watchpack-chokidar2", + "root": "/common/temp/default/node_modules/.pnpm/watchpack-chokidar2@2.0.1/node_modules/watchpack-chokidar2", + }, + Object { + "deps": Object { + "chokidar": 976, + "graceful-fs": 1418, + "neo-async": 1862, + "watchpack-chokidar2": 2535, + }, + "name": "watchpack", + "root": "/common/temp/default/node_modules/.pnpm/watchpack@1.7.5/node_modules/watchpack", + }, + Object { + "deps": Object { + "glob-to-regexp": 1399, + "graceful-fs": 1418, + }, + "name": "watchpack", + "root": "/common/temp/default/node_modules/.pnpm/watchpack@2.4.0/node_modules/watchpack", + }, + Object { + "deps": Object { + "minimalistic-assert": 1819, + }, + "name": "wbuf", + "root": "/common/temp/default/node_modules/.pnpm/wbuf@1.7.3/node_modules/wbuf", + }, + Object { + "deps": Object { + "defaults": 1121, + }, + "name": "wcwidth", + "root": "/common/temp/default/node_modules/.pnpm/wcwidth@1.0.1/node_modules/wcwidth", + }, + Object { + "deps": Object {}, + "name": "web-namespaces", + "root": "/common/temp/default/node_modules/.pnpm/web-namespaces@1.1.4/node_modules/web-namespaces", + }, + Object { + "deps": Object {}, + "name": "webidl-conversions", + "root": "/common/temp/default/node_modules/.pnpm/webidl-conversions@3.0.1/node_modules/webidl-conversions", + }, + Object { + "deps": Object {}, + "name": "webidl-conversions", + "root": "/common/temp/default/node_modules/.pnpm/webidl-conversions@7.0.0/node_modules/webidl-conversions", + }, + Object { + "deps": Object { + "acorn": 772, + "acorn-walk": 769, + "chalk": 966, + "commander": 1030, + "gzip-size": 1423, + "lodash": 1760, + "opener": 1918, + "sirv": 2270, + "ws": 2594, + }, + "name": "webpack-bundle-analyzer", + "root": "/common/temp/default/node_modules/.pnpm/webpack-bundle-analyzer@4.5.0/node_modules/webpack-bundle-analyzer", + }, + Object { + "deps": Object { + "chalk": 964, + "cross-spawn": 1074, + "enhanced-resolve": 1199, + "findup-sync": 1335, + "global-modules": 1405, + "import-local": 1509, + "interpret": 1525, + "loader-utils": 1734, + "supports-color": 2361, + "v8-compile-cache": 2520, + "webpack": 2558, + "yargs": 2619, + }, + "name": "webpack-cli", + "root": "/common/temp/default/node_modules/.pnpm/webpack-cli@3.3.12_webpack@4.47.0/node_modules/webpack-cli", + }, + Object { + "deps": Object { + "@types/webpack": 672, + "memory-fs": 1796, + "mime": 1811, + "mkdirp": 1842, + "range-parser": 2091, + "webpack": 2558, + "webpack-log": 2553, + }, + "name": "webpack-dev-middleware", + "root": "/common/temp/default/node_modules/.pnpm/webpack-dev-middleware@3.7.3_@types+webpack@4.41.32_webpack@4.47.0/node_modules/webpack-dev-middleware", + }, + Object { + "deps": Object { + "@types/webpack": 672, + "colorette": 1020, + "memfs": 1794, + "mime-types": 1809, + "range-parser": 2091, + "schema-utils": 2229, + "webpack": 2558, + }, + "name": "webpack-dev-middleware", + "root": "/common/temp/default/node_modules/.pnpm/webpack-dev-middleware@5.3.3_@types+webpack@4.41.32_webpack@4.47.0/node_modules/webpack-dev-middleware", + }, + Object { + "deps": Object { + "colorette": 1020, + "memfs": 1794, + "mime-types": 1809, + "range-parser": 2091, + "schema-utils": 2229, + "webpack": 2559, + }, + "name": "webpack-dev-middleware", + "root": "/common/temp/default/node_modules/.pnpm/webpack-dev-middleware@5.3.3_webpack@5.82.1/node_modules/webpack-dev-middleware", + }, + Object { + "deps": Object { + "@types/bonjour": 563, + "@types/connect-history-api-fallback": 570, + "@types/express": 579, + "@types/express-serve-static-core": 578, + "@types/serve-index": 650, + "@types/serve-static": 651, + "@types/sockjs": 652, + "@types/webpack": 672, + "@types/ws": 673, + "ansi-html-community": 794, + "anymatch": 806, + "bonjour-service": 905, + "chokidar": 978, + "colorette": 1020, + "compression": 1038, + "connect-history-api-fallback": 1044, + "default-gateway": 1120, + "express": 1290, + "graceful-fs": 1418, + "html-entities": 1463, + "http-proxy-middleware": 1482, + "ipaddr.js": 1531, + "open": 1917, + "p-retry": 1941, + "rimraf": 2195, + "schema-utils": 2229, + "selfsigned": 2232, + "serve-index": 2247, + "sockjs": 2280, + "spdy": 2302, + "webpack": 2558, + "webpack-dev-middleware": 2546, + "ws": 2595, + }, + "name": "webpack-dev-server", + "root": "/common/temp/default/node_modules/.pnpm/webpack-dev-server@4.9.3_@types+webpack@4.41.32_webpack@4.47.0/node_modules/webpack-dev-server", + }, + Object { + "deps": Object { + "@types/bonjour": 563, + "@types/connect-history-api-fallback": 570, + "@types/express": 579, + "@types/express-serve-static-core": 578, + "@types/serve-index": 650, + "@types/serve-static": 651, + "@types/sockjs": 652, + "@types/ws": 673, + "ansi-html-community": 794, + "anymatch": 806, + "bonjour-service": 905, + "chokidar": 978, + "colorette": 1020, + "compression": 1038, + "connect-history-api-fallback": 1044, + "default-gateway": 1120, + "express": 1290, + "graceful-fs": 1418, + "html-entities": 1463, + "http-proxy-middleware": 1482, + "ipaddr.js": 1531, + "open": 1917, + "p-retry": 1941, + "rimraf": 2195, + "schema-utils": 2229, + "selfsigned": 2232, + "serve-index": 2247, + "sockjs": 2280, + "spdy": 2302, + "webpack": 2558, + "webpack-cli": 2544, + "webpack-dev-middleware": 2546, + "ws": 2595, + }, + "name": "webpack-dev-server", + "root": "/common/temp/default/node_modules/.pnpm/webpack-dev-server@4.9.3_webpack-cli@3.3.12_webpack@4.47.0/node_modules/webpack-dev-server", + }, + Object { + "deps": Object { + "@types/bonjour": 563, + "@types/connect-history-api-fallback": 570, + "@types/express": 579, + "@types/express-serve-static-core": 578, + "@types/serve-index": 650, + "@types/serve-static": 651, + "@types/sockjs": 652, + "@types/ws": 673, + "ansi-html-community": 794, + "anymatch": 806, + "bonjour-service": 905, + "chokidar": 978, + "colorette": 1020, + "compression": 1038, + "connect-history-api-fallback": 1044, + "default-gateway": 1120, + "express": 1290, + "graceful-fs": 1418, + "html-entities": 1463, + "http-proxy-middleware": 1482, + "ipaddr.js": 1531, + "open": 1917, + "p-retry": 1941, + "rimraf": 2195, + "schema-utils": 2229, + "selfsigned": 2232, + "serve-index": 2247, + "sockjs": 2280, + "spdy": 2302, + "webpack": 2559, + "webpack-dev-middleware": 2547, + "ws": 2595, + }, + "name": "webpack-dev-server", + "root": "/common/temp/default/node_modules/.pnpm/webpack-dev-server@4.9.3_webpack@5.82.1/node_modules/webpack-dev-server", + }, + Object { + "deps": Object { + "webpack": 2558, + }, + "name": "webpack-filter-warnings-plugin", + "root": "/common/temp/default/node_modules/.pnpm/webpack-filter-warnings-plugin@1.2.1_webpack@4.47.0/node_modules/webpack-filter-warnings-plugin", + }, + Object { + "deps": Object { + "ansi-html-community": 794, + "html-entities": 1463, + "strip-ansi": 2343, + }, + "name": "webpack-hot-middleware", + "root": "/common/temp/default/node_modules/.pnpm/webpack-hot-middleware@2.26.1/node_modules/webpack-hot-middleware", + }, + Object { + "deps": Object { + "ansi-colors": 790, + "uuid": 2516, + }, + "name": "webpack-log", + "root": "/common/temp/default/node_modules/.pnpm/webpack-log@2.0.0/node_modules/webpack-log", + }, + Object { + "deps": Object { + "clone-deep": 1001, + "wildcard": 2578, + }, + "name": "webpack-merge", + "root": "/common/temp/default/node_modules/.pnpm/webpack-merge@5.8.0/node_modules/webpack-merge", + }, + Object { + "deps": Object { + "source-list-map": 2285, + "source-map": 2294, + }, + "name": "webpack-sources", + "root": "/common/temp/default/node_modules/.pnpm/webpack-sources@1.4.3/node_modules/webpack-sources", + }, + Object { + "deps": Object {}, + "name": "webpack-sources", + "root": "/common/temp/default/node_modules/.pnpm/webpack-sources@3.2.3/node_modules/webpack-sources", + }, + Object { + "deps": Object { + "debug": 1105, + }, + "name": "webpack-virtual-modules", + "root": "/common/temp/default/node_modules/.pnpm/webpack-virtual-modules@0.2.2/node_modules/webpack-virtual-modules", + }, + Object { + "deps": Object { + "@webassemblyjs/ast": 724, + "@webassemblyjs/helper-module-context": 733, + "@webassemblyjs/wasm-edit": 746, + "@webassemblyjs/wasm-parser": 752, + "acorn": 770, + "ajv": 786, + "ajv-keywords": 784, + "chrome-trace-event": 981, + "enhanced-resolve": 1199, + "eslint-scope": 1251, + "json-parse-better-errors": 1686, + "loader-runner": 1732, + "loader-utils": 1734, + "memory-fs": 1796, + "micromatch": 1805, + "mkdirp": 1842, + "neo-async": 1862, + "node-libs-browser": 1875, + "schema-utils": 2225, + "tapable": 2372, + "terser-webpack-plugin": 2379, + "watchpack": 2536, + "webpack-cli": 2544, + "webpack-sources": 2555, + }, + "name": "webpack", + "root": "/common/temp/default/node_modules/.pnpm/webpack@4.47.0_webpack-cli@3.3.12/node_modules/webpack", + }, + Object { + "deps": Object { + "@types/eslint-scope": 574, + "@types/estree": 576, + "@webassemblyjs/ast": 723, + "@webassemblyjs/wasm-edit": 745, + "@webassemblyjs/wasm-parser": 751, + "acorn": 772, + "acorn-import-assertions": 765, + "browserslist": 922, + "chrome-trace-event": 981, + "enhanced-resolve": 1200, + "es-module-lexer": 1217, + "eslint-scope": 1252, + "events": 1280, + "glob-to-regexp": 1399, + "graceful-fs": 1418, + "json-parse-even-better-errors": 1687, + "loader-runner": 1733, + "mime-types": 1809, + "neo-async": 1862, + "schema-utils": 2228, + "tapable": 2373, + "terser-webpack-plugin": 2382, + "watchpack": 2537, + "webpack-sources": 2556, + }, + "name": "webpack", + "root": "/common/temp/default/node_modules/.pnpm/webpack@5.82.1/node_modules/webpack", + }, + Object { + "deps": Object { + "http-parser-js": 1478, + "safe-buffer": 2207, + "websocket-extensions": 2561, + }, + "name": "websocket-driver", + "root": "/common/temp/default/node_modules/.pnpm/websocket-driver@0.7.4/node_modules/websocket-driver", + }, + Object { + "deps": Object {}, + "name": "websocket-extensions", + "root": "/common/temp/default/node_modules/.pnpm/websocket-extensions@0.1.4/node_modules/websocket-extensions", + }, + Object { + "deps": Object { + "iconv-lite": 1493, + }, + "name": "whatwg-encoding", + "root": "/common/temp/default/node_modules/.pnpm/whatwg-encoding@2.0.0/node_modules/whatwg-encoding", + }, + Object { + "deps": Object {}, + "name": "whatwg-mimetype", + "root": "/common/temp/default/node_modules/.pnpm/whatwg-mimetype@2.3.0/node_modules/whatwg-mimetype", + }, + Object { + "deps": Object {}, + "name": "whatwg-mimetype", + "root": "/common/temp/default/node_modules/.pnpm/whatwg-mimetype@3.0.0/node_modules/whatwg-mimetype", + }, + Object { + "deps": Object { + "tr46": 2411, + "webidl-conversions": 2542, + }, + "name": "whatwg-url", + "root": "/common/temp/default/node_modules/.pnpm/whatwg-url@11.0.0/node_modules/whatwg-url", + }, + Object { + "deps": Object { + "tr46": 2410, + "webidl-conversions": 2541, + }, + "name": "whatwg-url", + "root": "/common/temp/default/node_modules/.pnpm/whatwg-url@5.0.0/node_modules/whatwg-url", + }, + Object { + "deps": Object { + "is-bigint": 1540, + "is-boolean-object": 1543, + "is-number-object": 1577, + "is-string": 1594, + "is-symbol": 1596, + }, + "name": "which-boxed-primitive", + "root": "/common/temp/default/node_modules/.pnpm/which-boxed-primitive@1.0.2/node_modules/which-boxed-primitive", + }, + Object { + "deps": Object { + "function.prototype.name": 1371, + "has-tostringtag": 1434, + "is-async-function": 1539, + "is-date-object": 1551, + "is-finalizationregistry": 1561, + "is-generator-function": 1567, + "is-regex": 1589, + "is-weakref": 1601, + "isarray": 1611, + "which-boxed-primitive": 2567, + "which-collection": 2569, + "which-typed-array": 2572, + }, + "name": "which-builtin-type", + "root": "/common/temp/default/node_modules/.pnpm/which-builtin-type@1.1.3/node_modules/which-builtin-type", + }, + Object { + "deps": Object { + "is-map": 1574, + "is-set": 1590, + "is-weakmap": 1600, + "is-weakset": 1602, + }, + "name": "which-collection", + "root": "/common/temp/default/node_modules/.pnpm/which-collection@1.0.2/node_modules/which-collection", + }, + Object { + "deps": Object {}, + "name": "which-module", + "root": "/common/temp/default/node_modules/.pnpm/which-module@2.0.1/node_modules/which-module", + }, + Object { + "deps": Object { + "load-yaml-file": 1731, + "path-exists": 1964, + }, + "name": "which-pm", + "root": "/common/temp/default/node_modules/.pnpm/which-pm@2.0.0/node_modules/which-pm", + }, + Object { + "deps": Object { + "available-typed-arrays": 857, + "call-bind": 946, + "for-each": 1346, + "gopd": 1416, + "has-tostringtag": 1434, + }, + "name": "which-typed-array", + "root": "/common/temp/default/node_modules/.pnpm/which-typed-array@1.1.15/node_modules/which-typed-array", + }, + Object { + "deps": Object { + "isexe": 1612, + }, + "name": "which", + "root": "/common/temp/default/node_modules/.pnpm/which@1.3.1/node_modules/which", + }, + Object { + "deps": Object { + "isexe": 1612, + }, + "name": "which", + "root": "/common/temp/default/node_modules/.pnpm/which@2.0.2/node_modules/which", + }, + Object { + "deps": Object { + "string-width": 2331, + }, + "name": "wide-align", + "root": "/common/temp/default/node_modules/.pnpm/wide-align@1.1.5/node_modules/wide-align", + }, + Object { + "deps": Object { + "string-width": 2331, + }, + "name": "widest-line", + "root": "/common/temp/default/node_modules/.pnpm/widest-line@3.1.0/node_modules/widest-line", + }, + Object { + "deps": Object { + "string-width": 2332, + }, + "name": "widest-line", + "root": "/common/temp/default/node_modules/.pnpm/widest-line@4.0.1/node_modules/widest-line", + }, + Object { + "deps": Object {}, + "name": "wildcard", + "root": "/common/temp/default/node_modules/.pnpm/wildcard@2.0.1/node_modules/wildcard", + }, + Object { + "deps": Object {}, + "name": "wordwrap", + "root": "/common/temp/default/node_modules/.pnpm/wordwrap@1.0.0/node_modules/wordwrap", + }, + Object { + "deps": Object { + "errno": 1208, + }, + "name": "worker-farm", + "root": "/common/temp/default/node_modules/.pnpm/worker-farm@1.7.0/node_modules/worker-farm", + }, + Object { + "deps": Object { + "microevent.ts": 1804, + }, + "name": "worker-rpc", + "root": "/common/temp/default/node_modules/.pnpm/worker-rpc@0.1.1/node_modules/worker-rpc", + }, + Object { + "deps": Object {}, + "name": "workerpool", + "root": "/common/temp/default/node_modules/.pnpm/workerpool@6.2.1/node_modules/workerpool", + }, + Object { + "deps": Object { + "ansi-styles": 799, + "string-width": 2330, + "strip-ansi": 2342, + }, + "name": "wrap-ansi", + "root": "/common/temp/default/node_modules/.pnpm/wrap-ansi@5.1.0/node_modules/wrap-ansi", + }, + Object { + "deps": Object { + "ansi-styles": 800, + "string-width": 2331, + "strip-ansi": 2343, + }, + "name": "wrap-ansi", + "root": "/common/temp/default/node_modules/.pnpm/wrap-ansi@6.2.0/node_modules/wrap-ansi", + }, + Object { + "deps": Object { + "ansi-styles": 800, + "string-width": 2331, + "strip-ansi": 2343, + }, + "name": "wrap-ansi", + "root": "/common/temp/default/node_modules/.pnpm/wrap-ansi@7.0.0/node_modules/wrap-ansi", + }, + Object { + "deps": Object { + "ansi-styles": 802, + "string-width": 2332, + "strip-ansi": 2344, + }, + "name": "wrap-ansi", + "root": "/common/temp/default/node_modules/.pnpm/wrap-ansi@8.1.0/node_modules/wrap-ansi", + }, + Object { + "deps": Object {}, + "name": "wrappy", + "root": "/common/temp/default/node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy", + }, + Object { + "deps": Object { + "graceful-fs": 1418, + "imurmurhash": 1511, + "signal-exit": 2267, + }, + "name": "write-file-atomic", + "root": "/common/temp/default/node_modules/.pnpm/write-file-atomic@2.4.3/node_modules/write-file-atomic", + }, + Object { + "deps": Object { + "imurmurhash": 1511, + "is-typedarray": 1598, + "signal-exit": 2267, + "typedarray-to-buffer": 2454, + }, + "name": "write-file-atomic", + "root": "/common/temp/default/node_modules/.pnpm/write-file-atomic@3.0.3/node_modules/write-file-atomic", + }, + Object { + "deps": Object { + "imurmurhash": 1511, + "signal-exit": 2267, + }, + "name": "write-file-atomic", + "root": "/common/temp/default/node_modules/.pnpm/write-file-atomic@4.0.2/node_modules/write-file-atomic", + }, + Object { + "deps": Object { + "js-yaml": 1678, + "write-file-atomic": 2589, + }, + "name": "write-yaml-file", + "root": "/common/temp/default/node_modules/.pnpm/write-yaml-file@4.2.0/node_modules/write-yaml-file", + }, + Object { + "deps": Object { + "mkdirp": 1842, + }, + "name": "write", + "root": "/common/temp/default/node_modules/.pnpm/write@1.0.3/node_modules/write", + }, + Object { + "deps": Object { + "async-limiter": 846, + }, + "name": "ws", + "root": "/common/temp/default/node_modules/.pnpm/ws@6.2.2/node_modules/ws", + }, + Object { + "deps": Object {}, + "name": "ws", + "root": "/common/temp/default/node_modules/.pnpm/ws@7.5.9/node_modules/ws", + }, + Object { + "deps": Object {}, + "name": "ws", + "root": "/common/temp/default/node_modules/.pnpm/ws@8.14.2/node_modules/ws", + }, + Object { + "deps": Object {}, + "name": "xdg-basedir", + "root": "/common/temp/default/node_modules/.pnpm/xdg-basedir@4.0.0/node_modules/xdg-basedir", + }, + Object { + "deps": Object {}, + "name": "xml-name-validator", + "root": "/common/temp/default/node_modules/.pnpm/xml-name-validator@4.0.0/node_modules/xml-name-validator", + }, + Object { + "deps": Object { + "sax": 2221, + "xmlbuilder": 2602, + }, + "name": "xml2js", + "root": "/common/temp/default/node_modules/.pnpm/xml2js@0.4.23/node_modules/xml2js", + }, + Object { + "deps": Object { + "sax": 2221, + "xmlbuilder": 2602, + }, + "name": "xml2js", + "root": "/common/temp/default/node_modules/.pnpm/xml2js@0.5.0/node_modules/xml2js", + }, + Object { + "deps": Object { + "sax": 2221, + "xmlbuilder": 2602, + }, + "name": "xml2js", + "root": "/common/temp/default/node_modules/.pnpm/xml2js@0.6.2/node_modules/xml2js", + }, + Object { + "deps": Object {}, + "name": "xml", + "root": "/common/temp/default/node_modules/.pnpm/xml@1.0.1/node_modules/xml", + }, + Object { + "deps": Object {}, + "name": "xmlbuilder", + "root": "/common/temp/default/node_modules/.pnpm/xmlbuilder@11.0.1/node_modules/xmlbuilder", + }, + Object { + "deps": Object {}, + "name": "xmlchars", + "root": "/common/temp/default/node_modules/.pnpm/xmlchars@2.2.0/node_modules/xmlchars", + }, + Object { + "deps": Object { + "sax": 2221, + }, + "name": "xmldoc", + "root": "/common/temp/default/node_modules/.pnpm/xmldoc@1.1.4/node_modules/xmldoc", + }, + Object { + "deps": Object {}, + "name": "xstate", + "root": "/common/temp/default/node_modules/.pnpm/xstate@4.26.1/node_modules/xstate", + }, + Object { + "deps": Object {}, + "name": "xtend", + "root": "/common/temp/default/node_modules/.pnpm/xtend@4.0.2/node_modules/xtend", + }, + Object { + "deps": Object {}, + "name": "y18n", + "root": "/common/temp/default/node_modules/.pnpm/y18n@4.0.3/node_modules/y18n", + }, + Object { + "deps": Object {}, + "name": "y18n", + "root": "/common/temp/default/node_modules/.pnpm/y18n@5.0.8/node_modules/y18n", + }, + Object { + "deps": Object {}, + "name": "yallist", + "root": "/common/temp/default/node_modules/.pnpm/yallist@3.1.1/node_modules/yallist", + }, + Object { + "deps": Object {}, + "name": "yallist", + "root": "/common/temp/default/node_modules/.pnpm/yallist@4.0.0/node_modules/yallist", + }, + Object { + "deps": Object {}, + "name": "yaml", + "root": "/common/temp/default/node_modules/.pnpm/yaml@1.10.2/node_modules/yaml", + }, + Object { + "deps": Object {}, + "name": "yaml", + "root": "/common/temp/default/node_modules/.pnpm/yaml@2.4.1/node_modules/yaml", + }, + Object { + "deps": Object { + "camelcase": 954, + "decamelize": 1109, + }, + "name": "yargs-parser", + "root": "/common/temp/default/node_modules/.pnpm/yargs-parser@13.1.2/node_modules/yargs-parser", + }, + Object { + "deps": Object { + "camelcase": 954, + "decamelize": 1109, + }, + "name": "yargs-parser", + "root": "/common/temp/default/node_modules/.pnpm/yargs-parser@18.1.3/node_modules/yargs-parser", + }, + Object { + "deps": Object {}, + "name": "yargs-parser", + "root": "/common/temp/default/node_modules/.pnpm/yargs-parser@20.2.4/node_modules/yargs-parser", + }, + Object { + "deps": Object {}, + "name": "yargs-parser", + "root": "/common/temp/default/node_modules/.pnpm/yargs-parser@20.2.9/node_modules/yargs-parser", + }, + Object { + "deps": Object {}, + "name": "yargs-parser", + "root": "/common/temp/default/node_modules/.pnpm/yargs-parser@21.1.1/node_modules/yargs-parser", + }, + Object { + "deps": Object { + "camelcase": 955, + "decamelize": 1110, + "flat": 1339, + "is-plain-obj": 1584, + }, + "name": "yargs-unparser", + "root": "/common/temp/default/node_modules/.pnpm/yargs-unparser@2.0.0/node_modules/yargs-unparser", + }, + Object { + "deps": Object { + "cliui": 997, + "find-up": 1331, + "get-caller-file": 1380, + "require-directory": 2167, + "require-main-filename": 2169, + "set-blocking": 2249, + "string-width": 2330, + "which-module": 2570, + "y18n": 2607, + "yargs-parser": 2613, + }, + "name": "yargs", + "root": "/common/temp/default/node_modules/.pnpm/yargs@13.3.2/node_modules/yargs", + }, + Object { + "deps": Object { + "cliui": 998, + "decamelize": 1109, + "find-up": 1332, + "get-caller-file": 1380, + "require-directory": 2167, + "require-main-filename": 2169, + "set-blocking": 2249, + "string-width": 2331, + "which-module": 2570, + "y18n": 2607, + "yargs-parser": 2614, + }, + "name": "yargs", + "root": "/common/temp/default/node_modules/.pnpm/yargs@15.4.1/node_modules/yargs", + }, + Object { + "deps": Object { + "cliui": 999, + "escalade": 1228, + "get-caller-file": 1380, + "require-directory": 2167, + "string-width": 2331, + "y18n": 2608, + "yargs-parser": 2616, + }, + "name": "yargs", + "root": "/common/temp/default/node_modules/.pnpm/yargs@16.2.0/node_modules/yargs", + }, + Object { + "deps": Object { + "cliui": 1000, + "escalade": 1228, + "get-caller-file": 1380, + "require-directory": 2167, + "string-width": 2331, + "y18n": 2608, + "yargs-parser": 2617, + }, + "name": "yargs", + "root": "/common/temp/default/node_modules/.pnpm/yargs@17.7.2/node_modules/yargs", + }, + Object { + "deps": Object { + "buffer-crc32": 925, + "fd-slicer": 1315, + }, + "name": "yauzl", + "root": "/common/temp/default/node_modules/.pnpm/yauzl@2.10.0/node_modules/yauzl", + }, + Object { + "deps": Object { + "buffer-crc32": 925, + }, + "name": "yazl", + "root": "/common/temp/default/node_modules/.pnpm/yazl@2.5.1/node_modules/yazl", + }, + Object { + "deps": Object {}, + "name": "yocto-queue", + "root": "/common/temp/default/node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue", + }, + Object { + "deps": Object { + "commander": 1025, + "lodash.get": 1746, + "lodash.isequal": 1749, + "validator": 2524, + }, + "name": "z-schema", + "root": "/common/temp/default/node_modules/.pnpm/z-schema@5.0.6/node_modules/z-schema", + }, + Object { + "deps": Object { + "async": 848, + "graceful-fs": 1418, + "jszip": 1701, + "q": 2077, + }, + "name": "zip-local", + "root": "/common/temp/default/node_modules/.pnpm/zip-local@0.3.5/node_modules/zip-local", + }, + Object { + "deps": Object { + "archiver-utils": 811, + "compress-commons": 1036, + "readable-stream": 2127, + }, + "name": "zip-stream", + "root": "/common/temp/default/node_modules/.pnpm/zip-stream@4.1.1/node_modules/zip-stream", + }, + Object { + "deps": Object {}, + "name": "zwitch", + "root": "/common/temp/default/node_modules/.pnpm/zwitch@1.0.5/node_modules/zwitch", + }, + Object { + "deps": Object { + "@microsoft/api-extractor-model": 2721, + "@microsoft/tsdoc": 367, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@types/js-yaml": 602, + "@types/resolve": 643, + "js-yaml": 1676, + "local-node-rig": 2748, + "resolve": 2182, + }, + "name": "@local/apps+api-documenter", + "root": "/apps/api-documenter", + }, + Object { + "deps": Object { + "@microsoft/api-extractor-model": 2721, + "@microsoft/tsdoc": 367, + "@microsoft/tsdoc-config": 366, + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@rushstack/node-core-library": 2728, + "@rushstack/rig-package": 2732, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@types/heft-jest": 584, + "@types/lodash": 608, + "@types/minimatch": 614, + "@types/node": 623, + "@types/resolve": 643, + "@types/semver": 647, + "local-eslint-config": 2709, + "lodash": 1760, + "minimatch": 1821, + "resolve": 2182, + "semver": 2238, + "source-map": 2294, + "typescript": 2459, + }, + "name": "@local/apps+api-extractor", + "root": "/apps/api-extractor", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 451, + "@rushstack/heft-config-file": 2723, + "@rushstack/heft-node-rig": 448, + "@rushstack/node-core-library": 2728, + "@rushstack/operation-graph": 2729, + "@rushstack/rig-package": 2732, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@types/heft-jest": 584, + "@types/node": 623, + "@types/tapable": 658, + "@types/watchpack": 669, + "fast-glob": 1300, + "git-repo-info": 1389, + "ignore": 1501, + "local-eslint-config": 2709, + "tapable": 2372, + "true-case-path": 2417, + "typescript": 2459, + "watchpack": 2537, + }, + "name": "@local/apps+heft", + "root": "/apps/heft", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@pnpm/dependency-path": 379, + "@pnpm/lockfile-types": 382, + "@rushstack/heft": 2632, + "@rushstack/lockfile-explorer-web": 2634, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-sdk": 2734, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@types/cors": 572, + "@types/express": 579, + "@types/js-yaml": 602, + "@types/semver": 647, + "@types/update-notifier": 665, + "cors": 1063, + "express": 1290, + "js-yaml": 1676, + "local-node-rig": 2748, + "open": 1917, + "semver": 2238, + "update-notifier": 2493, + }, + "name": "@local/apps+lockfile-explorer", + "root": "/apps/lockfile-explorer", + }, + Object { + "deps": Object { + "@lifaon/path": 357, + "@reduxjs/toolkit": 417, + "@rushstack/heft": 2632, + "@rushstack/rush-themed-ui": 2735, + "@types/react": 641, + "@types/react-dom": 638, + "local-web-rig": 2749, + "react": 2119, + "react-dom": 2099, + "react-redux": 2111, + "redux": 2138, + }, + "name": "@local/apps+lockfile-explorer-web", + "root": "/apps/lockfile-explorer-web", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/ts-command-line": 2740, + "local-node-rig": 2748, + "string-argv": 2325, + }, + "name": "@local/apps+rundown", + "root": "/apps/rundown", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-amazon-s3-build-cache-plugin": 2750, + "@rushstack/rush-azure-storage-build-cache-plugin": 2751, + "@rushstack/rush-http-build-cache-plugin": 2752, + "@rushstack/terminal": 2738, + "@types/heft-jest": 584, + "@types/semver": 647, + "local-node-rig": 2748, + "semver": 2238, + }, + "name": "@local/apps+rush", + "root": "/apps/rush", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@types/resolve": 643, + "@types/semver": 647, + "local-node-rig": 2748, + "resolve": 2182, + "semver": 2238, + "typescript": 2459, + }, + "name": "@local/apps+trace-import", + "root": "/apps/trace-import", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/heft-jest": 584, + "@types/node": 623, + "eslint": 1264, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/build-tests-samples+heft-node-basic-tutorial", + "root": "/build-tests-samples/heft-node-basic-tutorial", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/heft-jest": 584, + "@types/node": 623, + "eslint": 1264, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/build-tests-samples+heft-node-jest-tutorial", + "root": "/build-tests-samples/heft-node-jest-tutorial", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-node-rig": 2746, + "@types/heft-jest": 584, + "@types/node": 623, + "local-eslint-config": 2709, + }, + "name": "@local/build-tests-samples+heft-node-rig-tutorial", + "root": "/build-tests-samples/heft-node-rig-tutorial", + }, + Object { + "deps": Object { + "@aws-sdk/client-sso-oidc": 15, + "@aws-sdk/client-sts": 17, + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-serverless-stack-plugin": 2716, + "@rushstack/heft-typescript-plugin": 2718, + "@serverless-stack/aws-lambda-ric": 461, + "@serverless-stack/cli": 462, + "@serverless-stack/resources": 464, + "@types/aws-lambda": 557, + "@types/heft-jest": 584, + "@types/node": 623, + "aws-cdk-lib": 860, + "constructs": 1048, + "eslint": 1264, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/build-tests-samples+heft-serverless-stack-tutorial", + "root": "/build-tests-samples/heft-serverless-stack-tutorial", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-storybook-plugin": 2717, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/heft-webpack4-plugin": 2719, + "@rushstack/webpack4-module-minifier-plugin": 2769, + "@storybook/react": 541, + "@types/heft-jest": 584, + "@types/node": 623, + "@types/react": 641, + "@types/react-dom": 638, + "@types/webpack-env": 670, + "css-loader": 1080, + "eslint": 1264, + "heft-storybook-react-tutorial-storykit": 2644, + "html-webpack-plugin": 1469, + "local-eslint-config": 2709, + "react": 2119, + "react-dom": 2099, + "source-map-loader": 2287, + "style-loader": 2354, + "tslib": 2425, + "typescript": 2459, + "webpack": 2558, + }, + "name": "@local/build-tests-samples+heft-storybook-react-tutorial", + "root": "/build-tests-samples/heft-storybook-react-tutorial", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-storybook-plugin": 2717, + "heft-storybook-react-tutorial": 2642, + "heft-storybook-react-tutorial-storykit": 2644, + }, + "name": "@local/build-tests-samples+heft-storybook-react-tutorial-app", + "root": "/build-tests-samples/heft-storybook-react-tutorial-app", + }, + Object { + "deps": Object { + "@babel/core": 59, + "@storybook/addon-actions": 508, + "@storybook/addon-essentials": 512, + "@storybook/addon-links": 513, + "@storybook/cli": 524, + "@storybook/components": 528, + "@storybook/core-events": 531, + "@storybook/react": 541, + "@storybook/theming": 546, + "@types/heft-jest": 584, + "@types/node": 623, + "@types/react": 641, + "@types/react-dom": 638, + "@types/webpack-env": 670, + "babel-loader": 866, + "css-loader": 1080, + "jest": 1669, + "react": 2119, + "react-dom": 2099, + "style-loader": 2354, + "terser-webpack-plugin": 2380, + "typescript": 2459, + "webpack": 2558, + }, + "name": "@local/build-tests-samples+heft-storybook-react-tutorial-storykit", + "root": "/build-tests-samples/heft-storybook-react-tutorial-storykit", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-web-rig": 2747, + "@types/react": 641, + "@types/react-dom": 638, + "@types/webpack-env": 670, + "heft-web-rig-library-tutorial": 2646, + "local-eslint-config": 2709, + "react": 2119, + "react-dom": 2099, + "tslib": 2425, + "typescript": 2459, + }, + "name": "@local/build-tests-samples+heft-web-rig-app-tutorial", + "root": "/build-tests-samples/heft-web-rig-app-tutorial", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-web-rig": 2747, + "@types/react": 641, + "@types/react-dom": 638, + "@types/webpack-env": 670, + "local-eslint-config": 2709, + "react": 2119, + "react-dom": 2099, + "tslib": 2425, + "typescript": 2459, + }, + "name": "@local/build-tests-samples+heft-web-rig-library-tutorial", + "root": "/build-tests-samples/heft-web-rig-library-tutorial", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/heft-webpack5-plugin": 2720, + "@types/heft-jest": 584, + "@types/react": 641, + "@types/react-dom": 638, + "@types/webpack-env": 670, + "css-loader": 1081, + "eslint": 1264, + "html-webpack-plugin": 1470, + "local-eslint-config": 2709, + "react": 2119, + "react-dom": 2099, + "source-map-loader": 2288, + "style-loader": 2355, + "tslib": 2425, + "typescript": 2459, + "webpack": 2559, + }, + "name": "@local/build-tests-samples+heft-webpack-basic-tutorial", + "root": "/build-tests-samples/heft-webpack-basic-tutorial", + }, + Object { + "deps": Object { + "@rushstack/eslint-config": 2704, + "@rushstack/heft": 2632, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/node": 623, + "eslint": 1264, + "typescript": 2459, + }, + "name": "@local/build-tests-samples+packlets-tutorial", + "root": "/build-tests-samples/packlets-tutorial", + }, + Object { + "deps": Object { + "@microsoft/api-documenter": 2630, + "@microsoft/api-extractor": 2631, + "@microsoft/teams-js": 365, + "@rushstack/node-core-library": 2728, + "@types/jest": 599, + "@types/node": 623, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+api-documenter-scenarios", + "root": "/build-tests/api-documenter-scenarios", + }, + Object { + "deps": Object { + "@microsoft/api-documenter": 2630, + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "local-node-rig": 2748, + }, + "name": "@local/build-tests+api-documenter-test", + "root": "/build-tests/api-documenter-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@types/jest": 599, + "@types/node": 623, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-d-cts-test", + "root": "/build-tests/api-extractor-d-cts-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@types/jest": 599, + "@types/node": 623, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-d-mts-test", + "root": "/build-tests/api-extractor-d-mts-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "fs-extra": 1362, + "typescript": 2456, + }, + "name": "@local/build-tests+api-extractor-lib1-test", + "root": "/build-tests/api-extractor-lib1-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@types/jest": 599, + "@types/node": 623, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-lib2-test", + "root": "/build-tests/api-extractor-lib2-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@types/jest": 599, + "@types/node": 623, + "api-extractor-lib1-test": 2653, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-lib3-test", + "root": "/build-tests/api-extractor-lib3-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@types/jest": 599, + "@types/node": 623, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-lib4-test", + "root": "/build-tests/api-extractor-lib4-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@types/jest": 599, + "@types/node": 623, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-lib5-test", + "root": "/build-tests/api-extractor-lib5-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@microsoft/teams-js": 365, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "api-extractor-lib1-test": 2653, + "api-extractor-lib2-test": 2654, + "api-extractor-lib3-test": 2655, + "api-extractor-lib4-test": 2656, + "api-extractor-lib5-test": 2657, + "colors": 1022, + "local-node-rig": 2748, + }, + "name": "@local/build-tests+api-extractor-scenarios", + "root": "/build-tests/api-extractor-scenarios", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@types/heft-jest": 584, + "@types/jest": 599, + "@types/long": 609, + "@types/node": 623, + "fs-extra": 1362, + "long": 1763, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-test-01", + "root": "/build-tests/api-extractor-test-01", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@types/node": 623, + "@types/semver": 647, + "api-extractor-test-01": 2659, + "fs-extra": 1362, + "semver": 2238, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-test-02", + "root": "/build-tests/api-extractor-test-02", + }, + Object { + "deps": Object { + "@types/jest": 599, + "@types/node": 623, + "api-extractor-test-02": 2660, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-test-03", + "root": "/build-tests/api-extractor-test-03", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "api-extractor-lib1-test": 2653, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+api-extractor-test-04", + "root": "/build-tests/api-extractor-test-04", + }, + Object { + "deps": Object { + "@rushstack/eslint-config": 419, + "@rushstack/heft": 2632, + "@types/node": 623, + "@typescript-eslint/parser": 684, + "eslint": 1260, + "local-node-rig": 2748, + "typescript": 2459, + }, + "name": "@local/build-tests+eslint-7-11-test", + "root": "/build-tests/eslint-7-11-test", + }, + Object { + "deps": Object { + "@rushstack/eslint-config": 421, + "@rushstack/heft": 2632, + "@types/node": 623, + "@typescript-eslint/parser": 686, + "eslint": 1262, + "local-node-rig": 2748, + "typescript": 2459, + }, + "name": "@local/build-tests+eslint-7-7-test", + "root": "/build-tests/eslint-7-7-test", + }, + Object { + "deps": Object { + "@rushstack/eslint-config": 420, + "@rushstack/heft": 2632, + "@types/node": 623, + "@typescript-eslint/parser": 685, + "eslint": 1261, + "local-node-rig": 2748, + "typescript": 2459, + }, + "name": "@local/build-tests+eslint-7-test", + "root": "/build-tests/eslint-7-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@types/node": 623, + "@typescript-eslint/parser": 689, + "eslint": 1264, + "local-node-rig": 2748, + "typescript": 2459, + }, + "name": "@local/build-tests+eslint-8-test", + "root": "/build-tests/eslint-8-test", + }, + Object { + "deps": Object { + "@rushstack/eslint-bulk": 2703, + "@rushstack/eslint-patch": 2705, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@typescript-eslint/parser": 689, + "eslint": 1264, + "local-node-rig": 2748, + "typescript": 2459, + }, + "name": "@local/build-tests+eslint-bulk-suppressions-test", + "root": "/build-tests/eslint-bulk-suppressions-test", + }, + Object { + "deps": Object { + "@rushstack/eslint-bulk": 2703, + "@rushstack/eslint-config": 422, + "@rushstack/eslint-patch": 2705, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@typescript-eslint/parser": 687, + "eslint": 1264, + "eslint-8.23": 1263, + "eslint-oldest": 1265, + "local-node-rig": 2748, + "typescript": 2459, + }, + "name": "@local/build-tests+eslint-bulk-suppressions-test-legacy", + "root": "/build-tests/eslint-bulk-suppressions-test-legacy", + }, + Object { + "deps": Object { + "@rushstack/hashed-folder-copy-plugin": 2759, + "@rushstack/heft": 2632, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/heft-webpack5-plugin": 2720, + "@types/webpack-env": 670, + "html-webpack-plugin": 1470, + "typescript": 2459, + "webpack": 2559, + "webpack-bundle-analyzer": 2543, + }, + "name": "@local/build-tests+hashed-folder-copy-plugin-webpack5-test", + "root": "/build-tests/hashed-folder-copy-plugin-webpack5-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + }, + "name": "@local/build-tests+heft-copy-files-test", + "root": "/build-tests/heft-copy-files-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/node": 623, + "@types/tapable": 658, + "eslint": 1264, + "local-eslint-config": 2709, + "tapable": 2372, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-example-plugin-01", + "root": "/build-tests/heft-example-plugin-01", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/node": 623, + "eslint": 1264, + "heft-example-plugin-01": 2671, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-example-plugin-02", + "root": "/build-tests/heft-example-plugin-02", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/heft-jest": 584, + "@types/node": 623, + "eslint": 1264, + "fastify": 1310, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-fastify-test", + "root": "/build-tests/heft-fastify-test", + }, + Object { + "deps": Object { + "@jest/types": 348, + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/heft-jest": 584, + "eslint": 1264, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-jest-preset-test", + "root": "/build-tests/heft-jest-preset-test", + }, + Object { + "deps": Object { + "@jest/reporters": 335, + "@jest/types": 348, + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/heft-jest": 584, + "@types/node": 623, + "eslint": 1264, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-jest-reporters-test", + "root": "/build-tests/heft-jest-reporters-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft-api-extractor-plugin": 2710, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-minimal-rig-test", + "root": "/build-tests/heft-minimal-rig-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@types/heft-jest": 584, + "@types/node": 623, + "heft-minimal-rig-test": 2676, + }, + "name": "@local/build-tests+heft-minimal-rig-usage-test", + "root": "/build-tests/heft-minimal-rig-usage-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 2632, + "@rushstack/heft-api-extractor-plugin": 2710, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/heft-jest": 584, + "@types/node": 623, + "eslint": 1264, + "heft-example-plugin-01": 2671, + "heft-example-plugin-02": 2672, + "local-eslint-config": 2709, + "tslint": 2431, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-node-everything-esm-module-test", + "root": "/build-tests/heft-node-everything-esm-module-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 2632, + "@rushstack/heft-api-extractor-plugin": 2710, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/heft-jest": 584, + "@types/node": 623, + "eslint": 1264, + "heft-example-plugin-01": 2671, + "heft-example-plugin-02": 2672, + "local-eslint-config": 2709, + "tslint": 2431, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-node-everything-test", + "root": "/build-tests/heft-node-everything-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/node-core-library": 2728, + "@types/node": 623, + "eslint": 1264, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-parameter-plugin", + "root": "/build-tests/heft-parameter-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/node-core-library": 2728, + "@types/heft-jest": 584, + "heft-parameter-plugin": 2680, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-parameter-plugin-test", + "root": "/build-tests/heft-parameter-plugin-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-sass-plugin": 2715, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/heft-webpack4-plugin": 2719, + "@rushstack/webpack4-module-minifier-plugin": 2769, + "@types/heft-jest": 584, + "@types/react": 641, + "@types/react-dom": 638, + "@types/webpack-env": 670, + "autoprefixer": 855, + "buttono": 937, + "css-loader": 1080, + "eslint": 1264, + "html-webpack-plugin": 1469, + "local-eslint-config": 2709, + "postcss": 2038, + "postcss-loader": 2003, + "react": 2119, + "react-dom": 2099, + "sass": 2218, + "sass-loader": 2216, + "style-loader": 2354, + "typescript": 2459, + "webpack": 2558, + }, + "name": "@local/build-tests+heft-sass-test", + "root": "/build-tests/heft-sass-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/heft-jest": 584, + "@types/jest": 599, + "@types/webpack-env": 670, + "eslint": 1264, + "local-eslint-config": 2709, + "tslint": 2431, + "typescript": 2459, + }, + "name": "@local/build-tests+heft-typescript-composite-test", + "root": "/build-tests/heft-typescript-composite-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 2632, + "@rushstack/heft-api-extractor-plugin": 2710, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/jest": 597, + "@types/node": 620, + "tslint": 2428, + "typescript": 2456, + }, + "name": "@local/build-tests+heft-typescript-v2-test", + "root": "/build-tests/heft-typescript-v2-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 2632, + "@rushstack/heft-api-extractor-plugin": 2710, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/jest": 598, + "@types/node": 622, + "tslint": 2429, + "typescript": 2457, + }, + "name": "@local/build-tests+heft-typescript-v3-test", + "root": "/build-tests/heft-typescript-v3-test", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/eslint-config": 423, + "@rushstack/eslint-patch": 2705, + "@rushstack/heft": 2632, + "@rushstack/heft-api-extractor-plugin": 2710, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/jest": 600, + "@types/node": 625, + "eslint": 1264, + "tslint": 2430, + "typescript": 2458, + }, + "name": "@local/build-tests+heft-typescript-v4-test", + "root": "/build-tests/heft-typescript-v4-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-web-rig": 2747, + }, + "name": "@local/build-tests+heft-web-rig-library-test", + "root": "/build-tests/heft-web-rig-library-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-dev-cert-plugin": 2711, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/heft-webpack4-plugin": 2719, + "@rushstack/module-minifier": 2727, + "@rushstack/node-core-library": 2728, + "@rushstack/webpack4-module-minifier-plugin": 2769, + "@types/heft-jest": 584, + "@types/webpack-env": 670, + "eslint": 1264, + "file-loader": 1320, + "local-eslint-config": 2709, + "source-map-loader": 2287, + "tslint": 2431, + "typescript": 2459, + "webpack": 2558, + }, + "name": "@local/build-tests+heft-webpack4-everything-test", + "root": "/build-tests/heft-webpack4-everything-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-dev-cert-plugin": 2711, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/heft-webpack5-plugin": 2720, + "@rushstack/module-minifier": 2727, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-sdk": 2734, + "@rushstack/webpack5-module-minifier-plugin": 2772, + "@types/heft-jest": 584, + "@types/node": 623, + "@types/webpack-env": 670, + "eslint": 1264, + "html-webpack-plugin": 1470, + "local-eslint-config": 2709, + "source-map-loader": 2288, + "tslint": 2431, + "typescript": 2459, + "webpack": 2559, + }, + "name": "@local/build-tests+heft-webpack5-everything-test", + "root": "/build-tests/heft-webpack5-everything-test", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 2728, + "@rushstack/set-webpack-public-path-plugin": 456, + "@rushstack/webpack4-localization-plugin": 2768, + "@rushstack/webpack4-module-minifier-plugin": 2769, + "@types/webpack-env": 670, + "html-webpack-plugin": 1469, + "ts-loader": 2421, + "typescript": 2459, + "webpack": 2558, + "webpack-bundle-analyzer": 2543, + "webpack-cli": 2544, + "webpack-dev-server": 2549, + }, + "name": "@local/build-tests+localization-plugin-test-01", + "root": "/build-tests/localization-plugin-test-01", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-localization-typings-plugin": 2714, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/heft-webpack4-plugin": 2719, + "@rushstack/node-core-library": 2728, + "@rushstack/set-webpack-public-path-plugin": 456, + "@rushstack/webpack4-localization-plugin": 2768, + "@rushstack/webpack4-module-minifier-plugin": 2769, + "@types/lodash": 608, + "@types/webpack-env": 670, + "html-webpack-plugin": 1469, + "lodash": 1760, + "typescript": 2459, + "webpack": 2558, + "webpack-bundle-analyzer": 2543, + "webpack-cli": 2544, + "webpack-dev-server": 2549, + }, + "name": "@local/build-tests+localization-plugin-test-02", + "root": "/build-tests/localization-plugin-test-02", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 2728, + "@rushstack/set-webpack-public-path-plugin": 456, + "@rushstack/webpack4-localization-plugin": 2768, + "@rushstack/webpack4-module-minifier-plugin": 2769, + "@types/webpack-env": 670, + "html-webpack-plugin": 1469, + "ts-loader": 2421, + "typescript": 2459, + "webpack": 2558, + "webpack-bundle-analyzer": 2543, + "webpack-cli": 2544, + "webpack-dev-server": 2549, + }, + "name": "@local/build-tests+localization-plugin-test-03", + "root": "/build-tests/localization-plugin-test-03", + }, + Object { + "deps": Object { + "@types/node": 623, + "package-extractor-test-02": 2694, + "package-extractor-test-03": 2695, + }, + "name": "@local/build-tests+package-extractor-test-01", + "root": "/build-tests/package-extractor-test-01", + }, + Object { + "deps": Object { + "package-extractor-test-03": 2695, + }, + "name": "@local/build-tests+package-extractor-test-02", + "root": "/build-tests/package-extractor-test-02", + }, + Object { + "deps": Object { + "@types/node": 622, + }, + "name": "@local/build-tests+package-extractor-test-03", + "root": "/build-tests/package-extractor-test-03", + }, + Object { + "deps": Object { + "@rushstack/node-core-library": 2728, + }, + "name": "@local/build-tests+package-extractor-test-04", + "root": "/build-tests/package-extractor-test-04", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-amazon-s3-build-cache-plugin": 2750, + "@rushstack/terminal": 2738, + "@types/http-proxy": 590, + "@types/node": 623, + "eslint": 1264, + "http-proxy": 1483, + "local-node-rig": 2748, + "typescript": 2459, + }, + "name": "@local/build-tests+rush-amazon-s3-build-cache-plugin-integration-test", + "root": "/build-tests/rush-amazon-s3-build-cache-plugin-integration-test", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@types/node": 623, + "local-node-rig": 2748, + }, + "name": "@local/build-tests+rush-lib-declaration-paths-test", + "root": "/build-tests/rush-lib-declaration-paths-test", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/terminal": 2738, + "@types/node": 623, + "local-node-rig": 2748, + }, + "name": "@local/build-tests+rush-project-change-analyzer-test", + "root": "/build-tests/rush-project-change-analyzer-test", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-redis-cobuild-plugin": 2754, + "@rushstack/terminal": 2738, + "@types/http-proxy": 590, + "@types/node": 623, + "eslint": 1264, + "http-proxy": 1483, + "local-node-rig": 2748, + "typescript": 2459, + }, + "name": "@local/build-tests+rush-redis-cobuild-plugin-integration-test", + "root": "/build-tests/rush-redis-cobuild-plugin-integration-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/heft-webpack5-plugin": 2720, + "@rushstack/module-minifier": 2727, + "@rushstack/set-webpack-public-path-plugin": 2763, + "@rushstack/webpack5-module-minifier-plugin": 2772, + "@types/webpack-env": 670, + "eslint": 1264, + "html-webpack-plugin": 1470, + "typescript": 2459, + "webpack": 2559, + }, + "name": "@local/build-tests+set-webpack-public-path-plugin-test", + "root": "/build-tests/set-webpack-public-path-plugin-test", + }, + Object { + "deps": Object { + "@rushstack/ts-command-line": 2740, + "@types/node": 623, + "fs-extra": 1362, + "typescript": 2459, + }, + "name": "@local/build-tests+ts-command-line-test", + "root": "/build-tests/ts-command-line-test", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@types/node": 623, + "local-node-rig": 2748, + }, + "name": "@local/eslint+eslint-bulk", + "root": "/eslint/eslint-bulk", + }, + Object { + "deps": Object { + "@rushstack/eslint-patch": 2705, + "@rushstack/eslint-plugin": 2706, + "@rushstack/eslint-plugin-packlets": 2707, + "@rushstack/eslint-plugin-security": 2708, + "@typescript-eslint/eslint-plugin": 683, + "@typescript-eslint/parser": 689, + "@typescript-eslint/typescript-estree": 706, + "@typescript-eslint/utils": 712, + "eslint": 1264, + "eslint-plugin-promise": 1244, + "eslint-plugin-react": 1249, + "eslint-plugin-tsdoc": 1250, + "typescript": 2459, + }, + "name": "@local/eslint+eslint-config", + "root": "/eslint/eslint-config", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@types/eslint": 575, + "@types/node": 623, + "@typescript-eslint/types": 700, + "eslint": 1264, + "eslint-plugin-header": 1238, + "typescript": 2459, + }, + "name": "@local/eslint+eslint-patch", + "root": "/eslint/eslint-patch", + }, + Object { + "deps": Object { + "@eslint/eslintrc": 235, + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@rushstack/tree-pattern": 2739, + "@types/eslint": 575, + "@types/estree": 576, + "@types/heft-jest": 584, + "@types/node": 623, + "@typescript-eslint/parser": 689, + "@typescript-eslint/rule-tester": 690, + "@typescript-eslint/typescript-estree": 706, + "@typescript-eslint/utils": 712, + "eslint": 1264, + "eslint-plugin-header": 1238, + "typescript": 2459, + }, + "name": "@local/eslint+eslint-plugin", + "root": "/eslint/eslint-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@rushstack/tree-pattern": 2739, + "@types/eslint": 575, + "@types/estree": 576, + "@types/heft-jest": 584, + "@types/node": 623, + "@typescript-eslint/parser": 689, + "@typescript-eslint/typescript-estree": 706, + "@typescript-eslint/utils": 712, + "eslint": 1264, + "eslint-plugin-header": 1238, + "typescript": 2459, + }, + "name": "@local/eslint+eslint-plugin-packlets", + "root": "/eslint/eslint-plugin-packlets", + }, + Object { + "deps": Object { + "@eslint/eslintrc": 235, + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@rushstack/tree-pattern": 2739, + "@types/eslint": 575, + "@types/estree": 576, + "@types/heft-jest": 584, + "@types/node": 623, + "@typescript-eslint/parser": 689, + "@typescript-eslint/rule-tester": 690, + "@typescript-eslint/typescript-estree": 706, + "@typescript-eslint/utils": 712, + "eslint": 1264, + "eslint-plugin-header": 1238, + "typescript": 2459, + }, + "name": "@local/eslint+eslint-plugin-security", + "root": "/eslint/eslint-plugin-security", + }, + Object { + "deps": Object { + "@rushstack/eslint-config": 2704, + "@rushstack/eslint-patch": 2705, + "@typescript-eslint/parser": 689, + "eslint": 1264, + "eslint-plugin-deprecation": 1237, + "eslint-plugin-header": 1238, + "eslint-plugin-import": 1239, + "eslint-plugin-jsdoc": 1240, + "eslint-plugin-react-hooks": 1245, + "typescript": 2459, + }, + "name": "@local/eslint+local-eslint-config", + "root": "/eslint/local-eslint-config", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 2632, + "@rushstack/heft-config-file": 2723, + "@rushstack/heft-node-rig": 447, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@types/heft-jest": 584, + "@types/node": 623, + "@types/semver": 647, + "local-eslint-config": 2709, + "semver": 2238, + "typescript": 2459, + }, + "name": "@local/heft-plugins+heft-api-extractor-plugin", + "root": "/heft-plugins/heft-api-extractor-plugin", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/debug-certificate-manager": 2722, + "@rushstack/heft": 2632, + "eslint": 1264, + "local-node-rig": 2748, + "webpack": 2559, + }, + "name": "@local/heft-plugins+heft-dev-cert-plugin", + "root": "/heft-plugins/heft-dev-cert-plugin", + }, + Object { + "deps": Object { + "@jest/core": 328, + "@jest/reporters": 335, + "@jest/transform": 345, + "@jest/types": 348, + "@rushstack/heft": 2632, + "@rushstack/heft-config-file": 2723, + "@rushstack/heft-node-rig": 447, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@types/heft-jest": 584, + "@types/lodash": 608, + "@types/node": 623, + "eslint": 1264, + "jest-config": 1628, + "jest-environment-jsdom": 1636, + "jest-environment-node": 1637, + "jest-resolve": 1654, + "jest-snapshot": 1659, + "jest-watch-select-projects": 1664, + "local-eslint-config": 2709, + "lodash": 1760, + "typescript": 2459, + }, + "name": "@local/heft-plugins+heft-jest-plugin", + "root": "/heft-plugins/heft-jest-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-node-rig": 447, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@types/eslint": 575, + "@types/heft-jest": 584, + "@types/node": 623, + "@types/semver": 647, + "eslint": 1264, + "local-eslint-config": 2709, + "semver": 2238, + "tslint": 2431, + "typescript": 2459, + }, + "name": "@local/heft-plugins+heft-lint-plugin", + "root": "/heft-plugins/heft-lint-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/localization-utilities": 2725, + "eslint": 1264, + "local-node-rig": 2748, + }, + "name": "@local/heft-plugins+heft-localization-typings-plugin", + "root": "/heft-plugins/heft-localization-typings-plugin", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 2632, + "@rushstack/heft-config-file": 2723, + "@rushstack/node-core-library": 2728, + "@rushstack/typings-generator": 2741, + "eslint": 1264, + "local-node-rig": 2748, + "postcss": 2038, + "postcss-modules": 2020, + "sass-embedded": 2215, + }, + "name": "@local/heft-plugins+heft-sass-plugin", + "root": "/heft-plugins/heft-sass-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-webpack4-plugin": 2719, + "@rushstack/heft-webpack5-plugin": 2720, + "@rushstack/node-core-library": 2728, + "local-node-rig": 2748, + }, + "name": "@local/heft-plugins+heft-serverless-stack-plugin", + "root": "/heft-plugins/heft-serverless-stack-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-webpack4-plugin": 2719, + "@rushstack/heft-webpack5-plugin": 2720, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "local-node-rig": 2748, + }, + "name": "@local/heft-plugins+heft-storybook-plugin", + "root": "/heft-plugins/heft-storybook-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/heft-config-file": 2723, + "@rushstack/heft-node-rig": 447, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@types/node": 623, + "@types/semver": 647, + "@types/tapable": 658, + "local-eslint-config": 2709, + "semver": 2238, + "tapable": 2372, + "typescript": 2459, + }, + "name": "@local/heft-plugins+heft-typescript-plugin", + "root": "/heft-plugins/heft-typescript-plugin", + }, + Object { + "deps": Object { + "@rushstack/debug-certificate-manager": 2722, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@types/tapable": 658, + "@types/watchpack": 669, + "@types/webpack": 672, + "local-node-rig": 2748, + "tapable": 2372, + "watchpack": 2537, + "webpack": 2558, + "webpack-dev-server": 2548, + }, + "name": "@local/heft-plugins+heft-webpack4-plugin", + "root": "/heft-plugins/heft-webpack4-plugin", + }, + Object { + "deps": Object { + "@rushstack/debug-certificate-manager": 2722, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@types/tapable": 658, + "@types/watchpack": 669, + "local-node-rig": 2748, + "tapable": 2372, + "watchpack": 2537, + "webpack": 2559, + "webpack-dev-server": 2550, + }, + "name": "@local/heft-plugins+heft-webpack5-plugin", + "root": "/heft-plugins/heft-webpack5-plugin", + }, + Object { + "deps": Object { + "@microsoft/tsdoc": 367, + "@microsoft/tsdoc-config": 366, + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@rushstack/node-core-library": 2728, + "@types/heft-jest": 584, + "@types/node": 623, + "local-eslint-config": 2709, + }, + "name": "@local/libraries+api-extractor-model", + "root": "/libraries/api-extractor-model", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@types/node-forge": 618, + "local-node-rig": 2748, + "node-forge": 1872, + "sudo": 2359, + }, + "name": "@local/libraries+debug-certificate-manager", + "root": "/libraries/debug-certificate-manager", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@rushstack/node-core-library": 2728, + "@rushstack/rig-package": 2732, + "@rushstack/terminal": 2738, + "@types/heft-jest": 584, + "@types/node": 623, + "jsonpath-plus": 1697, + "local-eslint-config": 2709, + }, + "name": "@local/libraries+heft-config-file", + "root": "/libraries/heft-config-file", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "local-web-rig": 2749, + }, + "name": "@local/libraries+load-themed-styles", + "root": "/libraries/load-themed-styles", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@rushstack/typings-generator": 2741, + "@types/xmldoc": 674, + "local-node-rig": 2748, + "pseudolocale": 2065, + "xmldoc": 2604, + }, + "name": "@local/libraries+localization-utilities", + "root": "/libraries/localization-utilities", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "local-node-rig": 2748, + }, + "name": "@local/libraries+lookup-by-path", + "root": "/libraries/lookup-by-path", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/worker-pool": 2742, + "@types/serialize-javascript": 649, + "local-node-rig": 2748, + "serialize-javascript": 2244, + "source-map": 2295, + "terser": 2384, + }, + "name": "@local/libraries+module-minifier", + "root": "/libraries/module-minifier", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@types/fs-extra": 580, + "@types/heft-jest": 584, + "@types/jju": 601, + "@types/node": 623, + "@types/resolve": 643, + "@types/semver": 647, + "ajv": 788, + "ajv-draft-04": 780, + "ajv-formats": 783, + "fs-extra": 1362, + "import-lazy": 1508, + "jju": 1670, + "local-eslint-config": 2709, + "resolve": 2182, + "semver": 2238, + }, + "name": "@local/libraries+node-core-library", + "root": "/libraries/node-core-library", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@types/heft-jest": 584, + "@types/node": 623, + "local-eslint-config": 2709, + }, + "name": "@local/libraries+operation-graph", + "root": "/libraries/operation-graph", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "local-node-rig": 2748, + }, + "name": "@local/libraries+package-deps-hash", + "root": "/libraries/package-deps-hash", + }, + Object { + "deps": Object { + "@pnpm/link-bins": 381, + "@rushstack/heft": 2632, + "@rushstack/heft-webpack5-plugin": 2720, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@rushstack/webpack-preserve-dynamic-require-plugin": 2762, + "@types/glob": 581, + "@types/minimatch": 614, + "@types/npm-packlist": 628, + "@types/semver": 647, + "eslint": 1264, + "ignore": 1501, + "jszip": 1702, + "local-node-rig": 2748, + "minimatch": 1821, + "npm-packlist": 1888, + "semver": 2238, + "webpack": 2559, + }, + "name": "@local/libraries+package-extractor", + "root": "/libraries/package-extractor", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@types/heft-jest": 584, + "@types/node": 623, + "@types/resolve": 643, + "ajv": 788, + "local-eslint-config": 2709, + "resolve": 2182, + "strip-json-comments": 2351, + }, + "name": "@local/libraries+rig-package", + "root": "/libraries/rig-package", + }, + Object { + "deps": Object { + "@pnpm/dependency-path": 379, + "@pnpm/link-bins": 381, + "@pnpm/logger": 383, + "@rushstack/heft": 2632, + "@rushstack/heft-config-file": 2723, + "@rushstack/heft-webpack5-plugin": 2720, + "@rushstack/lookup-by-path": 2726, + "@rushstack/node-core-library": 2728, + "@rushstack/operation-graph": 2729, + "@rushstack/package-deps-hash": 2730, + "@rushstack/package-extractor": 2731, + "@rushstack/rig-package": 2732, + "@rushstack/stream-collator": 2737, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@rushstack/webpack-deep-imports-plugin": 2764, + "@rushstack/webpack-preserve-dynamic-require-plugin": 2762, + "@types/cli-table": 565, + "@types/inquirer": 591, + "@types/js-yaml": 602, + "@types/node-fetch": 617, + "@types/npm-package-arg": 627, + "@types/read-package-tree": 642, + "@types/semver": 647, + "@types/ssri": 654, + "@types/strict-uri-encode": 656, + "@types/tar": 659, + "@types/uuid": 667, + "@types/webpack-env": 670, + "@yarnpkg/lockfile": 758, + "builtin-modules": 934, + "cli-table": 995, + "dependency-path": 1135, + "fast-glob": 1300, + "figures": 1317, + "git-repo-info": 1389, + "glob-escape": 1393, + "https-proxy-agent": 1488, + "ignore": 1501, + "inquirer": 1523, + "js-yaml": 1676, + "local-node-rig": 2748, + "node-fetch": 1871, + "npm-check": 1885, + "npm-package-arg": 1887, + "pnpm-sync-lib": 1991, + "read-package-tree": 2121, + "rxjs": 2202, + "semver": 2238, + "ssri": 2308, + "strict-uri-encode": 2324, + "tapable": 2373, + "tar": 2376, + "true-case-path": 2417, + "uuid": 2518, + "webpack": 2559, + }, + "name": "@local/libraries+rush-lib", + "root": "/libraries/rush-lib", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/heft-webpack5-plugin": 2720, + "@rushstack/lookup-by-path": 2726, + "@rushstack/node-core-library": 2728, + "@rushstack/stream-collator": 2737, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@rushstack/webpack-preserve-dynamic-require-plugin": 2762, + "@types/node-fetch": 617, + "@types/semver": 647, + "@types/webpack-env": 670, + "local-node-rig": 2748, + "tapable": 2373, + "webpack": 2559, + }, + "name": "@local/libraries+rush-sdk", + "root": "/libraries/rush-sdk", + }, + Object { + "deps": Object { + "@radix-ui/colors": 395, + "@radix-ui/react-checkbox": 398, + "@radix-ui/react-icons": 403, + "@radix-ui/react-scroll-area": 408, + "@radix-ui/react-tabs": 410, + "@rushstack/heft": 2632, + "@types/react": 641, + "@types/react-dom": 638, + "local-web-rig": 2749, + "react": 2119, + "react-dom": 2099, + }, + "name": "@local/libraries+rush-themed-ui", + "root": "/libraries/rush-themed-ui", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "local-node-rig": 2748, + }, + "name": "@local/libraries+rushell", + "root": "/libraries/rushell", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "local-node-rig": 2748, + }, + "name": "@local/libraries+stream-collator", + "root": "/libraries/stream-collator", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@rushstack/node-core-library": 2728, + "@types/heft-jest": 584, + "@types/node": 623, + "@types/supports-color": 657, + "local-eslint-config": 2709, + "supports-color": 2363, + }, + "name": "@local/libraries+terminal", + "root": "/libraries/terminal", + }, + Object { + "deps": Object { + "@rushstack/eslint-config": 422, + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@types/heft-jest": 584, + "@types/node": 623, + "eslint": 1264, + "typescript": 2459, + }, + "name": "@local/libraries+tree-pattern", + "root": "/libraries/tree-pattern", + }, + Object { + "deps": Object { + "@rushstack/heft": 451, + "@rushstack/heft-node-rig": 448, + "@rushstack/terminal": 2738, + "@types/argparse": 556, + "@types/heft-jest": 584, + "@types/node": 623, + "argparse": 816, + "local-eslint-config": 2709, + "string-argv": 2325, + }, + "name": "@local/libraries+ts-command-line", + "root": "/libraries/ts-command-line", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@types/glob": 581, + "chokidar": 976, + "fast-glob": 1300, + "local-node-rig": 2748, + }, + "name": "@local/libraries+typings-generator", + "root": "/libraries/typings-generator", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "local-node-rig": 2748, + }, + "name": "@local/libraries+worker-pool", + "root": "/libraries/worker-pool", + }, + Object { + "deps": Object { + "@microsoft/api-documenter": 2630, + "@microsoft/api-extractor-model": 2721, + "@microsoft/tsdoc": 367, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@types/js-yaml": 602, + "js-yaml": 1676, + "local-node-rig": 2748, + }, + "name": "@local/repo-scripts+doc-plugin-rush-stack", + "root": "/repo-scripts/doc-plugin-rush-stack", + }, + Object { + "deps": Object { + "@microsoft/api-documenter": 2630, + "doc-plugin-rush-stack": 2743, + }, + "name": "@local/repo-scripts+generate-api-docs", + "root": "/repo-scripts/generate-api-docs", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@types/diff": 573, + "diff": 1152, + "local-node-rig": 2748, + }, + "name": "@local/repo-scripts+repo-toolbox", + "root": "/repo-scripts/repo-toolbox", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/eslint-config": 2704, + "@rushstack/heft": 2632, + "@rushstack/heft-api-extractor-plugin": 2710, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-typescript-plugin": 2718, + "@types/heft-jest": 584, + "eslint": 1264, + "jest-environment-node": 1637, + "typescript": 2459, + }, + "name": "@local/rigs+heft-node-rig", + "root": "/rigs/heft-node-rig", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/eslint-config": 2704, + "@rushstack/heft": 2632, + "@rushstack/heft-api-extractor-plugin": 2710, + "@rushstack/heft-jest-plugin": 2712, + "@rushstack/heft-lint-plugin": 2713, + "@rushstack/heft-sass-plugin": 2715, + "@rushstack/heft-typescript-plugin": 2718, + "@rushstack/heft-webpack5-plugin": 2720, + "@types/heft-jest": 584, + "autoprefixer": 855, + "css-loader": 1081, + "css-minimizer-webpack-plugin": 1082, + "eslint": 1264, + "html-webpack-plugin": 1470, + "jest-environment-jsdom": 1636, + "mini-css-extract-plugin": 1818, + "postcss": 2038, + "postcss-loader": 2005, + "sass": 2219, + "sass-loader": 2217, + "source-map-loader": 2288, + "style-loader": 2355, + "terser-webpack-plugin": 2382, + "typescript": 2459, + "url-loader": 2498, + "webpack": 2559, + "webpack-bundle-analyzer": 2543, + "webpack-merge": 2554, + }, + "name": "@local/rigs+heft-web-rig", + "root": "/rigs/heft-web-rig", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 2632, + "@rushstack/heft-node-rig": 2746, + "@types/heft-jest": 584, + "@types/node": 623, + "eslint": 1264, + "jest-junit": 1643, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/rigs+local-node-rig", + "root": "/rigs/local-node-rig", + }, + Object { + "deps": Object { + "@microsoft/api-extractor": 2631, + "@rushstack/heft": 2632, + "@rushstack/heft-web-rig": 2747, + "@types/heft-jest": 584, + "@types/webpack-env": 670, + "eslint": 1264, + "jest-junit": 1643, + "local-eslint-config": 2709, + "typescript": 2459, + }, + "name": "@local/rigs+local-web-rig", + "root": "/rigs/local-web-rig", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-sdk": 2734, + "@rushstack/terminal": 2738, + "@types/node-fetch": 617, + "https-proxy-agent": 1488, + "local-node-rig": 2748, + "node-fetch": 1871, + }, + "name": "@local/rush-plugins+rush-amazon-s3-build-cache-plugin", + "root": "/rush-plugins/rush-amazon-s3-build-cache-plugin", + }, + Object { + "deps": Object { + "@azure/identity": 49, + "@azure/storage-blob": 54, + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-sdk": 2734, + "@rushstack/terminal": 2738, + "local-node-rig": 2748, + }, + "name": "@local/rush-plugins+rush-azure-storage-build-cache-plugin", + "root": "/rush-plugins/rush-azure-storage-build-cache-plugin", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-sdk": 2734, + "@rushstack/terminal": 2738, + "@types/node-fetch": 617, + "https-proxy-agent": 1488, + "local-node-rig": 2748, + "node-fetch": 1871, + }, + "name": "@local/rush-plugins+rush-http-build-cache-plugin", + "root": "/rush-plugins/rush-http-build-cache-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-sdk": 2734, + "@rushstack/terminal": 2738, + "local-node-rig": 2748, + }, + "name": "@local/rush-plugins+rush-litewatch-plugin", + "root": "/rush-plugins/rush-litewatch-plugin", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@redis/client": 416, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-sdk": 2734, + "@rushstack/terminal": 2738, + "local-node-rig": 2748, + }, + "name": "@local/rush-plugins+rush-redis-cobuild-plugin", + "root": "/rush-plugins/rush-redis-cobuild-plugin", + }, + Object { + "deps": Object { + "@rushstack/lookup-by-path": 2726, + "@rushstack/node-core-library": 2728, + "@rushstack/rush-sdk": 2734, + "@rushstack/terminal": 2738, + "@rushstack/webpack-workspace-resolve-plugin": 2767, + "@types/webpack-env": 670, + "local-node-rig": 2748, + }, + "name": "@local/rush-plugins+rush-resolver-cache-plugin", + "root": "/rush-plugins/rush-resolver-cache-plugin", + }, + Object { + "deps": Object { + "@rushstack/debug-certificate-manager": 2722, + "@rushstack/heft": 2632, + "@rushstack/heft-config-file": 2723, + "@rushstack/node-core-library": 2728, + "@rushstack/rig-package": 2732, + "@rushstack/rush-sdk": 2734, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@types/compression": 568, + "@types/cors": 572, + "@types/express": 579, + "@types/ws": 673, + "compression": 1038, + "cors": 1063, + "express": 1290, + "http2-express-bridge": 1484, + "local-node-rig": 2748, + "ws": 2595, + }, + "name": "@local/rush-plugins+rush-serve-plugin", + "root": "/rush-plugins/rush-serve-plugin", + }, + Object { + "deps": Object { + "@fluentui/react": 307, + "@fluentui/react-components": 261, + "@reduxjs/toolkit": 417, + "@rushstack/heft": 2632, + "@rushstack/ts-command-line": 2740, + "@types/react": 641, + "@types/react-dom": 638, + "@types/react-redux": 639, + "@types/vscode": 668, + "eslint": 1264, + "html-webpack-plugin": 1470, + "local-web-rig": 2749, + "react": 2119, + "react-dom": 2099, + "react-hook-form": 2104, + "react-redux": 2111, + "redux": 2138, + "scheduler": 2223, + "tslib": 2425, + "webpack": 2559, + "webpack-bundle-analyzer": 2543, + }, + "name": "@local/vscode-extensions+rush-vscode-command-webview", + "root": "/vscode-extensions/rush-vscode-command-webview", + }, + Object { + "deps": Object { + "@microsoft/rush-lib": 2733, + "@rushstack/heft": 2632, + "@rushstack/heft-webpack5-plugin": 2720, + "@rushstack/node-core-library": 2728, + "@rushstack/package-extractor": 2731, + "@rushstack/rush-sdk": 2734, + "@rushstack/rush-vscode-command-webview": 2757, + "@rushstack/terminal": 2738, + "@rushstack/ts-command-line": 2740, + "@rushstack/webpack-preserve-dynamic-require-plugin": 2762, + "@types/glob": 581, + "@types/mocha": 616, + "@types/vscode": 668, + "@types/webpack-env": 670, + "@vscode/test-electron": 717, + "glob": 1400, + "local-node-rig": 2748, + "mocha": 1844, + "vsce": 2531, + }, + "name": "@local/vscode-extensions+rush-vscode-extension", + "root": "/vscode-extensions/rush-vscode-extension", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@types/estree": 576, + "fast-glob": 1300, + "local-node-rig": 2748, + "memfs": 1794, + "webpack": 2559, + }, + "name": "@local/webpack+hashed-folder-copy-plugin", + "root": "/webpack/hashed-folder-copy-plugin", + }, + Object { + "deps": Object { + "@microsoft/load-themed-styles": 2724, + "@rushstack/heft": 2632, + "@types/loader-utils": 607, + "@types/webpack": 672, + "loader-utils": 1734, + "local-node-rig": 2748, + }, + "name": "@local/webpack+loader-load-themed-styles", + "root": "/webpack/loader-load-themed-styles", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "loader-utils": 1734, + "local-node-rig": 2748, + }, + "name": "@local/webpack+loader-raw-script", + "root": "/webpack/loader-raw-script", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "local-node-rig": 2748, + "webpack": 2559, + }, + "name": "@local/webpack+preserve-dynamic-require-plugin", + "root": "/webpack/preserve-dynamic-require-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/webpack-plugin-utilities": 2766, + "local-node-rig": 2748, + "memfs": 1794, + "webpack": 2559, + }, + "name": "@local/webpack+set-webpack-public-path-plugin", + "root": "/webpack/set-webpack-public-path-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "local-node-rig": 2748, + "webpack": 2559, + }, + "name": "@local/webpack+webpack-deep-imports-plugin", + "root": "/webpack/webpack-deep-imports-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "@rushstack/webpack-plugin-utilities": 2766, + "local-node-rig": 2748, + "memfs": 1794, + "webpack": 2559, + }, + "name": "@local/webpack+webpack-embedded-dependencies-plugin", + "root": "/webpack/webpack-embedded-dependencies-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@types/tapable": 658, + "local-node-rig": 2748, + "memfs": 1794, + "webpack": 2559, + "webpack-merge": 2554, + }, + "name": "@local/webpack+webpack-plugin-utilities", + "root": "/webpack/webpack-plugin-utilities", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/lookup-by-path": 2726, + "local-node-rig": 2748, + "memfs": 1794, + "webpack": 2559, + }, + "name": "@local/webpack+webpack-workspace-resolve-plugin", + "root": "/webpack/webpack-workspace-resolve-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/localization-utilities": 2725, + "@rushstack/node-core-library": 2728, + "@rushstack/set-webpack-public-path-plugin": 456, + "@rushstack/terminal": 2738, + "@types/loader-utils": 607, + "@types/minimatch": 614, + "@types/node": 623, + "@types/tapable": 658, + "@types/webpack": 672, + "loader-utils": 1734, + "local-node-rig": 2748, + "minimatch": 1821, + "webpack": 2558, + }, + "name": "@local/webpack+webpack4-localization-plugin", + "root": "/webpack/webpack4-localization-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/module-minifier": 2727, + "@rushstack/worker-pool": 2742, + "@types/tapable": 658, + "@types/webpack": 672, + "@types/webpack-sources": 671, + "local-node-rig": 2748, + "tapable": 2372, + "webpack": 2558, + "webpack-sources": 2555, + }, + "name": "@local/webpack+webpack4-module-minifier-plugin", + "root": "/webpack/webpack4-module-minifier-plugin", + }, + Object { + "deps": Object { + "@microsoft/load-themed-styles": 2724, + "@rushstack/heft": 2632, + "@rushstack/node-core-library": 2728, + "css-loader": 1081, + "local-node-rig": 2748, + "memfs": 1794, + "webpack": 2559, + }, + "name": "@local/webpack+webpack5-load-themed-styles-loader", + "root": "/webpack/webpack5-load-themed-styles-loader", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/localization-utilities": 2725, + "@rushstack/node-core-library": 2728, + "@rushstack/terminal": 2738, + "local-node-rig": 2748, + "memfs": 1794, + "webpack": 2559, + }, + "name": "@local/webpack+webpack5-localization-plugin", + "root": "/webpack/webpack5-localization-plugin", + }, + Object { + "deps": Object { + "@rushstack/heft": 2632, + "@rushstack/module-minifier": 2727, + "@rushstack/worker-pool": 2742, + "@types/estree": 576, + "@types/tapable": 658, + "local-node-rig": 2748, + "memfs": 1794, + "tapable": 2373, + "webpack": 2559, + }, + "name": "@local/webpack+webpack5-module-minifier-plugin", + "root": "/webpack/webpack5-module-minifier-plugin", + }, + ], +} +`; diff --git a/rush-plugins/rush-resolver-cache-plugin/src/test/__snapshots__/helpers.test.ts.snap b/rush-plugins/rush-resolver-cache-plugin/src/test/__snapshots__/helpers.test.ts.snap new file mode 100644 index 00000000000..7c4d7cb6eb6 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/test/__snapshots__/helpers.test.ts.snap @@ -0,0 +1,39 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`createBase32Hash hashes: (eslint@8.57.0)(typescript@5.4.5) 1`] = `"2nt7x5y4npubskzl4nixybkqqi"`; + +exports[`createBase32Hash hashes: a 1`] = `"btaxlooa6g3kqmodthrgs5zgme"`; + +exports[`createBase32Hash hashes: abracadabra 1`] = `"5rjiprc7bzyoyiwvf2f4x3vwia"`; + +exports[`depPathToFilename formats: /@some/package@1.2.3(@azure/msal-browser@2.28.1)(@azure/msal-common@6.4.0)(@fluentui/merge-styles@8.6.2)(@fluentui/react@8.117.5)(@fluentui/theme@2.6.45)(@fluentui/utilities@8.15.2)(chart.js@2.9.4)(lodash@4.17.21)(moment@2.29.4)(prop-types@15.8.1)(react-dnd-html5-backend@14.1.0)(react-dnd@14.0.5)(react-dom@17.0.1)(react-intersection-observer@8.34.0)(react@17.0.1) 1`] = `"@some+package@1.2.3_@azure+msal-browser@2.28.1_@azure+msal-common@6.4.0_@fluentui+merge-style_yt7yh6tpppbzu7nx3lzx3f3ife"`; + +exports[`depPathToFilename formats: /@storybook/core@6.5.15(@storybook/builder-webpack5@6.5.15)(@storybook/manager-webpack5@6.5.15)(eslint@8.57.0)(react-dom@17.0.1)(react@17.0.1)(typescript@5.3.3)(webpack@5.88.1) 1`] = `"@storybook+core@6.5.15_@storybook+builder-webpack5@6.5.15_@storybook+manager-webpack5@6.5.15__wnqw6tyxzeiksxiymflshxscdq"`; + +exports[`depPathToFilename formats: /@typescript-eslint/utils@6.19.1(eslint@7.7.0)(typescript@5.4.2) 1`] = `"@typescript-eslint+utils@6.19.1_eslint@7.7.0_typescript@5.4.2"`; + +exports[`depPathToFilename formats: /autoprefixer@9.8.8 1`] = `"autoprefixer@9.8.8"`; + +exports[`depPathToFilename formats: /autoprefixer@10.4.18(postcss@8.4.36) 1`] = `"autoprefixer@10.4.18_postcss@8.4.36"`; + +exports[`depPathToFilename formats: /react-transition-group@4.4.5(react-dom@17.0.2)(react@17.0.2) 1`] = `"react-transition-group@4.4.5_react-dom@17.0.2_react@17.0.2"`; + +exports[`depPathToFilename formats: file:../../../libraries/ts-command-line(@types/node@18.17.15) 1`] = `"file+..+..+..+libraries+ts-command-line_@types+node@18.17.15"`; + +exports[`depPathToFilename formats: file:../../../rigs/local-node-rig 1`] = `"file+..+..+..+rigs+local-node-rig"`; + +exports[`getDescriptionFileRootFromKey parses: "/@some/package@1.2.3(@azure/msal-browser@2.28.1)(@azure/msal-common@6.4.0)(@fluentui/merge-styles@8.6.2)(@fluentui/react@8.117.5)(@fluentui/theme@2.6.45)(@fluentui/utilities@8.15.2)(chart.js@2.9.4)(lodash@4.17.21)(moment@2.29.4)(prop-types@15.8.1)(react-dnd-html5-backend@14.1.0)(react-dnd@14.0.5)(react-dom@17.0.1)(react-intersection-observer@8.34.0)(react@17.0.1)",undefined 1`] = `"/$/node_modules/.pnpm/@some+package@1.2.3_@azure+msal-browser@2.28.1_@azure+msal-common@6.4.0_@fluentui+merge-style_yt7yh6tpppbzu7nx3lzx3f3ife/node_modules/@some/package"`; + +exports[`getDescriptionFileRootFromKey parses: "/@storybook/core@6.5.15(@storybook/builder-webpack5@6.5.15)(@storybook/manager-webpack5@6.5.15)(eslint@8.57.0)(react-dom@17.0.1)(react@17.0.1)(typescript@5.3.3)(webpack@5.88.1)",undefined 1`] = `"/$/node_modules/.pnpm/@storybook+core@6.5.15_@storybook+builder-webpack5@6.5.15_@storybook+manager-webpack5@6.5.15__wnqw6tyxzeiksxiymflshxscdq/node_modules/@storybook/core"`; + +exports[`getDescriptionFileRootFromKey parses: "/@typescript-eslint/utils@6.19.1(eslint@7.7.0)(typescript@5.4.2)",undefined 1`] = `"/$/node_modules/.pnpm/@typescript-eslint+utils@6.19.1_eslint@7.7.0_typescript@5.4.2/node_modules/@typescript-eslint/utils"`; + +exports[`getDescriptionFileRootFromKey parses: "/autoprefixer@9.8.8",undefined 1`] = `"/$/node_modules/.pnpm/autoprefixer@9.8.8/node_modules/autoprefixer"`; + +exports[`getDescriptionFileRootFromKey parses: "/autoprefixer@10.4.18(postcss@8.4.36)",undefined 1`] = `"/$/node_modules/.pnpm/autoprefixer@10.4.18_postcss@8.4.36/node_modules/autoprefixer"`; + +exports[`getDescriptionFileRootFromKey parses: "/react-transition-group@4.4.5(react-dom@17.0.2)(react@17.0.2)",undefined 1`] = `"/$/node_modules/.pnpm/react-transition-group@4.4.5_react-dom@17.0.2_react@17.0.2/node_modules/react-transition-group"`; + +exports[`getDescriptionFileRootFromKey parses: "file:../../../libraries/ts-command-line(@types/node@18.17.15)",@rushstack/ts-command-line 1`] = `"/$/node_modules/.pnpm/file+..+..+..+libraries+ts-command-line_@types+node@18.17.15/node_modules/@rushstack/ts-command-line"`; + +exports[`getDescriptionFileRootFromKey parses: "file:../../../rigs/local-node-rig",local-node-rig 1`] = `"/$/node_modules/.pnpm/file+..+..+..+rigs+local-node-rig/node_modules/local-node-rig"`; diff --git a/rush-plugins/rush-resolver-cache-plugin/src/test/computeResolverCacheFromLockfileAsync.test.ts b/rush-plugins/rush-resolver-cache-plugin/src/test/computeResolverCacheFromLockfileAsync.test.ts new file mode 100644 index 00000000000..1ce427f50f2 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/test/computeResolverCacheFromLockfileAsync.test.ts @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. +// See LICENSE in the project root for license information. + +import * as path from 'node:path'; + +import { LookupByPath } from '@rushstack/lookup-by-path'; +import { PnpmShrinkwrapFile } from '@rushstack/rush-sdk/lib/logic/pnpm/PnpmShrinkwrapFile'; + +import { + computeResolverCacheFromLockfileAsync, + type IPartialRushProject, + type IPlatformInfo +} from '../computeResolverCacheFromLockfileAsync'; + +describe(computeResolverCacheFromLockfileAsync.name, () => { + it('matches snapshot behavior', async () => { + const collateralFolder: string = path.resolve(__dirname, '../../test-collateral'); + + const platformInfo: IPlatformInfo = { + os: 'linux', + cpu: 'x64', + libc: 'glibc' + }; + + for (const testCase of [ + { + workspaceRoot: '/$root/common/temp/build-tests', + commonPrefixToTrim: '/$root', + lockfileName: 'build-tests-subspace.yaml' + }, + { + workspaceRoot: '/$root/common/temp/default', + commonPrefixToTrim: '/$root', + lockfileName: 'default-subspace.yaml' + } + ]) { + const { workspaceRoot, commonPrefixToTrim, lockfileName } = testCase; + + const lockfile: PnpmShrinkwrapFile | undefined = PnpmShrinkwrapFile.loadFromFile( + `${collateralFolder}/${lockfileName}` + ); + if (lockfile === undefined) { + throw new Error(`Failed to load lockfile: ${lockfileName}`); + } + + const projectByImporterPath: LookupByPath = new LookupByPath(); + for (const importerPath of lockfile.importers.keys()) { + const remainder: string = importerPath.slice(importerPath.lastIndexOf('../') + 3); + projectByImporterPath.setItem(importerPath, { + projectFolder: `${commonPrefixToTrim}/${remainder}`, + packageJson: { + name: `@local/${remainder.replace(/\//g, '+')}` + } + }); + } + + const resolverCacheFile = await computeResolverCacheFromLockfileAsync({ + workspaceRoot, + commonPrefixToTrim, + lockfile, + platformInfo, + projectByImporterPath + }); + + // Trim undefined properties + expect(JSON.parse(JSON.stringify(resolverCacheFile))).toMatchSnapshot(lockfileName); + } + }); +}); diff --git a/rush-plugins/rush-resolver-cache-plugin/src/test/helpers.test.ts b/rush-plugins/rush-resolver-cache-plugin/src/test/helpers.test.ts new file mode 100644 index 00000000000..c26e3eba9b6 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/test/helpers.test.ts @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. +// See LICENSE in the project root for license information. + +import { createBase32Hash, depPathToFilename, getDescriptionFileRootFromKey } from '../helpers'; + +describe(createBase32Hash.name, () => { + it('hashes', () => { + for (const input of ['a', 'abracadabra', '(eslint@8.57.0)(typescript@5.4.5)']) { + expect(createBase32Hash(input)).toMatchSnapshot(input); + } + }); +}); + +describe(depPathToFilename.name, () => { + it('formats', () => { + for (const input of [ + '/autoprefixer@9.8.8', + '/autoprefixer@10.4.18(postcss@8.4.36)', + '/react-transition-group@4.4.5(react-dom@17.0.2)(react@17.0.2)', + '/@some/package@1.2.3(@azure/msal-browser@2.28.1)(@azure/msal-common@6.4.0)(@fluentui/merge-styles@8.6.2)(@fluentui/react@8.117.5)(@fluentui/theme@2.6.45)(@fluentui/utilities@8.15.2)(chart.js@2.9.4)(lodash@4.17.21)(moment@2.29.4)(prop-types@15.8.1)(react-dnd-html5-backend@14.1.0)(react-dnd@14.0.5)(react-dom@17.0.1)(react-intersection-observer@8.34.0)(react@17.0.1)', + '/@storybook/core@6.5.15(@storybook/builder-webpack5@6.5.15)(@storybook/manager-webpack5@6.5.15)(eslint@8.57.0)(react-dom@17.0.1)(react@17.0.1)(typescript@5.3.3)(webpack@5.88.1)', + '/@typescript-eslint/utils@6.19.1(eslint@7.7.0)(typescript@5.4.2)', + 'file:../../../rigs/local-node-rig', + 'file:../../../libraries/ts-command-line(@types/node@18.17.15)' + ]) { + expect(depPathToFilename(input)).toMatchSnapshot(input); + } + }); +}); + +describe(getDescriptionFileRootFromKey.name, () => { + it('parses', () => { + const lockfileRoot: string = '/$'; + for (const { key, name } of [ + { key: '/autoprefixer@9.8.8' }, + { key: '/autoprefixer@10.4.18(postcss@8.4.36)' }, + { key: '/react-transition-group@4.4.5(react-dom@17.0.2)(react@17.0.2)' }, + { + key: '/@some/package@1.2.3(@azure/msal-browser@2.28.1)(@azure/msal-common@6.4.0)(@fluentui/merge-styles@8.6.2)(@fluentui/react@8.117.5)(@fluentui/theme@2.6.45)(@fluentui/utilities@8.15.2)(chart.js@2.9.4)(lodash@4.17.21)(moment@2.29.4)(prop-types@15.8.1)(react-dnd-html5-backend@14.1.0)(react-dnd@14.0.5)(react-dom@17.0.1)(react-intersection-observer@8.34.0)(react@17.0.1)' + }, + { + key: '/@storybook/core@6.5.15(@storybook/builder-webpack5@6.5.15)(@storybook/manager-webpack5@6.5.15)(eslint@8.57.0)(react-dom@17.0.1)(react@17.0.1)(typescript@5.3.3)(webpack@5.88.1)' + }, + { key: '/@typescript-eslint/utils@6.19.1(eslint@7.7.0)(typescript@5.4.2)' }, + { key: 'file:../../../rigs/local-node-rig', name: 'local-node-rig' }, + { + key: 'file:../../../libraries/ts-command-line(@types/node@18.17.15)', + name: '@rushstack/ts-command-line' + } + ]) { + expect(getDescriptionFileRootFromKey(lockfileRoot, key, name)).toMatchSnapshot(`"${key}",${name}`); + } + }); +}); diff --git a/rush-plugins/rush-resolver-cache-plugin/src/types.ts b/rush-plugins/rush-resolver-cache-plugin/src/types.ts new file mode 100644 index 00000000000..6bc4c638c38 --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/src/types.ts @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. +// See LICENSE in the project root for license information. + +export interface IResolverContext { + descriptionFileRoot: string; + descriptionFileHash: string | undefined; + name: string; + deps: Map; + isProject: boolean; + ordinal: number; + optional?: boolean; + files?: string[]; +} + +export type IDependencyEntry = + | string + | { + version: string; + specifier: string; + }; diff --git a/rush-plugins/rush-resolver-cache-plugin/test-collateral/build-tests-subspace.yaml b/rush-plugins/rush-resolver-cache-plugin/test-collateral/build-tests-subspace.yaml new file mode 100644 index 00000000000..e77a7653d2c --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/test-collateral/build-tests-subspace.yaml @@ -0,0 +1,9016 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: false + excludeLinksFromLockfile: false + +overrides: + package-json: ^7 + +packageExtensionsChecksum: e59cfa9a35183eeeb6f2ac48c9ddd4b2 + +importers: + .: {} + + ../../../build-tests-subspace/rush-lib-test: + dependencies: + '@microsoft/rush-lib': + specifier: file:../../libraries/rush-lib + version: file:../../../libraries/rush-lib(@types/node@18.17.15) + '@rushstack/terminal': + specifier: file:../../libraries/terminal + version: file:../../../libraries/terminal(@types/node@18.17.15) + devDependencies: + '@rushstack/eslint-config': + specifier: file:../../eslint/eslint-config + version: file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@5.4.5) + '@rushstack/heft': + specifier: file:../../apps/heft + version: file:../../../apps/heft(@types/node@18.17.15) + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0 + local-node-rig: + specifier: file:../../rigs/local-node-rig + version: file:../../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.5 + dependenciesMeta: + '@microsoft/rush-lib': + injected: true + '@rushstack/eslint-config': + injected: true + '@rushstack/heft': + injected: true + '@rushstack/terminal': + injected: true + local-node-rig: + injected: true + + ../../../build-tests-subspace/rush-sdk-test: + dependencies: + '@rushstack/rush-sdk': + specifier: file:../../libraries/rush-sdk + version: file:../../../libraries/rush-sdk(@types/node@18.17.15) + devDependencies: + '@microsoft/rush-lib': + specifier: file:../../libraries/rush-lib + version: file:../../../libraries/rush-lib(@types/node@18.17.15) + '@rushstack/eslint-config': + specifier: file:../../eslint/eslint-config + version: file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@5.4.5) + '@rushstack/heft': + specifier: file:../../apps/heft + version: file:../../../apps/heft(@types/node@18.17.15) + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0 + local-node-rig: + specifier: file:../../rigs/local-node-rig + version: file:../../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.5 + dependenciesMeta: + '@microsoft/rush-lib': + injected: true + '@rushstack/eslint-config': + injected: true + '@rushstack/heft': + injected: true + '@rushstack/rush-sdk': + injected: true + local-node-rig: + injected: true + + ../../../build-tests-subspace/typescript-newest-test: + devDependencies: + '@rushstack/eslint-config': + specifier: file:../../eslint/eslint-config + version: file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@5.4.5) + '@rushstack/heft': + specifier: file:../../apps/heft + version: file:../../../apps/heft(@types/node@18.17.15) + eslint: + specifier: ~8.57.0 + version: 8.57.0 + local-node-rig: + specifier: file:../../rigs/local-node-rig + version: file:../../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.5 + dependenciesMeta: + '@rushstack/eslint-config': + injected: true + '@rushstack/heft': + injected: true + local-node-rig: + injected: true + + ../../../build-tests-subspace/typescript-v4-test: + devDependencies: + '@rushstack/eslint-config': + specifier: file:../../eslint/eslint-config + version: file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@4.9.5) + '@rushstack/heft': + specifier: file:../../apps/heft + version: file:../../../apps/heft(@types/node@18.17.15) + '@rushstack/heft-lint-plugin': + specifier: file:../../heft-plugins/heft-lint-plugin + version: file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) + '@rushstack/heft-typescript-plugin': + specifier: file:../../heft-plugins/heft-typescript-plugin + version: file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) + eslint: + specifier: ~8.57.0 + version: 8.57.0 + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@4.9.5) + typescript: + specifier: ~4.9.5 + version: 4.9.5 + dependenciesMeta: + '@rushstack/eslint-config': + injected: true + '@rushstack/heft': + injected: true + '@rushstack/heft-lint-plugin': + injected: true + '@rushstack/heft-typescript-plugin': + injected: true + +packages: + /@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: true + + /@babel/code-frame@7.24.2: + resolution: + { + integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/highlight': 7.24.5 + picocolors: 1.0.1 + + /@babel/compat-data@7.24.4: + resolution: + { + integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ== + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/core@7.24.5: + resolution: + { + integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA== + } + engines: { node: '>=6.9.0' } + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) + '@babel/helpers': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + 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.24.5: + resolution: + { + integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.5 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + + /@babel/helper-compilation-targets@7.23.6: + resolution: + { + integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/compat-data': 7.24.4 + '@babel/helper-validator-option': 7.23.5 + browserslist: 4.23.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' } + + /@babel/helper-function-name@7.23.0: + resolution: + { + integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/template': 7.24.0 + '@babel/types': 7.24.5 + + /@babel/helper-hoist-variables@7.22.5: + resolution: + { + integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.5 + + /@babel/helper-module-imports@7.24.3: + resolution: + { + integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.5 + dev: true + + /@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5): + resolution: + { + integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-simple-access': 7.24.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/helper-validator-identifier': 7.24.5 + dev: true + + /@babel/helper-plugin-utils@7.24.5: + resolution: + { + integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ== + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-simple-access@7.24.5: + resolution: + { + integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.5 + dev: true + + /@babel/helper-split-export-declaration@7.24.5: + resolution: + { + integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.5 + + /@babel/helper-string-parser@7.24.1: + resolution: + { + integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== + } + engines: { node: '>=6.9.0' } + + /@babel/helper-validator-identifier@7.24.5: + resolution: + { + integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA== + } + engines: { node: '>=6.9.0' } + + /@babel/helper-validator-option@7.23.5: + resolution: + { + integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helpers@7.24.5: + resolution: + { + integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight@7.24.5: + resolution: + { + integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-validator-identifier': 7.24.5 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.1 + + /@babel/parser@7.24.5: + resolution: + { + integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg== + } + engines: { node: '>=6.0.0' } + hasBin: true + + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5): + resolution: + { + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.5): + resolution: + { + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5): + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5): + resolution: + { + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5): + resolution: + { + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5): + resolution: + { + integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5): + resolution: + { + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5): + resolution: + { + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5): + resolution: + { + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5): + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5): + resolution: + { + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5): + resolution: + { + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5): + resolution: + { + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5): + resolution: + { + integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-plugin-utils': 7.24.5 + dev: true + + /@babel/template@7.24.0: + resolution: + { + integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + + /@babel/traverse@7.24.5: + resolution: + { + integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.5 + '@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.24.5 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + /@babel/types@7.24.5: + resolution: + { + integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-string-parser': 7.24.1 + '@babel/helper-validator-identifier': 7.24.5 + to-fast-properties: 2.0.0 + + /@bcoe/v8-coverage@0.2.3: + resolution: + { + integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + } + dev: true + + /@devexpress/error-stack-parser@2.0.6: + resolution: + { + integrity: sha512-fneVypElGUH6Be39mlRZeAu00pccTlf4oVuzf9xPJD1cdEqI8NyAiQua/EW7lZdrbMUbgyXcJmfKPefhYius3A== + } + dependencies: + stackframe: 1.3.4 + + /@es-joy/jsdoccomment@0.17.0: + resolution: + { + integrity: sha512-B8DIIWE194KyQFPojUs+THa2XX+1vulwTBjirw6GqcxjtNE60Rreex26svBnV9SNLTuz92ctZx5XQE1H7yOxgA== + } + engines: { node: ^12 || ^14 || ^16 || ^17 } + dependencies: + comment-parser: 1.3.0 + esquery: 1.5.0 + jsdoc-type-pratt-parser: 2.2.5 + dev: true + + /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0): + resolution: + { + integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.57.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /@eslint-community/regexpp@4.10.0: + resolution: + { + integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + dev: true + + /@eslint/eslintrc@2.1.4: + resolution: + { + integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/js@8.57.0: + resolution: + { + integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /@humanwhocodes/config-array@0.11.14: + resolution: + { + integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== + } + engines: { node: '>=10.10.0' } + dependencies: + '@humanwhocodes/object-schema': 2.0.3 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/module-importer@1.0.1: + resolution: + { + integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + } + engines: { node: '>=12.22' } + dev: true + + /@humanwhocodes/object-schema@2.0.3: + resolution: + { + integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== + } + 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': 18.17.15 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + dev: true + + /@jest/core@29.5.0: + resolution: + { + integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== + } + 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.5.0 + '@jest/test-result': 29.7.0(@types/node@18.17.15) + '@jest/transform': 29.5.0 + '@jest/types': 29.6.3 + '@types/node': 18.17.15 + 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.5.0(@types/node@18.17.15) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.5.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.5.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': 18.17.15 + 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': 18.17.15 + 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.5.0: + resolution: + { + integrity: sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== + } + 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(@types/node@18.17.15) + '@jest/transform': 29.5.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/node': 18.17.15 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2(@types/node@18.17.15) + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 5.2.1 + 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.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.25 + callsites: 3.1.0 + graceful-fs: 4.2.11 + dev: true + + /@jest/test-result@29.7.0(@types/node@18.17.15): + 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(@types/node@18.17.15) + jest-haste-map: 29.7.0 + jest-resolve: 29.7.0 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@jest/test-sequencer@29.7.0(@types/node@18.17.15): + resolution: + { + integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@jest/test-result': 29.7.0(@types/node@18.17.15) + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@jest/transform@29.5.0: + resolution: + { + integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@babel/core': 7.24.5 + '@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 + 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.24.5 + '@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 + 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.17.15 + '@types/yargs': 17.0.32 + chalk: 4.1.2 + dev: true + + /@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.4.15 + '@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/sourcemap-codec@1.4.15: + resolution: + { + integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + } + + /@jridgewell/trace-mapping@0.3.25: + resolution: + { + integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + } + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + + /@microsoft/tsdoc-config@0.17.0: + resolution: + { + integrity: sha512-v/EYRXnCAIHxOHW+Plb6OWuUoMotxTN0GLatnpOb1xq0KuTNw/WI3pamJx/UbsoJP5k9MCw1QxvvhPcF9pH3Zg== + } + dependencies: + '@microsoft/tsdoc': 0.15.0 + ajv: 8.12.0 + jju: 1.4.0 + resolve: 1.22.8 + dev: true + + /@microsoft/tsdoc@0.15.0: + resolution: + { + integrity: sha512-HZpPoABogPvjeJOdzCOSJsXeL/SMCBgBZMVC3X3d7YYp2gf31MfxhUoYUNwf1ERPJOnQc0wkFn9trqI6ZEdZuA== + } + 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.17.1 + + /@pnpm/crypto.base32-hash@1.0.1: + resolution: + { + integrity: sha512-pzAXNn6KxTA3kbcI3iEnYs4vtH51XEVqmK/1EiD18MaPKylhqy8UvMJK3zKG+jeP82cqQbozcTGm4yOQ8i3vNw== + } + engines: { node: '>=14.6' } + dependencies: + rfc4648: 1.5.3 + + /@pnpm/crypto.base32-hash@2.0.0: + resolution: + { + integrity: sha512-3ttOeHBpmWRbgJrpDQ8Nwd3W8s8iuiP5YZM0JRyKWaMtX8lu9d7/AKyxPmhYsMJuN+q/1dwHa7QFeDZJ53b0oA== + } + engines: { node: '>=16.14' } + dependencies: + rfc4648: 1.5.3 + + /@pnpm/dependency-path@2.1.8: + resolution: + { + integrity: sha512-ywBaTjy0iSEF7lH3DlF8UXrdL2bw4AQFV2tTOeNeY7wc1W5CE+RHSJhf9MXBYcZPesqGRrPiU7Pimj3l05L9VA== + } + engines: { node: '>=16.14' } + dependencies: + '@pnpm/crypto.base32-hash': 2.0.0 + '@pnpm/types': 9.4.2 + encode-registry: 3.0.1 + semver: 7.5.4 + + /@pnpm/error@1.4.0: + resolution: + { + integrity: sha512-vxkRrkneBPVmP23kyjnYwVOtipwlSl6UfL+h+Xa3TrABJTz5rYBXemlTsU5BzST8U4pD7YDkTb3SQu+MMuIDKA== + } + engines: { node: '>=10.16' } + + /@pnpm/link-bins@5.3.25: + resolution: + { + integrity: sha512-9Xq8lLNRHFDqvYPXPgaiKkZ4rtdsm7izwM/cUsFDc5IMnG0QYIVBXQbgwhz2UvjUotbJrvfKLJaCfA3NGBnLDg== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/error': 1.4.0 + '@pnpm/package-bins': 4.1.0 + '@pnpm/read-modules-dir': 2.0.3 + '@pnpm/read-package-json': 4.0.0 + '@pnpm/read-project-manifest': 1.1.7 + '@pnpm/types': 6.4.0 + '@zkochan/cmd-shim': 5.4.1 + is-subdir: 1.2.0 + is-windows: 1.0.2 + mz: 2.7.0 + normalize-path: 3.0.0 + p-settle: 4.1.1 + ramda: 0.27.2 + + /@pnpm/package-bins@4.1.0: + resolution: + { + integrity: sha512-57/ioGYLBbVRR80Ux9/q2i3y8Q+uQADc3c+Yse8jr/60YLOi3jcWz13e2Jy+ANYtZI258Qc5wk2X077rp0Ly/Q== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/types': 6.4.0 + fast-glob: 3.3.2 + is-subdir: 1.2.0 + + /@pnpm/read-modules-dir@2.0.3: + resolution: + { + integrity: sha512-i9OgRvSlxrTS9a2oXokhDxvQzDtfqtsooJ9jaGoHkznue5aFCTSrNZFQ6M18o8hC03QWfnxaKi0BtOvNkKu2+A== + } + engines: { node: '>=10.13' } + dependencies: + mz: 2.7.0 + + /@pnpm/read-package-json@4.0.0: + resolution: + { + integrity: sha512-1cr2tEwe4YU6SI0Hmg+wnsr6yxBt2iJtqv6wrF84On8pS9hx4A2PLw3CIgbwxaG0b+ur5wzhNogwl4qD5FLFNg== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/error': 1.4.0 + '@pnpm/types': 6.4.0 + load-json-file: 6.2.0 + normalize-package-data: 3.0.3 + + /@pnpm/read-project-manifest@1.1.7: + resolution: + { + integrity: sha512-tj8ExXZeDcMmMUj7D292ETe/RiEirr1X1wpT6Zy85z2MrFYoG9jfCJpps40OdZBNZBhxbuKtGPWKVSgXD0yrVw== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/error': 1.4.0 + '@pnpm/types': 6.4.0 + '@pnpm/write-project-manifest': 1.1.7 + detect-indent: 6.1.0 + fast-deep-equal: 3.1.3 + graceful-fs: 4.2.4 + is-windows: 1.0.2 + json5: 2.2.3 + parse-json: 5.2.0 + read-yaml-file: 2.1.0 + sort-keys: 4.2.0 + strip-bom: 4.0.0 + + /@pnpm/types@6.4.0: + resolution: + { + integrity: sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg== + } + engines: { node: '>=10.16' } + + /@pnpm/types@8.9.0: + resolution: + { + integrity: sha512-3MYHYm8epnciApn6w5Fzx6sepawmsNU7l6lvIq+ER22/DPSrr83YMhU/EQWnf4lORn2YyiXFj0FJSyJzEtIGmw== + } + engines: { node: '>=14.6' } + + /@pnpm/types@9.4.2: + resolution: + { + integrity: sha512-g1hcF8Nv4gd76POilz9gD4LITAPXOe5nX4ijgr8ixCbLQZfcpYiMfJ+C1RlMNRUDo8vhlNB4O3bUlxmT6EAQXA== + } + engines: { node: '>=16.14' } + + /@pnpm/write-project-manifest@1.1.7: + resolution: + { + integrity: sha512-OLkDZSqkA1mkoPNPvLFXyI6fb0enCuFji6Zfditi/CLAo9kmIhQFmEUDu4krSB8i908EljG8YwL5Xjxzm5wsWA== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/types': 6.4.0 + json5: 2.2.3 + mz: 2.7.0 + write-file-atomic: 3.0.3 + write-yaml-file: 4.2.0 + + /@sinclair/typebox@0.27.8: + resolution: + { + integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + } + dev: true + + /@sindresorhus/is@4.6.0: + resolution: + { + integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== + } + engines: { node: '>=10' } + + /@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 + + /@szmarczak/http-timer@4.0.6: + resolution: + { + integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w== + } + engines: { node: '>=10' } + dependencies: + defer-to-connect: 2.0.1 + + /@types/argparse@1.0.38: + resolution: + { + integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA== + } + + /@types/babel__core@7.20.5: + resolution: + { + integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== + } + dependencies: + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + '@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.24.5 + dev: true + + /@types/babel__template@7.4.4: + resolution: + { + integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== + } + dependencies: + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + dev: true + + /@types/babel__traverse@7.20.5: + resolution: + { + integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ== + } + dependencies: + '@babel/types': 7.24.5 + dev: true + + /@types/cacheable-request@6.0.3: + resolution: + { + integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw== + } + dependencies: + '@types/http-cache-semantics': 4.0.4 + '@types/keyv': 3.1.4 + '@types/node': 18.17.15 + '@types/responselike': 1.0.3 + + /@types/graceful-fs@4.1.9: + resolution: + { + integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== + } + dependencies: + '@types/node': 18.17.15 + dev: true + + /@types/heft-jest@1.0.1: + resolution: + { + integrity: sha512-cF2iEUpvGh2WgLowHVAdjI05xuDo+GwCA8hGV3Q5PBl8apjd6BTcpPFQ2uPlfUM7BLpgur2xpYo8VeBXopMI4A== + } + dependencies: + '@types/jest': 29.5.12 + dev: true + + /@types/http-cache-semantics@4.0.4: + resolution: + { + integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + } + + /@types/istanbul-lib-coverage@2.0.4: + resolution: + { + integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + } + 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@3.0.4: + resolution: + { + integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== + } + dependencies: + '@types/istanbul-lib-report': 3.0.3 + dev: true + + /@types/jest@29.5.12: + resolution: + { + integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw== + } + dependencies: + expect: 29.7.0 + pretty-format: 29.7.0 + dev: true + + /@types/json-schema@7.0.15: + resolution: + { + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== + } + dev: true + + /@types/json5@0.0.29: + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + } + dev: true + + /@types/keyv@3.1.4: + resolution: + { + integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== + } + dependencies: + '@types/node': 18.17.15 + + /@types/lodash@4.17.1: + resolution: + { + integrity: sha512-X+2qazGS3jxLAIz5JDXDzglAF3KpijdhFxlf/V1+hEsOUc+HnWi81L/uv/EvGuV90WY+7mPGFCUDGfQC3Gj95Q== + } + + /@types/minimatch@3.0.5: + resolution: + { + integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== + } + + /@types/minimist@1.2.5: + resolution: + { + integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== + } + + /@types/node-fetch@2.6.2: + resolution: + { + integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A== + } + dependencies: + '@types/node': 18.17.15 + form-data: 3.0.1 + + /@types/node@18.17.15: + resolution: + { + integrity: sha512-2yrWpBk32tvV/JAd3HNHWuZn/VDN1P+72hWirHnvsvTGSqbANi+kSeuQR9yAHnbvaBvHDsoTdXV0Fe+iRtHLKA== + } + + /@types/normalize-package-data@2.4.4: + resolution: + { + integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== + } + + /@types/parse-json@4.0.2: + resolution: + { + integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== + } + + /@types/prettier@2.7.3: + resolution: + { + integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== + } + dev: true + + /@types/responselike@1.0.3: + resolution: + { + integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw== + } + dependencies: + '@types/node': 18.17.15 + + /@types/semver@7.5.8: + resolution: + { + integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ== + } + dev: true + + /@types/stack-utils@2.0.3: + resolution: + { + integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== + } + dev: true + + /@types/tapable@1.0.6: + resolution: + { + integrity: sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA== + } + dev: true + + /@types/yargs-parser@21.0.3: + resolution: + { + integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== + } + 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@8.1.0(@typescript-eslint/parser@8.1.0)(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-LlNBaHFCEBPHyD4pZXb35mzjGkuGKXU5eeCA1SxvHfiRES0E82dOounfVpL4DCqYvJEKab0bZIA0gCRpdLKkCw== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 8.1.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 8.1.0(typescript@4.9.5) + '@typescript-eslint/type-utils': 8.1.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@4.9.5) + eslint: 8.57.0 + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + ts-api-utils: 1.3.0(typescript@4.9.5) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/eslint-plugin@8.1.0(@typescript-eslint/parser@8.1.0)(eslint@8.57.0)(typescript@5.4.5): + resolution: + { + integrity: sha512-LlNBaHFCEBPHyD4pZXb35mzjGkuGKXU5eeCA1SxvHfiRES0E82dOounfVpL4DCqYvJEKab0bZIA0gCRpdLKkCw== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 8.1.0(typescript@5.4.5) + '@typescript-eslint/type-utils': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@5.4.5) + eslint: 8.57.0 + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@8.1.0(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-U7iTAtGgJk6DPX9wIWPPOlt1gO57097G06gIcl0N0EEnNw8RGD62c+2/DiP/zL7KrkqnnqF7gtFGR7YgzPllTA== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 8.1.0(typescript@4.9.5) + '@typescript-eslint/types': 8.1.0(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 8.1.0(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@4.9.5) + debug: 4.3.4 + eslint: 8.57.0 + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@8.1.0(eslint@8.57.0)(typescript@5.4.5): + resolution: + { + integrity: sha512-U7iTAtGgJk6DPX9wIWPPOlt1gO57097G06gIcl0N0EEnNw8RGD62c+2/DiP/zL7KrkqnnqF7gtFGR7YgzPllTA== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 8.1.0(typescript@5.4.5) + '@typescript-eslint/types': 8.1.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@5.4.5) + debug: 4.3.4 + eslint: 8.57.0 + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@6.21.0(typescript@5.4.5): + resolution: + { + integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + dependencies: + '@typescript-eslint/types': 6.21.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 6.21.0(typescript@5.4.5) + transitivePeerDependencies: + - typescript + dev: true + + /@typescript-eslint/scope-manager@8.1.0(typescript@4.9.5): + resolution: + { + integrity: sha512-DsuOZQji687sQUjm4N6c9xABJa7fjvfIdjqpSIIVOgaENf2jFXiM9hIBZOL3hb6DHK9Nvd2d7zZnoMLf9e0OtQ== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + dependencies: + '@typescript-eslint/types': 8.1.0(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@4.9.5) + transitivePeerDependencies: + - typescript + dev: true + + /@typescript-eslint/scope-manager@8.1.0(typescript@5.4.5): + resolution: + { + integrity: sha512-DsuOZQji687sQUjm4N6c9xABJa7fjvfIdjqpSIIVOgaENf2jFXiM9hIBZOL3hb6DHK9Nvd2d7zZnoMLf9e0OtQ== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + dependencies: + '@typescript-eslint/types': 8.1.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@5.4.5) + transitivePeerDependencies: + - typescript + dev: true + + /@typescript-eslint/type-utils@8.1.0(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-oLYvTxljVvsMnldfl6jIKxTaU7ok7km0KDrwOt1RHYu6nxlhN3TIx8k5Q52L6wR33nOwDgM7VwW1fT1qMNfFIA== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 8.1.0(typescript@4.9.5) + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@4.9.5) + debug: 4.3.4 + ts-api-utils: 1.3.0(typescript@4.9.5) + typescript: 4.9.5 + transitivePeerDependencies: + - eslint + - supports-color + dev: true + + /@typescript-eslint/type-utils@8.1.0(eslint@8.57.0)(typescript@5.4.5): + resolution: + { + integrity: sha512-oLYvTxljVvsMnldfl6jIKxTaU7ok7km0KDrwOt1RHYu6nxlhN3TIx8k5Q52L6wR33nOwDgM7VwW1fT1qMNfFIA== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.4.5) + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + debug: 4.3.4 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - eslint + - supports-color + dev: true + + /@typescript-eslint/types@6.21.0(typescript@5.4.5): + resolution: + { + integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + typescript: '*' + dependencies: + typescript: 5.4.5 + dev: true + + /@typescript-eslint/types@8.1.0(typescript@4.9.5): + resolution: + { + integrity: sha512-q2/Bxa0gMOu/2/AKALI0tCKbG2zppccnRIRCW6BaaTlRVaPKft4oVYPp7WOPpcnsgbr0qROAVCVKCvIQ0tbWog== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: '*' + dependencies: + typescript: 4.9.5 + dev: true + + /@typescript-eslint/types@8.1.0(typescript@5.4.5): + resolution: + { + integrity: sha512-q2/Bxa0gMOu/2/AKALI0tCKbG2zppccnRIRCW6BaaTlRVaPKft4oVYPp7WOPpcnsgbr0qROAVCVKCvIQ0tbWog== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: '*' + dependencies: + typescript: 5.4.5 + dev: true + + /@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5): + resolution: + { + integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 6.21.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 6.21.0(typescript@5.4.5) + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.6.2 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/typescript-estree@8.1.0(typescript@4.9.5): + resolution: + { + integrity: sha512-NTHhmufocEkMiAord/g++gWKb0Fr34e9AExBRdqgWdVBaKoei2dIyYKD9Q0jBnvfbEA5zaf8plUFMUH6kQ0vGg== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 8.1.0(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@4.9.5) + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.2 + ts-api-utils: 1.3.0(typescript@4.9.5) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/typescript-estree@8.1.0(typescript@5.4.5): + resolution: + { + integrity: sha512-NTHhmufocEkMiAord/g++gWKb0Fr34e9AExBRdqgWdVBaKoei2dIyYKD9Q0jBnvfbEA5zaf8plUFMUH6kQ0vGg== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 8.1.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@5.4.5) + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.2 + ts-api-utils: 1.3.0(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.5): + resolution: + { + integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.8 + '@typescript-eslint/scope-manager': 6.21.0(typescript@5.4.5) + '@typescript-eslint/types': 6.21.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) + eslint: 8.57.0 + semver: 7.6.2 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils@8.1.0(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-ypRueFNKTIFwqPeJBfeIpxZ895PQhNyH4YID6js0UoBImWYoSjBsahUn9KMiJXh94uOjVBgHD9AmkyPsPnFwJA== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@typescript-eslint/scope-manager': 8.1.0(typescript@4.9.5) + '@typescript-eslint/types': 8.1.0(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 8.1.0(typescript@4.9.5) + eslint: 8.57.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils@8.1.0(eslint@8.57.0)(typescript@5.4.5): + resolution: + { + integrity: sha512-ypRueFNKTIFwqPeJBfeIpxZ895PQhNyH4YID6js0UoBImWYoSjBsahUn9KMiJXh94uOjVBgHD9AmkyPsPnFwJA== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@typescript-eslint/scope-manager': 8.1.0(typescript@5.4.5) + '@typescript-eslint/types': 8.1.0(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.4.5) + eslint: 8.57.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys@6.21.0(typescript@5.4.5): + resolution: + { + integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A== + } + engines: { node: ^16.0.0 || >=18.0.0 } + dependencies: + '@typescript-eslint/types': 6.21.0(typescript@5.4.5) + eslint-visitor-keys: 3.4.3 + transitivePeerDependencies: + - typescript + dev: true + + /@typescript-eslint/visitor-keys@8.1.0(typescript@4.9.5): + resolution: + { + integrity: sha512-ba0lNI19awqZ5ZNKh6wCModMwoZs457StTebQ0q1NP58zSi2F6MOZRXwfKZy+jB78JNJ/WH8GSh2IQNzXX8Nag== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + dependencies: + '@typescript-eslint/types': 8.1.0(typescript@4.9.5) + eslint-visitor-keys: 3.4.3 + transitivePeerDependencies: + - typescript + dev: true + + /@typescript-eslint/visitor-keys@8.1.0(typescript@5.4.5): + resolution: + { + integrity: sha512-ba0lNI19awqZ5ZNKh6wCModMwoZs457StTebQ0q1NP58zSi2F6MOZRXwfKZy+jB78JNJ/WH8GSh2IQNzXX8Nag== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + dependencies: + '@typescript-eslint/types': 8.1.0(typescript@5.4.5) + eslint-visitor-keys: 3.4.3 + transitivePeerDependencies: + - typescript + dev: true + + /@ungap/structured-clone@1.2.0: + resolution: + { + integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + } + dev: true + + /@vue/compiler-core@3.4.27: + resolution: + { + integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg== + } + dependencies: + '@babel/parser': 7.24.5 + '@vue/shared': 3.4.27 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.0 + + /@vue/compiler-dom@3.4.27: + resolution: + { + integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw== + } + dependencies: + '@vue/compiler-core': 3.4.27 + '@vue/shared': 3.4.27 + + /@vue/compiler-sfc@3.4.27: + resolution: + { + integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA== + } + dependencies: + '@babel/parser': 7.24.5 + '@vue/compiler-core': 3.4.27 + '@vue/compiler-dom': 3.4.27 + '@vue/compiler-ssr': 3.4.27 + '@vue/shared': 3.4.27 + estree-walker: 2.0.2 + magic-string: 0.30.10 + postcss: 8.4.38 + source-map-js: 1.2.0 + + /@vue/compiler-ssr@3.4.27: + resolution: + { + integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw== + } + dependencies: + '@vue/compiler-dom': 3.4.27 + '@vue/shared': 3.4.27 + + /@vue/shared@3.4.27: + resolution: + { + integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA== + } + + /@yarnpkg/lockfile@1.0.2: + resolution: + { + integrity: sha512-MqJ00WXw89ga0rK6GZkdmmgv3bAsxpJixyTthjcix73O44pBqotyU2BejBkLuIsaOBI6SEu77vAnSyLe5iIHkw== + } + + /@zkochan/cmd-shim@5.4.1: + resolution: + { + integrity: sha512-odWb1qUzt0dIOEUPyWBEpFDYQPRjEMr/dbHHAfgBkVkYR9aO7Zo+I7oYWrXIxl+cKlC7+49ftPm8uJxL1MA9kw== + } + engines: { node: '>=10.13' } + dependencies: + cmd-extension: 1.0.2 + graceful-fs: 4.2.11 + is-windows: 1.0.2 + + /acorn-jsx@5.3.2(acorn@8.11.3): + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + } + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.11.3 + dev: true + + /acorn@8.11.3: + resolution: + { + integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== + } + engines: { node: '>=0.4.0' } + hasBin: true + 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 + + /ajv-draft-04@1.0.0(ajv@8.13.0): + resolution: + { + integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw== + } + peerDependencies: + ajv: ^8.5.0 + peerDependenciesMeta: + ajv: + optional: true + dependencies: + ajv: 8.13.0 + + /ajv-formats@3.0.1: + resolution: + { + integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ== + } + dependencies: + ajv: 8.13.0 + + /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 + + /ajv@8.13.0: + resolution: + { + integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA== + } + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + + /ansi-align@3.0.1: + resolution: + { + integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== + } + dependencies: + string-width: 4.2.3 + + /ansi-escapes@4.3.2: + resolution: + { + integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + } + engines: { node: '>=8' } + dependencies: + type-fest: 0.21.3 + + /ansi-regex@4.1.1: + resolution: + { + integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + } + engines: { node: '>=6' } + dev: true + + /ansi-regex@5.0.1: + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + } + engines: { node: '>=8' } + + /ansi-styles@3.2.1: + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + } + engines: { node: '>=4' } + dependencies: + color-convert: 1.9.3 + + /ansi-styles@4.3.0: + 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 + + /any-promise@1.3.0: + resolution: + { + integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + } + + /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 + + /argparse@1.0.10: + resolution: + { + integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + } + dependencies: + sprintf-js: 1.0.3 + + /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' } + + /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-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.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 + + /array.prototype.tosorted@1.1.3: + resolution: + { + integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg== + } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + 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 + + /arrify@1.0.1: + resolution: + { + integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + } + engines: { node: '>=0.10.0' } + + /arrify@2.0.1: + resolution: + { + integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== + } + engines: { node: '>=8' } + + /asap@2.0.6: + resolution: + { + integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== + } + + /asynckit@0.4.0: + resolution: + { + integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + } + + /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 + + /babel-jest@29.7.0(@babel/core@7.24.5): + 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.24.5 + '@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.24.5) + 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.24.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.24.0 + '@babel/types': 7.24.5 + '@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.24.5): + resolution: + { + integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== + } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.5 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5) + dev: true + + /babel-preset-jest@29.6.3(@babel/core@7.24.5): + 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.24.5 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5) + dev: true + + /balanced-match@1.0.2: + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + } + + /base64-js@1.5.1: + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + } + + /better-path-resolve@1.0.0: + resolution: + { + integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g== + } + engines: { node: '>=4' } + dependencies: + is-windows: 1.0.2 + + /bl@4.1.0: + resolution: + { + integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + } + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + + /boxen@5.1.2: + resolution: + { + integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== + } + engines: { node: '>=10' } + dependencies: + ansi-align: 3.0.1 + camelcase: 6.3.0 + chalk: 4.1.2 + cli-boxes: 2.2.1 + string-width: 4.2.3 + type-fest: 0.20.2 + widest-line: 3.1.0 + wrap-ansi: 7.0.0 + + /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 + + /browserslist@4.23.0: + resolution: + { + integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + hasBin: true + dependencies: + caniuse-lite: 1.0.30001618 + electron-to-chromium: 1.4.770 + node-releases: 2.0.14 + update-browserslist-db: 1.0.16(browserslist@4.23.0) + dev: true + + /bser@2.1.1: + resolution: + { + integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + } + dependencies: + node-int64: 0.4.0 + dev: true + + /buffer-from@1.1.2: + resolution: + { + integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + } + dev: true + + /buffer@5.7.1: + resolution: + { + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + } + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + /builtin-modules@1.1.1: + resolution: + { + integrity: sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ== + } + engines: { node: '>=0.10.0' } + dev: true + + /builtin-modules@3.1.0: + resolution: + { + integrity: sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== + } + engines: { node: '>=6' } + + /builtins@1.0.3: + resolution: + { + integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== + } + + /cacheable-lookup@5.0.4: + resolution: + { + integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== + } + engines: { node: '>=10.6.0' } + + /cacheable-request@7.0.4: + resolution: + { + integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg== + } + engines: { node: '>=8' } + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.1.1 + keyv: 4.5.4 + lowercase-keys: 2.0.0 + normalize-url: 6.1.0 + responselike: 2.0.1 + + /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.4 + set-function-length: 1.2.2 + dev: true + + /callsite-record@4.1.5: + resolution: + { + integrity: sha512-OqeheDucGKifjQRx524URgV4z4NaKjocGhygTptDea+DLROre4ZEecA4KXDq+P7qlGCohYVNOh3qr+y5XH5Ftg== + } + dependencies: + '@devexpress/error-stack-parser': 2.0.6 + '@types/lodash': 4.17.1 + callsite: 1.0.0 + chalk: 2.4.2 + highlight-es: 1.0.3 + lodash: 4.17.21 + pinkie-promise: 2.0.1 + + /callsite@1.0.0: + resolution: + { + integrity: sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ== + } + + /callsites@3.1.0: + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + } + engines: { node: '>=6' } + + /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 + + /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.30001618: + resolution: + { + integrity: sha512-p407+D1tIkDvsEAPS22lJxLQQaG8OTBEqo0KhzfABGk0TU4juBNDSfH0hyAp/HRyx+M8L17z/ltyhxh27FTfQg== + } + 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 + + /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== + } + + /chownr@2.0.0: + resolution: + { + integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + } + engines: { node: '>=10' } + + /ci-info@2.0.0: + resolution: + { + integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + } + + /ci-info@3.9.0: + resolution: + { + integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== + } + engines: { node: '>=8' } + dev: true + + /cjs-module-lexer@1.3.1: + resolution: + { + integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q== + } + dev: true + + /cli-boxes@2.2.1: + resolution: + { + integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== + } + engines: { node: '>=6' } + + /cli-cursor@3.1.0: + resolution: + { + integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + } + engines: { node: '>=8' } + dependencies: + restore-cursor: 3.1.0 + + /cli-spinners@2.9.2: + resolution: + { + integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== + } + engines: { node: '>=6' } + + /cli-table@0.3.11: + resolution: + { + integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ== + } + engines: { node: '>= 0.2.0' } + dependencies: + colors: 1.0.3 + + /cli-width@3.0.0: + resolution: + { + integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + } + engines: { node: '>= 10' } + + /cliui@7.0.4: + resolution: + { + integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + } + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + /clone-response@1.0.3: + resolution: + { + integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== + } + dependencies: + mimic-response: 1.0.1 + + /clone@1.0.4: + resolution: + { + integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + } + engines: { node: '>=0.8' } + + /cmd-extension@1.0.2: + resolution: + { + integrity: sha512-iWDjmP8kvsMdBmLTHxFaqXikO8EdFRDfim7k6vUHglY/2xJ5jLrPsnQGijdfp4U+sr/BeecG0wKm02dSIAeQ1g== + } + engines: { node: '>=10' } + + /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(@types/node@18.17.15): + resolution: + { + integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== + } + peerDependencies: + '@types/node': '>=12' + dependencies: + '@types/node': 18.17.15 + 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== + } + + /colors@1.0.3: + resolution: + { + integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw== + } + engines: { node: '>=0.1.90' } + + /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 + + /comment-parser@1.3.0: + resolution: + { + integrity: sha512-hRpmWIKgzd81vn0ydoWoyPoALEOnF4wt8yKD35Ib1D6XC2siLiYaiqfGkYrunuKdsXGwpBpHU3+9r+RVw2NZfA== + } + engines: { node: '>= 12.0.0' } + dev: true + + /concat-map@0.0.1: + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + } + + /configstore@5.0.1: + resolution: + { + integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== + } + engines: { node: '>=8' } + dependencies: + dot-prop: 5.3.0 + graceful-fs: 4.2.11 + make-dir: 3.1.0 + unique-string: 2.0.0 + write-file-atomic: 3.0.3 + xdg-basedir: 4.0.0 + + /convert-source-map@2.0.0: + resolution: + { + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + } + dev: true + + /core-util-is@1.0.3: + resolution: + { + integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + } + + /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 + + /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 + + /crypto-random-string@2.0.0: + resolution: + { + integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== + } + engines: { node: '>=8' } + + /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 + + /debug@2.6.9: + resolution: + { + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + } + dependencies: + ms: 2.0.0 + dev: true + + /debug@3.2.7: + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + } + 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 + + /debuglog@1.0.1: + resolution: + { + integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw== + } + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + /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 + + /decamelize@1.2.0: + resolution: + { + integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + } + engines: { node: '>=0.10.0' } + + /decompress-response@6.0.0: + resolution: + { + integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + } + engines: { node: '>=10' } + dependencies: + mimic-response: 3.1.0 + + /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-extend@0.6.0: + resolution: + { + integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + } + engines: { node: '>=4.0.0' } + + /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 + + /defaults@1.0.4: + resolution: + { + integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + } + dependencies: + clone: 1.0.4 + + /defer-to-connect@2.0.1: + resolution: + { + integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== + } + engines: { node: '>=10' } + + /define-data-property@1.1.4: + resolution: + { + integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + } + engines: { node: '>= 0.4' } + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + gopd: 1.0.1 + 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' } + + /depcheck@1.4.7: + resolution: + { + integrity: sha512-1lklS/bV5chOxwNKA/2XUUk/hPORp8zihZsXflr8x0kLwmcZ9Y9BsS6Hs3ssvA+2wUVbG0U2Ciqvm1SokNjPkA== + } + engines: { node: '>=10' } + hasBin: true + dependencies: + '@babel/parser': 7.24.5 + '@babel/traverse': 7.24.5 + '@vue/compiler-sfc': 3.4.27 + callsite: 1.0.0 + camelcase: 6.3.0 + cosmiconfig: 7.1.0 + debug: 4.3.4 + deps-regex: 0.2.0 + findup-sync: 5.0.0 + ignore: 5.3.1 + is-core-module: 2.13.1 + js-yaml: 3.14.1 + json5: 2.2.3 + lodash: 4.17.21 + minimatch: 7.4.6 + multimatch: 5.0.0 + please-upgrade-node: 3.2.0 + readdirp: 3.6.0 + require-package-name: 2.0.1 + resolve: 1.22.8 + resolve-from: 5.0.0 + semver: 7.5.4 + yargs: 16.2.0 + transitivePeerDependencies: + - supports-color + + /dependency-path@9.2.8: + resolution: + { + integrity: sha512-S0OhIK7sIyAsph8hVH/LMCTDL3jozKtlrPx3dMQrlE2nAlXTquTT+AcOufphDMTQqLkfn4acvfiem9I1IWZ4jQ== + } + engines: { node: '>=14.6' } + dependencies: + '@pnpm/crypto.base32-hash': 1.0.1 + '@pnpm/types': 8.9.0 + encode-registry: 3.0.1 + semver: 7.5.4 + + /deps-regex@0.2.0: + resolution: + { + integrity: sha512-PwuBojGMQAYbWkMXOY9Pd/NWCDNHVH12pnS7WHqZkTSeMESe4hwnKKRp0yR87g37113x4JPbo/oIvXY+s/f56Q== + } + + /detect-file@1.0.0: + resolution: + { + integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q== + } + engines: { node: '>=0.10.0' } + + /detect-indent@6.1.0: + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + } + engines: { node: '>=8' } + + /detect-newline@3.1.0: + resolution: + { + integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + } + engines: { node: '>=8' } + dev: true + + /dezalgo@1.0.4: + resolution: + { + integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig== + } + dependencies: + asap: 2.0.6 + wrappy: 1.0.2 + + /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@2.1.0: + resolution: + { + integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + } + engines: { node: '>=0.10.0' } + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine@3.0.0: + resolution: + { + integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + } + engines: { node: '>=6.0.0' } + dependencies: + esutils: 2.0.3 + dev: true + + /dot-prop@5.3.0: + resolution: + { + integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + } + engines: { node: '>=8' } + dependencies: + is-obj: 2.0.0 + + /electron-to-chromium@1.4.770: + resolution: + { + integrity: sha512-ONwOsDiVvV07CMsyH4+dEaZ9L79HMH/ODHnDS3GkIhgNqdDHJN2C18kFb0fBj0RXpQywsPJl6k2Pqg1IY4r1ig== + } + 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== + } + + /encode-registry@3.0.1: + resolution: + { + integrity: sha512-6qOwkl1g0fv0DN3Y3ggr2EaZXN71aoAqPp3p/pVaWSBSIo+YjLOWN61Fva43oVyQNPf7kgm8lkudzlzojwE2jw== + } + engines: { node: '>=10' } + dependencies: + mem: 8.1.1 + + /end-of-stream@1.4.4: + resolution: + { + integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + } + dependencies: + once: 1.4.0 + + /entities@4.5.0: + resolution: + { + integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + } + engines: { node: '>=0.12' } + + /error-ex@1.3.2: + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + } + dependencies: + is-arrayish: 0.2.1 + + /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.1 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.2 + 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' } + 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-iterator-helpers@1.0.19: + resolution: + { + integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw== + } + 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-set-tostringtag: 2.0.3 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + globalthis: 1.0.4 + has-property-descriptors: 1.0.2 + has-proto: 1.0.3 + has-symbols: 1.0.3 + internal-slot: 1.0.7 + iterator.prototype: 1.1.2 + safe-array-concat: 1.1.2 + 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.2 + 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 + + /escalade@3.1.2: + resolution: + { + integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + } + engines: { node: '>=6' } + + /escape-goat@2.1.1: + resolution: + { + integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== + } + engines: { node: '>=8' } + + /escape-string-regexp@1.0.5: + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + } + engines: { node: '>=0.8.0' } + + /escape-string-regexp@2.0.0: + resolution: + { + integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + } + engines: { node: '>=8' } + dev: true + + /escape-string-regexp@4.0.0: + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + } + engines: { node: '>=10' } + dev: true + + /eslint-import-resolver-node@0.3.9: + resolution: + { + integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== + } + dependencies: + debug: 3.2.7 + is-core-module: 2.13.1 + resolve: 1.22.8 + dev: true + + /eslint-module-utils@2.8.1(eslint@8.57.0): + resolution: + { + integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q== + } + engines: { node: '>=4' } + peerDependencies: + eslint: '*' + peerDependenciesMeta: + eslint: + optional: true + dependencies: + debug: 3.2.7 + eslint: 8.57.0 + dev: true + + /eslint-plugin-deprecation@2.0.0(eslint@8.57.0)(typescript@5.4.5): + resolution: + { + integrity: sha512-OAm9Ohzbj11/ZFyICyR5N6LbOIvQMp7ZU2zI7Ej0jIc8kiGUERXPNMfw2QqqHD1ZHtjMub3yPZILovYEYucgoQ== + } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: ^4.2.4 || ^5.0.0 + dependencies: + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.5) + eslint: 8.57.0 + tslib: 2.6.2 + tsutils: 3.21.0(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-header@3.1.1(eslint@8.57.0): + resolution: + { + integrity: sha512-9vlKxuJ4qf793CmeeSrZUvVClw6amtpghq3CuWcB5cUNnWHQhgcqy5eF8oVKFk1G3Y/CbchGfEaw3wiIJaNmVg== + } + peerDependencies: + eslint: '>=7.7.0' + dependencies: + eslint: 8.57.0 + dev: true + + /eslint-plugin-import@2.25.4(eslint@8.57.0): + resolution: + { + integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA== + } + engines: { node: '>=4' } + peerDependencies: + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + dependencies: + array-includes: 3.1.8 + array.prototype.flat: 1.3.2 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 8.57.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.1(eslint@8.57.0) + has: 1.0.4 + is-core-module: 2.13.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.2.0 + resolve: 1.22.8 + tsconfig-paths: 3.15.0 + dev: true + + /eslint-plugin-jsdoc@37.6.1(eslint@8.57.0): + resolution: + { + integrity: sha512-Y9UhH9BQD40A9P1NOxj59KrSLZb9qzsqYkLCZv30bNeJ7C9eaumTWhh9beiGqvK7m821Hj1dTsZ5LOaFIUTeTg== + } + engines: { node: ^12 || ^14 || ^16 || ^17 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@es-joy/jsdoccomment': 0.17.0 + comment-parser: 1.3.0 + debug: 4.3.4 + escape-string-regexp: 4.0.0 + eslint: 8.57.0 + esquery: 1.5.0 + regextras: 0.8.0 + semver: 7.6.2 + spdx-expression-parse: 3.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-promise@6.1.1(eslint@8.57.0): + resolution: + { + integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.57.0 + dev: true + + /eslint-plugin-react-hooks@4.3.0(eslint@8.57.0): + resolution: + { + integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA== + } + engines: { node: '>=10' } + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 8.57.0 + dev: true + + /eslint-plugin-react@7.33.2(eslint@8.57.0): + resolution: + { + integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== + } + engines: { node: '>=4' } + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.8 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.3 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.19 + eslint: 8.57.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.8 + object.hasown: 1.1.4 + object.values: 1.2.0 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.11 + dev: true + + /eslint-plugin-tsdoc@0.3.0: + resolution: + { + integrity: sha512-0MuFdBrrJVBjT/gyhkP2BqpD0np1NxNLfQ38xXDlSs/KVVpKI2A6vN7jx2Rve/CyUsvOsMGwp9KKrinv7q9g3A== + } + dependencies: + '@microsoft/tsdoc': 0.15.0 + '@microsoft/tsdoc-config': 0.17.0 + dev: true + + /eslint-scope@7.2.2: + resolution: + { + integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-visitor-keys@3.4.3: + resolution: + { + integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /eslint@8.57.0: + resolution: + { + integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.57.0 + '@humanwhocodes/config-array': 0.11.14 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.24.0 + graphemer: 1.4.0 + ignore: 5.3.1 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@9.6.1: + resolution: + { + integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) + eslint-visitor-keys: 3.4.3 + dev: true + + /esprima@4.0.1: + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + } + engines: { node: '>=4' } + hasBin: 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@5.3.0: + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + } + engines: { node: '>=4.0' } + dev: true + + /estree-walker@2.0.2: + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + } + + /esutils@2.0.3: + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + } + engines: { node: '>=0.10.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' } + dev: true + + /expand-tilde@2.0.2: + resolution: + { + integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw== + } + engines: { node: '>=0.10.0' } + dependencies: + homedir-polyfill: 1.0.3 + + /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 + + /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 + + /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== + } + dev: true + + /fast-levenshtein@2.0.6: + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + } + dev: true + + /fastq@1.17.1: + resolution: + { + integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + } + dependencies: + reusify: 1.0.4 + + /fb-watchman@2.0.2: + resolution: + { + integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + } + dependencies: + bser: 2.1.1 + dev: true + + /figures@3.0.0: + resolution: + { + integrity: sha512-HKri+WoWoUgr83pehn/SIgLOMZ9nAWC6dcGj26RY2R4F50u4+RTUz0RCrUlOV3nKRAICW1UGzyb+kcX2qK1S/g== + } + engines: { node: '>=8' } + dependencies: + escape-string-regexp: 1.0.5 + + /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 + + /fill-range@7.0.1: + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + } + engines: { node: '>=8' } + dependencies: + to-regex-range: 5.0.1 + + /find-up@4.1.0: + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + } + engines: { node: '>=8' } + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + /find-up@5.0.0: + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + } + engines: { node: '>=10' } + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + /find-yarn-workspace-root2@1.2.16: + resolution: + { + integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA== + } + dependencies: + micromatch: 4.0.5 + pkg-dir: 4.2.0 + + /findup-sync@5.0.0: + resolution: + { + integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ== + } + engines: { node: '>= 10.13.0' } + dependencies: + detect-file: 1.0.0 + is-glob: 4.0.3 + micromatch: 4.0.5 + resolve-dir: 1.0.1 + + /flat-cache@3.2.0: + resolution: + { + integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 + rimraf: 3.0.2 + dev: true + + /flatted@3.3.1: + resolution: + { + integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + } + dev: true + + /for-each@0.3.3: + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + } + dependencies: + is-callable: 1.2.7 + 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 + + /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 + + /fs-minipass@2.1.0: + resolution: + { + integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + } + engines: { node: '>= 8' } + dependencies: + minipass: 3.3.6 + + /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 + dev: true + optional: 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 + + /functions-have-names@1.2.3: + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + } + 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.* } + + /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.3 + has-symbols: 1.0.3 + hasown: 2.0.2 + dev: true + + /get-package-type@0.1.0: + resolution: + { + integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + } + engines: { node: '>=8.0.0' } + dev: true + + /get-stream@5.2.0: + resolution: + { + integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + } + engines: { node: '>=8' } + dependencies: + pump: 3.0.0 + + /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 + + /git-repo-info@2.1.1: + resolution: + { + integrity: sha512-8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg== + } + engines: { node: '>= 4.0' } + + /giturl@1.0.3: + resolution: + { + integrity: sha512-qVDEXufVtYUzYqI5hoDUONh9GCEPi0n+e35KNDafdsNt9fPxB0nvFW/kFiw7W42wkg8TUyhBqb+t24yyaoc87A== + } + engines: { node: '>= 0.10.0' } + + /glob-escape@0.0.2: + resolution: + { + integrity: sha512-L/cXYz8x7qer1HAyUQ+mbjcUsJVdpRxpAf7CwqHoNBs9vTpABlGfNN4tzkDxt+u3Z7ZncVyKlCNPtzb0R/7WbA== + } + engines: { node: '>= 0.10' } + + /glob-parent@5.1.2: + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + } + engines: { node: '>= 6' } + dependencies: + is-glob: 4.0.3 + + /glob-parent@6.0.2: + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + } + engines: { node: '>=10.13.0' } + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-to-regexp@0.4.1: + resolution: + { + integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + } + 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 + + /global-dirs@3.0.1: + resolution: + { + integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== + } + engines: { node: '>=10' } + dependencies: + ini: 2.0.0 + + /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 + + /global-modules@2.0.0: + resolution: + { + integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + } + engines: { node: '>=6' } + dependencies: + global-prefix: 3.0.0 + + /global-prefix@1.0.2: + 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 + + /global-prefix@3.0.0: + resolution: + { + integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + } + engines: { node: '>=6' } + dependencies: + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 + + /globals@11.12.0: + resolution: + { + integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + } + engines: { node: '>=4' } + + /globals@13.24.0: + resolution: + { + integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== + } + engines: { node: '>=8' } + dependencies: + type-fest: 0.20.2 + dev: true + + /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: + 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.1 + merge2: 1.4.1 + slash: 3.0.0 + + /gopd@1.0.1: + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + } + dependencies: + get-intrinsic: 1.2.4 + dev: true + + /got@11.8.6: + resolution: + { + integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== + } + engines: { node: '>=10.19.0' } + dependencies: + '@sindresorhus/is': 4.6.0 + '@szmarczak/http-timer': 4.0.6 + '@types/cacheable-request': 6.0.3 + '@types/responselike': 1.0.3 + cacheable-lookup: 5.0.4 + cacheable-request: 7.0.4 + decompress-response: 6.0.0 + http2-wrapper: 1.0.3 + lowercase-keys: 2.0.0 + p-cancelable: 2.1.1 + responselike: 2.0.1 + + /graceful-fs@4.2.11: + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + } + + /graceful-fs@4.2.4: + resolution: + { + integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== + } + + /graphemer@1.4.0: + resolution: + { + integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + } + dev: true + + /hard-rejection@2.1.0: + resolution: + { + integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== + } + engines: { node: '>=6' } + + /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' } + + /has-flag@4.0.0: + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + } + engines: { node: '>=8' } + + /has-property-descriptors@1.0.2: + resolution: + { + integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + } + dependencies: + es-define-property: 1.0.0 + dev: true + + /has-proto@1.0.3: + resolution: + { + integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + } + 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.2: + resolution: + { + integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + } + engines: { node: '>= 0.4' } + dependencies: + has-symbols: 1.0.3 + dev: true + + /has-yarn@2.1.0: + resolution: + { + integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== + } + engines: { node: '>=8' } + + /has@1.0.4: + resolution: + { + integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ== + } + engines: { node: '>= 0.4.0' } + dev: true + + /hasown@2.0.2: + resolution: + { + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + } + engines: { node: '>= 0.4' } + dependencies: + function-bind: 1.1.2 + + /highlight-es@1.0.3: + resolution: + { + integrity: sha512-s/SIX6yp/5S1p8aC/NRDC1fwEb+myGIfp8/TzZz0rtAv8fzsdX7vGl3Q1TrXCsczFq8DI3CBFBCySPClfBSdbg== + } + dependencies: + chalk: 2.4.2 + is-es2016-keyword: 1.0.0 + js-tokens: 3.0.2 + + /homedir-polyfill@1.0.3: + resolution: + { + integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== + } + engines: { node: '>=0.10.0' } + dependencies: + parse-passwd: 1.0.0 + + /hosted-git-info@2.8.9: + resolution: + { + integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + } + + /hosted-git-info@4.1.0: + resolution: + { + integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== + } + engines: { node: '>=10' } + dependencies: + lru-cache: 6.0.0 + + /html-escaper@2.0.2: + resolution: + { + integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + } + dev: true + + /http-cache-semantics@4.1.1: + resolution: + { + integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== + } + + /http2-wrapper@1.0.3: + resolution: + { + integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg== + } + engines: { node: '>=10.19.0' } + dependencies: + quick-lru: 5.1.1 + resolve-alpn: 1.2.1 + + /https-proxy-agent@5.0.1: + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + } + engines: { node: '>= 6' } + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + /human-signals@2.1.0: + resolution: + { + integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + } + engines: { node: '>=10.17.0' } + + /iconv-lite@0.4.24: + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + } + engines: { node: '>=0.10.0' } + dependencies: + safer-buffer: 2.1.2 + + /ieee754@1.2.1: + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + } + + /ignore-walk@3.0.4: + resolution: + { + integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ== + } + dependencies: + minimatch: 3.0.8 + + /ignore@5.1.9: + resolution: + { + integrity: sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ== + } + engines: { node: '>= 4' } + + /ignore@5.3.1: + resolution: + { + integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + } + engines: { node: '>= 4' } + + /immediate@3.0.6: + resolution: + { + integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ== + } + + /import-fresh@3.3.0: + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + } + engines: { node: '>=6' } + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + /import-lazy@2.1.0: + resolution: + { + integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A== + } + engines: { node: '>=4' } + + /import-lazy@4.0.0: + resolution: + { + integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== + } + engines: { node: '>=8' } + + /imurmurhash@0.1.4: + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + } + engines: { node: '>=0.8.19' } + + /indent-string@4.0.0: + resolution: + { + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + } + engines: { node: '>=8' } + + /inflight@1.0.6: + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + } + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + /inherits@2.0.4: + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + } + + /ini@1.3.8: + resolution: + { + integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + } + + /ini@2.0.0: + resolution: + { + integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== + } + engines: { node: '>=10' } + + /inquirer@7.3.3: + resolution: + { + integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== + } + engines: { node: '>=8.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.0.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + run-async: 2.4.1 + rxjs: 6.6.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + + /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 + + /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== + } + + /is-async-function@2.0.0: + resolution: + { + integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.2 + dev: true + + /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@2.0.0: + resolution: + { + integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + } + hasBin: true + dependencies: + ci-info: 2.0.0 + + /is-core-module@2.13.1: + resolution: + { + integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== + } + dependencies: + hasown: 2.0.2 + + /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-es2016-keyword@1.0.0: + resolution: + { + integrity: sha512-JtZWPUwjdbQ1LIo9OSZ8MdkWEve198ors27vH+RzUUvZXXZkzXCxFnlUhzWYxy5IexQSRiXVw9j2q/tHMmkVYQ== + } + + /is-extglob@2.1.1: + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + } + engines: { node: '>=0.10.0' } + + /is-finalizationregistry@1.0.2: + resolution: + { + integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== + } + dependencies: + call-bind: 1.0.7 + dev: true + + /is-fullwidth-code-point@3.0.0: + 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' } + dev: true + + /is-generator-function@1.0.10: + resolution: + { + integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.2 + dev: true + + /is-glob@4.0.3: + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + } + engines: { node: '>=0.10.0' } + dependencies: + is-extglob: 2.1.1 + + /is-installed-globally@0.4.0: + resolution: + { + integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== + } + engines: { node: '>=10' } + dependencies: + global-dirs: 3.0.1 + is-path-inside: 3.0.3 + + /is-interactive@1.0.0: + resolution: + { + integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + } + engines: { node: '>=8' } + + /is-map@2.0.3: + resolution: + { + integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + } + engines: { node: '>= 0.4' } + dev: true + + /is-negative-zero@2.0.3: + resolution: + { + integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== + } + engines: { node: '>= 0.4' } + dev: true + + /is-npm@5.0.0: + resolution: + { + integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== + } + engines: { node: '>=10' } + + /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' } + + /is-obj@2.0.0: + resolution: + { + integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + } + engines: { node: '>=8' } + + /is-path-inside@3.0.3: + resolution: + { + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + } + engines: { node: '>=8' } + + /is-plain-obj@1.1.0: + resolution: + { + integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== + } + engines: { node: '>=0.10.0' } + + /is-plain-obj@2.1.0: + resolution: + { + integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + } + engines: { node: '>=8' } + + /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-set@2.0.3: + resolution: + { + integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== + } + engines: { node: '>= 0.4' } + 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-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 + + /is-symbol@1.0.4: + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + } + engines: { node: '>= 0.4' } + dependencies: + has-symbols: 1.0.3 + 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== + } + + /is-unicode-supported@0.1.0: + resolution: + { + integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + } + engines: { node: '>=10' } + + /is-weakmap@2.0.2: + resolution: + { + integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + } + engines: { node: '>= 0.4' } + dev: true + + /is-weakref@1.0.2: + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + } + dependencies: + call-bind: 1.0.7 + dev: true + + /is-weakset@2.0.3: + resolution: + { + integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + dev: true + + /is-windows@1.0.2: + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + } + engines: { node: '>=0.10.0' } + + /is-yarn-global@0.3.0: + resolution: + { + integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== + } + + /isarray@1.0.0: + resolution: + { + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + } + + /isarray@2.0.5: + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + } + dev: true + + /isexe@2.0.0: + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + } + + /istanbul-lib-coverage@3.2.2: + resolution: + { + integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== + } + engines: { node: '>=8' } + dev: true + + /istanbul-lib-instrument@5.2.1: + resolution: + { + integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + } + engines: { node: '>=8' } + dependencies: + '@babel/core': 7.24.5 + '@babel/parser': 7.24.5 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + 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.7: + resolution: + { + integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== + } + engines: { node: '>=8' } + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + dev: true + + /iterator.prototype@1.1.2: + resolution: + { + integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w== + } + dependencies: + define-properties: 1.2.1 + get-intrinsic: 1.2.4 + has-symbols: 1.0.3 + reflect.getprototypeof: 1.0.6 + set-function-name: 2.0.2 + dev: true + + /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(@types/node@18.17.15) + '@jest/types': 29.6.3 + '@types/node': 18.17.15 + 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 + dev: true + + /jest-config@29.5.0(@types/node@18.17.15): + 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.24.5 + '@jest/test-sequencer': 29.7.0(@types/node@18.17.15) + '@jest/types': 29.6.3 + '@types/node': 18.17.15 + babel-jest: 29.7.0(@babel/core@7.24.5) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + 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.5.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 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + 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-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.17.15 + 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.17.15 + jest-mock: 29.7.0 + jest-util: 29.7.0 + 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': 18.17.15 + 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@12.3.0: + resolution: + { + integrity: sha512-+NmE5ogsEjFppEl90GChrk7xgz8xzvF0f+ZT5AnhW6suJC93gvQtmQjfyjDnE0Z2nXJqEkxF0WXlvjG/J+wn/g== + } + engines: { node: '>=10.12.0' } + dependencies: + mkdirp: 1.0.4 + strip-ansi: 5.2.0 + 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@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@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.2 + '@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': 18.17.15 + jest-util: 29.7.0 + dev: true + + /jest-pnp-resolver@1.2.3(jest-resolve@29.5.0): + resolution: + { + integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== + } + engines: { node: '>=6' } + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 29.5.0 + 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@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@29.5.0: + resolution: + { + integrity: sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.5.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-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(@types/node@18.17.15) + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.17.15 + 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(@types/node@18.17.15) + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 18.17.15 + chalk: 4.1.2 + cjs-module-lexer: 1.3.1 + collect-v8-coverage: 1.0.2(@types/node@18.17.15) + glob: 7.2.3 + 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@29.5.0: + resolution: + { + integrity: sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@babel/core': 7.24.5 + '@babel/generator': 7.24.5 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.5.0 + '@jest/types': 29.6.3 + '@types/babel__traverse': 7.20.5 + '@types/prettier': 2.7.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5) + 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.6.2 + transitivePeerDependencies: + - supports-color + 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.24.5 + '@babel/generator': 7.24.5 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5) + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5) + '@babel/types': 7.24.5 + '@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.24.5) + 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.6.2 + transitivePeerDependencies: + - supports-color + 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.17.15 + 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(@types/node@18.17.15) + '@jest/types': 29.6.3 + '@types/node': 18.17.15 + 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@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.17.15 + jest-util: 29.7.0 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + + /jju@1.4.0: + resolution: + { + integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA== + } + + /js-tokens@3.0.2: + resolution: + { + integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg== + } + + /js-tokens@4.0.0: + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + } + + /js-yaml@3.13.1: + resolution: + { + integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== + } + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + + /js-yaml@3.14.1: + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + } + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + + /js-yaml@4.1.0: + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + } + hasBin: true + dependencies: + argparse: 2.0.1 + + /jsdoc-type-pratt-parser@2.2.5: + resolution: + { + integrity: sha512-2a6eRxSxp1BW040hFvaJxhsCMI9lT8QB8t14t+NY5tC5rckIR0U9cr2tjOeaFirmEOy6MHvmJnY7zTBHq431Lw== + } + engines: { node: '>=12.0.0' } + dev: true + + /jsesc@2.5.2: + resolution: + { + integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + } + engines: { node: '>=4' } + hasBin: true + + /json-buffer@3.0.1: + resolution: + { + integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + } + + /json-parse-even-better-errors@2.3.1: + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + } + + /json-schema-traverse@0.4.1: + resolution: + { + integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + } + dev: true + + /json-schema-traverse@1.0.0: + resolution: + { + integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + } + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + } + 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 + + /jsonfile@4.0.0: + resolution: + { + integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + } + optionalDependencies: + graceful-fs: 4.2.11 + + /jsonpath-plus@4.0.0: + resolution: + { + integrity: sha512-e0Jtg4KAzDJKKwzbLaUtinCn0RZseWBVRTRGihSpvFlM3wTR7ExSp+PTdeTsDrLNJUe7L7JYJe8mblHX5SCT6A== + } + engines: { node: '>=10.0' } + + /jsx-ast-utils@3.3.5: + resolution: + { + integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== + } + engines: { node: '>=4.0' } + dependencies: + array-includes: 3.1.8 + array.prototype.flat: 1.3.2 + object.assign: 4.1.5 + object.values: 1.2.0 + dev: true + + /jszip@3.8.0: + resolution: + { + integrity: sha512-cnpQrXvFSLdsR9KR5/x7zdf6c3m8IhZfZzSblFEHSqBaVwD2nvJ4CuCKLyvKvwBgZm08CgfSoiTBQLm5WW9hGw== + } + dependencies: + lie: 3.3.0 + pako: 1.0.11 + readable-stream: 2.3.8 + set-immediate-shim: 1.0.1 + + /keyv@4.5.4: + resolution: + { + integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + } + dependencies: + json-buffer: 3.0.1 + + /kind-of@6.0.3: + resolution: + { + integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + } + engines: { node: '>=0.10.0' } + + /latest-version@5.1.0: + resolution: + { + integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== + } + engines: { node: '>=8' } + dependencies: + package-json: 7.0.0 + + /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 + + /lie@3.3.0: + resolution: + { + integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ== + } + dependencies: + immediate: 3.0.6 + + /lines-and-columns@1.2.4: + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + } + + /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 + + /load-yaml-file@0.2.0: + resolution: + { + integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw== + } + engines: { node: '>=6' } + dependencies: + graceful-fs: 4.2.11 + js-yaml: 3.13.1 + pify: 4.0.1 + strip-bom: 3.0.0 + + /locate-path@5.0.0: + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + } + engines: { node: '>=8' } + dependencies: + p-locate: 4.1.0 + + /locate-path@6.0.0: + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + } + engines: { node: '>=10' } + dependencies: + p-locate: 5.0.0 + + /lodash.merge@4.6.2: + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + } + dev: true + + /lodash@4.17.21: + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + } + + /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 + + /loose-envify@1.4.0: + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + } + hasBin: true + dependencies: + js-tokens: 4.0.0 + dev: true + + /lowercase-keys@2.0.0: + resolution: + { + integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== + } + engines: { node: '>=8' } + + /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 + + /magic-string@0.30.10: + resolution: + { + integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ== + } + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + + /make-dir@3.1.0: + resolution: + { + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + } + engines: { node: '>=8' } + dependencies: + semver: 6.3.1 + + /make-dir@4.0.0: + resolution: + { + integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== + } + engines: { node: '>=10' } + dependencies: + semver: 7.6.2 + dev: true + + /makeerror@1.0.12: + resolution: + { + integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + } + dependencies: + tmpl: 1.0.5 + dev: true + + /map-age-cleaner@0.1.3: + resolution: + { + integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + } + engines: { node: '>=6' } + dependencies: + p-defer: 1.0.0 + + /map-obj@1.0.1: + resolution: + { + integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== + } + engines: { node: '>=0.10.0' } + + /map-obj@4.3.0: + resolution: + { + integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== + } + engines: { node: '>=8' } + + /mem@8.1.1: + resolution: + { + integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA== + } + engines: { node: '>=10' } + dependencies: + map-age-cleaner: 0.1.3 + mimic-fn: 3.1.0 + + /meow@9.0.0: + resolution: + { + integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== + } + engines: { node: '>=10' } + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize: 1.2.0 + 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 + + /merge-stream@2.0.0: + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + } + + /merge2@1.4.1: + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + } + engines: { node: '>= 8' } + + /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' } + + /mime-types@2.1.35: + resolution: + { + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + } + engines: { node: '>= 0.6' } + dependencies: + mime-db: 1.52.0 + + /mimic-fn@2.1.0: + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + } + engines: { node: '>=6' } + + /mimic-fn@3.1.0: + resolution: + { + integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== + } + engines: { node: '>=8' } + + /mimic-response@1.0.1: + resolution: + { + integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + } + engines: { node: '>=4' } + + /mimic-response@3.1.0: + resolution: + { + integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + } + engines: { node: '>=10' } + + /min-indent@1.0.1: + resolution: + { + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + } + engines: { node: '>=4' } + + /minimatch@3.0.8: + resolution: + { + integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== + } + dependencies: + brace-expansion: 1.1.11 + + /minimatch@3.1.2: + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + } + dependencies: + brace-expansion: 1.1.11 + + /minimatch@7.4.6: + resolution: + { + integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw== + } + engines: { node: '>=10' } + dependencies: + brace-expansion: 2.0.1 + + /minimatch@9.0.3: + resolution: + { + integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== + } + engines: { node: '>=16 || 14 >=14.17' } + dependencies: + 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' } + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + + /minimist@1.2.8: + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + } + + /minipass@3.3.6: + resolution: + { + integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== + } + engines: { node: '>=8' } + dependencies: + yallist: 4.0.0 + + /minipass@5.0.0: + resolution: + { + integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== + } + engines: { node: '>=8' } + + /minizlib@2.1.2: + resolution: + { + integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + } + engines: { node: '>= 8' } + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + + /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 + + /ms@2.0.0: + resolution: + { + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + } + 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== + } + dev: true + + /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.1.2 + + /mute-stream@0.0.8: + resolution: + { + integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + } + + /mz@2.7.0: + resolution: + { + integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + } + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + + /nanoid@3.3.7: + resolution: + { + integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + hasBin: true + + /natural-compare@1.4.0: + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + } + dev: true + + /node-emoji@1.11.0: + resolution: + { + integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== + } + dependencies: + lodash: 4.17.21 + + /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 + + /node-int64@0.4.0: + resolution: + { + integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + } + dev: true + + /node-releases@2.0.14: + resolution: + { + integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== + } + 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 + + /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.5.4 + validate-npm-package-license: 3.0.4 + + /normalize-path@3.0.0: + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + } + engines: { node: '>=0.10.0' } + + /normalize-url@6.1.0: + resolution: + { + integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== + } + engines: { node: '>=10' } + + /npm-bundled@1.1.2: + resolution: + { + integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== + } + dependencies: + npm-normalize-package-bin: 1.0.1 + + /npm-check@6.0.1: + resolution: + { + integrity: sha512-tlEhXU3689VLUHYEZTS/BC61vfeN2xSSZwoWDT6WLuenZTpDmGmNT5mtl15erTR0/A15ldK06/NEKg9jYJ9OTQ== + } + engines: { node: '>=10.9.0' } + hasBin: true + dependencies: + callsite-record: 4.1.5 + chalk: 4.1.2 + co: 4.6.0 + depcheck: 1.4.7 + execa: 5.1.1 + giturl: 1.0.3 + global-modules: 2.0.0 + globby: 11.1.0 + inquirer: 7.3.3 + is-ci: 2.0.0 + lodash: 4.17.21 + meow: 9.0.0 + minimatch: 3.1.2 + node-emoji: 1.11.0 + ora: 5.4.1 + package-json: 7.0.0 + path-exists: 4.0.0 + pkg-dir: 5.0.0 + preferred-pm: 3.1.3 + rc-config-loader: 4.1.3 + semver: 7.5.4 + semver-diff: 3.1.1 + strip-ansi: 6.0.1 + text-table: 0.2.0 + throat: 6.0.2 + update-notifier: 5.1.0 + xtend: 4.0.2 + transitivePeerDependencies: + - supports-color + + /npm-normalize-package-bin@1.0.1: + resolution: + { + integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + } + + /npm-package-arg@6.1.1: + resolution: + { + integrity: sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg== + } + dependencies: + hosted-git-info: 2.8.9 + osenv: 0.1.5 + semver: 5.7.2 + validate-npm-package-name: 3.0.0 + + /npm-packlist@2.1.5: + resolution: + { + integrity: sha512-KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ== + } + engines: { node: '>=10' } + hasBin: true + dependencies: + glob: 7.2.3 + ignore-walk: 3.0.4 + npm-bundled: 1.1.2 + npm-normalize-package-bin: 1.0.1 + + /npm-run-path@4.0.1: + resolution: + { + integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + } + engines: { node: '>=8' } + dependencies: + path-key: 3.1.1 + + /object-assign@4.1.1: + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + } + engines: { node: '>=0.10.0' } + + /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.7 + define-properties: 1.2.1 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.entries@1.1.8: + resolution: + { + integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + 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.hasown@1.1.4: + resolution: + { + integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg== + } + engines: { node: '>= 0.4' } + dependencies: + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 + 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 + + /onetime@5.1.2: + resolution: + { + integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + } + engines: { node: '>=6' } + dependencies: + mimic-fn: 2.1.0 + + /optionator@0.9.4: + resolution: + { + integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== + } + engines: { node: '>= 0.8.0' } + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + 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 + + /os-homedir@1.0.2: + resolution: + { + integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== + } + engines: { node: '>=0.10.0' } + + /os-tmpdir@1.0.2: + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + } + engines: { node: '>=0.10.0' } + + /osenv@0.1.5: + resolution: + { + integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + } + dependencies: + os-homedir: 1.0.2 + os-tmpdir: 1.0.2 + + /p-cancelable@2.1.1: + resolution: + { + integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== + } + engines: { node: '>=8' } + + /p-defer@1.0.0: + resolution: + { + integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw== + } + engines: { node: '>=4' } + + /p-limit@2.3.0: + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + } + engines: { node: '>=6' } + dependencies: + p-try: 2.2.0 + + /p-limit@3.1.0: + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + } + engines: { node: '>=10' } + dependencies: + yocto-queue: 0.1.0 + + /p-locate@4.1.0: + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + } + engines: { node: '>=8' } + dependencies: + p-limit: 2.3.0 + + /p-locate@5.0.0: + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + } + engines: { node: '>=10' } + dependencies: + p-limit: 3.1.0 + + /p-reflect@2.1.0: + resolution: + { + integrity: sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg== + } + engines: { node: '>=8' } + + /p-settle@4.1.1: + resolution: + { + integrity: sha512-6THGh13mt3gypcNMm0ADqVNCcYa3BK6DWsuJWFCuEKP1rpY+OKGp7gaZwVmLspmic01+fsg/fN57MfvDzZ/PuQ== + } + engines: { node: '>=10' } + dependencies: + p-limit: 2.3.0 + p-reflect: 2.1.0 + + /p-try@2.2.0: + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + } + engines: { node: '>=6' } + + /package-json@7.0.0: + resolution: + { + integrity: sha512-CHJqc94AA8YfSLHGQT3DbvSIuE12NLFekpM4n7LRrAd3dOJtA911+4xe9q6nC3/jcKraq7nNS9VxgtT0KC+diA== + } + engines: { node: '>=12' } + dependencies: + got: 11.8.6 + registry-auth-token: 4.2.2 + registry-url: 5.1.0 + semver: 7.5.4 + + /pako@1.0.11: + resolution: + { + integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + } + + /parent-module@1.0.1: + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + } + engines: { node: '>=6' } + dependencies: + callsites: 3.1.0 + + /parse-json@5.2.0: + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + } + engines: { node: '>=8' } + dependencies: + '@babel/code-frame': 7.24.2 + 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' } + + /path-exists@4.0.0: + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + } + engines: { node: '>=8' } + + /path-is-absolute@1.0.1: + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + } + engines: { node: '>=0.10.0' } + + /path-key@3.1.1: + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + } + engines: { node: '>=8' } + + /path-parse@1.0.7: + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + } + + /path-type@4.0.0: + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + } + engines: { node: '>=8' } + + /picocolors@1.0.1: + resolution: + { + integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== + } + + /picomatch@2.3.1: + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + } + engines: { node: '>=8.6' } + + /pify@4.0.1: + resolution: + { + integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + } + engines: { node: '>=6' } + + /pinkie-promise@2.0.1: + resolution: + { + integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw== + } + engines: { node: '>=0.10.0' } + dependencies: + pinkie: 2.0.4 + + /pinkie@2.0.4: + resolution: + { + integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg== + } + engines: { node: '>=0.10.0' } + + /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 + + /pkg-dir@5.0.0: + resolution: + { + integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== + } + engines: { node: '>=10' } + dependencies: + find-up: 5.0.0 + + /please-upgrade-node@3.2.0: + resolution: + { + integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== + } + dependencies: + semver-compare: 1.0.0 + + /pnpm-sync-lib@0.2.9: + resolution: + { + integrity: sha512-qd2/crPxmpEXAWHlotOQfxQZ3a1fZIG4u73CiSPwPYDtd7Ithx7O3gtqzQb/0LXDEvk1NpL7u4xf7yEiUCqg3Q== + } + dependencies: + '@pnpm/dependency-path': 2.1.8 + yaml: 2.4.1 + + /possible-typed-array-names@1.0.0: + resolution: + { + integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + } + engines: { node: '>= 0.4' } + dev: true + + /postcss@8.4.38: + resolution: + { + integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== + } + engines: { node: ^10 || ^12 || >=14 } + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.1 + source-map-js: 1.2.0 + + /preferred-pm@3.1.3: + resolution: + { + integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w== + } + 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 + + /prelude-ls@1.2.1: + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + } + engines: { node: '>= 0.8.0' } + 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.3.1 + dev: true + + /process-nextick-args@2.0.1: + resolution: + { + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + } + + /prop-types@15.8.1: + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + 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 + + /punycode@2.3.1: + resolution: + { + integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + } + engines: { node: '>=6' } + + /pupa@2.1.1: + resolution: + { + integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== + } + engines: { node: '>=8' } + dependencies: + escape-goat: 2.1.1 + + /pure-rand@6.1.0: + resolution: + { + integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== + } + 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' } + + /quick-lru@5.1.1: + resolution: + { + integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== + } + engines: { node: '>=10' } + + /ramda@0.27.2: + resolution: + { + integrity: sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA== + } + + /rc-config-loader@4.1.3: + resolution: + { + integrity: sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w== + } + dependencies: + debug: 4.3.4 + js-yaml: 4.1.0 + json5: 2.2.3 + require-from-string: 2.0.2 + transitivePeerDependencies: + - supports-color + + /rc@1.2.8: + resolution: + { + integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + } + hasBin: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.8 + strip-json-comments: 2.0.1 + + /react-is@16.13.1: + resolution: + { + integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + } + dev: true + + /react-is@18.3.1: + resolution: + { + integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== + } + dev: true + + /read-package-json@2.1.2: + resolution: + { + integrity: sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA== + } + dependencies: + glob: 7.2.3 + json-parse-even-better-errors: 2.3.1 + normalize-package-data: 2.5.0 + npm-normalize-package-bin: 1.0.1 + + /read-package-tree@5.1.6: + resolution: + { + integrity: sha512-FCX1aT3GWyY658wzDICef4p+n0dB+ENRct8E/Qyvppj6xVpOYerBHfUu7OP5Rt1/393Tdglguf5ju5DEX4wZNg== + } + deprecated: The functionality that this package provided is now in @npmcli/arborist + dependencies: + debuglog: 1.0.1 + dezalgo: 1.0.4 + once: 1.4.0 + read-package-json: 2.1.2 + readdir-scoped-modules: 1.1.0 + + /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 + + /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 + + /read-yaml-file@2.1.0: + resolution: + { + integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ== + } + engines: { node: '>=10.13' } + dependencies: + js-yaml: 4.1.0 + strip-bom: 4.0.0 + + /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 + + /readdir-scoped-modules@1.1.0: + resolution: + { + integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw== + } + deprecated: This functionality has been moved to @npmcli/fs + dependencies: + debuglog: 1.0.1 + dezalgo: 1.0.4 + graceful-fs: 4.2.11 + once: 1.4.0 + + /readdirp@3.6.0: + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + } + engines: { node: '>=8.10.0' } + dependencies: + picomatch: 2.3.1 + + /redent@3.0.0: + resolution: + { + integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + } + engines: { node: '>=8' } + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + + /reflect.getprototypeof@1.0.6: + resolution: + { + integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg== + } + 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 + get-intrinsic: 1.2.4 + globalthis: 1.0.4 + which-builtin-type: 1.1.3 + dev: true + + /regexp.prototype.flags@1.5.2: + resolution: + { + integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + } + 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 + + /regextras@0.8.0: + resolution: + { + integrity: sha512-k519uI04Z3SaY0fLX843MRXnDeG2+vHOFsyhiPZvNLe7r8rD2YNRjq4BQLZZ0oAr2NrtvZlICsXysGNFPGa3CQ== + } + engines: { node: '>=0.1.14' } + dev: true + + /registry-auth-token@4.2.2: + resolution: + { + integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg== + } + engines: { node: '>=6.0.0' } + dependencies: + rc: 1.2.8 + + /registry-url@5.1.0: + resolution: + { + integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== + } + engines: { node: '>=8' } + dependencies: + rc: 1.2.8 + + /require-directory@2.1.1: + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + } + engines: { node: '>=0.10.0' } + + /require-from-string@2.0.2: + resolution: + { + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + } + engines: { node: '>=0.10.0' } + + /require-package-name@2.0.1: + resolution: + { + integrity: sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q== + } + + /resolve-alpn@1.2.1: + resolution: + { + integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== + } + + /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 + + /resolve-from@4.0.0: + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + } + engines: { node: '>=4' } + + /resolve-from@5.0.0: + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + } + engines: { node: '>=8' } + + /resolve.exports@2.0.2: + resolution: + { + integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== + } + engines: { node: '>=10' } + 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 + + /resolve@2.0.0-next.5: + resolution: + { + integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== + } + hasBin: true + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /responselike@2.0.1: + resolution: + { + integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw== + } + dependencies: + lowercase-keys: 2.0.0 + + /restore-cursor@3.1.0: + resolution: + { + integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + } + engines: { node: '>=8' } + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + + /reusify@1.0.4: + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + } + engines: { iojs: '>=1.0.0', node: '>=0.10.0' } + + /rfc4648@1.5.3: + resolution: + { + integrity: sha512-MjOWxM065+WswwnmNONOT+bD1nXzY9Km6u3kzvnx8F8/HXGZdz3T6e6vZJ8Q/RIMUSp/nxqjH3GwvJDy8ijeQQ== + } + + /rimraf@3.0.2: + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + } + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /run-async@2.4.1: + resolution: + { + integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + } + engines: { node: '>=0.12.0' } + + /run-parallel@1.2.0: + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + } + dependencies: + queue-microtask: 1.2.3 + + /rxjs@6.6.7: + resolution: + { + integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== + } + engines: { npm: '>=2.0.0' } + dependencies: + tslib: 1.14.1 + + /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== + } + + /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 + + /safer-buffer@2.1.2: + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + } + + /semver-compare@1.0.0: + resolution: + { + integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== + } + + /semver-diff@3.1.1: + resolution: + { + integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== + } + engines: { node: '>=8' } + dependencies: + semver: 6.3.1 + + /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 + + /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 + + /semver@7.6.2: + resolution: + { + integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w== + } + engines: { node: '>=10' } + hasBin: true + dev: true + + /set-function-length@1.2.2: + resolution: + { + integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + } + engines: { node: '>= 0.4' } + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + 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 + + /set-immediate-shim@1.0.1: + resolution: + { + integrity: sha512-Li5AOqrZWCVA2n5kryzEmqai6bKSIvpz5oUJHPVj6+dsbD3X1ixtsY5tEnsaNpH3pFAHmG8eIHUrtEtohrg+UQ== + } + engines: { node: '>=0.10.0' } + + /shebang-command@2.0.0: + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + } + engines: { node: '>=8' } + dependencies: + shebang-regex: 3.0.0 + + /shebang-regex@3.0.0: + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + } + engines: { node: '>=8' } + + /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.1 + dev: true + + /signal-exit@3.0.7: + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + } + + /slash@3.0.0: + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + } + engines: { node: '>=8' } + + /sort-keys@4.2.0: + resolution: + { + integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg== + } + engines: { node: '>=8' } + dependencies: + is-plain-obj: 2.1.0 + + /source-map-js@1.2.0: + resolution: + { + integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== + } + engines: { node: '>=0.10.0' } + + /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@0.6.1: + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + } + engines: { node: '>=0.10.0' } + dev: true + + /spdx-correct@3.2.0: + resolution: + { + integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + } + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.17 + + /spdx-exceptions@2.5.0: + resolution: + { + integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== + } + + /spdx-expression-parse@3.0.1: + resolution: + { + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + } + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.17 + + /spdx-license-ids@3.0.17: + resolution: + { + integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg== + } + + /sprintf-js@1.0.3: + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + } + + /ssri@8.0.1: + resolution: + { + integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== + } + engines: { node: '>= 8' } + dependencies: + minipass: 3.3.6 + + /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== + } + + /strict-uri-encode@2.0.0: + resolution: + { + integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== + } + engines: { node: '>=4' } + + /string-argv@0.3.2: + resolution: + { + integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== + } + engines: { node: '>=0.6.19' } + + /string-length@4.0.2: + resolution: + { + integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== + } + engines: { node: '>=10' } + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 + dev: true + + /string-width@4.2.3: + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + } + engines: { node: '>=8' } + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + /string.prototype.matchall@4.0.11: + resolution: + { + integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg== + } + 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 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.7 + regexp.prototype.flags: 1.5.2 + set-function-name: 2.0.2 + side-channel: 1.0.6 + 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 + + /string_decoder@1.3.0: + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + } + dependencies: + safe-buffer: 5.2.1 + + /strip-ansi@5.2.0: + resolution: + { + integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + } + engines: { node: '>=6' } + dependencies: + ansi-regex: 4.1.1 + dev: true + + /strip-ansi@6.0.1: + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + } + engines: { node: '>=8' } + dependencies: + ansi-regex: 5.0.1 + + /strip-bom@3.0.0: + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + } + engines: { node: '>=4' } + + /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' } + + /strip-indent@3.0.0: + resolution: + { + integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + } + engines: { node: '>=8' } + dependencies: + min-indent: 1.0.1 + + /strip-json-comments@2.0.1: + resolution: + { + integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + } + engines: { node: '>=0.10.0' } + + /strip-json-comments@3.1.1: + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + } + engines: { node: '>=8' } + + /supports-color@5.5.0: + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + } + engines: { node: '>=4' } + dependencies: + has-flag: 3.0.0 + + /supports-color@7.2.0: + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + } + engines: { node: '>=8' } + dependencies: + has-flag: 4.0.0 + + /supports-color@8.1.1: + 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' } + + /tapable@1.1.3: + resolution: + { + integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + } + engines: { node: '>=6' } + dev: true + + /tapable@2.2.1: + resolution: + { + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + } + engines: { node: '>=6' } + + /tar@6.2.1: + resolution: + { + integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== + } + engines: { node: '>=10' } + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + + /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.2.3 + minimatch: 3.1.2 + dev: true + + /text-table@0.2.0: + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + } + + /thenify-all@1.6.0: + resolution: + { + integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + } + engines: { node: '>=0.8' } + dependencies: + thenify: 3.3.1 + + /thenify@3.3.1: + resolution: + { + integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + } + dependencies: + any-promise: 1.3.0 + + /throat@6.0.2: + resolution: + { + integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ== + } + + /through@2.3.8: + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + } + + /tmp@0.0.33: + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + } + engines: { node: '>=0.6.0' } + dependencies: + os-tmpdir: 1.0.2 + + /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' } + + /to-regex-range@5.0.1: + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + } + engines: { node: '>=8.0' } + dependencies: + is-number: 7.0.0 + + /tr46@0.0.3: + resolution: + { + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + } + + /trim-newlines@3.0.1: + resolution: + { + integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== + } + engines: { node: '>=8' } + + /true-case-path@2.2.1: + resolution: + { + integrity: sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q== + } + + /ts-api-utils@1.3.0(typescript@4.9.5): + resolution: + { + integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== + } + engines: { node: '>=16' } + peerDependencies: + typescript: '>=4.2.0' + dependencies: + typescript: 4.9.5 + dev: true + + /ts-api-utils@1.3.0(typescript@5.4.5): + resolution: + { + integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== + } + engines: { node: '>=16' } + peerDependencies: + typescript: '>=4.2.0' + dependencies: + typescript: 5.4.5 + dev: true + + /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 + + /tslib@1.14.1: + resolution: + { + integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + } + + /tslib@2.6.2: + resolution: + { + integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + } + dev: true + + /tslint@5.20.1(typescript@4.9.5): + resolution: + { + integrity: sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg== + } + engines: { node: '>=4.8.0' } + hasBin: true + peerDependencies: + typescript: '>=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev' + dependencies: + '@babel/code-frame': 7.24.2 + builtin-modules: 1.1.1 + chalk: 2.4.2 + commander: 2.20.3 + diff: 4.0.2 + glob: 7.2.3 + js-yaml: 3.14.1 + minimatch: 3.1.2 + mkdirp: 0.5.6 + resolve: 1.22.8 + semver: 5.7.2 + tslib: 1.14.1 + tsutils: 2.29.0(typescript@4.9.5) + typescript: 4.9.5 + dev: true + + /tsutils@2.29.0(typescript@4.9.5): + resolution: + { + integrity: sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== + } + peerDependencies: + typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev' + dependencies: + tslib: 1.14.1 + typescript: 4.9.5 + dev: true + + /tsutils@3.21.0(typescript@5.4.5): + 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: 5.4.5 + 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.18.1: + resolution: + { + integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== + } + engines: { node: '>=10' } + + /type-fest@0.20.2: + resolution: + { + integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + } + engines: { node: '>=10' } + + /type-fest@0.21.3: + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + } + engines: { node: '>=10' } + + /type-fest@0.6.0: + resolution: + { + integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + } + engines: { node: '>=8' } + + /type-fest@0.8.1: + resolution: + { + integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + } + engines: { node: '>=8' } + + /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 + + /typescript@4.9.5: + resolution: + { + integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + } + engines: { node: '>=4.2.0' } + hasBin: true + dev: true + + /typescript@5.4.2: + resolution: + { + integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ== + } + engines: { node: '>=14.17' } + hasBin: true + dev: true + + /typescript@5.4.5: + resolution: + { + integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== + } + engines: { node: '>=14.17' } + hasBin: true + dev: true + + /unbox-primitive@1.0.2: + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + } + dependencies: + call-bind: 1.0.7 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unique-string@2.0.0: + resolution: + { + integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== + } + engines: { node: '>=8' } + dependencies: + crypto-random-string: 2.0.0 + + /universalify@0.1.2: + resolution: + { + integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + } + engines: { node: '>= 4.0.0' } + + /update-browserslist-db@1.0.16(browserslist@4.23.0): + resolution: + { + integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ== + } + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.23.0 + escalade: 3.1.2 + picocolors: 1.0.1 + dev: true + + /update-notifier@5.1.0: + resolution: + { + integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== + } + engines: { node: '>=10' } + dependencies: + boxen: 5.1.2 + chalk: 4.1.2 + configstore: 5.0.1 + has-yarn: 2.1.0 + import-lazy: 2.1.0 + is-ci: 2.0.0 + is-installed-globally: 0.4.0 + is-npm: 5.0.0 + is-yarn-global: 0.3.0 + latest-version: 5.1.0 + pupa: 2.1.1 + semver: 7.5.4 + semver-diff: 3.1.1 + xdg-basedir: 4.0.0 + + /uri-js@4.4.1: + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + } + dependencies: + punycode: 2.3.1 + + /util-deprecate@1.0.2: + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + } + + /uuid@8.3.2: + resolution: + { + integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + } + hasBin: true + + /v8-to-istanbul@9.2.0: + resolution: + { + integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA== + } + engines: { node: '>=10.12.0' } + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + '@types/istanbul-lib-coverage': 2.0.4 + 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 + + /validate-npm-package-name@3.0.0: + resolution: + { + integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== + } + dependencies: + builtins: 1.0.3 + + /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 + + /webidl-conversions@3.0.1: + resolution: + { + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + } + + /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-builtin-type@1.1.3: + resolution: + { + integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== + } + engines: { node: '>= 0.4' } + dependencies: + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.2 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.0.2 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.2 + which-typed-array: 1.1.15 + dev: true + + /which-collection@1.0.2: + resolution: + { + integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== + } + engines: { node: '>= 0.4' } + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.3 + 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 + + /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 + + /which@2.0.2: + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + } + engines: { node: '>= 8' } + hasBin: true + dependencies: + isexe: 2.0.0 + + /widest-line@3.1.0: + resolution: + { + integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== + } + engines: { node: '>=8' } + dependencies: + string-width: 4.2.3 + + /word-wrap@1.2.5: + resolution: + { + integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== + } + engines: { node: '>=0.10.0' } + 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 + + /wrappy@1.0.2: + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + } + + /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 + + /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-yaml-file@4.2.0: + resolution: + { + integrity: sha512-LwyucHy0uhWqbrOkh9cBluZBeNVxzHjDaE9mwepZG3n3ZlbM4v3ndrFw51zW/NXYFFqP+QWZ72ihtLWTh05e4Q== + } + engines: { node: '>=10.13' } + dependencies: + js-yaml: 4.1.0 + write-file-atomic: 3.0.3 + + /xdg-basedir@4.0.0: + resolution: + { + integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== + } + engines: { node: '>=8' } + + /xml@1.0.1: + resolution: + { + integrity: sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw== + } + dev: true + + /xtend@4.0.2: + resolution: + { + integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + } + engines: { node: '>=0.4' } + + /y18n@5.0.8: + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + } + engines: { node: '>=10' } + + /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' } + + /yaml@2.4.1: + resolution: + { + integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg== + } + engines: { node: '>= 14' } + hasBin: true + + /yargs-parser@20.2.9: + resolution: + { + integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + } + engines: { node: '>=10' } + + /yargs@16.2.0: + resolution: + { + integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + } + engines: { node: '>=10' } + dependencies: + cliui: 7.0.4 + escalade: 3.1.2 + 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 + + /yocto-queue@0.1.0: + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + } + engines: { node: '>=10' } + + file:../../../apps/api-extractor(@types/node@18.17.15): + resolution: { directory: ../../../apps/api-extractor, type: directory } + id: file:../../../apps/api-extractor + name: '@microsoft/api-extractor' + hasBin: true + dependencies: + '@microsoft/api-extractor-model': file:../../../libraries/api-extractor-model(@types/node@18.17.15) + '@microsoft/tsdoc': 0.15.0 + '@microsoft/tsdoc-config': 0.17.0 + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@rushstack/rig-package': file:../../../libraries/rig-package + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + '@rushstack/ts-command-line': file:../../../libraries/ts-command-line(@types/node@18.17.15) + lodash: 4.17.21 + minimatch: 3.0.8 + resolve: 1.22.8 + semver: 7.5.4 + source-map: 0.6.1 + typescript: 5.4.2 + transitivePeerDependencies: + - '@types/node' + dev: true + + file:../../../apps/heft(@types/node@18.17.15): + resolution: { directory: ../../../apps/heft, type: directory } + id: file:../../../apps/heft + name: '@rushstack/heft' + engines: { node: '>=10.13.0' } + hasBin: true + dependencies: + '@rushstack/heft-config-file': file:../../../libraries/heft-config-file(@types/node@18.17.15) + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@rushstack/operation-graph': file:../../../libraries/operation-graph(@types/node@18.17.15) + '@rushstack/rig-package': file:../../../libraries/rig-package + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + '@rushstack/ts-command-line': file:../../../libraries/ts-command-line(@types/node@18.17.15) + '@types/tapable': 1.0.6 + fast-glob: 3.3.2 + git-repo-info: 2.1.1 + ignore: 5.1.9 + tapable: 1.1.3 + true-case-path: 2.2.1 + watchpack: 2.4.0 + transitivePeerDependencies: + - '@types/node' + dev: true + + file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@4.9.5): + resolution: { directory: ../../../eslint/eslint-config, type: directory } + id: file:../../../eslint/eslint-config + name: '@rushstack/eslint-config' + peerDependencies: + eslint: ^8.57.0 + typescript: '>=4.7.0' + dependencies: + '@rushstack/eslint-patch': file:../../../eslint/eslint-patch + '@rushstack/eslint-plugin': file:../../../eslint/eslint-plugin(eslint@8.57.0)(typescript@4.9.5) + '@rushstack/eslint-plugin-packlets': file:../../../eslint/eslint-plugin-packlets(eslint@8.57.0)(typescript@4.9.5) + '@rushstack/eslint-plugin-security': file:../../../eslint/eslint-plugin-security(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 8.1.0(@typescript-eslint/parser@8.1.0)(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/parser': 8.1.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 8.1.0(typescript@4.9.5) + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@4.9.5) + eslint: 8.57.0 + eslint-plugin-promise: 6.1.1(eslint@8.57.0) + eslint-plugin-react: 7.33.2(eslint@8.57.0) + eslint-plugin-tsdoc: 0.3.0 + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@5.4.5): + resolution: { directory: ../../../eslint/eslint-config, type: directory } + id: file:../../../eslint/eslint-config + name: '@rushstack/eslint-config' + peerDependencies: + eslint: ^8.57.0 + typescript: '>=4.7.0' + dependencies: + '@rushstack/eslint-patch': file:../../../eslint/eslint-patch + '@rushstack/eslint-plugin': file:../../../eslint/eslint-plugin(eslint@8.57.0)(typescript@5.4.5) + '@rushstack/eslint-plugin-packlets': file:../../../eslint/eslint-plugin-packlets(eslint@8.57.0)(typescript@5.4.5) + '@rushstack/eslint-plugin-security': file:../../../eslint/eslint-plugin-security(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 8.1.0(@typescript-eslint/parser@8.1.0)(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.4.5) + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + eslint: 8.57.0 + eslint-plugin-promise: 6.1.1(eslint@8.57.0) + eslint-plugin-react: 7.33.2(eslint@8.57.0) + eslint-plugin-tsdoc: 0.3.0 + typescript: 5.4.5 + transitivePeerDependencies: + - supports-color + dev: true + + file:../../../eslint/eslint-patch: + resolution: { directory: ../../../eslint/eslint-patch, type: directory } + name: '@rushstack/eslint-patch' + dev: true + + file:../../../eslint/eslint-plugin(eslint@8.57.0)(typescript@4.9.5): + resolution: { directory: ../../../eslint/eslint-plugin, type: directory } + id: file:../../../eslint/eslint-plugin + name: '@rushstack/eslint-plugin' + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': file:../../../libraries/tree-pattern + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@4.9.5) + eslint: 8.57.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + file:../../../eslint/eslint-plugin(eslint@8.57.0)(typescript@5.4.5): + resolution: { directory: ../../../eslint/eslint-plugin, type: directory } + id: file:../../../eslint/eslint-plugin + name: '@rushstack/eslint-plugin' + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': file:../../../libraries/tree-pattern + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + eslint: 8.57.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + file:../../../eslint/eslint-plugin-packlets(eslint@8.57.0)(typescript@4.9.5): + resolution: { directory: ../../../eslint/eslint-plugin-packlets, type: directory } + id: file:../../../eslint/eslint-plugin-packlets + name: '@rushstack/eslint-plugin-packlets' + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': file:../../../libraries/tree-pattern + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@4.9.5) + eslint: 8.57.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + file:../../../eslint/eslint-plugin-packlets(eslint@8.57.0)(typescript@5.4.5): + resolution: { directory: ../../../eslint/eslint-plugin-packlets, type: directory } + id: file:../../../eslint/eslint-plugin-packlets + name: '@rushstack/eslint-plugin-packlets' + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': file:../../../libraries/tree-pattern + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + eslint: 8.57.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + file:../../../eslint/eslint-plugin-security(eslint@8.57.0)(typescript@4.9.5): + resolution: { directory: ../../../eslint/eslint-plugin-security, type: directory } + id: file:../../../eslint/eslint-plugin-security + name: '@rushstack/eslint-plugin-security' + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': file:../../../libraries/tree-pattern + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@4.9.5) + eslint: 8.57.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + file:../../../eslint/eslint-plugin-security(eslint@8.57.0)(typescript@5.4.5): + resolution: { directory: ../../../eslint/eslint-plugin-security, type: directory } + id: file:../../../eslint/eslint-plugin-security + name: '@rushstack/eslint-plugin-security' + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': file:../../../libraries/tree-pattern + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + eslint: 8.57.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + file:../../../eslint/local-eslint-config(eslint@8.57.0)(typescript@5.4.5): + resolution: { directory: ../../../eslint/local-eslint-config, type: directory } + id: file:../../../eslint/local-eslint-config + name: local-eslint-config + dependencies: + '@rushstack/eslint-config': file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@5.4.5) + '@rushstack/eslint-patch': file:../../../eslint/eslint-patch + '@typescript-eslint/parser': 8.1.0(eslint@8.57.0)(typescript@5.4.5) + eslint-plugin-deprecation: 2.0.0(eslint@8.57.0)(typescript@5.4.5) + eslint-plugin-header: 3.1.1(eslint@8.57.0) + eslint-plugin-import: 2.25.4(eslint@8.57.0) + eslint-plugin-jsdoc: 37.6.1(eslint@8.57.0) + eslint-plugin-react-hooks: 4.3.0(eslint@8.57.0) + transitivePeerDependencies: + - eslint + - supports-color + - typescript + dev: true + + file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15): + resolution: { directory: ../../../heft-plugins/heft-api-extractor-plugin, type: directory } + id: file:../../../heft-plugins/heft-api-extractor-plugin + name: '@rushstack/heft-api-extractor-plugin' + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) + '@rushstack/heft-config-file': file:../../../libraries/heft-config-file(@types/node@18.17.15) + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + semver: 7.5.4 + transitivePeerDependencies: + - '@types/node' + dev: true + + file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15)(jest-environment-node@29.5.0): + resolution: { directory: ../../../heft-plugins/heft-jest-plugin, type: directory } + id: file:../../../heft-plugins/heft-jest-plugin + name: '@rushstack/heft-jest-plugin' + peerDependencies: + '@rushstack/heft': '*' + jest-environment-jsdom: ^29.5.0 + jest-environment-node: ^29.5.0 + peerDependenciesMeta: + jest-environment-jsdom: + optional: true + jest-environment-node: + optional: true + dependencies: + '@jest/core': 29.5.0 + '@jest/reporters': 29.5.0 + '@jest/transform': 29.5.0 + '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) + '@rushstack/heft-config-file': file:../../../libraries/heft-config-file(@types/node@18.17.15) + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + jest-config: 29.5.0(@types/node@18.17.15) + jest-environment-node: 29.5.0 + jest-resolve: 29.5.0 + jest-snapshot: 29.5.0 + lodash: 4.17.21 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + dev: true + + file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15): + resolution: { directory: ../../../heft-plugins/heft-lint-plugin, type: directory } + id: file:../../../heft-plugins/heft-lint-plugin + name: '@rushstack/heft-lint-plugin' + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + semver: 7.5.4 + transitivePeerDependencies: + - '@types/node' + dev: true + + file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15): + resolution: { directory: ../../../heft-plugins/heft-typescript-plugin, type: directory } + id: file:../../../heft-plugins/heft-typescript-plugin + name: '@rushstack/heft-typescript-plugin' + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) + '@rushstack/heft-config-file': file:../../../libraries/heft-config-file(@types/node@18.17.15) + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@types/tapable': 1.0.6 + semver: 7.5.4 + tapable: 1.1.3 + transitivePeerDependencies: + - '@types/node' + dev: true + + file:../../../libraries/api-extractor-model(@types/node@18.17.15): + resolution: { directory: ../../../libraries/api-extractor-model, type: directory } + id: file:../../../libraries/api-extractor-model + name: '@microsoft/api-extractor-model' + dependencies: + '@microsoft/tsdoc': 0.15.0 + '@microsoft/tsdoc-config': 0.17.0 + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + transitivePeerDependencies: + - '@types/node' + dev: true + + file:../../../libraries/heft-config-file(@types/node@18.17.15): + resolution: { directory: ../../../libraries/heft-config-file, type: directory } + id: file:../../../libraries/heft-config-file + name: '@rushstack/heft-config-file' + engines: { node: '>=10.13.0' } + dependencies: + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@rushstack/rig-package': file:../../../libraries/rig-package + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + jsonpath-plus: 4.0.0 + transitivePeerDependencies: + - '@types/node' + + file:../../../libraries/lookup-by-path(@types/node@18.17.15): + resolution: { directory: ../../../libraries/lookup-by-path, type: directory } + id: file:../../../libraries/lookup-by-path + name: '@rushstack/lookup-by-path' + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@types/node': 18.17.15 + + file:../../../libraries/node-core-library(@types/node@18.17.15): + resolution: { directory: ../../../libraries/node-core-library, type: directory } + id: file:../../../libraries/node-core-library + name: '@rushstack/node-core-library' + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@types/node': 18.17.15 + ajv: 8.13.0 + ajv-draft-04: 1.0.0(ajv@8.13.0) + ajv-formats: 3.0.1 + fs-extra: 7.0.1 + import-lazy: 4.0.0 + jju: 1.4.0 + resolve: 1.22.8 + semver: 7.5.4 + + file:../../../libraries/operation-graph(@types/node@18.17.15): + resolution: { directory: ../../../libraries/operation-graph, type: directory } + id: file:../../../libraries/operation-graph + name: '@rushstack/operation-graph' + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + '@types/node': 18.17.15 + dev: true + + file:../../../libraries/package-deps-hash(@types/node@18.17.15): + resolution: { directory: ../../../libraries/package-deps-hash, type: directory } + id: file:../../../libraries/package-deps-hash + name: '@rushstack/package-deps-hash' + dependencies: + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + transitivePeerDependencies: + - '@types/node' + + file:../../../libraries/package-extractor(@types/node@18.17.15): + resolution: { directory: ../../../libraries/package-extractor, type: directory } + id: file:../../../libraries/package-extractor + name: '@rushstack/package-extractor' + dependencies: + '@pnpm/link-bins': 5.3.25 + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + ignore: 5.1.9 + jszip: 3.8.0 + minimatch: 3.0.8 + npm-packlist: 2.1.5 + semver: 7.5.4 + transitivePeerDependencies: + - '@types/node' + + file:../../../libraries/rig-package: + resolution: { directory: ../../../libraries/rig-package, type: directory } + name: '@rushstack/rig-package' + dependencies: + resolve: 1.22.8 + strip-json-comments: 3.1.1 + + file:../../../libraries/rush-lib(@types/node@18.17.15): + resolution: { directory: ../../../libraries/rush-lib, type: directory } + id: file:../../../libraries/rush-lib + name: '@microsoft/rush-lib' + engines: { node: '>=5.6.0' } + dependencies: + '@pnpm/dependency-path': 2.1.8 + '@pnpm/link-bins': 5.3.25 + '@rushstack/heft-config-file': file:../../../libraries/heft-config-file(@types/node@18.17.15) + '@rushstack/lookup-by-path': file:../../../libraries/lookup-by-path(@types/node@18.17.15) + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@rushstack/package-deps-hash': file:../../../libraries/package-deps-hash(@types/node@18.17.15) + '@rushstack/package-extractor': file:../../../libraries/package-extractor(@types/node@18.17.15) + '@rushstack/rig-package': file:../../../libraries/rig-package + '@rushstack/stream-collator': file:../../../libraries/stream-collator(@types/node@18.17.15) + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + '@rushstack/ts-command-line': file:../../../libraries/ts-command-line(@types/node@18.17.15) + '@types/node-fetch': 2.6.2 + '@yarnpkg/lockfile': 1.0.2 + builtin-modules: 3.1.0 + cli-table: 0.3.11 + dependency-path: 9.2.8 + fast-glob: 3.3.2 + figures: 3.0.0 + git-repo-info: 2.1.1 + glob-escape: 0.0.2 + https-proxy-agent: 5.0.1 + ignore: 5.1.9 + inquirer: 7.3.3 + js-yaml: 3.13.1 + node-fetch: 2.6.7 + npm-check: 6.0.1 + npm-package-arg: 6.1.1 + pnpm-sync-lib: 0.2.9 + read-package-tree: 5.1.6 + rxjs: 6.6.7 + semver: 7.5.4 + ssri: 8.0.1 + strict-uri-encode: 2.0.0 + tapable: 2.2.1 + tar: 6.2.1 + true-case-path: 2.2.1 + uuid: 8.3.2 + transitivePeerDependencies: + - '@types/node' + - encoding + - supports-color + + file:../../../libraries/rush-sdk(@types/node@18.17.15): + resolution: { directory: ../../../libraries/rush-sdk, type: directory } + id: file:../../../libraries/rush-sdk + name: '@rushstack/rush-sdk' + dependencies: + '@rushstack/lookup-by-path': file:../../../libraries/lookup-by-path(@types/node@18.17.15) + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + '@types/node-fetch': 2.6.2 + tapable: 2.2.1 + transitivePeerDependencies: + - '@types/node' + dev: false + + file:../../../libraries/stream-collator(@types/node@18.17.15): + resolution: { directory: ../../../libraries/stream-collator, type: directory } + id: file:../../../libraries/stream-collator + name: '@rushstack/stream-collator' + dependencies: + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + transitivePeerDependencies: + - '@types/node' + + file:../../../libraries/terminal(@types/node@18.17.15): + resolution: { directory: ../../../libraries/terminal, type: directory } + id: file:../../../libraries/terminal + name: '@rushstack/terminal' + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@rushstack/node-core-library': file:../../../libraries/node-core-library(@types/node@18.17.15) + '@types/node': 18.17.15 + supports-color: 8.1.1 + + file:../../../libraries/tree-pattern: + resolution: { directory: ../../../libraries/tree-pattern, type: directory } + name: '@rushstack/tree-pattern' + dev: true + + file:../../../libraries/ts-command-line(@types/node@18.17.15): + resolution: { directory: ../../../libraries/ts-command-line, type: directory } + id: file:../../../libraries/ts-command-line + name: '@rushstack/ts-command-line' + dependencies: + '@rushstack/terminal': file:../../../libraries/terminal(@types/node@18.17.15) + '@types/argparse': 1.0.38 + argparse: 1.0.10 + string-argv: 0.3.2 + transitivePeerDependencies: + - '@types/node' + + file:../../../rigs/heft-node-rig(@rushstack/heft@0.67.0)(@types/node@18.17.15): + resolution: { directory: ../../../rigs/heft-node-rig, type: directory } + id: file:../../../rigs/heft-node-rig + name: '@rushstack/heft-node-rig' + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@microsoft/api-extractor': file:../../../apps/api-extractor(@types/node@18.17.15) + '@rushstack/eslint-config': file:../../../eslint/eslint-config(eslint@8.57.0)(typescript@5.4.5) + '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) + '@rushstack/heft-api-extractor-plugin': file:../../../heft-plugins/heft-api-extractor-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) + '@rushstack/heft-jest-plugin': file:../../../heft-plugins/heft-jest-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15)(jest-environment-node@29.5.0) + '@rushstack/heft-lint-plugin': file:../../../heft-plugins/heft-lint-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) + '@rushstack/heft-typescript-plugin': file:../../../heft-plugins/heft-typescript-plugin(@rushstack/heft@0.67.0)(@types/node@18.17.15) + '@types/heft-jest': 1.0.1 + eslint: 8.57.0 + jest-environment-node: 29.5.0 + typescript: 5.4.5 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - jest-environment-jsdom + - node-notifier + - supports-color + - ts-node + dev: true + + file:../../../rigs/local-node-rig: + resolution: { directory: ../../../rigs/local-node-rig, type: directory } + name: local-node-rig + dependencies: + '@microsoft/api-extractor': file:../../../apps/api-extractor(@types/node@18.17.15) + '@rushstack/heft': file:../../../apps/heft(@types/node@18.17.15) + '@rushstack/heft-node-rig': file:../../../rigs/heft-node-rig(@rushstack/heft@0.67.0)(@types/node@18.17.15) + '@types/heft-jest': 1.0.1 + '@types/node': 18.17.15 + eslint: 8.57.0 + jest-junit: 12.3.0 + local-eslint-config: file:../../../eslint/local-eslint-config(eslint@8.57.0)(typescript@5.4.5) + typescript: 5.4.5 + transitivePeerDependencies: + - babel-plugin-macros + - jest-environment-jsdom + - node-notifier + - supports-color + - ts-node + dev: true diff --git a/rush-plugins/rush-resolver-cache-plugin/test-collateral/default-subspace.yaml b/rush-plugins/rush-resolver-cache-plugin/test-collateral/default-subspace.yaml new file mode 100644 index 00000000000..965c532c89f --- /dev/null +++ b/rush-plugins/rush-resolver-cache-plugin/test-collateral/default-subspace.yaml @@ -0,0 +1,36668 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: false + excludeLinksFromLockfile: false + +overrides: + package-json: ^7 + +packageExtensionsChecksum: e59cfa9a35183eeeb6f2ac48c9ddd4b2 + +importers: + .: {} + + ../../../apps/api-documenter: + dependencies: + '@microsoft/api-extractor-model': + specifier: workspace:* + version: link:../../libraries/api-extractor-model + '@microsoft/tsdoc': + specifier: ~0.15.0 + version: 0.15.0 + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + js-yaml: + specifier: ~3.13.1 + version: 3.13.1 + resolve: + specifier: ~1.22.1 + version: 1.22.8 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../heft + '@types/js-yaml': + specifier: 3.12.1 + version: 3.12.1 + '@types/resolve': + specifier: 1.20.2 + version: 1.20.2 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../apps/api-extractor: + dependencies: + '@microsoft/api-extractor-model': + specifier: workspace:* + version: link:../../libraries/api-extractor-model + '@microsoft/tsdoc': + specifier: ~0.15.0 + version: 0.15.0 + '@microsoft/tsdoc-config': + specifier: ~0.17.0 + version: 0.17.0 + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rig-package': + specifier: workspace:* + version: link:../../libraries/rig-package + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + lodash: + specifier: ~4.17.15 + version: 4.17.21 + minimatch: + specifier: ~3.0.3 + version: 3.0.8 + resolve: + specifier: ~1.22.1 + version: 1.22.8 + semver: + specifier: ~7.5.4 + version: 7.5.4 + source-map: + specifier: ~0.6.1 + version: 0.6.1 + typescript: + specifier: 5.4.2 + version: 5.4.2 + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/lodash': + specifier: 4.14.116 + version: 4.14.116 + '@types/minimatch': + specifier: 3.0.5 + version: 3.0.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/resolve': + specifier: 1.20.2 + version: 1.20.2 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + + ../../../apps/heft: + dependencies: + '@rushstack/heft-config-file': + specifier: workspace:* + version: link:../../libraries/heft-config-file + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/operation-graph': + specifier: workspace:* + version: link:../../libraries/operation-graph + '@rushstack/rig-package': + specifier: workspace:* + version: link:../../libraries/rig-package + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + '@types/tapable': + specifier: 1.0.6 + version: 1.0.6 + fast-glob: + specifier: ~3.3.1 + version: 3.3.2 + git-repo-info: + specifier: ~2.1.0 + version: 2.1.1 + ignore: + specifier: ~5.1.6 + version: 5.1.9 + tapable: + specifier: 1.1.3 + version: 1.1.3 + true-case-path: + specifier: ~2.2.1 + version: 2.2.1 + watchpack: + specifier: 2.4.0 + version: 2.4.0 + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../api-extractor + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/watchpack': + specifier: 2.4.0 + version: 2.4.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../apps/lockfile-explorer: + dependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@pnpm/dependency-path': + specifier: ~2.1.2 + version: 2.1.8 + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + cors: + specifier: ~2.8.5 + version: 2.8.5 + express: + specifier: 4.19.2 + version: 4.19.2 + js-yaml: + specifier: ~3.13.1 + version: 3.13.1 + open: + specifier: ~8.4.0 + version: 8.4.2 + semver: + specifier: ~7.5.4 + version: 7.5.4 + update-notifier: + specifier: ~5.1.0 + version: 5.1.0 + devDependencies: + '@pnpm/lockfile-types': + specifier: ^5.1.5 + version: 5.1.5 + '@rushstack/heft': + specifier: workspace:* + version: link:../heft + '@rushstack/lockfile-explorer-web': + specifier: workspace:* + version: link:../lockfile-explorer-web + '@types/cors': + specifier: ~2.8.12 + version: 2.8.17 + '@types/express': + specifier: 4.17.21 + version: 4.17.21 + '@types/js-yaml': + specifier: 3.12.1 + version: 3.12.1 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + '@types/update-notifier': + specifier: ~6.0.1 + version: 6.0.8 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../apps/lockfile-explorer-web: + dependencies: + '@lifaon/path': + specifier: ~2.1.0 + version: 2.1.0 + '@reduxjs/toolkit': + specifier: ~1.8.6 + version: 1.8.6(react-redux@8.0.7)(react@17.0.2) + '@rushstack/rush-themed-ui': + specifier: workspace:* + version: link:../../libraries/rush-themed-ui + react: + specifier: ~17.0.2 + version: 17.0.2 + react-dom: + specifier: ~17.0.2 + version: 17.0.2(react@17.0.2) + react-redux: + specifier: ~8.0.4 + version: 8.0.7(@reduxjs/toolkit@1.8.6)(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(redux@4.2.1) + redux: + specifier: ~4.2.0 + version: 4.2.1 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../heft + '@types/react': + specifier: 17.0.74 + version: 17.0.74 + '@types/react-dom': + specifier: 17.0.25 + version: 17.0.25 + local-web-rig: + specifier: workspace:* + version: link:../../rigs/local-web-rig + + ../../../apps/rundown: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + string-argv: + specifier: ~0.3.1 + version: 0.3.2 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../apps/rush: + dependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + semver: + specifier: ~7.5.4 + version: 7.5.4 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../heft + '@rushstack/rush-amazon-s3-build-cache-plugin': + specifier: workspace:* + version: link:../../rush-plugins/rush-amazon-s3-build-cache-plugin + '@rushstack/rush-azure-storage-build-cache-plugin': + specifier: workspace:* + version: link:../../rush-plugins/rush-azure-storage-build-cache-plugin + '@rushstack/rush-http-build-cache-plugin': + specifier: workspace:* + version: link:../../rush-plugins/rush-http-build-cache-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../apps/trace-import: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + resolve: + specifier: ~1.22.1 + version: 1.22.8 + semver: + specifier: ~7.5.4 + version: 7.5.4 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../heft + '@types/resolve': + specifier: 1.20.2 + version: 1.20.2 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../build-tests-samples/heft-node-basic-tutorial: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests-samples/heft-node-jest-tutorial: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests-samples/heft-node-rig-tutorial: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-node-rig': + specifier: workspace:* + version: link:../../rigs/heft-node-rig + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + + ../../../build-tests-samples/heft-serverless-stack-tutorial: + devDependencies: + '@aws-sdk/client-sso-oidc': + specifier: ^3.567.0 + version: 3.567.0(@aws-sdk/client-sts@3.567.0) + '@aws-sdk/client-sts': + specifier: ^3.567.0 + version: 3.567.0(@aws-sdk/client-sso-oidc@3.567.0) + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-serverless-stack-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-serverless-stack-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@serverless-stack/aws-lambda-ric': + specifier: ^2.0.12 + version: 2.0.13 + '@serverless-stack/cli': + specifier: 1.18.4 + version: 1.18.4(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0)(constructs@10.0.130) + '@serverless-stack/resources': + specifier: 1.18.4 + version: 1.18.4(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0) + '@types/aws-lambda': + specifier: 8.10.93 + version: 8.10.93 + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + aws-cdk-lib: + specifier: 2.80.0 + version: 2.80.0(constructs@10.0.130) + constructs: + specifier: ~10.0.98 + version: 10.0.130 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests-samples/heft-storybook-react-tutorial: + dependencies: + react: + specifier: ~17.0.2 + version: 17.0.2 + react-dom: + specifier: ~17.0.2 + version: 17.0.2(react@17.0.2) + tslib: + specifier: ~2.3.1 + version: 2.3.1 + devDependencies: + '@babel/core': + specifier: ~7.20.0 + version: 7.20.12(supports-color@8.1.1) + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-storybook-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-storybook-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/heft-webpack4-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack4-plugin + '@rushstack/webpack4-module-minifier-plugin': + specifier: workspace:* + version: link:../../webpack/webpack4-module-minifier-plugin + '@storybook/react': + specifier: ~6.4.18 + version: 6.4.22(@babel/core@7.20.12)(@types/node@18.17.15)(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/react': + specifier: 17.0.74 + version: 17.0.74 + '@types/react-dom': + specifier: 17.0.25 + version: 17.0.25 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + css-loader: + specifier: ~5.2.7 + version: 5.2.7(webpack@4.47.0) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + heft-storybook-react-tutorial-storykit: + specifier: workspace:* + version: link:../heft-storybook-react-tutorial-storykit + html-webpack-plugin: + specifier: ~4.5.2 + version: 4.5.2(webpack@4.47.0) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + source-map-loader: + specifier: ~1.1.3 + version: 1.1.3(webpack@4.47.0) + style-loader: + specifier: ~2.0.0 + version: 2.0.0(webpack@4.47.0) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + + ../../../build-tests-samples/heft-storybook-react-tutorial-app: + dependencies: + heft-storybook-react-tutorial: + specifier: 'workspace: *' + version: link:../heft-storybook-react-tutorial + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-storybook-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-storybook-plugin + heft-storybook-react-tutorial-storykit: + specifier: workspace:* + version: link:../heft-storybook-react-tutorial-storykit + + ../../../build-tests-samples/heft-storybook-react-tutorial-storykit: + devDependencies: + '@babel/core': + specifier: ~7.20.0 + version: 7.20.12(supports-color@8.1.1) + '@storybook/addon-actions': + specifier: ~6.4.18 + version: 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-essentials': + specifier: ~6.4.18 + version: 6.4.22(@babel/core@7.20.12)(@storybook/react@6.4.22)(@types/react@17.0.74)(babel-loader@8.2.5)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0) + '@storybook/addon-links': + specifier: ~6.4.18 + version: 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/cli': + specifier: ~6.4.18 + version: 6.4.22(jest@29.3.1)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/components': + specifier: ~6.4.18 + version: 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-events': + specifier: ~6.4.18 + version: 6.4.22 + '@storybook/react': + specifier: ~6.4.18 + version: 6.4.22(@babel/core@7.20.12)(@types/node@18.17.15)(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/theming': + specifier: ~6.4.18 + version: 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/react': + specifier: 17.0.74 + version: 17.0.74 + '@types/react-dom': + specifier: 17.0.25 + version: 17.0.25 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + babel-loader: + specifier: ~8.2.3 + version: 8.2.5(@babel/core@7.20.12)(webpack@4.47.0) + css-loader: + specifier: ~5.2.7 + version: 5.2.7(webpack@4.47.0) + jest: + specifier: ~29.3.1 + version: 29.3.1(@types/node@18.17.15) + react: + specifier: ~17.0.2 + version: 17.0.2 + react-dom: + specifier: ~17.0.2 + version: 17.0.2(react@17.0.2) + style-loader: + specifier: ~2.0.0 + version: 2.0.0(webpack@4.47.0) + terser-webpack-plugin: + specifier: ~3.0.8 + version: 3.0.8(webpack@4.47.0) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + + ../../../build-tests-samples/heft-web-rig-app-tutorial: + dependencies: + heft-web-rig-library-tutorial: + specifier: workspace:* + version: link:../heft-web-rig-library-tutorial + react: + specifier: ~17.0.2 + version: 17.0.2 + react-dom: + specifier: ~17.0.2 + version: 17.0.2(react@17.0.2) + tslib: + specifier: ~2.3.1 + version: 2.3.1 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-web-rig': + specifier: workspace:* + version: link:../../rigs/heft-web-rig + '@types/react': + specifier: 17.0.74 + version: 17.0.74 + '@types/react-dom': + specifier: 17.0.25 + version: 17.0.25 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests-samples/heft-web-rig-library-tutorial: + dependencies: + react: + specifier: ~17.0.2 + version: 17.0.2 + react-dom: + specifier: ~17.0.2 + version: 17.0.2(react@17.0.2) + tslib: + specifier: ~2.3.1 + version: 2.3.1 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-web-rig': + specifier: workspace:* + version: link:../../rigs/heft-web-rig + '@types/react': + specifier: 17.0.74 + version: 17.0.74 + '@types/react-dom': + specifier: 17.0.25 + version: 17.0.25 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests-samples/heft-webpack-basic-tutorial: + dependencies: + react: + specifier: ~17.0.2 + version: 17.0.2 + react-dom: + specifier: ~17.0.2 + version: 17.0.2(react@17.0.2) + tslib: + specifier: ~2.3.1 + version: 2.3.1 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack5-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/react': + specifier: 17.0.74 + version: 17.0.74 + '@types/react-dom': + specifier: 17.0.25 + version: 17.0.25 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + css-loader: + specifier: ~6.6.0 + version: 6.6.0(webpack@5.82.1) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + html-webpack-plugin: + specifier: ~5.5.0 + version: 5.5.4(webpack@5.82.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + source-map-loader: + specifier: ~3.0.1 + version: 3.0.2(webpack@5.82.1) + style-loader: + specifier: ~3.3.1 + version: 3.3.4(webpack@5.82.1) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../build-tests-samples/packlets-tutorial: + devDependencies: + '@rushstack/eslint-config': + specifier: workspace:* + version: link:../../eslint/eslint-config + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-documenter-scenarios: + devDependencies: + '@microsoft/api-documenter': + specifier: workspace:* + version: link:../../apps/api-documenter + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@microsoft/teams-js': + specifier: 1.3.0-beta.4 + version: 1.3.0-beta.4 + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-documenter-test: + devDependencies: + '@microsoft/api-documenter': + specifier: workspace:* + version: link:../../apps/api-documenter + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../build-tests/api-extractor-d-cts-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-extractor-d-mts-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-extractor-lib1-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~2.9.2 + version: 2.9.2 + + ../../../build-tests/api-extractor-lib2-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-extractor-lib3-test: + dependencies: + api-extractor-lib1-test: + specifier: workspace:* + version: link:../api-extractor-lib1-test + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-extractor-lib4-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-extractor-lib5-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-extractor-scenarios: + dependencies: + api-extractor-lib1-test: + specifier: workspace:* + version: link:../api-extractor-lib1-test + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@microsoft/teams-js': + specifier: 1.3.0-beta.4 + version: 1.3.0-beta.4 + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + api-extractor-lib2-test: + specifier: workspace:* + version: link:../api-extractor-lib2-test + api-extractor-lib3-test: + specifier: workspace:* + version: link:../api-extractor-lib3-test + api-extractor-lib4-test: + specifier: workspace:* + version: link:../api-extractor-lib4-test + api-extractor-lib5-test: + specifier: workspace:* + version: link:../api-extractor-lib5-test + colors: + specifier: ~1.2.1 + version: 1.2.5 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../build-tests/api-extractor-test-01: + dependencies: + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/long': + specifier: 4.0.0 + version: 4.0.0 + long: + specifier: ^4.0.0 + version: 4.0.0 + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-extractor-test-02: + dependencies: + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + api-extractor-test-01: + specifier: workspace:* + version: link:../api-extractor-test-01 + semver: + specifier: ~7.5.4 + version: 7.5.4 + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-extractor-test-03: + devDependencies: + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + api-extractor-test-02: + specifier: workspace:* + version: link:../api-extractor-test-02 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/api-extractor-test-04: + dependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + api-extractor-lib1-test: + specifier: workspace:* + version: link:../api-extractor-lib1-test + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/eslint-7-11-test: + devDependencies: + '@rushstack/eslint-config': + specifier: 3.7.0 + version: 3.7.0(eslint@7.11.0)(typescript@5.4.2) + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@typescript-eslint/parser': + specifier: ~6.19.0 + version: 6.19.1(eslint@7.11.0)(typescript@5.4.2) + eslint: + specifier: 7.11.0 + version: 7.11.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/eslint-7-7-test: + devDependencies: + '@rushstack/eslint-config': + specifier: 3.7.0 + version: 3.7.0(eslint@7.7.0)(typescript@5.4.2) + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@typescript-eslint/parser': + specifier: ~6.19.0 + version: 6.19.1(eslint@7.7.0)(typescript@5.4.2) + eslint: + specifier: 7.7.0 + version: 7.7.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/eslint-7-test: + devDependencies: + '@rushstack/eslint-config': + specifier: 3.7.0 + version: 3.7.0(eslint@7.30.0)(typescript@5.4.2) + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@typescript-eslint/parser': + specifier: ~6.19.0 + version: 6.19.1(eslint@7.30.0)(typescript@5.4.2) + eslint: + specifier: ~7.30.0 + version: 7.30.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/eslint-8-test: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@typescript-eslint/parser': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/eslint-bulk-suppressions-test: + devDependencies: + '@rushstack/eslint-bulk': + specifier: workspace:* + version: link:../../eslint/eslint-bulk + '@rushstack/eslint-patch': + specifier: workspace:* + version: link:../../eslint/eslint-patch + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@typescript-eslint/parser': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/eslint-bulk-suppressions-test-legacy: + devDependencies: + '@rushstack/eslint-bulk': + specifier: workspace:* + version: link:../../eslint/eslint-bulk + '@rushstack/eslint-config': + specifier: 3.7.0 + version: 3.7.0(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@rushstack/eslint-patch': + specifier: workspace:* + version: link:../../eslint/eslint-patch + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@typescript-eslint/parser': + specifier: ~6.19.0 + version: 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + eslint-8.23: + specifier: npm:eslint@8.23.1 + version: /eslint@8.23.1 + eslint-oldest: + specifier: npm:eslint@8.6.0 + version: /eslint@8.6.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/hashed-folder-copy-plugin-webpack5-test: + devDependencies: + '@rushstack/hashed-folder-copy-plugin': + specifier: workspace:* + version: link:../../webpack/hashed-folder-copy-plugin + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack5-plugin + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + html-webpack-plugin: + specifier: ~5.5.0 + version: 5.5.4(webpack@5.82.1) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + webpack-bundle-analyzer: + specifier: ~4.5.0 + version: 4.5.0 + + ../../../build-tests/heft-copy-files-test: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + + ../../../build-tests/heft-example-plugin-01: + dependencies: + tapable: + specifier: 1.1.3 + version: 1.1.3 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/tapable': + specifier: 1.0.6 + version: 1.0.6 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-example-plugin-02: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + heft-example-plugin-01: + specifier: workspace:* + version: link:../heft-example-plugin-01 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-fastify-test: + dependencies: + fastify: + specifier: ~3.16.1 + version: 3.16.2 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-jest-preset-test: + devDependencies: + '@jest/types': + specifier: 29.5.0 + version: 29.5.0 + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-jest-reporters-test: + devDependencies: + '@jest/reporters': + specifier: ~29.5.0 + version: 29.5.0(supports-color@8.1.1) + '@jest/types': + specifier: 29.5.0 + version: 29.5.0 + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-minimal-rig-test: + dependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft-api-extractor-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-api-extractor-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-minimal-rig-usage-test: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + heft-minimal-rig-test: + specifier: workspace:* + version: link:../heft-minimal-rig-test + + ../../../build-tests/heft-node-everything-esm-module-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-api-extractor-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-api-extractor-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + heft-example-plugin-01: + specifier: workspace:* + version: link:../heft-example-plugin-01 + heft-example-plugin-02: + specifier: workspace:* + version: link:../heft-example-plugin-02 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@5.4.2) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-node-everything-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-api-extractor-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-api-extractor-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + heft-example-plugin-01: + specifier: workspace:* + version: link:../heft-example-plugin-01 + heft-example-plugin-02: + specifier: workspace:* + version: link:../heft-example-plugin-02 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@5.4.2) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-parameter-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-parameter-plugin-test: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + heft-parameter-plugin: + specifier: workspace:* + version: link:../heft-parameter-plugin + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-sass-test: + dependencies: + buttono: + specifier: ~1.0.2 + version: 1.0.4 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-sass-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-sass-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/heft-webpack4-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack4-plugin + '@rushstack/webpack4-module-minifier-plugin': + specifier: workspace:* + version: link:../../webpack/webpack4-module-minifier-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/react': + specifier: 17.0.74 + version: 17.0.74 + '@types/react-dom': + specifier: 17.0.25 + version: 17.0.25 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + autoprefixer: + specifier: ~10.4.2 + version: 10.4.18(postcss@8.4.36) + css-loader: + specifier: ~5.2.7 + version: 5.2.7(webpack@4.47.0) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + html-webpack-plugin: + specifier: ~4.5.2 + version: 4.5.2(webpack@4.47.0) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + postcss: + specifier: ~8.4.6 + version: 8.4.36 + postcss-loader: + specifier: ~4.1.0 + version: 4.1.0(postcss@8.4.36)(webpack@4.47.0) + react: + specifier: ~17.0.2 + version: 17.0.2 + react-dom: + specifier: ~17.0.2 + version: 17.0.2(react@17.0.2) + sass: + specifier: ~1.3.0 + version: 1.3.2 + sass-loader: + specifier: ~10.0.0 + version: 10.0.5(sass@1.3.2)(webpack@4.47.0) + style-loader: + specifier: ~2.0.0 + version: 2.0.0(webpack@4.47.0) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + + ../../../build-tests/heft-typescript-composite-test: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/jest': + specifier: 29.2.5 + version: 29.2.5 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@5.4.2) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/heft-typescript-v2-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-api-extractor-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-api-extractor-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/jest': + specifier: ts2.9 + version: 23.3.13 + '@types/node': + specifier: ts2.9 + version: 14.0.1 + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@2.9.2) + typescript: + specifier: ~2.9.2 + version: 2.9.2 + + ../../../build-tests/heft-typescript-v3-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-api-extractor-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-api-extractor-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/jest': + specifier: ts3.9 + version: 28.1.1 + '@types/node': + specifier: ts3.9 + version: 17.0.41 + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@3.9.10) + typescript: + specifier: ~3.9.10 + version: 3.9.10 + + ../../../build-tests/heft-typescript-v4-test: + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/eslint-config': + specifier: 3.7.0 + version: 3.7.0(eslint@8.57.0)(typescript@4.9.5) + '@rushstack/eslint-patch': + specifier: workspace:* + version: link:../../eslint/eslint-patch + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-api-extractor-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-api-extractor-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/jest': + specifier: ts4.9 + version: 29.5.12 + '@types/node': + specifier: ts4.9 + version: 20.12.12 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@4.9.5) + typescript: + specifier: ~4.9.5 + version: 4.9.5 + + ../../../build-tests/heft-web-rig-library-test: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-web-rig': + specifier: workspace:* + version: link:../../rigs/heft-web-rig + + ../../../build-tests/heft-webpack4-everything-test: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-dev-cert-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-dev-cert-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/heft-webpack4-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack4-plugin + '@rushstack/module-minifier': + specifier: workspace:* + version: link:../../libraries/module-minifier + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/webpack4-module-minifier-plugin': + specifier: workspace:* + version: link:../../webpack/webpack4-module-minifier-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + file-loader: + specifier: ~6.0.0 + version: 6.0.0(webpack@4.47.0) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + source-map-loader: + specifier: ~1.1.3 + version: 1.1.3(webpack@4.47.0) + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@5.4.2) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + + ../../../build-tests/heft-webpack5-everything-test: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-dev-cert-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-dev-cert-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack5-plugin + '@rushstack/module-minifier': + specifier: workspace:* + version: link:../../libraries/module-minifier + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + '@rushstack/webpack5-module-minifier-plugin': + specifier: workspace:* + version: link:../../webpack/webpack5-module-minifier-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + html-webpack-plugin: + specifier: ~5.5.0 + version: 5.5.4(webpack@5.82.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + source-map-loader: + specifier: ~3.0.1 + version: 3.0.2(webpack@5.82.1) + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@5.4.2) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../build-tests/localization-plugin-test-01: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/set-webpack-public-path-plugin': + specifier: ^4.1.16 + version: 4.1.16(@types/node@18.17.15)(@types/webpack@4.41.32)(webpack@4.47.0) + '@rushstack/webpack4-localization-plugin': + specifier: workspace:* + version: link:../../webpack/webpack4-localization-plugin + '@rushstack/webpack4-module-minifier-plugin': + specifier: workspace:* + version: link:../../webpack/webpack4-module-minifier-plugin + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + html-webpack-plugin: + specifier: ~4.5.2 + version: 4.5.2(webpack@4.47.0) + ts-loader: + specifier: 6.0.0 + version: 6.0.0(typescript@5.4.2) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + webpack-bundle-analyzer: + specifier: ~4.5.0 + version: 4.5.0 + webpack-cli: + specifier: ~3.3.2 + version: 3.3.12(webpack@4.47.0) + webpack-dev-server: + specifier: ~4.9.3 + version: 4.9.3(webpack-cli@3.3.12)(webpack@4.47.0) + + ../../../build-tests/localization-plugin-test-02: + dependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-localization-typings-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-localization-typings-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/heft-webpack4-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack4-plugin + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/set-webpack-public-path-plugin': + specifier: ^4.1.16 + version: 4.1.16(@types/node@18.17.15)(@types/webpack@4.41.32)(webpack@4.47.0) + '@rushstack/webpack4-localization-plugin': + specifier: workspace:* + version: link:../../webpack/webpack4-localization-plugin + '@rushstack/webpack4-module-minifier-plugin': + specifier: workspace:* + version: link:../../webpack/webpack4-module-minifier-plugin + '@types/lodash': + specifier: 4.14.116 + version: 4.14.116 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + html-webpack-plugin: + specifier: ~4.5.2 + version: 4.5.2(webpack@4.47.0) + lodash: + specifier: ~4.17.15 + version: 4.17.21 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + webpack-bundle-analyzer: + specifier: ~4.5.0 + version: 4.5.0 + webpack-cli: + specifier: ~3.3.2 + version: 3.3.12(webpack@4.47.0) + webpack-dev-server: + specifier: ~4.9.3 + version: 4.9.3(webpack-cli@3.3.12)(webpack@4.47.0) + + ../../../build-tests/localization-plugin-test-03: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/set-webpack-public-path-plugin': + specifier: ^4.1.16 + version: 4.1.16(@types/node@18.17.15)(@types/webpack@4.41.32)(webpack@4.47.0) + '@rushstack/webpack4-localization-plugin': + specifier: workspace:* + version: link:../../webpack/webpack4-localization-plugin + '@rushstack/webpack4-module-minifier-plugin': + specifier: workspace:* + version: link:../../webpack/webpack4-module-minifier-plugin + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + html-webpack-plugin: + specifier: ~4.5.2 + version: 4.5.2(webpack@4.47.0) + ts-loader: + specifier: 6.0.0 + version: 6.0.0(typescript@5.4.2) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + webpack-bundle-analyzer: + specifier: ~4.5.0 + version: 4.5.0 + webpack-cli: + specifier: ~3.3.2 + version: 3.3.12(webpack@4.47.0) + webpack-dev-server: + specifier: ~4.9.3 + version: 4.9.3(webpack-cli@3.3.12)(webpack@4.47.0) + + ../../../build-tests/package-extractor-test-01: + dependencies: + package-extractor-test-02: + specifier: workspace:* + version: link:../package-extractor-test-02 + devDependencies: + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + package-extractor-test-03: + specifier: workspace:* + version: link:../package-extractor-test-03 + + ../../../build-tests/package-extractor-test-02: + dependencies: + package-extractor-test-03: + specifier: workspace:* + version: link:../package-extractor-test-03 + + ../../../build-tests/package-extractor-test-03: + devDependencies: + '@types/node': + specifier: ts3.9 + version: 17.0.41 + + ../../../build-tests/package-extractor-test-04: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + + ../../../build-tests/rush-amazon-s3-build-cache-plugin-integration-test: + dependencies: + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-amazon-s3-build-cache-plugin': + specifier: workspace:* + version: link:../../rush-plugins/rush-amazon-s3-build-cache-plugin + '@types/http-proxy': + specifier: ~1.17.8 + version: 1.17.14 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + http-proxy: + specifier: ~1.18.1 + version: 1.18.1 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/rush-lib-declaration-paths-test: + dependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../build-tests/rush-project-change-analyzer-test: + dependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../build-tests/rush-redis-cobuild-plugin-integration-test: + devDependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-redis-cobuild-plugin': + specifier: workspace:* + version: link:../../rush-plugins/rush-redis-cobuild-plugin + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@types/http-proxy': + specifier: ~1.17.8 + version: 1.17.14 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + http-proxy: + specifier: ~1.18.1 + version: 1.18.1 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../build-tests/set-webpack-public-path-plugin-test: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack5-plugin + '@rushstack/module-minifier': + specifier: workspace:* + version: link:../../libraries/module-minifier + '@rushstack/set-webpack-public-path-plugin': + specifier: workspace:* + version: link:../../webpack/set-webpack-public-path-plugin + '@rushstack/webpack5-module-minifier-plugin': + specifier: workspace:* + version: link:../../webpack/webpack5-module-minifier-plugin + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + html-webpack-plugin: + specifier: ~5.5.0 + version: 5.5.4(webpack@5.82.1) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../build-tests/ts-command-line-test: + devDependencies: + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../eslint/eslint-bulk: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../eslint/eslint-config: + dependencies: + '@rushstack/eslint-patch': + specifier: workspace:* + version: link:../eslint-patch + '@rushstack/eslint-plugin': + specifier: workspace:* + version: link:../eslint-plugin + '@rushstack/eslint-plugin-packlets': + specifier: workspace:* + version: link:../eslint-plugin-packlets + '@rushstack/eslint-plugin-security': + specifier: workspace:* + version: link:../eslint-plugin-security + '@typescript-eslint/eslint-plugin': + specifier: ~8.1.0 + version: 8.1.0(@typescript-eslint/parser@8.1.0)(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/parser': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': + specifier: ~8.1.0 + version: 8.1.0(typescript@5.4.2) + '@typescript-eslint/utils': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + eslint-plugin-promise: + specifier: ~6.1.1 + version: 6.1.1(eslint@8.57.0) + eslint-plugin-react: + specifier: ~7.33.2 + version: 7.33.2(eslint@8.57.0) + eslint-plugin-tsdoc: + specifier: ~0.3.0 + version: 0.3.0 + devDependencies: + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../eslint/eslint-patch: + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/eslint': + specifier: 8.2.0 + version: 8.2.0 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@typescript-eslint/types': + specifier: ~5.59.2 + version: 5.59.11(typescript@5.4.2) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + eslint-plugin-header: + specifier: ~3.1.1 + version: 3.1.1(eslint@8.57.0) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../eslint/eslint-plugin: + dependencies: + '@rushstack/tree-pattern': + specifier: workspace:* + version: link:../../libraries/tree-pattern + '@typescript-eslint/utils': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + devDependencies: + '@eslint/eslintrc': + specifier: ~3.0.0 + version: 3.0.2 + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/eslint': + specifier: 8.2.0 + version: 8.2.0 + '@types/estree': + specifier: 1.0.5 + version: 1.0.5 + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@typescript-eslint/parser': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/rule-tester': + specifier: ~8.1.0 + version: 8.1.0(@eslint/eslintrc@3.0.2)(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': + specifier: ~8.1.0 + version: 8.1.0(typescript@5.4.2) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + eslint-plugin-header: + specifier: ~3.1.1 + version: 3.1.1(eslint@8.57.0) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../eslint/eslint-plugin-packlets: + dependencies: + '@rushstack/tree-pattern': + specifier: workspace:* + version: link:../../libraries/tree-pattern + '@typescript-eslint/utils': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/eslint': + specifier: 8.2.0 + version: 8.2.0 + '@types/estree': + specifier: 1.0.5 + version: 1.0.5 + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@typescript-eslint/parser': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': + specifier: ~8.1.0 + version: 8.1.0(typescript@5.4.2) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + eslint-plugin-header: + specifier: ~3.1.1 + version: 3.1.1(eslint@8.57.0) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../eslint/eslint-plugin-security: + dependencies: + '@rushstack/tree-pattern': + specifier: workspace:* + version: link:../../libraries/tree-pattern + '@typescript-eslint/utils': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + devDependencies: + '@eslint/eslintrc': + specifier: ~3.0.0 + version: 3.0.2 + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/eslint': + specifier: 8.2.0 + version: 8.2.0 + '@types/estree': + specifier: 1.0.5 + version: 1.0.5 + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@typescript-eslint/parser': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/rule-tester': + specifier: ~8.1.0 + version: 8.1.0(@eslint/eslintrc@3.0.2)(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': + specifier: ~8.1.0 + version: 8.1.0(typescript@5.4.2) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + eslint-plugin-header: + specifier: ~3.1.1 + version: 3.1.1(eslint@8.57.0) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../eslint/local-eslint-config: + dependencies: + '@rushstack/eslint-config': + specifier: workspace:* + version: link:../eslint-config + '@rushstack/eslint-patch': + specifier: workspace:* + version: link:../eslint-patch + '@typescript-eslint/parser': + specifier: ~8.1.0 + version: 8.1.0(eslint@8.57.0)(typescript@5.4.2) + eslint-plugin-deprecation: + specifier: 2.0.0 + version: 2.0.0(eslint@8.57.0)(typescript@5.4.2) + eslint-plugin-header: + specifier: ~3.1.1 + version: 3.1.1(eslint@8.57.0) + eslint-plugin-import: + specifier: 2.25.4 + version: 2.25.4(eslint@8.57.0) + eslint-plugin-jsdoc: + specifier: 37.6.1 + version: 37.6.1(eslint@8.57.0) + eslint-plugin-react-hooks: + specifier: 4.3.0 + version: 4.3.0(eslint@8.57.0) + devDependencies: + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../heft-plugins/heft-api-extractor-plugin: + dependencies: + '@rushstack/heft-config-file': + specifier: workspace:* + version: link:../../libraries/heft-config-file + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + semver: + specifier: ~7.5.4 + version: 7.5.4 + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15)(jest-environment-jsdom@29.5.0) + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../heft-plugins/heft-dev-cert-plugin: + dependencies: + '@rushstack/debug-certificate-manager': + specifier: workspace:* + version: link:../../libraries/debug-certificate-manager + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../heft-plugins/heft-jest-plugin: + dependencies: + '@jest/core': + specifier: ~29.5.0 + version: 29.5.0(supports-color@8.1.1) + '@jest/reporters': + specifier: ~29.5.0 + version: 29.5.0(supports-color@8.1.1) + '@jest/transform': + specifier: ~29.5.0 + version: 29.5.0(supports-color@8.1.1) + '@rushstack/heft-config-file': + specifier: workspace:* + version: link:../../libraries/heft-config-file + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + jest-config: + specifier: ~29.5.0 + version: 29.5.0(@types/node@18.17.15)(supports-color@8.1.1) + jest-resolve: + specifier: ~29.5.0 + version: 29.5.0 + jest-snapshot: + specifier: ~29.5.0 + version: 29.5.0(supports-color@8.1.1) + lodash: + specifier: ~4.17.15 + version: 4.17.21 + devDependencies: + '@jest/types': + specifier: 29.5.0 + version: 29.5.0 + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15)(jest-environment-jsdom@29.5.0) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/lodash': + specifier: 4.14.116 + version: 4.14.116 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + jest-environment-jsdom: + specifier: ~29.5.0 + version: 29.5.0 + jest-environment-node: + specifier: ~29.5.0 + version: 29.5.0 + jest-watch-select-projects: + specifier: 2.0.0 + version: 2.0.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../heft-plugins/heft-lint-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + semver: + specifier: ~7.5.4 + version: 7.5.4 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15)(jest-environment-jsdom@29.5.0) + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../heft-typescript-plugin + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@types/eslint': + specifier: 8.2.0 + version: 8.2.0 + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + tslint: + specifier: ~5.20.1 + version: 5.20.1(typescript@5.4.2) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../heft-plugins/heft-localization-typings-plugin: + dependencies: + '@rushstack/localization-utilities': + specifier: workspace:* + version: link:../../libraries/localization-utilities + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../heft-plugins/heft-sass-plugin: + dependencies: + '@rushstack/heft-config-file': + specifier: workspace:* + version: link:../../libraries/heft-config-file + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/typings-generator': + specifier: workspace:* + version: link:../../libraries/typings-generator + postcss: + specifier: ~8.4.6 + version: 8.4.36 + postcss-modules: + specifier: ~6.0.0 + version: 6.0.0(postcss@8.4.36) + sass-embedded: + specifier: ~1.77.2 + version: 1.77.2 + devDependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../heft-plugins/heft-serverless-stack-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-webpack4-plugin': + specifier: workspace:* + version: link:../heft-webpack4-plugin + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../heft-webpack5-plugin + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../heft-plugins/heft-storybook-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-webpack4-plugin': + specifier: workspace:* + version: link:../heft-webpack4-plugin + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../heft-webpack5-plugin + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../heft-plugins/heft-typescript-plugin: + dependencies: + '@rushstack/heft-config-file': + specifier: workspace:* + version: link:../../libraries/heft-config-file + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@types/tapable': + specifier: 1.0.6 + version: 1.0.6 + semver: + specifier: ~7.5.4 + version: 7.5.4 + tapable: + specifier: 1.1.3 + version: 1.1.3 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15)(jest-environment-jsdom@29.5.0) + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../heft-plugins/heft-webpack4-plugin: + dependencies: + '@rushstack/debug-certificate-manager': + specifier: workspace:* + version: link:../../libraries/debug-certificate-manager + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@types/tapable': + specifier: 1.0.6 + version: 1.0.6 + tapable: + specifier: 1.1.3 + version: 1.1.3 + watchpack: + specifier: 2.4.0 + version: 2.4.0 + webpack-dev-server: + specifier: ~4.9.3 + version: 4.9.3(@types/webpack@4.41.32)(webpack@4.47.0) + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@types/watchpack': + specifier: 2.4.0 + version: 2.4.0 + '@types/webpack': + specifier: 4.41.32 + version: 4.41.32 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + + ../../../heft-plugins/heft-webpack5-plugin: + dependencies: + '@rushstack/debug-certificate-manager': + specifier: workspace:* + version: link:../../libraries/debug-certificate-manager + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@types/tapable': + specifier: 1.0.6 + version: 1.0.6 + tapable: + specifier: 1.1.3 + version: 1.1.3 + watchpack: + specifier: 2.4.0 + version: 2.4.0 + webpack-dev-server: + specifier: ~4.9.3 + version: 4.9.3(webpack@5.82.1) + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@types/watchpack': + specifier: 2.4.0 + version: 2.4.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../libraries/api-extractor-model: + dependencies: + '@microsoft/tsdoc': + specifier: ~0.15.0 + version: 0.15.0 + '@microsoft/tsdoc-config': + specifier: ~0.17.0 + version: 0.17.0 + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + + ../../../libraries/debug-certificate-manager: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + node-forge: + specifier: ~1.3.1 + version: 1.3.1 + sudo: + specifier: ~1.0.3 + version: 1.0.3 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/node-forge': + specifier: 1.0.4 + version: 1.0.4 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../libraries/heft-config-file: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + '@rushstack/rig-package': + specifier: workspace:* + version: link:../rig-package + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + jsonpath-plus: + specifier: ~4.0.0 + version: 4.0.0 + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + + ../../../libraries/load-themed-styles: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-web-rig: + specifier: workspace:* + version: link:../../rigs/local-web-rig + + ../../../libraries/localization-utilities: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + '@rushstack/typings-generator': + specifier: workspace:* + version: link:../typings-generator + pseudolocale: + specifier: ~1.1.0 + version: 1.1.0 + xmldoc: + specifier: ~1.1.2 + version: 1.1.4 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/xmldoc': + specifier: 1.1.4 + version: 1.1.4 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../libraries/lookup-by-path: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../libraries/module-minifier: + dependencies: + '@rushstack/worker-pool': + specifier: workspace:* + version: link:../worker-pool + serialize-javascript: + specifier: 6.0.0 + version: 6.0.0 + source-map: + specifier: ~0.7.3 + version: 0.7.4 + terser: + specifier: ^5.9.0 + version: 5.29.2 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/serialize-javascript': + specifier: 5.0.2 + version: 5.0.2 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../libraries/node-core-library: + dependencies: + ajv: + specifier: ~8.13.0 + version: 8.13.0 + ajv-draft-04: + specifier: ~1.0.0 + version: 1.0.0(ajv@8.13.0) + ajv-formats: + specifier: ~3.0.1 + version: 3.0.1(ajv@8.13.0) + fs-extra: + specifier: ~7.0.1 + version: 7.0.1 + import-lazy: + specifier: ~4.0.0 + version: 4.0.0 + jju: + specifier: ~1.4.0 + version: 1.4.0 + resolve: + specifier: ~1.22.1 + version: 1.22.8 + semver: + specifier: ~7.5.4 + version: 7.5.4 + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/fs-extra': + specifier: 7.0.0 + version: 7.0.0 + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/jju': + specifier: 1.4.1 + version: 1.4.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/resolve': + specifier: 1.20.2 + version: 1.20.2 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + + ../../../libraries/operation-graph: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + + ../../../libraries/package-deps-hash: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../libraries/package-extractor: + dependencies: + '@pnpm/link-bins': + specifier: ~5.3.7 + version: 5.3.25 + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + ignore: + specifier: ~5.1.6 + version: 5.1.9 + jszip: + specifier: ~3.8.0 + version: 3.8.0 + minimatch: + specifier: ~3.0.3 + version: 3.0.8 + npm-packlist: + specifier: ~2.1.2 + version: 2.1.5 + semver: + specifier: ~7.5.4 + version: 7.5.4 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack5-plugin + '@rushstack/webpack-preserve-dynamic-require-plugin': + specifier: workspace:* + version: link:../../webpack/preserve-dynamic-require-plugin + '@types/glob': + specifier: 7.1.1 + version: 7.1.1 + '@types/minimatch': + specifier: 3.0.5 + version: 3.0.5 + '@types/npm-packlist': + specifier: ~1.1.1 + version: 1.1.2 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../libraries/rig-package: + dependencies: + resolve: + specifier: ~1.22.1 + version: 1.22.8 + strip-json-comments: + specifier: ~3.1.1 + version: 3.1.1 + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/resolve': + specifier: 1.20.2 + version: 1.20.2 + ajv: + specifier: ~8.13.0 + version: 8.13.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + + ../../../libraries/rush-lib: + dependencies: + '@pnpm/dependency-path': + specifier: ~2.1.2 + version: 2.1.8 + '@pnpm/link-bins': + specifier: ~5.3.7 + version: 5.3.25 + '@rushstack/heft-config-file': + specifier: workspace:* + version: link:../heft-config-file + '@rushstack/lookup-by-path': + specifier: workspace:* + version: link:../lookup-by-path + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + '@rushstack/package-deps-hash': + specifier: workspace:* + version: link:../package-deps-hash + '@rushstack/package-extractor': + specifier: workspace:* + version: link:../package-extractor + '@rushstack/rig-package': + specifier: workspace:* + version: link:../rig-package + '@rushstack/stream-collator': + specifier: workspace:* + version: link:../stream-collator + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../ts-command-line + '@types/node-fetch': + specifier: 2.6.2 + version: 2.6.2 + '@yarnpkg/lockfile': + specifier: ~1.0.2 + version: 1.0.2 + builtin-modules: + specifier: ~3.1.0 + version: 3.1.0 + cli-table: + specifier: ~0.3.1 + version: 0.3.11 + dependency-path: + specifier: ~9.2.8 + version: 9.2.8 + fast-glob: + specifier: ~3.3.1 + version: 3.3.2 + figures: + specifier: 3.0.0 + version: 3.0.0 + git-repo-info: + specifier: ~2.1.0 + version: 2.1.1 + glob-escape: + specifier: ~0.0.2 + version: 0.0.2 + https-proxy-agent: + specifier: ~5.0.0 + version: 5.0.1 + ignore: + specifier: ~5.1.6 + version: 5.1.9 + inquirer: + specifier: ~7.3.3 + version: 7.3.3 + js-yaml: + specifier: ~3.13.1 + version: 3.13.1 + node-fetch: + specifier: 2.6.7 + version: 2.6.7 + npm-check: + specifier: ~6.0.1 + version: 6.0.1 + npm-package-arg: + specifier: ~6.1.0 + version: 6.1.1 + pnpm-sync-lib: + specifier: 0.2.9 + version: 0.2.9 + read-package-tree: + specifier: ~5.1.5 + version: 5.1.6 + rxjs: + specifier: ~6.6.7 + version: 6.6.7 + semver: + specifier: ~7.5.4 + version: 7.5.4 + ssri: + specifier: ~8.0.0 + version: 8.0.1 + strict-uri-encode: + specifier: ~2.0.0 + version: 2.0.0 + tapable: + specifier: 2.2.1 + version: 2.2.1 + tar: + specifier: ~6.2.1 + version: 6.2.1 + true-case-path: + specifier: ~2.2.1 + version: 2.2.1 + uuid: + specifier: ~8.3.2 + version: 8.3.2 + devDependencies: + '@pnpm/logger': + specifier: 4.0.0 + version: 4.0.0 + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack5-plugin + '@rushstack/operation-graph': + specifier: workspace:* + version: link:../operation-graph + '@rushstack/webpack-deep-imports-plugin': + specifier: workspace:* + version: link:../../webpack/webpack-deep-imports-plugin + '@rushstack/webpack-preserve-dynamic-require-plugin': + specifier: workspace:* + version: link:../../webpack/preserve-dynamic-require-plugin + '@types/cli-table': + specifier: 0.3.0 + version: 0.3.0 + '@types/inquirer': + specifier: 7.3.1 + version: 7.3.1 + '@types/js-yaml': + specifier: 3.12.1 + version: 3.12.1 + '@types/npm-package-arg': + specifier: 6.1.0 + version: 6.1.0 + '@types/read-package-tree': + specifier: 5.1.0 + version: 5.1.0 + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + '@types/ssri': + specifier: ~7.1.0 + version: 7.1.5 + '@types/strict-uri-encode': + specifier: 2.0.0 + version: 2.0.0 + '@types/tar': + specifier: 6.1.6 + version: 6.1.6 + '@types/uuid': + specifier: ~8.3.4 + version: 8.3.4 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../libraries/rush-sdk: + dependencies: + '@rushstack/lookup-by-path': + specifier: workspace:* + version: link:../lookup-by-path + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + '@types/node-fetch': + specifier: 2.6.2 + version: 2.6.2 + tapable: + specifier: 2.2.1 + version: 2.2.1 + devDependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../rush-lib + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack5-plugin + '@rushstack/stream-collator': + specifier: workspace:* + version: link:../stream-collator + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../ts-command-line + '@rushstack/webpack-preserve-dynamic-require-plugin': + specifier: workspace:* + version: link:../../webpack/preserve-dynamic-require-plugin + '@types/semver': + specifier: 7.5.0 + version: 7.5.0 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../libraries/rush-themed-ui: + dependencies: + react: + specifier: ~17.0.2 + version: 17.0.2 + react-dom: + specifier: ~17.0.2 + version: 17.0.2(react@17.0.2) + devDependencies: + '@radix-ui/colors': + specifier: ~0.1.8 + version: 0.1.9 + '@radix-ui/react-checkbox': + specifier: ~1.0.1 + version: 1.0.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-icons': + specifier: ~1.1.1 + version: 1.1.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-scroll-area': + specifier: ~1.0.2 + version: 1.0.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-tabs': + specifier: ~1.0.1 + version: 1.0.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/react': + specifier: 17.0.74 + version: 17.0.74 + '@types/react-dom': + specifier: 17.0.25 + version: 17.0.25 + local-web-rig: + specifier: workspace:* + version: link:../../rigs/local-web-rig + + ../../../libraries/rushell: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../libraries/stream-collator: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../libraries/terminal: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + supports-color: + specifier: ~8.1.1 + version: 8.1.1 + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/supports-color': + specifier: 8.1.3 + version: 8.1.3 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + + ../../../libraries/tree-pattern: + devDependencies: + '@rushstack/eslint-config': + specifier: 3.7.0 + version: 3.7.0(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../libraries/ts-command-line: + dependencies: + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + '@types/argparse': + specifier: 1.0.38 + version: 1.0.38 + argparse: + specifier: ~1.0.9 + version: 1.0.10 + string-argv: + specifier: ~0.3.1 + version: 0.3.2 + devDependencies: + '@rushstack/heft': + specifier: 0.66.17 + version: 0.66.17(@types/node@18.17.15) + '@rushstack/heft-node-rig': + specifier: 2.6.15 + version: 2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1) + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + + ../../../libraries/typings-generator: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../terminal + chokidar: + specifier: ~3.4.0 + version: 3.4.3 + fast-glob: + specifier: ~3.3.1 + version: 3.3.2 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/glob': + specifier: 7.1.1 + version: 7.1.1 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../libraries/worker-pool: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../repo-scripts/doc-plugin-rush-stack: + dependencies: + '@microsoft/api-documenter': + specifier: workspace:* + version: link:../../apps/api-documenter + '@microsoft/api-extractor-model': + specifier: workspace:* + version: link:../../libraries/api-extractor-model + '@microsoft/tsdoc': + specifier: ~0.15.0 + version: 0.15.0 + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + js-yaml: + specifier: ~3.13.1 + version: 3.13.1 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/js-yaml': + specifier: 3.12.1 + version: 3.12.1 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../repo-scripts/generate-api-docs: + devDependencies: + '@microsoft/api-documenter': + specifier: workspace:* + version: link:../../apps/api-documenter + doc-plugin-rush-stack: + specifier: workspace:* + version: link:../doc-plugin-rush-stack + + ../../../repo-scripts/repo-toolbox: + dependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + diff: + specifier: ~5.0.0 + version: 5.0.0 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/diff': + specifier: 5.0.1 + version: 5.0.1 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../rigs/heft-node-rig: + dependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/eslint-config': + specifier: workspace:* + version: link:../../eslint/eslint-config + '@rushstack/heft-api-extractor-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-api-extractor-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + jest-environment-node: + specifier: ~29.5.0 + version: 29.5.0 + typescript: + specifier: ~5.4.2 + version: 5.4.2 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + + ../../../rigs/heft-web-rig: + dependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/eslint-config': + specifier: workspace:* + version: link:../../eslint/eslint-config + '@rushstack/heft-api-extractor-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-api-extractor-plugin + '@rushstack/heft-jest-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-jest-plugin + '@rushstack/heft-lint-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-lint-plugin + '@rushstack/heft-sass-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-sass-plugin + '@rushstack/heft-typescript-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-typescript-plugin + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack5-plugin + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + autoprefixer: + specifier: ~10.4.2 + version: 10.4.18(postcss@8.4.36) + css-loader: + specifier: ~6.6.0 + version: 6.6.0(webpack@5.82.1) + css-minimizer-webpack-plugin: + specifier: ~3.4.1 + version: 3.4.1(webpack@5.82.1) + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + html-webpack-plugin: + specifier: ~5.5.0 + version: 5.5.4(webpack@5.82.1) + jest-environment-jsdom: + specifier: ~29.5.0 + version: 29.5.0 + mini-css-extract-plugin: + specifier: ~2.5.3 + version: 2.5.3(webpack@5.82.1) + postcss: + specifier: ~8.4.6 + version: 8.4.36 + postcss-loader: + specifier: ~6.2.1 + version: 6.2.1(postcss@8.4.36)(webpack@5.82.1) + sass: + specifier: ~1.49.7 + version: 1.49.11 + sass-loader: + specifier: ~12.4.0 + version: 12.4.0(sass@1.49.11)(webpack@5.82.1) + source-map-loader: + specifier: ~3.0.1 + version: 3.0.2(webpack@5.82.1) + style-loader: + specifier: ~3.3.1 + version: 3.3.4(webpack@5.82.1) + terser-webpack-plugin: + specifier: ~5.3.1 + version: 5.3.10(webpack@5.82.1) + typescript: + specifier: ~5.4.2 + version: 5.4.2 + url-loader: + specifier: ~4.1.1 + version: 4.1.1(webpack@5.82.1) + webpack: + specifier: ~5.82.1 + version: 5.82.1 + webpack-bundle-analyzer: + specifier: ~4.5.0 + version: 4.5.0 + webpack-merge: + specifier: ~5.8.0 + version: 5.8.0 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + + ../../../rigs/local-node-rig: + dependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-node-rig': + specifier: workspace:* + version: link:../heft-node-rig + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + jest-junit: + specifier: 12.3.0 + version: 12.3.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../rigs/local-web-rig: + dependencies: + '@microsoft/api-extractor': + specifier: workspace:* + version: link:../../apps/api-extractor + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-web-rig': + specifier: workspace:* + version: link:../heft-web-rig + '@types/heft-jest': + specifier: 1.0.1 + version: 1.0.1 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + jest-junit: + specifier: 12.3.0 + version: 12.3.0 + local-eslint-config: + specifier: workspace:* + version: link:../../eslint/local-eslint-config + typescript: + specifier: ~5.4.2 + version: 5.4.2 + + ../../../rush-plugins/rush-amazon-s3-build-cache-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + https-proxy-agent: + specifier: ~5.0.0 + version: 5.0.1 + node-fetch: + specifier: 2.6.7 + version: 2.6.7 + devDependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/node-fetch': + specifier: 2.6.2 + version: 2.6.2 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../rush-plugins/rush-azure-storage-build-cache-plugin: + dependencies: + '@azure/identity': + specifier: ~4.2.1 + version: 4.2.1 + '@azure/storage-blob': + specifier: ~12.17.0 + version: 12.17.0 + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + devDependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../rush-plugins/rush-http-build-cache-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + https-proxy-agent: + specifier: ~5.0.0 + version: 5.0.1 + node-fetch: + specifier: 2.6.7 + version: 2.6.7 + devDependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@types/node-fetch': + specifier: 2.6.2 + version: 2.6.2 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../rush-plugins/rush-litewatch-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../rush-plugins/rush-redis-cobuild-plugin: + dependencies: + '@redis/client': + specifier: ~1.5.5 + version: 1.5.14 + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + devDependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../rush-plugins/rush-resolver-cache-plugin: + dependencies: + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + devDependencies: + '@rushstack/lookup-by-path': + specifier: workspace:* + version: link:../../libraries/lookup-by-path + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@rushstack/webpack-workspace-resolve-plugin': + specifier: workspace:* + version: link:../../webpack/webpack-workspace-resolve-plugin + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../rush-plugins/rush-serve-plugin: + dependencies: + '@rushstack/debug-certificate-manager': + specifier: workspace:* + version: link:../../libraries/debug-certificate-manager + '@rushstack/heft-config-file': + specifier: workspace:* + version: link:../../libraries/heft-config-file + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rig-package': + specifier: workspace:* + version: link:../../libraries/rig-package + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + compression: + specifier: ~1.7.4 + version: 1.7.4 + cors: + specifier: ~2.8.5 + version: 2.8.5 + express: + specifier: 4.19.2 + version: 4.19.2 + http2-express-bridge: + specifier: ~1.0.7 + version: 1.0.7(@types/express@4.17.21) + ws: + specifier: ~8.14.1 + version: 8.14.2 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@types/compression': + specifier: ~1.7.2 + version: 1.7.5(@types/express@4.17.21) + '@types/cors': + specifier: ~2.8.12 + version: 2.8.17 + '@types/express': + specifier: 4.17.21 + version: 4.17.21 + '@types/ws': + specifier: 8.5.5 + version: 8.5.5 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../vscode-extensions/rush-vscode-command-webview: + dependencies: + '@fluentui/react': + specifier: ^8.96.1 + version: 8.115.7(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-components': + specifier: ~9.27.0 + version: 9.27.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@reduxjs/toolkit': + specifier: ~1.8.6 + version: 1.8.6(react-redux@8.0.7)(react@17.0.2) + react: + specifier: ~17.0.2 + version: 17.0.2 + react-dom: + specifier: ~17.0.2 + version: 17.0.2(react@17.0.2) + react-hook-form: + specifier: ~7.24.1 + version: 7.24.2(react@17.0.2) + react-redux: + specifier: ~8.0.4 + version: 8.0.7(@reduxjs/toolkit@1.8.6)(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(redux@4.2.1) + redux: + specifier: ~4.2.0 + version: 4.2.1 + scheduler: + specifier: 0.19.0 + version: 0.19.0 + tslib: + specifier: ~2.3.1 + version: 2.3.1 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + '@types/react': + specifier: 17.0.74 + version: 17.0.74 + '@types/react-dom': + specifier: 17.0.25 + version: 17.0.25 + '@types/react-redux': + specifier: ~7.1.22 + version: 7.1.33 + '@types/vscode': + specifier: ^1.63.0 + version: 1.87.0 + eslint: + specifier: ~8.57.0 + version: 8.57.0(supports-color@8.1.1) + html-webpack-plugin: + specifier: ~5.5.0 + version: 5.5.4(webpack@5.82.1) + local-web-rig: + specifier: workspace:* + version: link:../../rigs/local-web-rig + webpack: + specifier: ~5.82.1 + version: 5.82.1 + webpack-bundle-analyzer: + specifier: ~4.5.0 + version: 4.5.0 + + ../../../vscode-extensions/rush-vscode-extension: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/rush-sdk': + specifier: workspace:* + version: link:../../libraries/rush-sdk + '@rushstack/rush-vscode-command-webview': + specifier: workspace:* + version: link:../rush-vscode-command-webview + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@rushstack/ts-command-line': + specifier: workspace:* + version: link:../../libraries/ts-command-line + devDependencies: + '@microsoft/rush-lib': + specifier: workspace:* + version: link:../../libraries/rush-lib + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/heft-webpack5-plugin': + specifier: workspace:* + version: link:../../heft-plugins/heft-webpack5-plugin + '@rushstack/package-extractor': + specifier: workspace:* + version: link:../../libraries/package-extractor + '@rushstack/webpack-preserve-dynamic-require-plugin': + specifier: workspace:* + version: link:../../webpack/preserve-dynamic-require-plugin + '@types/glob': + specifier: 7.1.1 + version: 7.1.1 + '@types/mocha': + specifier: 10.0.6 + version: 10.0.6 + '@types/vscode': + specifier: ^1.63.0 + version: 1.87.0 + '@types/webpack-env': + specifier: 1.18.0 + version: 1.18.0 + '@vscode/test-electron': + specifier: ^1.6.2 + version: 1.6.2 + glob: + specifier: ~7.0.5 + version: 7.0.6 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + mocha: + specifier: ^10.1.0 + version: 10.4.0 + vsce: + specifier: ~2.14.0 + version: 2.14.0 + + ../../../webpack/hashed-folder-copy-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + fast-glob: + specifier: ~3.3.1 + version: 3.3.2 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/estree': + specifier: 1.0.5 + version: 1.0.5 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + memfs: + specifier: 3.4.3 + version: 3.4.3 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../webpack/loader-load-themed-styles: + dependencies: + loader-utils: + specifier: 1.4.2 + version: 1.4.2 + devDependencies: + '@microsoft/load-themed-styles': + specifier: workspace:* + version: link:../../libraries/load-themed-styles + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/loader-utils': + specifier: 1.1.3 + version: 1.1.3 + '@types/webpack': + specifier: 4.41.32 + version: 4.41.32 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../webpack/loader-raw-script: + dependencies: + loader-utils: + specifier: 1.4.2 + version: 1.4.2 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + + ../../../webpack/preserve-dynamic-require-plugin: + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../webpack/set-webpack-public-path-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/webpack-plugin-utilities': + specifier: workspace:* + version: link:../webpack-plugin-utilities + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + memfs: + specifier: 3.4.3 + version: 3.4.3 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../webpack/webpack-deep-imports-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../webpack/webpack-embedded-dependencies-plugin: + dependencies: + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/webpack-plugin-utilities': + specifier: workspace:* + version: link:../webpack-plugin-utilities + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + memfs: + specifier: 3.4.3 + version: 3.4.3 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../webpack/webpack-plugin-utilities: + dependencies: + memfs: + specifier: 3.4.3 + version: 3.4.3 + webpack-merge: + specifier: ~5.8.0 + version: 5.8.0 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/tapable': + specifier: 1.0.6 + version: 1.0.6 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../webpack/webpack-workspace-resolve-plugin: + dependencies: + '@rushstack/lookup-by-path': + specifier: workspace:* + version: link:../../libraries/lookup-by-path + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + memfs: + specifier: 3.4.3 + version: 3.4.3 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../webpack/webpack4-localization-plugin: + dependencies: + '@rushstack/localization-utilities': + specifier: workspace:* + version: link:../../libraries/localization-utilities + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + '@types/tapable': + specifier: 1.0.6 + version: 1.0.6 + loader-utils: + specifier: 1.4.2 + version: 1.4.2 + minimatch: + specifier: ~3.0.3 + version: 3.0.8 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/set-webpack-public-path-plugin': + specifier: ^4.1.16 + version: 4.1.16(@types/node@18.17.15)(@types/webpack@4.41.32)(webpack@4.47.0) + '@types/loader-utils': + specifier: 1.1.3 + version: 1.1.3 + '@types/minimatch': + specifier: 3.0.5 + version: 3.0.5 + '@types/node': + specifier: 18.17.15 + version: 18.17.15 + '@types/webpack': + specifier: 4.41.32 + version: 4.41.32 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + + ../../../webpack/webpack4-module-minifier-plugin: + dependencies: + '@rushstack/module-minifier': + specifier: workspace:* + version: link:../../libraries/module-minifier + '@rushstack/worker-pool': + specifier: workspace:* + version: link:../../libraries/worker-pool + '@types/tapable': + specifier: 1.0.6 + version: 1.0.6 + tapable: + specifier: 1.1.3 + version: 1.1.3 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@types/webpack': + specifier: 4.41.32 + version: 4.41.32 + '@types/webpack-sources': + specifier: 1.4.2 + version: 1.4.2 + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + webpack: + specifier: ~4.47.0 + version: 4.47.0(webpack-cli@3.3.12) + webpack-sources: + specifier: ~1.4.3 + version: 1.4.3 + + ../../../webpack/webpack5-load-themed-styles-loader: + devDependencies: + '@microsoft/load-themed-styles': + specifier: workspace:* + version: link:../../libraries/load-themed-styles + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + css-loader: + specifier: ~6.6.0 + version: 6.6.0(webpack@5.82.1) + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + memfs: + specifier: 3.4.3 + version: 3.4.3 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../webpack/webpack5-localization-plugin: + dependencies: + '@rushstack/localization-utilities': + specifier: workspace:* + version: link:../../libraries/localization-utilities + '@rushstack/node-core-library': + specifier: workspace:* + version: link:../../libraries/node-core-library + '@rushstack/terminal': + specifier: workspace:* + version: link:../../libraries/terminal + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + memfs: + specifier: 3.4.3 + version: 3.4.3 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + + ../../../webpack/webpack5-module-minifier-plugin: + dependencies: + '@rushstack/worker-pool': + specifier: workspace:* + version: link:../../libraries/worker-pool + '@types/estree': + specifier: 1.0.5 + version: 1.0.5 + '@types/tapable': + specifier: 1.0.6 + version: 1.0.6 + tapable: + specifier: 2.2.1 + version: 2.2.1 + devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft + '@rushstack/module-minifier': + specifier: workspace:* + version: link:../../libraries/module-minifier + local-node-rig: + specifier: workspace:* + version: link:../../rigs/local-node-rig + memfs: + specifier: 3.4.3 + version: 3.4.3 + webpack: + specifier: ~5.82.1 + version: 5.82.1 + +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 + + /@aws-cdk/asset-awscli-v1@2.2.202: + resolution: + { + integrity: sha512-JqlF0D4+EVugnG5dAsNZMqhu3HW7ehOXm5SDMxMbXNDMdsF0pxtQKNHRl52z1U9igsHmaFpUgSGjbhAJ+0JONg== + } + dev: true + + /@aws-cdk/asset-kubectl-v20@2.1.2: + resolution: + { + integrity: sha512-3M2tELJOxQv0apCIiuKQ4pAbncz9GuLwnKFqxifWfe77wuMxyTRPmxssYHs42ePqzap1LT6GDcPygGs+hHstLg== + } + dev: true + + /@aws-cdk/asset-node-proxy-agent-v5@2.0.166: + resolution: + { + integrity: sha512-j0xnccpUQHXJKPgCwQcGGNu4lRiC1PptYfdxBIH1L4dRK91iBxtSQHESRQX+yB47oGLaF/WfNN/aF3WXwlhikg== + } + dev: true + + /@aws-cdk/aws-apigatewayv2-alpha@2.50.0-alpha.0(aws-cdk-lib@2.50.0)(constructs@10.0.130): + resolution: + { + integrity: sha512-dttWDqy+nTg/fD9y0egvj7/zdnOVEo0qyGsep1RV+p16R3F4ObMKyPVIg15fz57tK//Gp/i1QgXsZaSqbcWHOg== + } + engines: { node: '>= 14.15.0' } + deprecated: This package has been stabilized and moved to aws-cdk-lib + peerDependencies: + aws-cdk-lib: ^2.50.0 + constructs: ^10.0.0 + dependencies: + aws-cdk-lib: 2.50.0(constructs@10.0.130) + constructs: 10.0.130 + dev: true + + /@aws-cdk/aws-apigatewayv2-authorizers-alpha@2.50.0-alpha.0(@aws-cdk/aws-apigatewayv2-alpha@2.50.0-alpha.0)(aws-cdk-lib@2.50.0)(constructs@10.0.130): + resolution: + { + integrity: sha512-lMXnSpUSOYtCxoAxauNkGJZLsKMonHgd9rzlFUK2zxE7aC1lVwb4qYX4X9WJdvIExkFOHSZQzOTKM6SZqusssw== + } + engines: { node: '>= 14.15.0' } + deprecated: This package has been stabilized and moved to aws-cdk-lib + peerDependencies: + '@aws-cdk/aws-apigatewayv2-alpha': 2.50.0-alpha.0 + aws-cdk-lib: ^2.50.0 + constructs: ^10.0.0 + dependencies: + '@aws-cdk/aws-apigatewayv2-alpha': 2.50.0-alpha.0(aws-cdk-lib@2.50.0)(constructs@10.0.130) + aws-cdk-lib: 2.50.0(constructs@10.0.130) + constructs: 10.0.130 + dev: true + + /@aws-cdk/aws-apigatewayv2-integrations-alpha@2.50.0-alpha.0(@aws-cdk/aws-apigatewayv2-alpha@2.50.0-alpha.0)(aws-cdk-lib@2.50.0)(constructs@10.0.130): + resolution: + { + integrity: sha512-XEhz4HsU0HtQJnbs9XSb/yPN/1EEYAOZthWRKyniS9IWeGruVjEhWndoXpu0S7w+M5Bni7D9wrCTkqTgmTEvlw== + } + engines: { node: '>= 14.15.0' } + deprecated: This package has been stabilized and moved to aws-cdk-lib + peerDependencies: + '@aws-cdk/aws-apigatewayv2-alpha': 2.50.0-alpha.0 + aws-cdk-lib: ^2.50.0 + constructs: ^10.0.0 + dependencies: + '@aws-cdk/aws-apigatewayv2-alpha': 2.50.0-alpha.0(aws-cdk-lib@2.50.0)(constructs@10.0.130) + aws-cdk-lib: 2.50.0(constructs@10.0.130) + constructs: 10.0.130 + dev: true + + /@aws-cdk/aws-appsync-alpha@2.50.0-alpha.0(aws-cdk-lib@2.50.0)(constructs@10.0.130): + resolution: + { + integrity: sha512-ZA5M1z5MKOS+m68MMs5YySVFOjOdzrR6F+22Atx6mrCcAD9E5PypZ7tVSwtWYVYvoUnGMI7Bv5Umc3n4DCnjkg== + } + engines: { node: '>= 14.15.0' } + peerDependencies: + aws-cdk-lib: ^2.50.0 + constructs: ^10.0.0 + dependencies: + aws-cdk-lib: 2.50.0(constructs@10.0.130) + constructs: 10.0.130 + dev: true + + /@aws-crypto/ie11-detection@3.0.0: + resolution: + { + integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q== + } + dependencies: + tslib: 1.14.1 + dev: true + + /@aws-crypto/sha256-browser@3.0.0: + resolution: + { + integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ== + } + dependencies: + '@aws-crypto/ie11-detection': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-crypto/supports-web-crypto': 3.0.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.567.0 + '@aws-sdk/util-locate-window': 3.567.0 + '@aws-sdk/util-utf8-browser': 3.259.0 + tslib: 1.14.1 + dev: true + + /@aws-crypto/sha256-js@3.0.0: + resolution: + { + integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ== + } + dependencies: + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.567.0 + tslib: 1.14.1 + dev: true + + /@aws-crypto/supports-web-crypto@3.0.0: + resolution: + { + integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg== + } + dependencies: + tslib: 1.14.1 + dev: true + + /@aws-crypto/util@3.0.0: + resolution: + { + integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w== + } + dependencies: + '@aws-sdk/types': 3.567.0 + '@aws-sdk/util-utf8-browser': 3.259.0 + tslib: 1.14.1 + dev: true + + /@aws-sdk/client-codebuild@3.567.0(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0): + resolution: + { + integrity: sha512-M9T5tBYgYhtDj/n4zq153AK7T7PorQmct8CCaTm8Xd3AeH+ngEZY2DWvzh8EKmx9CMHj7hJvFHya3EMgthowQQ== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/core': 3.567.0 + '@aws-sdk/credential-provider-node': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0) + '@aws-sdk/middleware-host-header': 3.567.0 + '@aws-sdk/middleware-logger': 3.567.0 + '@aws-sdk/middleware-recursion-detection': 3.567.0 + '@aws-sdk/middleware-user-agent': 3.567.0 + '@aws-sdk/region-config-resolver': 3.567.0 + '@aws-sdk/types': 3.567.0 + '@aws-sdk/util-endpoints': 3.567.0 + '@aws-sdk/util-user-agent-browser': 3.567.0 + '@aws-sdk/util-user-agent-node': 3.567.0 + '@smithy/config-resolver': 2.2.0 + '@smithy/core': 1.4.2 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/hash-node': 2.2.0 + '@smithy/invalid-dependency': 2.2.0 + '@smithy/middleware-content-length': 2.2.0 + '@smithy/middleware-endpoint': 2.5.1 + '@smithy/middleware-retry': 2.3.1 + '@smithy/middleware-serde': 2.3.0 + '@smithy/middleware-stack': 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-body-length-browser': 2.2.0 + '@smithy/util-body-length-node': 2.3.0 + '@smithy/util-defaults-mode-browser': 2.2.1 + '@smithy/util-defaults-mode-node': 2.3.1 + '@smithy/util-endpoints': 1.2.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-retry': 2.2.0 + '@smithy/util-utf8': 2.3.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@aws-sdk/client-sso-oidc' + - '@aws-sdk/client-sts' + - aws-crt + dev: true + + /@aws-sdk/client-sso-oidc@3.567.0(@aws-sdk/client-sts@3.567.0): + resolution: + { + integrity: sha512-evLQINTzVbjWCaVTMIkn9FqCkAusjA65kDWkHgGdrwMeqEneqhuWl9uZMhl8x6AJ/fV4H3td8MBM2QRWB4Ttng== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/core': 3.567.0 + '@aws-sdk/credential-provider-node': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0) + '@aws-sdk/middleware-host-header': 3.567.0 + '@aws-sdk/middleware-logger': 3.567.0 + '@aws-sdk/middleware-recursion-detection': 3.567.0 + '@aws-sdk/middleware-user-agent': 3.567.0 + '@aws-sdk/region-config-resolver': 3.567.0 + '@aws-sdk/types': 3.567.0 + '@aws-sdk/util-endpoints': 3.567.0 + '@aws-sdk/util-user-agent-browser': 3.567.0 + '@aws-sdk/util-user-agent-node': 3.567.0 + '@smithy/config-resolver': 2.2.0 + '@smithy/core': 1.4.2 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/hash-node': 2.2.0 + '@smithy/invalid-dependency': 2.2.0 + '@smithy/middleware-content-length': 2.2.0 + '@smithy/middleware-endpoint': 2.5.1 + '@smithy/middleware-retry': 2.3.1 + '@smithy/middleware-serde': 2.3.0 + '@smithy/middleware-stack': 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-body-length-browser': 2.2.0 + '@smithy/util-body-length-node': 2.3.0 + '@smithy/util-defaults-mode-browser': 2.2.1 + '@smithy/util-defaults-mode-node': 2.3.1 + '@smithy/util-endpoints': 1.2.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-retry': 2.2.0 + '@smithy/util-utf8': 2.3.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@aws-sdk/client-sts' + - aws-crt + dev: true + + /@aws-sdk/client-sso@3.567.0: + resolution: + { + integrity: sha512-jcnT1m+altt9Xm2QErZBnETh+4ioeCb/p9bo0adLb9JCAuI/VcnIui5+CykvCzOAxQ8c8Soa19qycqCuUcjiCw== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/core': 3.567.0 + '@aws-sdk/middleware-host-header': 3.567.0 + '@aws-sdk/middleware-logger': 3.567.0 + '@aws-sdk/middleware-recursion-detection': 3.567.0 + '@aws-sdk/middleware-user-agent': 3.567.0 + '@aws-sdk/region-config-resolver': 3.567.0 + '@aws-sdk/types': 3.567.0 + '@aws-sdk/util-endpoints': 3.567.0 + '@aws-sdk/util-user-agent-browser': 3.567.0 + '@aws-sdk/util-user-agent-node': 3.567.0 + '@smithy/config-resolver': 2.2.0 + '@smithy/core': 1.4.2 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/hash-node': 2.2.0 + '@smithy/invalid-dependency': 2.2.0 + '@smithy/middleware-content-length': 2.2.0 + '@smithy/middleware-endpoint': 2.5.1 + '@smithy/middleware-retry': 2.3.1 + '@smithy/middleware-serde': 2.3.0 + '@smithy/middleware-stack': 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-body-length-browser': 2.2.0 + '@smithy/util-body-length-node': 2.3.0 + '@smithy/util-defaults-mode-browser': 2.2.1 + '@smithy/util-defaults-mode-node': 2.3.1 + '@smithy/util-endpoints': 1.2.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-retry': 2.2.0 + '@smithy/util-utf8': 2.3.0 + tslib: 2.6.2 + transitivePeerDependencies: + - aws-crt + dev: true + + /@aws-sdk/client-sts@3.567.0(@aws-sdk/client-sso-oidc@3.567.0): + resolution: + { + integrity: sha512-Hsbj/iJJZbajdYRja4MiqK7chaXim+cltaIslqjhTFCHlOct88qQRUAz2GHzNkyIH9glubLdwHqQZ+QmCf+4Vw== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/core': 3.567.0 + '@aws-sdk/credential-provider-node': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0) + '@aws-sdk/middleware-host-header': 3.567.0 + '@aws-sdk/middleware-logger': 3.567.0 + '@aws-sdk/middleware-recursion-detection': 3.567.0 + '@aws-sdk/middleware-user-agent': 3.567.0 + '@aws-sdk/region-config-resolver': 3.567.0 + '@aws-sdk/types': 3.567.0 + '@aws-sdk/util-endpoints': 3.567.0 + '@aws-sdk/util-user-agent-browser': 3.567.0 + '@aws-sdk/util-user-agent-node': 3.567.0 + '@smithy/config-resolver': 2.2.0 + '@smithy/core': 1.4.2 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/hash-node': 2.2.0 + '@smithy/invalid-dependency': 2.2.0 + '@smithy/middleware-content-length': 2.2.0 + '@smithy/middleware-endpoint': 2.5.1 + '@smithy/middleware-retry': 2.3.1 + '@smithy/middleware-serde': 2.3.0 + '@smithy/middleware-stack': 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-body-length-browser': 2.2.0 + '@smithy/util-body-length-node': 2.3.0 + '@smithy/util-defaults-mode-browser': 2.2.1 + '@smithy/util-defaults-mode-node': 2.3.1 + '@smithy/util-endpoints': 1.2.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-retry': 2.2.0 + '@smithy/util-utf8': 2.3.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@aws-sdk/client-sso-oidc' + - aws-crt + dev: true + + /@aws-sdk/core@3.567.0: + resolution: + { + integrity: sha512-zUDEQhC7blOx6sxhHdT75x98+SXQVdUIMu8z8AjqMWiYK2v4WkOS8i6dOS4E5OjL5J1Ac+ruy8op/Bk4AFqSIw== + } + engines: { node: '>=16.0.0' } + dependencies: + '@smithy/core': 1.4.2 + '@smithy/protocol-http': 3.3.0 + '@smithy/signature-v4': 2.3.0 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + fast-xml-parser: 4.2.5 + tslib: 2.6.2 + dev: true + + /@aws-sdk/credential-provider-env@3.567.0: + resolution: + { + integrity: sha512-2V9O9m/hrWtIBKfg+nYHTYUHSKOZdSWL53JRaN28zYoX4dPDWwP1GacP/Mq6LJhKRnByfmqh3W3ZBsKizauSug== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/property-provider': 2.2.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/credential-provider-http@3.567.0: + resolution: + { + integrity: sha512-MVSFmKo9ukxNyMYOk/u6gupGqktsbTZWh2uyULp0KLhuHPDTvWLmk96+6h6V2+GAp/J2QRK72l0EtjnHmcn3kg== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/property-provider': 2.2.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + '@smithy/util-stream': 2.2.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/credential-provider-ini@3.567.0(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0): + resolution: + { + integrity: sha512-azbZ3jYZmSD3oCzbjPOrI+pilRDV6H9qtJ3J4MCnbRYQxR8eu80l4Y0tXl0+GfHZCpdOJ9+uEhqU+yTiVrrOXg== + } + engines: { node: '>=16.0.0' } + peerDependencies: + '@aws-sdk/client-sts': ^3.567.0 + dependencies: + '@aws-sdk/client-sts': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0) + '@aws-sdk/credential-provider-env': 3.567.0 + '@aws-sdk/credential-provider-process': 3.567.0 + '@aws-sdk/credential-provider-sso': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0) + '@aws-sdk/credential-provider-web-identity': 3.567.0(@aws-sdk/client-sts@3.567.0) + '@aws-sdk/types': 3.567.0 + '@smithy/credential-provider-imds': 2.3.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@aws-sdk/client-sso-oidc' + - aws-crt + dev: true + + /@aws-sdk/credential-provider-node@3.567.0(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0): + resolution: + { + integrity: sha512-/kwYs2URdcXjKCPClUYrvdhhh7oRh1PWC0mehzy92c0I8hMdhIIpOmwJj8IoRIWdsCnPRatWBJBuE553y+HaUQ== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/credential-provider-env': 3.567.0 + '@aws-sdk/credential-provider-http': 3.567.0 + '@aws-sdk/credential-provider-ini': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0) + '@aws-sdk/credential-provider-process': 3.567.0 + '@aws-sdk/credential-provider-sso': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0) + '@aws-sdk/credential-provider-web-identity': 3.567.0(@aws-sdk/client-sts@3.567.0) + '@aws-sdk/types': 3.567.0 + '@smithy/credential-provider-imds': 2.3.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@aws-sdk/client-sso-oidc' + - '@aws-sdk/client-sts' + - aws-crt + dev: true + + /@aws-sdk/credential-provider-process@3.567.0: + resolution: + { + integrity: sha512-Bsp1bj8bnsvdLec9aXpBsHMlwCmO9TmRrZYyji7ZEUB003ZkxIgbqhe6TEKByrJd53KHfgeF+U4mWZAgBHDXfQ== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/credential-provider-sso@3.567.0(@aws-sdk/client-sso-oidc@3.567.0): + resolution: + { + integrity: sha512-7TjvMiMsyYANNBiWBArEe7SvqSkZH0FleGUzp+AgT8/CDyGDRdLk7ve2n9f1+iH28av5J0Nw8+TfscHCImrDrQ== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/client-sso': 3.567.0 + '@aws-sdk/token-providers': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0) + '@aws-sdk/types': 3.567.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@aws-sdk/client-sso-oidc' + - aws-crt + dev: true + + /@aws-sdk/credential-provider-web-identity@3.567.0(@aws-sdk/client-sts@3.567.0): + resolution: + { + integrity: sha512-0J7LgR7ll0glMFBz0d4ijCBB61G7ZNucbEKsCGpFk2csytXNPCZYobjzXpJO8QxxgQUGnb68CRB0bo+GQq8nPg== + } + engines: { node: '>=16.0.0' } + peerDependencies: + '@aws-sdk/client-sts': ^3.567.0 + dependencies: + '@aws-sdk/client-sts': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0) + '@aws-sdk/types': 3.567.0 + '@smithy/property-provider': 2.2.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/middleware-host-header@3.567.0: + resolution: + { + integrity: sha512-zQHHj2N3in9duKghH7AuRNrOMLnKhW6lnmb7dznou068DJtDr76w475sHp2TF0XELsOGENbbBsOlN/S5QBFBVQ== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/middleware-logger@3.567.0: + resolution: + { + integrity: sha512-12oUmPfSqzaTxO29TXJ9GnJ5qI6ed8iOvHvRLOoqI/TrFqLJnFwCka8E9tpP/sftMchd7wfefbhHhZK4J3ek8Q== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/middleware-recursion-detection@3.567.0: + resolution: + { + integrity: sha512-rFk3QhdT4IL6O/UWHmNdjJiURutBCy+ogGqaNHf/RELxgXH3KmYorLwCe0eFb5hq8f6vr3zl4/iH7YtsUOuo1w== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/middleware-user-agent@3.567.0: + resolution: + { + integrity: sha512-a7DBGMRBLWJU3BqrQjOtKS4/RcCh/BhhKqwjCE0FEhhm6A/GGuAs/DcBGOl6Y8Wfsby3vejSlppTLH/qtV1E9w== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/types': 3.567.0 + '@aws-sdk/util-endpoints': 3.567.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/region-config-resolver@3.567.0: + resolution: + { + integrity: sha512-VMDyYi5Dh2NydDiIARZ19DwMfbyq0llS736cp47qopmO6wzdeul7WRTx8NKfEYN0/AwEaqmTW0ohx58jSB1lYg== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-config-provider': 2.3.0 + '@smithy/util-middleware': 2.2.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/token-providers@3.567.0(@aws-sdk/client-sso-oidc@3.567.0): + resolution: + { + integrity: sha512-W9Zd7/504wGrNjHHbJeCms1j1M6/88cHtBhRTKOWa7mec1gCjrd0VB3JE1cRodc6OrbJZ9TmyarBg8er6X5aiA== + } + engines: { node: '>=16.0.0' } + peerDependencies: + '@aws-sdk/client-sso-oidc': ^3.567.0 + dependencies: + '@aws-sdk/client-sso-oidc': 3.567.0(@aws-sdk/client-sts@3.567.0) + '@aws-sdk/types': 3.567.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/types@3.567.0: + resolution: + { + integrity: sha512-JBznu45cdgQb8+T/Zab7WpBmfEAh77gsk99xuF4biIb2Sw1mdseONdoGDjEJX57a25TzIv/WUJ2oABWumckz1A== + } + engines: { node: '>=16.0.0' } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/util-endpoints@3.567.0: + resolution: + { + integrity: sha512-WVhot3qmi0BKL9ZKnUqsvCd++4RF2DsJIG32NlRaml1FT9KaqSzNv0RXeA6k/kYwiiNT7y3YWu3Lbzy7c6vG9g== + } + engines: { node: '>=16.0.0' } + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/types': 2.12.0 + '@smithy/util-endpoints': 1.2.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/util-locate-window@3.567.0: + resolution: + { + integrity: sha512-o05vqq2+IdIHVqu2L28D1aVzZRkjheyQQE0kAIB+aS0fr4hYidsO2XqkXRRnhkaOxW3VN5/K/p2gxCaKt6A1XA== + } + engines: { node: '>=16.0.0' } + dependencies: + tslib: 2.6.2 + dev: true + + /@aws-sdk/util-user-agent-browser@3.567.0: + resolution: + { + integrity: sha512-cqP0uXtZ7m7hRysf3fRyJwcY1jCgQTpJy7BHB5VpsE7DXlXHD5+Ur5L42CY7UrRPrB6lc6YGFqaAOs5ghMcLyA== + } + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/types': 2.12.0 + bowser: 2.11.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/util-user-agent-node@3.567.0: + resolution: + { + integrity: sha512-Fph602FBhLssed0x2GsRZyqJB8thcrKzbS53v57rQ6XHSQ6T8t2BUyrlXcBfDpoZQjnqobr0Uu2DG5UI3cgR6g== + } + engines: { node: '>=16.0.0' } + peerDependencies: + aws-crt: '>=1.0.0' + peerDependenciesMeta: + aws-crt: + optional: true + dependencies: + '@aws-sdk/types': 3.567.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@aws-sdk/util-utf8-browser@3.259.0: + resolution: + { + integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw== + } + dependencies: + tslib: 2.3.1 + dev: true + + /@azure/abort-controller@1.1.0: + resolution: + { + integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw== + } + engines: { node: '>=12.0.0' } + dependencies: + tslib: 2.3.1 + dev: false + + /@azure/abort-controller@2.1.0: + resolution: + { + integrity: sha512-SYtcG13aiV7znycu6plCClWUzD9BBtfnsbIxT89nkkRvQRB4n0kuZyJJvJ7hqdKOn7x7YoGKZ9lVStLJpLnOFw== + } + engines: { node: '>=18.0.0' } + dependencies: + tslib: 2.6.2 + dev: false + + /@azure/core-auth@1.7.0: + resolution: + { + integrity: sha512-OuDVn9z2LjyYbpu6e7crEwSipa62jX7/ObV/pmXQfnOG8cHwm363jYtg3FSX3GB1V7jsIKri1zgq7mfXkFk/qw== + } + engines: { node: '>=18.0.0' } + dependencies: + '@azure/abort-controller': 2.1.0 + '@azure/core-util': 1.8.0 + tslib: 2.6.2 + dev: false + + /@azure/core-client@1.9.0: + resolution: + { + integrity: sha512-x50SSD7bbG5wen3tMDI2oWVSAjt1K1xw6JZSnc6239RmBwqLJF9dPsKsh9w0Rzh5+mGpsu9FDu3DlsT0lo1+Uw== + } + engines: { node: '>=18.0.0' } + dependencies: + '@azure/abort-controller': 2.1.0 + '@azure/core-auth': 1.7.0 + '@azure/core-rest-pipeline': 1.15.0 + '@azure/core-tracing': 1.1.0 + '@azure/core-util': 1.8.0 + '@azure/logger': 1.1.0 + tslib: 2.6.2 + transitivePeerDependencies: + - supports-color + dev: false + + /@azure/core-http@3.0.4: + resolution: + { + integrity: sha512-Fok9VVhMdxAFOtqiiAtg74fL0UJkt0z3D+ouUUxcRLzZNBioPRAMJFVxiWoJljYpXsRi4GDQHzQHDc9AiYaIUQ== + } + engines: { node: '>=14.0.0' } + dependencies: + '@azure/abort-controller': 1.1.0 + '@azure/core-auth': 1.7.0 + '@azure/core-tracing': 1.0.0-preview.13 + '@azure/core-util': 1.8.0 + '@azure/logger': 1.1.0 + '@types/node-fetch': 2.6.2 + '@types/tunnel': 0.0.3 + form-data: 4.0.0 + node-fetch: 2.6.7 + process: 0.11.10 + tslib: 2.3.1 + tunnel: 0.0.6 + uuid: 8.3.2 + xml2js: 0.5.0 + transitivePeerDependencies: + - encoding + dev: false + + /@azure/core-lro@2.7.0: + resolution: + { + integrity: sha512-oj7d8vWEvOREIByH1+BnoiFwszzdE7OXUEd6UTv+cmx5HvjBBlkVezm3uZgpXWaxDj5ATL/k89+UMeGx1Ou9TQ== + } + engines: { node: '>=18.0.0' } + dependencies: + '@azure/abort-controller': 2.1.0 + '@azure/core-util': 1.8.0 + '@azure/logger': 1.1.0 + tslib: 2.6.2 + dev: false + + /@azure/core-paging@1.6.0: + resolution: + { + integrity: sha512-W8eRv7MVFx/jbbYfcRT5+pGnZ9St/P1UvOi+63vxPwuQ3y+xj+wqWTGxpkXUETv3szsqGu0msdxVtjszCeB4zA== + } + engines: { node: '>=18.0.0' } + dependencies: + tslib: 2.6.2 + dev: false + + /@azure/core-rest-pipeline@1.15.0: + resolution: + { + integrity: sha512-6kBQwE75ZVlOjBbp0/PX0fgNLHxoMDxHe3aIPV/RLVwrIDidxTbsHtkSbPNTkheMset3v9s1Z08XuMNpWRK/7w== + } + engines: { node: '>=18.0.0' } + dependencies: + '@azure/abort-controller': 2.1.0 + '@azure/core-auth': 1.7.0 + '@azure/core-tracing': 1.1.0 + '@azure/core-util': 1.8.0 + '@azure/logger': 1.1.0 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.4 + tslib: 2.6.2 + transitivePeerDependencies: + - supports-color + dev: false + + /@azure/core-tracing@1.0.0-preview.13: + resolution: + { + integrity: sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ== + } + engines: { node: '>=12.0.0' } + dependencies: + '@opentelemetry/api': 1.8.0 + tslib: 2.3.1 + dev: false + + /@azure/core-tracing@1.1.0: + resolution: + { + integrity: sha512-MVeJvGHB4jmF7PeHhyr72vYJsBJ3ff1piHikMgRaabPAC4P3rxhf9fm42I+DixLysBunskJWhsDQD2A+O+plkQ== + } + engines: { node: '>=18.0.0' } + dependencies: + tslib: 2.6.2 + dev: false + + /@azure/core-util@1.8.0: + resolution: + { + integrity: sha512-w8NrGnrlGDF7fj36PBnJhGXDK2Y3kpTOgL7Ksb5snEHXq/3EAbKYOp1yqme0yWCUlSDq5rjqvxSBAJmsqYac3w== + } + engines: { node: '>=18.0.0' } + dependencies: + '@azure/abort-controller': 2.1.0 + tslib: 2.6.2 + dev: false + + /@azure/identity@4.2.1: + resolution: + { + integrity: sha512-U8hsyC9YPcEIzoaObJlRDvp7KiF0MGS7xcWbyJSVvXRkC/HXo1f0oYeBYmEvVgRfacw7GHf6D6yAoh9JHz6A5Q== + } + engines: { node: '>=18.0.0' } + dependencies: + '@azure/abort-controller': 1.1.0 + '@azure/core-auth': 1.7.0 + '@azure/core-client': 1.9.0 + '@azure/core-rest-pipeline': 1.15.0 + '@azure/core-tracing': 1.1.0 + '@azure/core-util': 1.8.0 + '@azure/logger': 1.1.0 + '@azure/msal-browser': 3.17.0 + '@azure/msal-node': 2.9.2 + events: 3.3.0 + jws: 4.0.0 + open: 8.4.2 + stoppable: 1.1.0 + tslib: 2.3.1 + transitivePeerDependencies: + - supports-color + dev: false + + /@azure/logger@1.1.0: + resolution: + { + integrity: sha512-BnfkfzVEsrgbVCtqq0RYRMePSH2lL/cgUUR5sYRF4yNN10zJZq/cODz0r89k3ykY83MqeM3twR292a3YBNgC3w== + } + engines: { node: '>=18.0.0' } + dependencies: + tslib: 2.6.2 + dev: false + + /@azure/msal-browser@3.17.0: + resolution: + { + integrity: sha512-csccKXmW2z7EkZ0I3yAoW/offQt+JECdTIV/KrnRoZyM7wCSsQWODpwod8ZhYy7iOyamcHApR9uCh0oD1M+0/A== + } + engines: { node: '>=0.8.0' } + dependencies: + '@azure/msal-common': 14.12.0 + dev: false + + /@azure/msal-common@14.12.0: + resolution: + { + integrity: sha512-IDDXmzfdwmDkv4SSmMEyAniJf6fDu3FJ7ncOjlxkDuT85uSnLEhZi3fGZpoR7T4XZpOMx9teM9GXBgrfJgyeBw== + } + engines: { node: '>=0.8.0' } + dev: false + + /@azure/msal-node@2.9.2: + resolution: + { + integrity: sha512-8tvi6Cos3m+0KmRbPjgkySXi+UQU/QiuVRFnrxIwt5xZlEEFa69O04RTaNESGgImyBBlYbo2mfE8/U8Bbdk1WQ== + } + engines: { node: '>=16' } + dependencies: + '@azure/msal-common': 14.12.0 + jsonwebtoken: 9.0.2 + uuid: 8.3.2 + dev: false + + /@azure/storage-blob@12.17.0: + resolution: + { + integrity: sha512-sM4vpsCpcCApagRW5UIjQNlNylo02my2opgp0Emi8x888hZUvJ3dN69Oq20cEGXkMUWnoCrBaB0zyS3yeB87sQ== + } + engines: { node: '>=14.0.0' } + dependencies: + '@azure/abort-controller': 1.1.0 + '@azure/core-http': 3.0.4 + '@azure/core-lro': 2.7.0 + '@azure/core-paging': 1.6.0 + '@azure/core-tracing': 1.0.0-preview.13 + '@azure/logger': 1.1.0 + events: 3.3.0 + tslib: 2.3.1 + transitivePeerDependencies: + - encoding + dev: false + + /@babel/code-frame@7.12.11: + resolution: + { + integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + } + dependencies: + '@babel/highlight': 7.23.4 + 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 + + /@babel/compat-data@7.23.5: + resolution: + { + integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== + } + engines: { node: '>=6.9.0' } + + /@babel/core@7.12.9: + resolution: + { + integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.12.9) + '@babel/helpers': 7.24.0(supports-color@8.1.1) + '@babel/parser': 7.24.0 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.0(supports-color@8.1.1) + '@babel/types': 7.24.0 + convert-source-map: 1.9.0 + debug: 4.3.4(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + lodash: 4.17.21 + resolve: 1.22.8 + semver: 5.7.2 + source-map: 0.5.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/core@7.20.12(supports-color@8.1.1): + resolution: + { + integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg== + } + engines: { node: '>=6.9.0' } + dependencies: + '@ampproject/remapping': 2.3.0 + '@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.20.12) + '@babel/helpers': 7.24.0(supports-color@8.1.1) + '@babel/parser': 7.24.0 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.0(supports-color@8.1.1) + '@babel/types': 7.24.0 + convert-source-map: 1.9.0 + debug: 4.3.4(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /@babel/core@7.24.0: + resolution: + { + integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@ampproject/remapping': 2.3.0 + '@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.24.0) + '@babel/helpers': 7.24.0(supports-color@8.1.1) + '@babel/parser': 7.24.0 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.0(supports-color@8.1.1) + '@babel/types': 7.24.0 + convert-source-map: 2.0.0 + debug: 4.3.4(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator@7.23.6: + resolution: + { + integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.0 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + + /@babel/helper-annotate-as-pure@7.22.5: + resolution: + { + integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.0 + dev: true + + /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: + resolution: + { + integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.0 + 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.23.0 + lru-cache: 5.1.1 + semver: 6.3.1 + + /@babel/helper-create-class-features-plugin@7.24.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.20.12) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + dev: true + + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.20.12): + resolution: + { + integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-annotate-as-pure': 7.22.5 + regexpu-core: 5.3.2 + semver: 6.3.1 + dev: true + + /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.20.12): + resolution: + { + integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg== + } + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/traverse': 7.24.0(supports-color@8.1.1) + debug: 4.3.4(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q== + } + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.0 + debug: 4.3.4(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.20.12): + resolution: + { + integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA== + } + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.0 + debug: 4.3.4(supports-color@8.1.1) + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor@7.22.20: + resolution: + { + integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== + } + engines: { node: '>=6.9.0' } + + /@babel/helper-function-name@7.23.0: + resolution: + { + integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/template': 7.24.0 + '@babel/types': 7.24.0 + + /@babel/helper-hoist-variables@7.22.5: + resolution: + { + integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.0 + + /@babel/helper-member-expression-to-functions@7.23.0: + resolution: + { + integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.0 + 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.24.0 + + /@babel/helper-module-transforms@7.23.3(@babel/core@7.12.9): + resolution: + { + integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 + dev: true + + /@babel/helper-module-transforms@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 + + /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.0): + resolution: + { + integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.24.0 + '@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-optimise-call-expression@7.22.5: + resolution: + { + integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.0 + dev: true + + /@babel/helper-plugin-utils@7.10.4: + resolution: + { + integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== + } + dev: true + + /@babel/helper-plugin-utils@7.24.0: + resolution: + { + integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w== + } + engines: { node: '>=6.9.0' } + + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.20.12): + resolution: + { + integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 + dev: true + + /@babel/helper-replace-supers@7.22.20(@babel/core@7.20.12): + resolution: + { + integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + dev: true + + /@babel/helper-simple-access@7.22.5: + resolution: + { + integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.0 + + /@babel/helper-skip-transparent-expression-wrappers@7.22.5: + resolution: + { + integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.24.0 + 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.24.0 + + /@babel/helper-string-parser@7.23.4: + resolution: + { + integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== + } + engines: { node: '>=6.9.0' } + + /@babel/helper-validator-identifier@7.22.20: + resolution: + { + integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== + } + engines: { node: '>=6.9.0' } + + /@babel/helper-validator-option@7.23.5: + resolution: + { + integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== + } + engines: { node: '>=6.9.0' } + + /@babel/helper-wrap-function@7.22.20: + resolution: + { + integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.24.0 + '@babel/types': 7.24.0 + dev: true + + /@babel/helpers@7.24.0(supports-color@8.1.1): + resolution: + { + integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.0(supports-color@8.1.1) + '@babel/types': 7.24.0 + transitivePeerDependencies: + - supports-color + + /@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 + + /@babel/parser@7.24.0: + resolution: + { + integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg== + } + engines: { node: '>=6.0.0' } + hasBin: true + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.20.12) + dev: true + + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.20.12): + resolution: + { + integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.12): + resolution: + { + integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + } + engines: { node: '>=6.9.0' } + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-proposal-decorators@7.24.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-LiT1RqZWeij7X+wGxCoYh3/3b8nVOX6/7BZ9wiQgAIyjoeQWdROaodJCgT+dwtbjHaz0r7bEbHJzjSbVfcOyjQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-decorators': 7.24.0(@babel/core@7.20.12) + dev: true + + /@babel/plugin-proposal-export-default-from@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.12): + resolution: + { + integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== + } + engines: { node: '>=6.9.0' } + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9): + resolution: + { + integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA== + } + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.12.9) + dev: true + + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.20.12): + resolution: + { + integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== + } + engines: { node: '>=6.9.0' } + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== + } + engines: { node: '>=6.9.0' } + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.12): + resolution: + { + integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + } + engines: { node: '>=6.9.0' } + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.20.12): + resolution: + { + integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + dev: true + + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.12): + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.12): + resolution: + { + integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-decorators@7.24.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-MXW3pQCu9gUiVGzqkGqsgiINDVYXoAnrY8FYF/rmb+OfufNF0zHMpHPN4ulRrinxYT8Vk/aZJxYqOKsDECjKAw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-export-default-from@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9): + resolution: + { + integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9): + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.12): + resolution: + { + integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.12): + resolution: + { + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.20.12): + resolution: + { + integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.20.12): + resolution: + { + integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.20.12) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-classes@7.23.8(@babel/core@7.20.12): + resolution: + { + integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.20.12) + '@babel/helper-split-export-declaration': 7.22.6 + globals: 11.12.0 + dev: true + + /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/template': 7.24.0 + dev: true + + /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.20.12): + resolution: + { + integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + dev: true + + /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-literals@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-simple-access': 7.22.5 + dev: true + + /@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.20.12): + resolution: + { + integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-identifier': 7.22.20 + dev: true + + /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.20.12): + resolution: + { + integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-object-rest-spread@7.24.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.12.9): + resolution: + { + integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.20.12): + resolution: + { + integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.20.12): + resolution: + { + integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.20.12) + '@babel/types': 7.24.0 + dev: true + + /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + regenerator-transform: 0.15.2 + dev: true + + /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-spread@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + dev: true + + /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.20.12): + resolution: + { + integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.20.12) + dev: true + + /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.20.12) + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/preset-env@7.24.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.20.12) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.20.12) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.12) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.12) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.20.12) + '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.20.12) + '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.20.12) + '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.20.12) + '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-object-rest-spread': 7.24.0(@babel/core@7.20.12) + '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.20.12) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.20.12) + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.20.12) + babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.20.12) + babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.20.12) + core-js-compat: 3.36.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-flow@7.24.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-cum/nSi82cDaSJ21I4PgLTVlj0OXovFk6GRguJYe/IKg6y6JHLTbJhybtX4k35WT9wdeJfEVjycTixMhBHd0Dg== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.20.12) + dev: true + + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.20.12): + resolution: + { + integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA== + } + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/types': 7.24.0 + esutils: 2.0.3 + dev: true + + /@babel/preset-react@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.20.12) + '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.20.12) + dev: true + + /@babel/preset-typescript@7.23.3(@babel/core@7.20.12): + resolution: + { + integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.20.12) + dev: true + + /@babel/register@7.23.7(@babel/core@7.20.12): + resolution: + { + integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ== + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.6 + source-map-support: 0.5.21 + dev: true + + /@babel/regjsgen@0.8.0: + resolution: + { + integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + } + dev: true + + /@babel/runtime@7.24.0: + resolution: + { + integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw== + } + engines: { node: '>=6.9.0' } + dependencies: + regenerator-runtime: 0.14.1 + + /@babel/template@7.24.0: + resolution: + { + integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA== + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/code-frame': 7.23.5 + '@babel/parser': 7.24.0 + '@babel/types': 7.24.0 + + /@babel/traverse@7.24.0(supports-color@8.1.1): + resolution: + { + integrity: sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw== + } + 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.24.0 + '@babel/types': 7.24.0 + debug: 4.3.4(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + /@babel/types@7.24.0: + resolution: + { + integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w== + } + 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 + + /@balena/dockerignore@1.0.2: + resolution: + { + integrity: sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q== + } + dev: true + + /@base2/pretty-print-object@1.0.1: + resolution: + { + integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA== + } + dev: true + + /@bcoe/v8-coverage@0.2.3: + resolution: + { + integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + } + + /@bufbuild/protobuf@1.8.0: + resolution: + { + integrity: sha512-qR9FwI8QKIveDnUYutvfzbC21UZJJryYrLuZGjeZ/VGz+vXelUkK+xgkOHsvPEdYEdxtgUUq4313N8QtOehJ1Q== + } + dev: false + + /@cnakazawa/watch@1.0.4: + resolution: + { + integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== + } + engines: { node: '>=0.1.95' } + hasBin: true + dependencies: + exec-sh: 0.3.6 + minimist: 1.2.8 + dev: true + + /@colors/colors@1.5.0: + resolution: + { + integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + } + engines: { node: '>=0.1.90' } + requiresBuild: true + dev: true + optional: true + + /@devexpress/error-stack-parser@2.0.6: + resolution: + { + integrity: sha512-fneVypElGUH6Be39mlRZeAu00pccTlf4oVuzf9xPJD1cdEqI8NyAiQua/EW7lZdrbMUbgyXcJmfKPefhYius3A== + } + dependencies: + stackframe: 1.3.4 + dev: false + + /@discoveryjs/json-ext@0.5.7: + resolution: + { + integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== + } + engines: { node: '>=10.0.0' } + dev: true + + /@emotion/cache@10.0.29: + resolution: + { + integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ== + } + dependencies: + '@emotion/sheet': 0.9.4 + '@emotion/stylis': 0.8.5 + '@emotion/utils': 0.11.3 + '@emotion/weak-memoize': 0.2.5 + dev: true + + /@emotion/core@10.3.1(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww== + } + peerDependencies: + '@types/react': '>=16' + react: '>=16.3.0' + dependencies: + '@babel/runtime': 7.24.0 + '@emotion/cache': 10.0.29 + '@emotion/css': 10.0.27 + '@emotion/serialize': 0.11.16 + '@emotion/sheet': 0.9.4 + '@emotion/utils': 0.11.3 + '@types/react': 17.0.74 + react: 17.0.2 + dev: true + + /@emotion/css@10.0.27: + resolution: + { + integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw== + } + dependencies: + '@emotion/serialize': 0.11.16 + '@emotion/utils': 0.11.3 + babel-plugin-emotion: 10.2.2 + dev: true + + /@emotion/hash@0.8.0: + resolution: + { + integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow== + } + dev: true + + /@emotion/hash@0.9.1: + resolution: + { + integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ== + } + + /@emotion/is-prop-valid@0.8.8: + resolution: + { + integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA== + } + dependencies: + '@emotion/memoize': 0.7.4 + dev: true + + /@emotion/memoize@0.7.4: + resolution: + { + integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw== + } + dev: true + + /@emotion/memoize@0.8.1: + resolution: + { + integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA== + } + dev: true + + /@emotion/serialize@0.11.16: + resolution: + { + integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg== + } + dependencies: + '@emotion/hash': 0.8.0 + '@emotion/memoize': 0.7.4 + '@emotion/unitless': 0.7.5 + '@emotion/utils': 0.11.3 + csstype: 2.6.21 + dev: true + + /@emotion/serialize@1.1.3: + resolution: + { + integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA== + } + dependencies: + '@emotion/hash': 0.9.1 + '@emotion/memoize': 0.8.1 + '@emotion/unitless': 0.8.1 + '@emotion/utils': 1.2.1 + csstype: 3.1.3 + dev: true + + /@emotion/sheet@0.9.4: + resolution: + { + integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA== + } + dev: true + + /@emotion/styled-base@10.3.0(@emotion/core@10.3.1)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w== + } + peerDependencies: + '@emotion/core': ^10.0.28 + '@types/react': '>=16' + react: '>=16.3.0' + dependencies: + '@babel/runtime': 7.24.0 + '@emotion/core': 10.3.1(@types/react@17.0.74)(react@17.0.2) + '@emotion/is-prop-valid': 0.8.8 + '@emotion/serialize': 0.11.16 + '@emotion/utils': 0.11.3 + '@types/react': 17.0.74 + react: 17.0.2 + dev: true + + /@emotion/styled@10.3.0(@emotion/core@10.3.1)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ== + } + peerDependencies: + '@emotion/core': ^10.0.27 + '@types/react': '>=16' + react: '>=16.3.0' + dependencies: + '@emotion/core': 10.3.1(@types/react@17.0.74)(react@17.0.2) + '@emotion/styled-base': 10.3.0(@emotion/core@10.3.1)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + babel-plugin-emotion: 10.2.2 + react: 17.0.2 + dev: true + + /@emotion/stylis@0.8.5: + resolution: + { + integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== + } + dev: true + + /@emotion/unitless@0.7.5: + resolution: + { + integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== + } + dev: true + + /@emotion/unitless@0.8.1: + resolution: + { + integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ== + } + dev: true + + /@emotion/utils@0.11.3: + resolution: + { + integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw== + } + dev: true + + /@emotion/utils@1.2.1: + resolution: + { + integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg== + } + dev: true + + /@emotion/weak-memoize@0.2.5: + resolution: + { + integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== + } + dev: true + + /@es-joy/jsdoccomment@0.17.0: + resolution: + { + integrity: sha512-B8DIIWE194KyQFPojUs+THa2XX+1vulwTBjirw6GqcxjtNE60Rreex26svBnV9SNLTuz92ctZx5XQE1H7yOxgA== + } + engines: { node: ^12 || ^14 || ^16 || ^17 } + dependencies: + comment-parser: 1.3.0 + esquery: 1.5.0 + jsdoc-type-pratt-parser: 2.2.5 + dev: false + + /@esbuild/aix-ppc64@0.20.2: + resolution: + { + integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== + } + engines: { node: '>=12' } + cpu: [ppc64] + os: [aix] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64@0.20.2: + resolution: + { + integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm@0.20.2: + resolution: + { + integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== + } + engines: { node: '>=12' } + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64@0.20.2: + resolution: + { + integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== + } + engines: { node: '>=12' } + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.20.2: + resolution: + { + integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64@0.20.2: + resolution: + { + integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== + } + engines: { node: '>=12' } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64@0.20.2: + resolution: + { + integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64@0.20.2: + resolution: + { + integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== + } + engines: { node: '>=12' } + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.20.2: + resolution: + { + integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm@0.20.2: + resolution: + { + integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== + } + engines: { node: '>=12' } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.20.2: + resolution: + { + integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== + } + engines: { node: '>=12' } + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.14.54: + resolution: + { + integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw== + } + engines: { node: '>=12' } + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.20.2: + resolution: + { + integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== + } + engines: { node: '>=12' } + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.20.2: + resolution: + { + integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== + } + engines: { node: '>=12' } + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64@0.20.2: + resolution: + { + integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== + } + engines: { node: '>=12' } + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64@0.20.2: + resolution: + { + integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== + } + engines: { node: '>=12' } + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x@0.20.2: + resolution: + { + integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== + } + engines: { node: '>=12' } + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64@0.20.2: + resolution: + { + integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== + } + engines: { node: '>=12' } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64@0.20.2: + resolution: + { + integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== + } + engines: { node: '>=12' } + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.20.2: + resolution: + { + integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== + } + engines: { node: '>=12' } + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64@0.20.2: + resolution: + { + integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== + } + engines: { node: '>=12' } + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.20.2: + resolution: + { + integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32@0.20.2: + resolution: + { + integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== + } + engines: { node: '>=12' } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.20.2: + resolution: + { + integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== + } + engines: { node: '>=12' } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint-community/eslint-utils@4.4.0(eslint@7.11.0): + resolution: + { + integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 7.11.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /@eslint-community/eslint-utils@4.4.0(eslint@7.30.0): + resolution: + { + integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 7.30.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /@eslint-community/eslint-utils@4.4.0(eslint@7.7.0): + resolution: + { + integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 7.7.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0): + resolution: + { + integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.57.0(supports-color@8.1.1) + eslint-visitor-keys: 3.4.3 + + /@eslint-community/regexpp@4.10.0: + resolution: + { + integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + + /@eslint/eslintrc@0.1.3: + resolution: + { + integrity: sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA== + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 7.3.1 + globals: 12.4.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + js-yaml: 3.13.1 + lodash: 4.17.21 + minimatch: 3.0.8 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/eslintrc@0.4.3: + resolution: + { + integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 7.3.1 + globals: 13.24.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + js-yaml: 3.13.1 + minimatch: 3.0.8 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/eslintrc@1.4.1: + resolution: + { + integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/eslintrc@2.1.4(supports-color@8.1.1): + resolution: + { + integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + /@eslint/eslintrc@3.0.2: + resolution: + { + integrity: sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 10.0.1 + globals: 14.0.0 + ignore: 5.3.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/js@8.57.0: + resolution: + { + integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + + /@fastify/ajv-compiler@1.1.0: + resolution: + { + integrity: sha512-gvCOUNpXsWrIQ3A4aXCLIdblL0tDq42BG/2Xw7oxbil9h11uow10ztS2GuFazNBfjbrsZ5nl+nPl5jDSjj5TSg== + } + dependencies: + ajv: 6.12.6 + dev: false + + /@fastify/forwarded@1.0.0: + resolution: + { + integrity: sha512-VoO+6WD0aRz8bwgJZ8pkkxjq7o/782cQ1j945HWg0obZMgIadYW3Pew0+an+k1QL7IPZHM3db5WF6OP6x4ymMA== + } + engines: { node: '>= 10' } + dev: false + + /@fastify/proxy-addr@3.0.0: + resolution: + { + integrity: sha512-ty7wnUd/GeSqKTC2Jozsl5xGbnxUnEFC0On2/zPv/8ixywipQmVZwuWvNGnBoitJ2wixwVqofwXNua8j6Y62lQ== + } + dependencies: + '@fastify/forwarded': 1.0.0 + ipaddr.js: 2.1.0 + dev: false + + /@floating-ui/core@1.6.0: + resolution: + { + integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g== + } + dependencies: + '@floating-ui/utils': 0.2.1 + dev: false + + /@floating-ui/devtools@0.2.1(@floating-ui/dom@1.6.3): + resolution: + { + integrity: sha512-8PHJLbD6VhBh+LJ1uty/Bz30qs02NXCE5u8WpOhSewlYXUWl03GNXknr9AS2yaAWJEQaY27x7eByJs44gODBcw== + } + peerDependencies: + '@floating-ui/dom': '>=1.5.4' + dependencies: + '@floating-ui/dom': 1.6.3 + dev: false + + /@floating-ui/dom@1.6.3: + resolution: + { + integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw== + } + dependencies: + '@floating-ui/core': 1.6.0 + '@floating-ui/utils': 0.2.1 + dev: false + + /@floating-ui/utils@0.2.1: + resolution: + { + integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q== + } + dev: false + + /@fluentui/date-time-utilities@8.5.16: + resolution: + { + integrity: sha512-l+mLfJ2VhdHjBpELLLPDaWgT7GMLynm2aqR7SttbEb6Jh7hc/7ck1MWm93RTb3gYVHYai8SENqimNcvIxHt/zg== + } + dependencies: + '@fluentui/set-version': 8.2.14 + tslib: 2.3.1 + dev: false + + /@fluentui/dom-utilities@2.2.14: + resolution: + { + integrity: sha512-+4DVm5sNfJh+l8fM+7ylpOkGNZkNr4X1z1uKQPzRJ1PRhlnvc6vLpWNNicGwpjTbgufSrVtGKXwP5sf++r81lg== + } + dependencies: + '@fluentui/set-version': 8.2.14 + tslib: 2.3.1 + dev: false + + /@fluentui/font-icons-mdl2@8.5.33(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-SsHPRtE1COeW23RLy7yX/y+zqzbnhm5CVIrA4msG8ZWPFEtQ7sHyVM0Rt9iQs6vMPs1DWdGSQDozTE1LlKvR+Q== + } + dependencies: + '@fluentui/set-version': 8.2.14 + '@fluentui/style-utilities': 8.10.4(@types/react@17.0.74)(react@17.0.2) + '@fluentui/utilities': 8.14.0(@types/react@17.0.74)(react@17.0.2) + tslib: 2.3.1 + transitivePeerDependencies: + - '@types/react' + - react + dev: false + + /@fluentui/foundation-legacy@8.3.0(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-Uxrh3KFjo+t2pq4r0mKD1TVHitQwgSN+sWJbzPZvySa6+6lfCpLSBoH24FB+jGNxtOyG6MAk+oEWJBFrCYVpXQ== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/merge-styles': 8.6.0 + '@fluentui/set-version': 8.2.14 + '@fluentui/style-utilities': 8.10.4(@types/react@17.0.74)(react@17.0.2) + '@fluentui/utilities': 8.14.0(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + react: 17.0.2 + tslib: 2.3.1 + dev: false + + /@fluentui/keyboard-key@0.4.14: + resolution: + { + integrity: sha512-XzZHcyFEM20H23h3i15UpkHi2AhRBriXPGAHq0Jm98TKFppXehedjjEFuUsh+CyU5JKBhDalWp8TAQ1ArpNzow== + } + dependencies: + tslib: 2.3.1 + dev: false + + /@fluentui/keyboard-keys@9.0.7: + resolution: + { + integrity: sha512-vaQ+lOveQTdoXJYqDQXWb30udSfTVcIuKk1rV0X0eGAgcHeSDeP1HxMy+OgHOQZH3OiBH4ZYeWxb+tmfiDiygQ== + } + dependencies: + '@swc/helpers': 0.5.7 + dev: false + + /@fluentui/merge-styles@8.6.0: + resolution: + { + integrity: sha512-Si54VVK/XZQMTPT6aKE/RmqsY7uy9hERreU143Fbqtg9cf+Hr4iJ7FOGC4dXCfrFIXs0KvIHXCh5mtfrEW2aRQ== + } + dependencies: + '@fluentui/set-version': 8.2.14 + tslib: 2.3.1 + dev: false + + /@fluentui/priority-overflow@9.1.11: + resolution: + { + integrity: sha512-sdrpavvKX2kepQ1d6IaI3ObLq5SAQBPRHPGx2+wiMWL7cEx9vGGM0fmeicl3soqqmM5uwCmWnZk9QZv9XOY98w== + } + dependencies: + '@swc/helpers': 0.5.7 + dev: false + + /@fluentui/react-accordion@9.3.46(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-bFOF/uoPYL4AUQEIKFTgx8WZgeC39Vw2FiL6A2A0km0Z9yBgWg7LLsF73/MbgoO0GjH8BvO/2ddpgdd433jIRw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-aria': 9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-alert@9.0.0-beta.63(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-QGyD3fMCJjPVBPHaTHlm35k/mGBPo34LsEXQh2mjns02Cex7Tj6naCE8g9DOYvuaEOXQxxLJT2SGkqCgAsCt4g== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + '@types/react-dom': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + react-dom: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/react-avatar': 9.6.19(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-button': 9.3.73(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.0-alpha.13(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.4.36 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-aria@9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-M8wzxPZlMOLr7SlZXlSi/zCbLSsXrJzpMjLkTOPPlMrMu8He38oM6Djc4dCac/cZn8ERpKUDaoAK5JF/kbtLzQ== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-avatar@9.6.19(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-3/8BBoPXNGfcuNVN4+bpwpd124CEdFEm9VKD6hQ6VmIHM6phBWnQc6J7djuKlZTw7B5UEeqEOEZgMJeGUx27SA== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-badge': 9.2.29(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-popover': 9.9.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-tooltip': 9.4.21(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-badge@9.2.29(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-k2CMMzBLPCNq5WAUfkCvWqCPeh8/NsfLxQBre8klxFZS5TT872ViLwmYHXpHWTfFymFrChaedOd7C8ZYqeT4tA== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-button@9.3.73(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-VsCxj4pKWL1SVj0XlYBRs4kaFUfRVK3JqCWx9mlDuHYzeRzk4aBCBT5vBIzrrPTj3bR2yl/zOf6m5T43kyWZxw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-aria': 9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-card@9.0.72(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-sJQ0T0SOBZ8tTGMxmJhVYDaHsQe/+ECQwhPIb0irDnD3ojTbL/IjxONeBnxVJ5/xG6cA3rV6tfD8WrockIDXOg== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-checkbox@9.2.17(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-CnernbErbJZOeJAT6LflJlJt41n/nFReq6SHCnwrs6mt8NCZ6L5YU294kSPIHfLiJyRXjxUroDwQTsE+bwgKjw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-label': 9.1.66(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-combobox@9.9.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-wkA0a39zCMLmL6TVayRu3YppRzEjBeC+2OQzsM0A1ZH7Y/jRg/BxlIdJnrMVYrpLqcC3vGlPNrpsgVrvNmz25g== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-aria': 9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-portal': 9.4.18(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-positioning': 9.14.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-components@9.27.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-nVujr+ABELXF+SzkIE+17qmUkgpN2jqYSAoqKld+in6IYi5p/9waSmQvEUvPrXTe7B7Yc6vennx7SDZkfIbDiA== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + '@types/react-dom': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + react-dom: '>=16.8.0 <19.0.0' + scheduler: ^0.19.0 || ^0.20.0 + dependencies: + '@fluentui/react-accordion': 9.3.46(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-alert': 9.0.0-beta.63(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-avatar': 9.6.19(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-badge': 9.2.29(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-button': 9.3.73(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-card': 9.0.72(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-checkbox': 9.2.17(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-combobox': 9.9.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-dialog': 9.9.15(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-divider': 9.2.65(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-drawer': 9.0.0-beta.12(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-image': 9.1.62(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-infobutton': 9.0.0-beta.47(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-input': 9.4.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-label': 9.1.66(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-link': 9.2.15(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-menu': 9.13.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-overflow': 9.1.15(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-persona': 9.2.78(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-popover': 9.9.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-portal': 9.4.18(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-positioning': 9.14.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-progress': 9.1.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-provider': 9.13.16(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-radio': 9.2.12(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-select': 9.1.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-skeleton': 9.0.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-slider': 9.1.74(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-spinbutton': 9.2.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-spinner': 9.4.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-switch': 9.1.74(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-table': 9.11.15(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-tabs': 9.4.14(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-text': 9.4.14(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-textarea': 9.3.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-toast': 9.3.35(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-toolbar': 9.1.75(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-tooltip': 9.4.21(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-tree': 9.0.0-beta.30(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-virtualizer': 9.0.0-alpha.30(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.4.36 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + scheduler: 0.19.0 + dev: false + + /@fluentui/react-context-selector@9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-TzDYTvHRuOB3qKiIBB0NU4mwX/fuxW41I1O9yK7C5Dt4RsexNInGLf5HMxYHWufevDSFhRLuAN+ikTHUMkcNzw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + scheduler: '>=0.19.0 <=0.23.0' + dependencies: + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + scheduler: 0.19.0 + dev: false + + /@fluentui/react-dialog@9.9.15(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-UVjU7ZKq9117A80GQ/cv+YH/Pql4bN8FH3/GbJd8qwOxtlzOWpN8DOu1mwrj5ahxt3b+tpYsmp1QrqX9nujhMA== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-aria': 9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-portal': 9.4.18(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-transition-group: 4.4.5(react-dom@17.0.2)(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-divider@9.2.65(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-jjyvD+GnLACxHhV+eTdn0+X2Yar6NlzNK8q+xdZjuD+yJ5NcWiiD+Dkh5CJUFegkaBTUb2+Fp1pFEEMaCzrHkw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-drawer@9.0.0-beta.12(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-pKw2xOwxo4tSPptMwL6vOQq702SWVdFGrXUHR4DWDqFRstUFtbsV6aWJg66T0l+P3AwWJ1rtu0+LF/LBgd7/hw== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + '@types/react-dom': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + react-dom: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/react-dialog': 9.9.15(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-jsx-runtime': 9.0.0-alpha.13(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.4.36 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-field@9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-FrjgCdFgtlagga/HzHExdkqlgrLNRP2slPA62R2JP8ZorzR6zEmnYyC5+rUAVBY0OXv79Ky957urvJz+4rBBNA== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-label': 9.1.66(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-focus@8.8.41(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-4+eScKfnRPVMywNJU1YkUtE+VchPkX3/SXllsyB649l8I9QOffvgXwPkr/UUUC9UdzQpMP/fXpng/x5zyCDHJw== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/keyboard-key': 0.4.14 + '@fluentui/merge-styles': 8.6.0 + '@fluentui/set-version': 8.2.14 + '@fluentui/style-utilities': 8.10.4(@types/react@17.0.74)(react@17.0.2) + '@fluentui/utilities': 8.14.0(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + react: 17.0.2 + tslib: 2.3.1 + dev: false + + /@fluentui/react-hooks@8.6.37(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-7HdYT0vAutc6FpJGKrDQUMKjDlKRLVXON3S55rQtezCKIJmuuQ0nHaXn4Idyj1XdicRGsP64cYH4dRgX7f3Pwg== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/react-window-provider': 2.2.18(@types/react@17.0.74)(react@17.0.2) + '@fluentui/set-version': 8.2.14 + '@fluentui/utilities': 8.14.0(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + react: 17.0.2 + tslib: 2.3.1 + dev: false + + /@fluentui/react-icons@2.0.232(react@17.0.2): + resolution: + { + integrity: sha512-v2KKdRx68Pkz8FPQsOxvD8X7u7cCZ9/dodP/KdycaGY2FKEjAdiSzPboHfTLqkKhvrLr8Zgfs3gSDWDOf7au3A== + } + peerDependencies: + react: '>=16.8.0 <19.0.0' + dependencies: + '@griffel/react': 1.5.20(react@17.0.2) + react: 17.0.2 + tslib: 2.3.1 + dev: false + + /@fluentui/react-image@9.1.62(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-j8V9XWdl9otn1kfBqo5EGBD7nvvaabb9H3Wz8I0pMfeC8fMwq6iR8KYO+MbFUSwmekMEoqsP8qPKHUOViMEhPw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-infobutton@9.0.0-beta.47(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-aK/DLZO6/pzvGIbqJLCHIR5ram01Dpuai+C4M77bxKYO+t6iWb1JNZhfgXmDZRuPxhfEWA2J0pwQmHiVK1Bd9g== + } + deprecated: '@fluentui/react-infobutton has been deprecated, please use @fluentui/react-infolabel instead.' + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + '@types/react-dom': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + react-dom: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.0-alpha.13(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-label': 9.1.66(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-popover': 9.9.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.4.36 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-input@9.4.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-NCnHG/e17TkOW6L28nFQp654vTBvdlfzvpwSqKmzeeC7H71tweqdlgnaRnzyd58FOKe9fQ69bzk/TG9P3qiixg== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-jsx-runtime@9.0.0-alpha.13(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-/teGLjOPs2SNatpFpVDk38HyQO6X97Y9/n8eNwFq8+9Sq+hqb4DcnQudQMoOs1TG2m6t+zQIw1n5a0/AfFaeFA== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@swc/helpers': 0.4.36 + '@types/react': 17.0.74 + react: 17.0.2 + dev: false + + /@fluentui/react-jsx-runtime@9.0.34(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-pJ/f/xZ6+19sD3kjyMp2NDmIwexdMbYHeqmr/AgbI+G3Fb2NKA0UA6XylAXlCiAx4nEXdOETJDrrDsdFAV+/Fw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + react: 17.0.2 + react-is: 17.0.2 + dev: false + + /@fluentui/react-label@9.1.66(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-N0HOD5Wd6NI3YG7nGIhRhrjNBfNpDyaWxNYGMVnQs0pa6CWXcT6sCVxXxxSYYEnVFIDX7JmzFc4mgombTwnmmg== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-link@9.2.15(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-wZzLz3od22wJhmEd5xwOULVAuXXEdBRDa01mojtnU25pBhIErvY2VXU5QNS+Yycjt52NvBElB6Ut+LOKJ9KD2g== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-menu@9.13.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-dIcClcBMjxj1eBKHiCdTYI59nnldPQHv+e/JW2YxP6XecJVLa/zoxsMoiwor/uzU2JlGKzKNQj2CIDkok71ivw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-aria': 9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-portal': 9.4.18(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-positioning': 9.14.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-overflow@9.1.15(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-oIHwP9jLP3vzUlPy2M8shzgwHSvIh3mhc2A5CPTyu+aU906NFV6EFEx03vy62Cof21Ux71KOpPTFTAX0tBQrAA== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/priority-overflow': 9.1.11 + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-persona@9.2.78(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-pWpyTYtoV7y1vHZv/MMc+h6kbIh9jB69FMXjkNX2uUiEBq0e+RQlkDhivZv58t9y6S8ZqdPZEelJgbH8HfHekw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-avatar': 9.6.19(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-badge': 9.2.29(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-popover@9.9.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-F/7VTPZMVCY/dwqumzrp+wzRNTlsKJ9Gz1nmZPZuO7IMBC8XRIGkjqdjW7oW8SzIrRmOTkAvmsn4UfPL19spiw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-aria': 9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-portal': 9.4.18(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-positioning': 9.14.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-portal-compat-context@9.0.11(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-ubvW/ej0O+Pago9GH3mPaxzUgsNnBoqvghNamWjyKvZIViyaXUG6+sgcAl721R+qGAFac+A20akI5qDJz/xtdg== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + dependencies: + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + react: 17.0.2 + dev: false + + /@fluentui/react-portal@9.4.18(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-ShWpbZ2vjA/8yrk34e2n8+B+w034reYaxxfSq9N8csNsMbTInKdn44wTPp1ikcuqzZFJlkVFW4+LbKeQ/DvtZQ== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + use-disposable: 1.0.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + dev: false + + /@fluentui/react-positioning@9.14.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-m0buzn3UI7j2WjCGL83YwC064Xe9N/dQJ8aSwhv/xXBgQkxHnHYAs3hLG4Tjb/tliEOobntFlSI7O1NYKiDrFw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@floating-ui/devtools': 0.2.1(@floating-ui/dom@1.6.3) + '@floating-ui/dom': 1.6.3 + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-progress@9.1.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-6DhpwhSc25dbWJL4DRxEzYw3NSzZkqkY6yJCdQIMwrUGd7Ju8f0wxZ8VdfZFSzJPnVDybU8IESO9kbXDsg5YfQ== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-provider@9.13.16(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-LHiy/4wefxgx+dneWLCrvTgC3qP2kHm7M1tnx2jXKZsBwpXMhAWqxBN3xs1y+u0fyI3RqhJpJAOmKLtmHW2/Og== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/core': 1.15.2 + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-radio@9.2.12(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-V2FcDzojcqBQiy2sNdEt6Yj8QWoMM9DUvBvXuyjJawtsN5MlB3vkQlst2MpG0Fc1NQgrfnY73XkNAencwPWUYQ== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-label': 9.1.66(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-select@9.1.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-c5SBSuqWIqBHp5/3LMNIzk/KkIgb3tgJWqwQ0xQ9EYGFJLRbTG7iPE9JMeG/CmBa9zvb1WoFAaKnvdN5/vgSCQ== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-shared-contexts@9.15.2(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-0KEYEYGP4pjMrxZ5EytYqkUe56+tlr46ltxyKdcPcbfN+ptPffC9cevAR+4VIcb4xgmW+c7JT6nxDr5Rd5pvcw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-theme': 9.1.19 + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + react: 17.0.2 + dev: false + + /@fluentui/react-skeleton@9.0.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-oY+/ZB52dQ6cZ1ll9FE5rqdSQdfAAh2Huw4MxIucm0Oh44dX3gB0+QE3Ar1yb2izVKi7AXLor7EIPaRm1lk1/A== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-slider@9.1.74(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-vEbgf0MRzEovwFpptjjX9b5Apq461Iwnro1hxQiQUPqFwVdZqj0OzCJuvuohnbvNlZdtwihGkJ76gIYwMQG4Ag== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-spinbutton@9.2.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-NKJ5+Aix9l+YUBQ4Mf8z2cl5yb23QMRbsnK2IJfnDUHviRRPv2pvYu9hsBjHRBeCbrJWh3fBJhy4lA5kf9vWRg== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-spinner@9.4.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-fdxB+6FNM1qWNuzAEBGpF+u8esW7KyuVYujdVlIN/7uKRbwWe8sp4UMe7aHuvRtYleG9i1pMYnO3nwmrXYA6IQ== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-label': 9.1.66(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-switch@9.1.74(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-mE+kHOVRXdHSvHVKGoV+8dXlm7nSpC3vVO1sDJW1KtYwE0eJ1a0DV8flfeHe4FW2ThADGIDThgiB/WJR+NwfYw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-label': 9.1.66(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-table@9.11.15(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-4dMDLmHvGuW2fezO5Mfau1V7K1/7/+rC3PbWMf9K1j6veoE19TIr3jqpoXvnwxQ3UWGmeyut3LhO97vOrPdwyg== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-aria': 9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-avatar': 9.6.19(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-checkbox': 9.2.17(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-radio': 9.2.12(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-tabs@9.4.14(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-hXcgzQCnmHym5ERlitE1gWU974TT644034FUXoc4x4EoduLQ1FEebHRFZKajGeR+/gGHvBXXnbvdw6dNZwwJkw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-tabster@9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-bazFB5naT7/I8Q1+cRNvGhhlCQlWvLmCUpj+7tgMrfdX0ghRNI+adygsqKFx1oKkRm5ZBgsVFyk3M6AuDGoAQw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + keyborg: 2.5.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + tabster: 6.1.0 + dev: false + + /@fluentui/react-text@9.4.14(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-QoWtBYene1NhoDc8ZpZaS5t4CrgbXBrN8UsTNXJY2qVgLKctqx3nEP0ZNc9y3/oGOp1bSQ1rIY2SpVv9voMEaA== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-textarea@9.3.68(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-lMlNlVGFtM0tlqEnwEkSZGOoSQ6wDPaRF9sgqchJTduhVJNXFesibKDyBj970VZyQ6YmgLp+e1SGsbd9xAyRKA== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-field': 9.1.58(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-theme@9.1.19: + resolution: + { + integrity: sha512-mrVhKbr4o9UKERPxgghIRDU59S7gRizrgz3/wwyMt7elkr8Sw+OpwKIeEw9x6P0RTcFDC00nggaMJhBGs7Xo4A== + } + dependencies: + '@fluentui/tokens': 1.0.0-alpha.16 + '@swc/helpers': 0.5.7 + dev: false + + /@fluentui/react-toast@9.3.35(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-eBu3ixzcyvRhyLgtWxiYuCWKkeYUZpWqZkRY5m83rJFu+A4yXBpVrCQ/XYdeBe8GuhvxTK7U9AdvMvcY1EBTBg== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-aria': 9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-portal': 9.4.18(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-transition-group: 4.4.5(react-dom@17.0.2)(react@17.0.2) + dev: false + + /@fluentui/react-toolbar@9.1.75(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-gUhxzVUet2ersmbX6euFNq4sE7eu7i0wV8mnco+7Rcfh/jmMrRO5k5YfEO7S/1woDa88k3GnKd1JzNDHXUnTkw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/react-button': 9.3.73(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-divider': 9.2.65(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-radio': 9.2.12(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-tooltip@9.4.21(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-zGfhuOKDmmfFj9hssKAy00xGYzbxUZDQc4s8tNzP3NPRehuMPSY1ZaPIut3Gvrqn+i8kkKTxXsQBFBz3Qvzq6A== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + '@types/react-dom': '>=16.9.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + react-dom: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-jsx-runtime': 9.0.34(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-portal': 9.4.18(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-positioning': 9.14.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-tree@9.0.0-beta.30(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0): + resolution: + { + integrity: sha512-sx0eGi1GFfwH080aXvU+MuZ1Ud3laXuCdfU+KdepMIGLMJ5ecbOONnX83ddpazzk5j9rNKzbUXA/P2GRVw0B7g== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + '@types/react-dom': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + react-dom: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-aria': 9.10.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-avatar': 9.6.19(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-button': 9.3.73(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-checkbox': 9.2.17(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-context-selector': 9.1.56(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-icons': 2.0.232(react@17.0.2) + '@fluentui/react-jsx-runtime': 9.0.0-alpha.13(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-portal': 9.4.18(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-radio': 9.2.12(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(scheduler@0.19.0) + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-tabster': 9.19.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@fluentui/react-theme': 9.1.19 + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.4.36 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - scheduler + dev: false + + /@fluentui/react-utilities@9.18.5(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-Q3WwuHY2YzZSOEg9KlwVKYUzYiWDAiyuuQHE4qZevoiNn2ly2gXgfbVUc27LPdWAOTLT9HjdddsdoaJuJ/S5Mw== + } + peerDependencies: + '@types/react': '>=16.14.0 <19.0.0' + react: '>=16.14.0 <19.0.0' + dependencies: + '@fluentui/keyboard-keys': 9.0.7 + '@fluentui/react-shared-contexts': 9.15.2(@types/react@17.0.74)(react@17.0.2) + '@swc/helpers': 0.5.7 + '@types/react': 17.0.74 + react: 17.0.2 + dev: false + + /@fluentui/react-virtualizer@9.0.0-alpha.30(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-dUYZTGfUeuVKNAjZ9Thy6jBjATRBuGCj8xo/G+52iw++xno7jZKobfeFPGFIr6SS1+bDgGwkz0qSCKU1fNNvCA== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + '@types/react-dom': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + react-dom: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/react-jsx-runtime': 9.0.0-alpha.13(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-utilities': 9.18.5(@types/react@17.0.74)(react@17.0.2) + '@griffel/react': 1.5.20(react@17.0.2) + '@swc/helpers': 0.4.36 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /@fluentui/react-window-provider@2.2.18(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-nBKqxd0P8NmIR0qzFvka1urE2LVbUm6cse1I1T7TcOVNYa5jDf5BrO06+JRZfwbn00IJqOnIVoP0qONqceypWQ== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/set-version': 8.2.14 + '@types/react': 17.0.74 + react: 17.0.2 + tslib: 2.3.1 + dev: false + + /@fluentui/react@8.115.7(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-y4WpDCr6mzhzmsr6FzV0nqQGds6gL3K2MoV7X8z+fQI4vpvxyeKgXZYwD5P+eGHlrOvpilrXeRlDAH7cxaw2Kw== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + '@types/react-dom': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + react-dom: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/date-time-utilities': 8.5.16 + '@fluentui/font-icons-mdl2': 8.5.33(@types/react@17.0.74)(react@17.0.2) + '@fluentui/foundation-legacy': 8.3.0(@types/react@17.0.74)(react@17.0.2) + '@fluentui/merge-styles': 8.6.0 + '@fluentui/react-focus': 8.8.41(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-hooks': 8.6.37(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-portal-compat-context': 9.0.11(@types/react@17.0.74)(react@17.0.2) + '@fluentui/react-window-provider': 2.2.18(@types/react@17.0.74)(react@17.0.2) + '@fluentui/set-version': 8.2.14 + '@fluentui/style-utilities': 8.10.4(@types/react@17.0.74)(react@17.0.2) + '@fluentui/theme': 2.6.42(@types/react@17.0.74)(react@17.0.2) + '@fluentui/utilities': 8.14.0(@types/react@17.0.74)(react@17.0.2) + '@microsoft/load-themed-styles': 1.10.295 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + tslib: 2.3.1 + dev: false + + /@fluentui/set-version@8.2.14: + resolution: + { + integrity: sha512-f/QWJnSeyfAjGAqq57yjMb6a5ejPlwfzdExPmzFBuEOuupi8hHbV8Yno12XJcTW4I0KXEQGw+PUaM1aOf/j7jw== + } + dependencies: + tslib: 2.3.1 + dev: false + + /@fluentui/style-utilities@8.10.4(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-EwQydL1tyZnhxuiW4r1IMeKTQCK7qh3acekNhdfJwPTCV5JLAU5GvHC3PqqUFjxEct9Ywn2gBWVcj54a2EMuPA== + } + dependencies: + '@fluentui/merge-styles': 8.6.0 + '@fluentui/set-version': 8.2.14 + '@fluentui/theme': 2.6.42(@types/react@17.0.74)(react@17.0.2) + '@fluentui/utilities': 8.14.0(@types/react@17.0.74)(react@17.0.2) + '@microsoft/load-themed-styles': 1.10.295 + tslib: 2.3.1 + transitivePeerDependencies: + - '@types/react' + - react + dev: false + + /@fluentui/theme@2.6.42(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-+9XTRjpklCn7SdhxLZNTXqugmbp9Ux6mhfLVD2pIZ2utAbskwQ9pIWTzyR5BVeZFCUG6nt0JxhfA7EJ9rcWygg== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/merge-styles': 8.6.0 + '@fluentui/set-version': 8.2.14 + '@fluentui/utilities': 8.14.0(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + react: 17.0.2 + tslib: 2.3.1 + dev: false + + /@fluentui/tokens@1.0.0-alpha.16: + resolution: + { + integrity: sha512-Gr9G8LIlUhZYX5j6CfDQrofQqsWAz/q54KabWn1tWV/1083WwyoTZXiG1k6b37NnK7Feye7D7Nz+4MNqoKpXGw== + } + dependencies: + '@swc/helpers': 0.5.7 + dev: false + + /@fluentui/utilities@8.14.0(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-H/YVmo5rvzYjlNd3hzXXQnKLR9LN+BAP9hE3r/ZjXgb1RwAlMX1cxfrDn1OOHD2P4GN3PZI4MN70exRQOASbjA== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + dependencies: + '@fluentui/dom-utilities': 2.2.14 + '@fluentui/merge-styles': 8.6.0 + '@fluentui/set-version': 8.2.14 + '@types/react': 17.0.74 + react: 17.0.2 + tslib: 2.3.1 + dev: false + + /@gar/promisify@1.1.3: + resolution: + { + integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== + } + dev: true + + /@griffel/core@1.15.2: + resolution: + { + integrity: sha512-RlsIXoSS3gaYykUgxFpwKAs/DV9cRUKp3CW1kt3iPAtsDTWn/o+8bT1jvBws/tMM2GBu/Uc0EkaIzUPqD7uA+Q== + } + dependencies: + '@emotion/hash': 0.9.1 + '@griffel/style-types': 1.0.3 + csstype: 3.1.3 + rtl-css-js: 1.16.1 + stylis: 4.3.1 + tslib: 2.3.1 + dev: false + + /@griffel/react@1.5.20(react@17.0.2): + resolution: + { + integrity: sha512-1P2yaPctENFSCwyPIYXBmgpNH68c0lc/jwSzPij1QATHDK1AASKuSeq6hW108I67RKjhRyHCcALshdZ3GcQXSg== + } + peerDependencies: + react: '>=16.8.0 <19.0.0' + dependencies: + '@griffel/core': 1.15.2 + react: 17.0.2 + tslib: 2.3.1 + dev: false + + /@griffel/style-types@1.0.3: + resolution: + { + integrity: sha512-AzbbYV/EobNIBtfMtyu2edFin895gjVxtu1nsRhTETUAIb0/LCZoue3Jd/kFLuPwe95rv5WRUBiQpVwJsrrFcw== + } + dependencies: + csstype: 3.1.3 + dev: false + + /@humanwhocodes/config-array@0.10.7: + resolution: + { + integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w== + } + engines: { node: '>=10.10.0' } + deprecated: Use @eslint/config-array instead + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.0.8 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/config-array@0.11.14(supports-color@8.1.1): + resolution: + { + integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== + } + engines: { node: '>=10.10.0' } + deprecated: Use @eslint/config-array instead + dependencies: + '@humanwhocodes/object-schema': 2.0.2 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.0.8 + transitivePeerDependencies: + - supports-color + + /@humanwhocodes/config-array@0.5.0: + resolution: + { + integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + } + engines: { node: '>=10.10.0' } + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.0.8 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/config-array@0.9.5: + resolution: + { + integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== + } + engines: { node: '>=10.10.0' } + deprecated: Use @eslint/config-array instead + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.0.8 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/gitignore-to-minimatch@1.0.2: + resolution: + { + integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA== + } + dev: true + + /@humanwhocodes/module-importer@1.0.1: + resolution: + { + integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + } + engines: { node: '>=12.22' } + + /@humanwhocodes/object-schema@1.2.1: + resolution: + { + integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + } + deprecated: Use @eslint/object-schema instead + dev: true + + /@humanwhocodes/object-schema@2.0.2: + resolution: + { + integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw== + } + deprecated: Use @eslint/object-schema instead + + /@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.13.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== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@jest/types': 29.6.3 + '@types/node': 20.12.12 + chalk: 4.1.2 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + slash: 3.0.0 + + /@jest/core@29.5.0(supports-color@8.1.1): + resolution: + { + integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ== + } + 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.5.0(supports-color@8.1.1) + '@jest/test-result': 29.7.0(@types/node@20.12.12) + '@jest/transform': 29.5.0(supports-color@8.1.1) + '@jest/types': 29.5.0 + '@types/node': 20.12.12 + 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.5.0(@types/node@20.12.12)(supports-color@8.1.1) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.5.0 + jest-resolve-dependencies: 29.7.0(supports-color@8.1.1) + jest-runner: 29.7.0(supports-color@8.1.1) + jest-runtime: 29.7.0(supports-color@8.1.1) + jest-snapshot: 29.5.0(supports-color@8.1.1) + 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/core@29.7.0: + 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(@types/node@20.12.12) + '@jest/transform': 29.7.0(supports-color@8.1.1) + '@jest/types': 29.6.3 + '@types/node': 20.12.12 + 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.12.12) + 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(supports-color@8.1.1) + jest-runner: 29.7.0(supports-color@8.1.1) + jest-runtime: 29.7.0(supports-color@8.1.1) + jest-snapshot: 29.7.0(supports-color@8.1.1) + 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.12.12 + 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(supports-color@8.1.1): + 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(supports-color@8.1.1) + 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': 20.12.12 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + /@jest/globals@29.7.0(supports-color@8.1.1): + 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(supports-color@8.1.1) + '@jest/types': 29.6.3 + jest-mock: 29.7.0 + transitivePeerDependencies: + - supports-color + + /@jest/reporters@29.5.0(supports-color@8.1.1): + resolution: + { + integrity: sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA== + } + 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(@types/node@20.11.30) + '@jest/transform': 29.5.0(supports-color@8.1.1) + '@jest/types': 29.5.0 + '@jridgewell/trace-mapping': 0.3.25 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/node': 20.11.30 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2(@types/node@20.11.30) + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 5.2.1(supports-color@8.1.1) + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1(supports-color@8.1.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.2.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(@types/node@20.12.12) + '@jest/transform': 29.7.0(supports-color@8.1.1) + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/node': 20.12.12 + chalk: 4.1.2 + collect-v8-coverage: 1.0.2(@types/node@20.12.12) + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-instrument: 6.0.2 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 4.0.1(supports-color@8.1.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.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 + + /@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(@types/node@18.17.15): + 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(@types/node@18.17.15) + jest-haste-map: 29.7.0 + jest-resolve: 29.7.0 + transitivePeerDependencies: + - '@types/node' + + /@jest/test-result@29.7.0(@types/node@20.11.30): + 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(@types/node@20.11.30) + jest-haste-map: 29.7.0 + jest-resolve: 29.7.0 + transitivePeerDependencies: + - '@types/node' + + /@jest/test-result@29.7.0(@types/node@20.12.12): + 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(@types/node@20.12.12) + jest-haste-map: 29.7.0 + jest-resolve: 29.7.0 + transitivePeerDependencies: + - '@types/node' + + /@jest/test-sequencer@29.7.0(@types/node@18.17.15): + resolution: + { + integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@jest/test-result': 29.7.0(@types/node@18.17.15) + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 + transitivePeerDependencies: + - '@types/node' + + /@jest/test-sequencer@29.7.0(@types/node@20.12.12): + resolution: + { + integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@jest/test-result': 29.7.0(@types/node@20.12.12) + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + slash: 3.0.0 + transitivePeerDependencies: + - '@types/node' + + /@jest/transform@26.6.2: + resolution: + { + integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA== + } + engines: { node: '>= 10.14.2' } + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@jest/types': 26.6.2 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + chalk: 4.1.2 + convert-source-map: 1.9.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 26.6.2 + jest-regex-util: 26.0.0 + jest-util: 26.6.2 + micromatch: 4.0.5 + pirates: 4.0.6 + slash: 3.0.0 + source-map: 0.6.1 + write-file-atomic: 3.0.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/transform@29.5.0(supports-color@8.1.1): + resolution: + { + integrity: sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@jest/types': 29.5.0 + '@jridgewell/trace-mapping': 0.3.25 + babel-plugin-istanbul: 6.1.1(supports-color@8.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/transform@29.7.0(supports-color@8.1.1): + resolution: + { + integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 + babel-plugin-istanbul: 6.1.1(supports-color@8.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@26.6.2: + resolution: + { + integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== + } + engines: { node: '>= 10.14.2' } + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.12 + '@types/yargs': 15.0.19 + chalk: 4.1.2 + dev: true + + /@jest/types@29.5.0: + resolution: + { + integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog== + } + 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.30 + '@types/yargs': 17.0.32 + chalk: 4.1.2 + + /@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.12.12 + '@types/yargs': 17.0.32 + 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.4.15 + '@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 + + /@jridgewell/sourcemap-codec@1.4.15: + resolution: + { + integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + } + + /@jridgewell/trace-mapping@0.3.25: + resolution: + { + integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + } + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + + /@leichtgewicht/ip-codec@2.0.4: + resolution: + { + integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== + } + dev: false + + /@lifaon/path@2.1.0: + resolution: + { + integrity: sha512-E+eJpDdwenIQCaYMMuCnteR34qAvXtHhHKjZOPB+hK4+R1yGcmWLLAEl2aklxCHx6w5VCKc8imx9AT05FGHhBw== + } + dev: false + + /@mdx-js/loader@1.6.22(react@17.0.2): + resolution: + { + integrity: sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q== + } + dependencies: + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22(react@17.0.2) + loader-utils: 2.0.0 + transitivePeerDependencies: + - react + - supports-color + dev: true + + /@mdx-js/mdx@1.6.22: + resolution: + { + integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA== + } + dependencies: + '@babel/core': 7.12.9 + '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) + '@mdx-js/util': 1.6.22 + babel-plugin-apply-mdx-type-prop: 1.6.22(@babel/core@7.12.9) + babel-plugin-extract-import-names: 1.6.22 + camelcase-css: 2.0.1 + detab: 2.0.4 + hast-util-raw: 6.0.1 + lodash.uniq: 4.5.0 + mdast-util-to-hast: 10.0.1 + remark-footnotes: 2.0.0 + remark-mdx: 1.6.22 + remark-parse: 8.0.3 + remark-squeeze-paragraphs: 4.0.0 + style-to-object: 0.3.0 + unified: 9.2.0 + unist-builder: 2.0.3 + unist-util-visit: 2.0.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@mdx-js/react@1.6.22(react@17.0.2): + resolution: + { + integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg== + } + peerDependencies: + react: ^16.13.1 || ^17.0.0 + dependencies: + react: 17.0.2 + dev: true + + /@mdx-js/util@1.6.22: + resolution: + { + integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA== + } + dev: true + + /@microsoft/api-extractor-model@7.29.2(@types/node@18.17.15): + resolution: + { + integrity: sha512-hAYajOjQan3uslhKJRwvvHIdLJ+ZByKqdSsJ/dgHFxPtEbdKpzMDO8zuW4K5gkSMYl5D0LbNwxkhxr51P2zsmw== + } + dependencies: + '@microsoft/tsdoc': 0.15.0 + '@microsoft/tsdoc-config': 0.17.0 + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + transitivePeerDependencies: + - '@types/node' + dev: true + + /@microsoft/api-extractor@7.46.2(@types/node@18.17.15): + resolution: + { + integrity: sha512-s3HjYoXKMVNmYO5rQl+z7MpRngGg9OugWgmGMIBlAeOaE0Lk7/CKX+UYt7Mk9pihV8DZWg/qCf+4Yega9IZMmQ== + } + hasBin: true + dependencies: + '@microsoft/api-extractor-model': 7.29.2(@types/node@18.17.15) + '@microsoft/tsdoc': 0.15.0 + '@microsoft/tsdoc-config': 0.17.0 + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + '@rushstack/rig-package': 0.5.2 + '@rushstack/terminal': 0.13.0(@types/node@18.17.15) + '@rushstack/ts-command-line': 4.22.0(@types/node@18.17.15) + lodash: 4.17.21 + minimatch: 3.0.8 + resolve: 1.22.8 + semver: 7.5.4 + source-map: 0.6.1 + typescript: 5.4.2 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@microsoft/load-themed-styles@1.10.295: + resolution: + { + integrity: sha512-W+IzEBw8a6LOOfRJM02dTT7BDZijxm+Z7lhtOAz1+y9vQm1Kdz9jlAO+qCEKsfxtUOmKilW8DIRqFw2aUgKeGg== + } + dev: false + + /@microsoft/teams-js@1.3.0-beta.4: + resolution: + { + integrity: sha512-AxDfMpiVqh3hsqTxMEYtQoz866WB/sw/Jl0pgTLh6sMHHmIBNMd+E0pVcP9WNk8zTkr9LCphJ5SziU1C8BgZMA== + } + dev: true + + /@microsoft/tsdoc-config@0.17.0: + resolution: + { + integrity: sha512-v/EYRXnCAIHxOHW+Plb6OWuUoMotxTN0GLatnpOb1xq0KuTNw/WI3pamJx/UbsoJP5k9MCw1QxvvhPcF9pH3Zg== + } + dependencies: + '@microsoft/tsdoc': 0.15.0 + ajv: 8.12.0 + jju: 1.4.0 + resolve: 1.22.8 + + /@microsoft/tsdoc@0.15.0: + resolution: + { + integrity: sha512-HZpPoABogPvjeJOdzCOSJsXeL/SMCBgBZMVC3X3d7YYp2gf31MfxhUoYUNwf1ERPJOnQc0wkFn9trqI6ZEdZuA== + } + + /@mrmlnc/readdir-enhanced@2.2.1: + resolution: + { + integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== + } + engines: { node: '>=4' } + dependencies: + call-me-maybe: 1.0.2 + glob-to-regexp: 0.3.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@1.1.3: + resolution: + { + integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== + } + engines: { node: '>= 6' } + dev: true + + /@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.17.1 + + /@npmcli/fs@1.1.1: + resolution: + { + integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== + } + dependencies: + '@gar/promisify': 1.1.3 + semver: 7.5.4 + dev: true + + /@npmcli/move-file@1.1.2: + resolution: + { + integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== + } + engines: { node: '>=10' } + deprecated: This functionality has been moved to @npmcli/fs + dependencies: + mkdirp: 1.0.4 + rimraf: 3.0.2 + dev: true + + /@opentelemetry/api@1.8.0: + resolution: + { + integrity: sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w== + } + engines: { node: '>=8.0.0' } + dev: false + + /@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.11.0)(webpack@4.47.0): + resolution: + { + integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ== + } + engines: { node: '>= 10.13' } + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: '>=4.43.0 <6.0.0 || ^4 || ^5' + webpack-dev-server: 3.x || 4.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + dependencies: + ansi-html-community: 0.0.8 + common-path-prefix: 3.0.0 + core-js-pure: 3.36.0 + error-stack-parser: 2.1.4 + find-up: 5.0.0 + html-entities: 2.5.2 + loader-utils: 2.0.4 + react-refresh: 0.11.0 + schema-utils: 3.3.0 + source-map: 0.7.4 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /@pnpm/crypto.base32-hash@1.0.1: + resolution: + { + integrity: sha512-pzAXNn6KxTA3kbcI3iEnYs4vtH51XEVqmK/1EiD18MaPKylhqy8UvMJK3zKG+jeP82cqQbozcTGm4yOQ8i3vNw== + } + engines: { node: '>=14.6' } + dependencies: + rfc4648: 1.5.3 + dev: false + + /@pnpm/crypto.base32-hash@2.0.0: + resolution: + { + integrity: sha512-3ttOeHBpmWRbgJrpDQ8Nwd3W8s8iuiP5YZM0JRyKWaMtX8lu9d7/AKyxPmhYsMJuN+q/1dwHa7QFeDZJ53b0oA== + } + engines: { node: '>=16.14' } + dependencies: + rfc4648: 1.5.3 + dev: false + + /@pnpm/dependency-path@2.1.8: + resolution: + { + integrity: sha512-ywBaTjy0iSEF7lH3DlF8UXrdL2bw4AQFV2tTOeNeY7wc1W5CE+RHSJhf9MXBYcZPesqGRrPiU7Pimj3l05L9VA== + } + engines: { node: '>=16.14' } + dependencies: + '@pnpm/crypto.base32-hash': 2.0.0 + '@pnpm/types': 9.4.2 + encode-registry: 3.0.1 + semver: 7.5.4 + dev: false + + /@pnpm/error@1.4.0: + resolution: + { + integrity: sha512-vxkRrkneBPVmP23kyjnYwVOtipwlSl6UfL+h+Xa3TrABJTz5rYBXemlTsU5BzST8U4pD7YDkTb3SQu+MMuIDKA== + } + engines: { node: '>=10.16' } + dev: false + + /@pnpm/link-bins@5.3.25: + resolution: + { + integrity: sha512-9Xq8lLNRHFDqvYPXPgaiKkZ4rtdsm7izwM/cUsFDc5IMnG0QYIVBXQbgwhz2UvjUotbJrvfKLJaCfA3NGBnLDg== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/error': 1.4.0 + '@pnpm/package-bins': 4.1.0 + '@pnpm/read-modules-dir': 2.0.3 + '@pnpm/read-package-json': 4.0.0 + '@pnpm/read-project-manifest': 1.1.7 + '@pnpm/types': 6.4.0 + '@zkochan/cmd-shim': 5.4.1 + is-subdir: 1.2.0 + is-windows: 1.0.2 + mz: 2.7.0 + normalize-path: 3.0.0 + p-settle: 4.1.1 + ramda: 0.27.2 + dev: false + + /@pnpm/lockfile-types@5.1.5: + resolution: + { + integrity: sha512-02FP0HynzX+2DcuPtuMy7PH+kLIC0pevAydAOK+zug2bwdlSLErlvSkc+4+3dw60eRWgUXUqyfO2eR/Ansdbng== + } + engines: { node: '>=16.14' } + dependencies: + '@pnpm/types': 9.4.2 + dev: true + + /@pnpm/logger@4.0.0: + resolution: + { + integrity: sha512-SIShw+k556e7S7tLZFVSIHjCdiVog1qWzcKW2RbLEHPItdisAFVNIe34kYd9fMSswTlSRLS/qRjw3ZblzWmJ9Q== + } + engines: { node: '>=12.17' } + dependencies: + bole: 4.0.1 + ndjson: 2.0.0 + dev: true + + /@pnpm/package-bins@4.1.0: + resolution: + { + integrity: sha512-57/ioGYLBbVRR80Ux9/q2i3y8Q+uQADc3c+Yse8jr/60YLOi3jcWz13e2Jy+ANYtZI258Qc5wk2X077rp0Ly/Q== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/types': 6.4.0 + fast-glob: 3.3.2 + is-subdir: 1.2.0 + dev: false + + /@pnpm/read-modules-dir@2.0.3: + resolution: + { + integrity: sha512-i9OgRvSlxrTS9a2oXokhDxvQzDtfqtsooJ9jaGoHkznue5aFCTSrNZFQ6M18o8hC03QWfnxaKi0BtOvNkKu2+A== + } + engines: { node: '>=10.13' } + dependencies: + mz: 2.7.0 + dev: false + + /@pnpm/read-package-json@4.0.0: + resolution: + { + integrity: sha512-1cr2tEwe4YU6SI0Hmg+wnsr6yxBt2iJtqv6wrF84On8pS9hx4A2PLw3CIgbwxaG0b+ur5wzhNogwl4qD5FLFNg== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/error': 1.4.0 + '@pnpm/types': 6.4.0 + load-json-file: 6.2.0 + normalize-package-data: 3.0.3 + dev: false + + /@pnpm/read-project-manifest@1.1.7: + resolution: + { + integrity: sha512-tj8ExXZeDcMmMUj7D292ETe/RiEirr1X1wpT6Zy85z2MrFYoG9jfCJpps40OdZBNZBhxbuKtGPWKVSgXD0yrVw== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/error': 1.4.0 + '@pnpm/types': 6.4.0 + '@pnpm/write-project-manifest': 1.1.7 + detect-indent: 6.1.0 + fast-deep-equal: 3.1.3 + graceful-fs: 4.2.4 + is-windows: 1.0.2 + json5: 2.2.3 + parse-json: 5.2.0 + read-yaml-file: 2.1.0 + sort-keys: 4.2.0 + strip-bom: 4.0.0 + dev: false + + /@pnpm/types@6.4.0: + resolution: + { + integrity: sha512-nco4+4sZqNHn60Y4VE/fbtlShCBqipyUO+nKRPvDHqLrecMW9pzHWMVRxk4nrMRoeowj3q0rX3GYRBa8lsHTAg== + } + engines: { node: '>=10.16' } + dev: false + + /@pnpm/types@8.9.0: + resolution: + { + integrity: sha512-3MYHYm8epnciApn6w5Fzx6sepawmsNU7l6lvIq+ER22/DPSrr83YMhU/EQWnf4lORn2YyiXFj0FJSyJzEtIGmw== + } + engines: { node: '>=14.6' } + dev: false + + /@pnpm/types@9.4.2: + resolution: + { + integrity: sha512-g1hcF8Nv4gd76POilz9gD4LITAPXOe5nX4ijgr8ixCbLQZfcpYiMfJ+C1RlMNRUDo8vhlNB4O3bUlxmT6EAQXA== + } + engines: { node: '>=16.14' } + + /@pnpm/write-project-manifest@1.1.7: + resolution: + { + integrity: sha512-OLkDZSqkA1mkoPNPvLFXyI6fb0enCuFji6Zfditi/CLAo9kmIhQFmEUDu4krSB8i908EljG8YwL5Xjxzm5wsWA== + } + engines: { node: '>=10.16' } + dependencies: + '@pnpm/types': 6.4.0 + json5: 2.2.3 + mz: 2.7.0 + write-file-atomic: 3.0.3 + write-yaml-file: 4.2.0 + dev: false + + /@polka/url@1.0.0-next.25: + resolution: + { + integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ== + } + + /@popperjs/core@2.11.8: + resolution: + { + integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== + } + dev: true + + /@pothos/core@3.41.1(graphql@16.8.1): + resolution: + { + integrity: sha512-K+TGTK2Q7rmLU9WaC1cSDiGZaU9M+gHNbCYBom2W1vHuEYDUAiihVHz9tXYsrYjFMJSK+wLJ7Xp2374bQa9x/w== + } + requiresBuild: true + peerDependencies: + graphql: '>=15.1.0' + dependencies: + graphql: 16.8.1 + dev: true + optional: true + + /@radix-ui/colors@0.1.9: + resolution: + { + integrity: sha512-Vxq944ErPJsdVepjEUhOLO9ApUVOocA63knc+V2TkJ09D/AVOjiMIgkca/7VoYgODcla0qbSIBjje0SMfZMbAw== + } + dev: true + + /@radix-ui/number@1.0.1: + resolution: + { + integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg== + } + dependencies: + '@babel/runtime': 7.24.0 + dev: true + + /@radix-ui/primitive@1.0.1: + resolution: + { + integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw== + } + dependencies: + '@babel/runtime': 7.24.0 + dev: true + + /@radix-ui/react-checkbox@1.0.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-use-previous': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-use-size': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /@radix-ui/react-collection@1.0.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-slot': 1.0.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /@radix-ui/react-compose-refs@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-context@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-direction@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-icons@1.1.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-xc3wQC59rsFylVbSusQCrrM+6695ppF730Q6yqzhRdqDcRNWIm2R6ngpzBoSOQMcwnq4p805F+Gr7xo4fmtN1A== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.x || ^17.x || ^18.x + dependencies: + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-id@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-presence@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /@radix-ui/react-primitive@1.0.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-slot': 1.0.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-id': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /@radix-ui/react-scroll-area@1.0.5(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-b6PAgH4GQf9QEn8zbT2XUHpW5z8BzqEc7Kl11TwDrvuTrxlkcjTD5qa/bxgKr+nmuXKu4L/W5UZ4mlP/VG/5Gw== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /@radix-ui/react-slot@1.0.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-tabs@1.0.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-id': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /@radix-ui/react-use-callback-ref@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-use-controllable-state@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-use-layout-effect@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-use-previous@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@radix-ui/react-use-size@1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g== + } + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react-dom@17.0.25)(@types/react@17.0.74)(react@17.0.2) + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + dev: true + + /@redis/client@1.5.14: + resolution: + { + integrity: sha512-YGn0GqsRBFUQxklhY7v562VMOP0DcmlrHHs3IV1mFE3cbxe31IITUkqhBcIhVSI/2JqtWAJXg5mjV4aU+zD0HA== + } + engines: { node: '>=14' } + dependencies: + cluster-key-slot: 1.1.2 + generic-pool: 3.9.0 + yallist: 4.0.0 + dev: false + + /@reduxjs/toolkit@1.8.6(react-redux@8.0.7)(react@17.0.2): + resolution: + { + integrity: sha512-4Ia/Loc6WLmdSOzi7k5ff7dLK8CgG2b8aqpLsCAJhazAzGdp//YBUSaj0ceW6a3kDBDNRrq5CRwyCS0wBiL1ig== + } + peerDependencies: + react: ^16.9.0 || ^17.0.0 || ^18 + react-redux: ^7.2.1 || ^8.0.2 + peerDependenciesMeta: + react: + optional: true + react-redux: + optional: true + dependencies: + immer: 9.0.21 + react: 17.0.2 + react-redux: 8.0.7(@reduxjs/toolkit@1.8.6)(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(redux@4.2.1) + redux: 4.2.1 + redux-thunk: 2.4.2(redux@4.2.1) + reselect: 4.1.8 + dev: false + + /@remix-run/router@1.15.3: + resolution: + { + integrity: sha512-Oy8rmScVrVxWZVOpEF57ovlnhpZ8CCPlnIIumVcV9nFdiSIrus99+Lw78ekXyGvVDlIsFJbSfmSovJUhCWYV3w== + } + engines: { node: '>=14.0.0' } + dev: true + + /@rushstack/eslint-config@3.7.0(eslint@7.11.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-9AWc0eIElbrTm9VTfdjaXeqrS7gGoZJ7oMmUdUX0dtPzYrWBHLCuR4eOgLo3pQIC+HyLFt/AzX1ontQTJlWjtQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '>=4.7.0' + dependencies: + '@rushstack/eslint-patch': 1.10.3 + '@rushstack/eslint-plugin': 0.15.1(eslint@7.11.0)(typescript@5.4.2) + '@rushstack/eslint-plugin-packlets': 0.9.1(eslint@7.11.0)(typescript@5.4.2) + '@rushstack/eslint-plugin-security': 0.8.1(eslint@7.11.0)(typescript@5.4.2) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1)(eslint@7.11.0)(typescript@5.4.2) + '@typescript-eslint/parser': 6.19.1(eslint@7.11.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@7.11.0)(typescript@5.4.2) + eslint: 7.11.0 + eslint-plugin-promise: 6.1.1(eslint@7.11.0) + eslint-plugin-react: 7.33.2(eslint@7.11.0) + eslint-plugin-tsdoc: 0.3.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@rushstack/eslint-config@3.7.0(eslint@7.30.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-9AWc0eIElbrTm9VTfdjaXeqrS7gGoZJ7oMmUdUX0dtPzYrWBHLCuR4eOgLo3pQIC+HyLFt/AzX1ontQTJlWjtQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '>=4.7.0' + dependencies: + '@rushstack/eslint-patch': 1.10.3 + '@rushstack/eslint-plugin': 0.15.1(eslint@7.30.0)(typescript@5.4.2) + '@rushstack/eslint-plugin-packlets': 0.9.1(eslint@7.30.0)(typescript@5.4.2) + '@rushstack/eslint-plugin-security': 0.8.1(eslint@7.30.0)(typescript@5.4.2) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1)(eslint@7.30.0)(typescript@5.4.2) + '@typescript-eslint/parser': 6.19.1(eslint@7.30.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@7.30.0)(typescript@5.4.2) + eslint: 7.30.0 + eslint-plugin-promise: 6.1.1(eslint@7.30.0) + eslint-plugin-react: 7.33.2(eslint@7.30.0) + eslint-plugin-tsdoc: 0.3.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@rushstack/eslint-config@3.7.0(eslint@7.7.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-9AWc0eIElbrTm9VTfdjaXeqrS7gGoZJ7oMmUdUX0dtPzYrWBHLCuR4eOgLo3pQIC+HyLFt/AzX1ontQTJlWjtQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '>=4.7.0' + dependencies: + '@rushstack/eslint-patch': 1.10.3 + '@rushstack/eslint-plugin': 0.15.1(eslint@7.7.0)(typescript@5.4.2) + '@rushstack/eslint-plugin-packlets': 0.9.1(eslint@7.7.0)(typescript@5.4.2) + '@rushstack/eslint-plugin-security': 0.8.1(eslint@7.7.0)(typescript@5.4.2) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1)(eslint@7.7.0)(typescript@5.4.2) + '@typescript-eslint/parser': 6.19.1(eslint@7.7.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@7.7.0)(typescript@5.4.2) + eslint: 7.7.0 + eslint-plugin-promise: 6.1.1(eslint@7.7.0) + eslint-plugin-react: 7.33.2(eslint@7.7.0) + eslint-plugin-tsdoc: 0.3.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@rushstack/eslint-config@3.7.0(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2): + resolution: + { + integrity: sha512-9AWc0eIElbrTm9VTfdjaXeqrS7gGoZJ7oMmUdUX0dtPzYrWBHLCuR4eOgLo3pQIC+HyLFt/AzX1ontQTJlWjtQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '>=4.7.0' + dependencies: + '@rushstack/eslint-patch': 1.10.3 + '@rushstack/eslint-plugin': 0.15.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@rushstack/eslint-plugin-packlets': 0.9.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@rushstack/eslint-plugin-security': 0.8.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/parser': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + eslint: 8.57.0(supports-color@8.1.1) + eslint-plugin-promise: 6.1.1(eslint@8.57.0) + eslint-plugin-react: 7.33.2(eslint@8.57.0) + eslint-plugin-tsdoc: 0.3.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@rushstack/eslint-config@3.7.0(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-9AWc0eIElbrTm9VTfdjaXeqrS7gGoZJ7oMmUdUX0dtPzYrWBHLCuR4eOgLo3pQIC+HyLFt/AzX1ontQTJlWjtQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '>=4.7.0' + dependencies: + '@rushstack/eslint-patch': 1.10.3 + '@rushstack/eslint-plugin': 0.15.1(eslint@8.57.0)(typescript@4.9.5) + '@rushstack/eslint-plugin-packlets': 0.9.1(eslint@8.57.0)(typescript@4.9.5) + '@rushstack/eslint-plugin-security': 0.8.1(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/parser': 6.19.1(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@4.9.5) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(typescript@4.9.5) + eslint: 8.57.0(supports-color@8.1.1) + eslint-plugin-promise: 6.1.1(eslint@8.57.0) + eslint-plugin-react: 7.33.2(eslint@8.57.0) + eslint-plugin-tsdoc: 0.3.0 + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@rushstack/eslint-patch@1.10.3: + resolution: + { + integrity: sha512-qC/xYId4NMebE6w/V33Fh9gWxLgURiNYgVNObbJl2LZv0GUUItCcCqC5axQSwRaAgaxl2mELq1rMzlswaQ0Zxg== + } + dev: true + + /@rushstack/eslint-plugin-packlets@0.9.1(eslint@7.11.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-CN7RKrrpBj+UXzOYUxArzV7lUKX8UlZBJWPzdAI8HFYg0g1EVASjGRlcq3Q+e1KRZ1MeliVigRsoodfmJCHv+A== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@7.11.0)(typescript@5.4.2) + eslint: 7.11.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin-packlets@0.9.1(eslint@7.30.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-CN7RKrrpBj+UXzOYUxArzV7lUKX8UlZBJWPzdAI8HFYg0g1EVASjGRlcq3Q+e1KRZ1MeliVigRsoodfmJCHv+A== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@7.30.0)(typescript@5.4.2) + eslint: 7.30.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin-packlets@0.9.1(eslint@7.7.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-CN7RKrrpBj+UXzOYUxArzV7lUKX8UlZBJWPzdAI8HFYg0g1EVASjGRlcq3Q+e1KRZ1MeliVigRsoodfmJCHv+A== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@7.7.0)(typescript@5.4.2) + eslint: 7.7.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin-packlets@0.9.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2): + resolution: + { + integrity: sha512-CN7RKrrpBj+UXzOYUxArzV7lUKX8UlZBJWPzdAI8HFYg0g1EVASjGRlcq3Q+e1KRZ1MeliVigRsoodfmJCHv+A== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + eslint: 8.57.0(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin-packlets@0.9.1(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-CN7RKrrpBj+UXzOYUxArzV7lUKX8UlZBJWPzdAI8HFYg0g1EVASjGRlcq3Q+e1KRZ1MeliVigRsoodfmJCHv+A== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(typescript@4.9.5) + eslint: 8.57.0(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin-security@0.8.1(eslint@7.11.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-XEMt9dvifXO6mmIfVggUNd4PP8pZlewn1D7OGXdMtLasRUiOkZGOYu24Kj5fgLnPDH1xqAdG9okhPZwT4yar7w== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@7.11.0)(typescript@5.4.2) + eslint: 7.11.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin-security@0.8.1(eslint@7.30.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-XEMt9dvifXO6mmIfVggUNd4PP8pZlewn1D7OGXdMtLasRUiOkZGOYu24Kj5fgLnPDH1xqAdG9okhPZwT4yar7w== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@7.30.0)(typescript@5.4.2) + eslint: 7.30.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin-security@0.8.1(eslint@7.7.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-XEMt9dvifXO6mmIfVggUNd4PP8pZlewn1D7OGXdMtLasRUiOkZGOYu24Kj5fgLnPDH1xqAdG9okhPZwT4yar7w== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@7.7.0)(typescript@5.4.2) + eslint: 7.7.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin-security@0.8.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2): + resolution: + { + integrity: sha512-XEMt9dvifXO6mmIfVggUNd4PP8pZlewn1D7OGXdMtLasRUiOkZGOYu24Kj5fgLnPDH1xqAdG9okhPZwT4yar7w== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + eslint: 8.57.0(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin-security@0.8.1(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-XEMt9dvifXO6mmIfVggUNd4PP8pZlewn1D7OGXdMtLasRUiOkZGOYu24Kj5fgLnPDH1xqAdG9okhPZwT4yar7w== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(typescript@4.9.5) + eslint: 8.57.0(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin@0.15.1(eslint@7.11.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-xgu6jwMscLCX0SWCDAUEpIFou3ApyTkJC76zgrWs6oOH1oeF8PLfzkdwhaSF8QptXG6oxXV7aqGMkDwH5ToBwQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@7.11.0)(typescript@5.4.2) + eslint: 7.11.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin@0.15.1(eslint@7.30.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-xgu6jwMscLCX0SWCDAUEpIFou3ApyTkJC76zgrWs6oOH1oeF8PLfzkdwhaSF8QptXG6oxXV7aqGMkDwH5ToBwQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@7.30.0)(typescript@5.4.2) + eslint: 7.30.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin@0.15.1(eslint@7.7.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-xgu6jwMscLCX0SWCDAUEpIFou3ApyTkJC76zgrWs6oOH1oeF8PLfzkdwhaSF8QptXG6oxXV7aqGMkDwH5ToBwQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@7.7.0)(typescript@5.4.2) + eslint: 7.7.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin@0.15.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2): + resolution: + { + integrity: sha512-xgu6jwMscLCX0SWCDAUEpIFou3ApyTkJC76zgrWs6oOH1oeF8PLfzkdwhaSF8QptXG6oxXV7aqGMkDwH5ToBwQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + eslint: 8.57.0(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/eslint-plugin@0.15.1(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-xgu6jwMscLCX0SWCDAUEpIFou3ApyTkJC76zgrWs6oOH1oeF8PLfzkdwhaSF8QptXG6oxXV7aqGMkDwH5ToBwQ== + } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@rushstack/tree-pattern': 0.3.3 + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(typescript@4.9.5) + eslint: 8.57.0(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@rushstack/heft-api-extractor-plugin@0.3.37(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15): + resolution: + { + integrity: sha512-uRL/BEbC2ZeNAJfmdRiVdv3V8mZYTDDuN6yskCuDNaEz6cH6bLHn/6J99pNemzUTdKOJf7jbMsTRxs1kooTn+Q== + } + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@rushstack/heft': link:../../../apps/heft + '@rushstack/heft-config-file': 0.14.25(@types/node@18.17.15) + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + semver: 7.5.4 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@rushstack/heft-api-extractor-plugin@0.3.37(@rushstack/heft@0.66.17)(@types/node@18.17.15): + resolution: + { + integrity: sha512-uRL/BEbC2ZeNAJfmdRiVdv3V8mZYTDDuN6yskCuDNaEz6cH6bLHn/6J99pNemzUTdKOJf7jbMsTRxs1kooTn+Q== + } + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@rushstack/heft': 0.66.17(@types/node@18.17.15) + '@rushstack/heft-config-file': 0.14.25(@types/node@18.17.15) + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + semver: 7.5.4 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@rushstack/heft-config-file@0.14.25(@types/node@18.17.15): + resolution: + { + integrity: sha512-b/7w7aRM7bgeVe0tNFwmbf2dF5jbTC3gD8zkakztNMwqt4pjXbU2o/0OpGwVBRFfVhwd8JnQjhYfFM632CdWYA== + } + engines: { node: '>=10.13.0' } + dependencies: + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + '@rushstack/rig-package': 0.5.2 + '@rushstack/terminal': 0.13.0(@types/node@18.17.15) + jsonpath-plus: 4.0.0 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@rushstack/heft-jest-plugin@0.11.38(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15)(jest-environment-jsdom@29.5.0)(jest-environment-node@29.5.0): + resolution: + { + integrity: sha512-rsZ/bRzBOo4Rv764wJWs4EVz4132r1RRQAfEHnmUwjTGr5ZFNUG9YoRhxj31GxGXfJO1xBu+qqoQhQOrOJNMAw== + } + peerDependencies: + '@rushstack/heft': '*' + jest-environment-jsdom: ^29.5.0 + jest-environment-node: ^29.5.0 + peerDependenciesMeta: + jest-environment-jsdom: + optional: true + jest-environment-node: + optional: true + dependencies: + '@jest/core': 29.5.0(supports-color@8.1.1) + '@jest/reporters': 29.5.0(supports-color@8.1.1) + '@jest/transform': 29.5.0(supports-color@8.1.1) + '@rushstack/heft': link:../../../apps/heft + '@rushstack/heft-config-file': 0.14.25(@types/node@18.17.15) + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + '@rushstack/terminal': 0.13.0(@types/node@18.17.15) + jest-config: 29.5.0(@types/node@18.17.15)(supports-color@8.1.1) + jest-environment-jsdom: 29.5.0 + jest-environment-node: 29.5.0 + jest-resolve: 29.5.0 + jest-snapshot: 29.5.0(supports-color@8.1.1) + lodash: 4.17.21 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + dev: true + + /@rushstack/heft-jest-plugin@0.11.38(@rushstack/heft@0.66.17)(@types/node@18.17.15)(jest-environment-node@29.5.0)(supports-color@8.1.1): + resolution: + { + integrity: sha512-rsZ/bRzBOo4Rv764wJWs4EVz4132r1RRQAfEHnmUwjTGr5ZFNUG9YoRhxj31GxGXfJO1xBu+qqoQhQOrOJNMAw== + } + peerDependencies: + '@rushstack/heft': '*' + jest-environment-jsdom: ^29.5.0 + jest-environment-node: ^29.5.0 + peerDependenciesMeta: + jest-environment-jsdom: + optional: true + jest-environment-node: + optional: true + dependencies: + '@jest/core': 29.5.0(supports-color@8.1.1) + '@jest/reporters': 29.5.0(supports-color@8.1.1) + '@jest/transform': 29.5.0(supports-color@8.1.1) + '@rushstack/heft': 0.66.17(@types/node@18.17.15) + '@rushstack/heft-config-file': 0.14.25(@types/node@18.17.15) + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + '@rushstack/terminal': 0.13.0(@types/node@18.17.15) + jest-config: 29.5.0(@types/node@18.17.15)(supports-color@8.1.1) + jest-environment-node: 29.5.0 + jest-resolve: 29.5.0 + jest-snapshot: 29.5.0(supports-color@8.1.1) + lodash: 4.17.21 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - node-notifier + - supports-color + - ts-node + dev: true + + /@rushstack/heft-lint-plugin@0.3.38(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15): + resolution: + { + integrity: sha512-rKB0CK5TfmsEJxvZT82NtDn/WsPo4sj9NAIrGQJfTBsAz5AZxxF8mFtJqol1/LDntMCr4xvgF3PZRYGmqTsNlQ== + } + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@rushstack/heft': link:../../../apps/heft + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + semver: 7.5.4 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@rushstack/heft-lint-plugin@0.3.38(@rushstack/heft@0.66.17)(@types/node@18.17.15): + resolution: + { + integrity: sha512-rKB0CK5TfmsEJxvZT82NtDn/WsPo4sj9NAIrGQJfTBsAz5AZxxF8mFtJqol1/LDntMCr4xvgF3PZRYGmqTsNlQ== + } + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@rushstack/heft': 0.66.17(@types/node@18.17.15) + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + semver: 7.5.4 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@rushstack/heft-node-rig@2.6.15(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15)(jest-environment-jsdom@29.5.0): + resolution: + { + integrity: sha512-LMPsNLoGQ5qzmJQirVPSWhtSGUXlf+pTz3vTQ+KyEnotTafSQm6d0LcZpWYnFiRWafDGWQlJ9F38yxyaYyxhkA== + } + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@microsoft/api-extractor': 7.46.2(@types/node@18.17.15) + '@rushstack/eslint-config': 3.7.0(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@rushstack/heft': link:../../../apps/heft + '@rushstack/heft-api-extractor-plugin': 0.3.37(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15) + '@rushstack/heft-jest-plugin': 0.11.38(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15)(jest-environment-jsdom@29.5.0)(jest-environment-node@29.5.0) + '@rushstack/heft-lint-plugin': 0.3.38(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15) + '@rushstack/heft-typescript-plugin': 0.5.15(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15) + '@types/heft-jest': 1.0.1 + eslint: 8.57.0(supports-color@8.1.1) + jest-environment-node: 29.5.0 + typescript: 5.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - jest-environment-jsdom + - node-notifier + - supports-color + - ts-node + dev: true + + /@rushstack/heft-node-rig@2.6.15(@rushstack/heft@0.66.17)(@types/node@18.17.15)(supports-color@8.1.1): + resolution: + { + integrity: sha512-LMPsNLoGQ5qzmJQirVPSWhtSGUXlf+pTz3vTQ+KyEnotTafSQm6d0LcZpWYnFiRWafDGWQlJ9F38yxyaYyxhkA== + } + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@microsoft/api-extractor': 7.46.2(@types/node@18.17.15) + '@rushstack/eslint-config': 3.7.0(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@rushstack/heft': 0.66.17(@types/node@18.17.15) + '@rushstack/heft-api-extractor-plugin': 0.3.37(@rushstack/heft@0.66.17)(@types/node@18.17.15) + '@rushstack/heft-jest-plugin': 0.11.38(@rushstack/heft@0.66.17)(@types/node@18.17.15)(jest-environment-node@29.5.0)(supports-color@8.1.1) + '@rushstack/heft-lint-plugin': 0.3.38(@rushstack/heft@0.66.17)(@types/node@18.17.15) + '@rushstack/heft-typescript-plugin': 0.5.15(@rushstack/heft@0.66.17)(@types/node@18.17.15) + '@types/heft-jest': 1.0.1 + eslint: 8.57.0(supports-color@8.1.1) + jest-environment-node: 29.5.0 + typescript: 5.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - jest-environment-jsdom + - node-notifier + - supports-color + - ts-node + dev: true + + /@rushstack/heft-typescript-plugin@0.5.15(@rushstack/heft@..+..+apps+heft)(@types/node@18.17.15): + resolution: + { + integrity: sha512-5xv0IILxk0SLmS/+Ap3expZJnzXMLTJMdnsSy0x35MK1jEQetKHAt0QL1dUDyKyfwoWSHuNIl+3ZOctXP6bECQ== + } + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@rushstack/heft': link:../../../apps/heft + '@rushstack/heft-config-file': 0.14.25(@types/node@18.17.15) + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + '@types/tapable': 1.0.6 + semver: 7.5.4 + tapable: 1.1.3 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@rushstack/heft-typescript-plugin@0.5.15(@rushstack/heft@0.66.17)(@types/node@18.17.15): + resolution: + { + integrity: sha512-5xv0IILxk0SLmS/+Ap3expZJnzXMLTJMdnsSy0x35MK1jEQetKHAt0QL1dUDyKyfwoWSHuNIl+3ZOctXP6bECQ== + } + peerDependencies: + '@rushstack/heft': '*' + dependencies: + '@rushstack/heft': 0.66.17(@types/node@18.17.15) + '@rushstack/heft-config-file': 0.14.25(@types/node@18.17.15) + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + '@types/tapable': 1.0.6 + semver: 7.5.4 + tapable: 1.1.3 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@rushstack/heft@0.66.17(@types/node@18.17.15): + resolution: + { + integrity: sha512-9VjUteASlp2+tR3BmnRtt5ELI2OKZNr2IMEF5+kqwGxFVG/EcQ7gBxelfsn5/PzroM0fC4VfKxelIbjVuwxotw== + } + engines: { node: '>=10.13.0' } + hasBin: true + dependencies: + '@rushstack/heft-config-file': 0.14.25(@types/node@18.17.15) + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + '@rushstack/operation-graph': 0.2.25(@types/node@18.17.15) + '@rushstack/rig-package': 0.5.2 + '@rushstack/terminal': 0.13.0(@types/node@18.17.15) + '@rushstack/ts-command-line': 4.22.0(@types/node@18.17.15) + '@types/tapable': 1.0.6 + fast-glob: 3.3.2 + git-repo-info: 2.1.1 + ignore: 5.1.9 + tapable: 1.1.3 + true-case-path: 2.2.1 + watchpack: 2.4.0 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@rushstack/node-core-library@3.63.0(@types/node@18.17.15): + resolution: + { + integrity: sha512-Q7B3dVpBQF1v+mUfxNcNZh5uHVR8ntcnkN5GYjbBLrxUYHBGKbnCM+OdcN+hzCpFlLBH6Ob0dEHhZ0spQwf24A== + } + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@types/node': 18.17.15 + colors: 1.2.5 + fs-extra: 7.0.1 + import-lazy: 4.0.0 + jju: 1.4.0 + resolve: 1.22.8 + semver: 7.5.4 + z-schema: 5.0.6 + + /@rushstack/node-core-library@5.4.1(@types/node@18.17.15): + resolution: + { + integrity: sha512-WNnwdS8r9NZ/2K3u29tNoSRldscFa7SxU0RT+82B6Dy2I4Hl2MeCSKm4EXLXPKeNzLGvJ1cqbUhTLviSF8E6iA== + } + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@types/node': 18.17.15 + ajv: 8.13.0 + ajv-draft-04: 1.0.0(ajv@8.13.0) + ajv-formats: 3.0.1(ajv@8.13.0) + fs-extra: 7.0.1 + import-lazy: 4.0.0 + jju: 1.4.0 + resolve: 1.22.8 + semver: 7.5.4 + dev: true + + /@rushstack/operation-graph@0.2.25(@types/node@18.17.15): + resolution: + { + integrity: sha512-2rScBKsAP+yBBYIGV79k2xmHy84E8jV3HGmT3p9DXiPthYSEYL/7bv+WrbOxXKSiQCN6BMC3Voufk97j2el7Gg== + } + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + '@rushstack/terminal': 0.13.0(@types/node@18.17.15) + '@types/node': 18.17.15 + dev: true + + /@rushstack/rig-package@0.5.2: + resolution: + { + integrity: sha512-mUDecIJeH3yYGZs2a48k+pbhM6JYwWlgjs2Ca5f2n1G2/kgdgP9D/07oglEGf6mRyXEnazhEENeYTSNDRCwdqA== + } + dependencies: + resolve: 1.22.8 + strip-json-comments: 3.1.1 + dev: true + + /@rushstack/set-webpack-public-path-plugin@4.1.16(@types/node@18.17.15)(@types/webpack@4.41.32)(webpack@4.47.0): + resolution: + { + integrity: sha512-9YD76OHSYr3pqJwc3wcxIFL1kSxPUyw3xThaZrJDBumMRdAEx7Wj3J0xkPtri5BS06yi49fIC1Di75CxeworzA== + } + peerDependencies: + '@types/webpack': ^4.39.8 + peerDependenciesMeta: + '@types/webpack': + optional: true + dependencies: + '@rushstack/node-core-library': 3.63.0(@types/node@18.17.15) + '@rushstack/webpack-plugin-utilities': 0.3.16(@types/webpack@4.41.32)(webpack@4.47.0) + '@types/webpack': 4.41.32 + transitivePeerDependencies: + - '@types/node' + - webpack + + /@rushstack/terminal@0.13.0(@types/node@18.17.15): + resolution: + { + integrity: sha512-Ou44Q2s81BqJu3dpYedAX54am9vn245F0HzqVrfJCMQk5pGgoKKOBOjkbfZC9QKcGNaECh6pwH2s5noJt7X6ew== + } + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@rushstack/node-core-library': 5.4.1(@types/node@18.17.15) + '@types/node': 18.17.15 + supports-color: 8.1.1 + dev: true + + /@rushstack/tree-pattern@0.3.3: + resolution: + { + integrity: sha512-IBsPzcdZhzlMfYWEZxK87Zuqzu7gEOY5eB6KkkD9HfMHLXP2l/54jKI0Tmo5OcbrVa8aivwy0AlVcaPlobLwaQ== + } + dev: true + + /@rushstack/ts-command-line@4.22.0(@types/node@18.17.15): + resolution: + { + integrity: sha512-Qj28t6MO3HRgAZ72FDeFsrpdE6wBWxF3VENgvrXh7JF2qIT+CrXiOJIesW80VFZB9QwObSpkB1ilx794fGQg6g== + } + dependencies: + '@rushstack/terminal': 0.13.0(@types/node@18.17.15) + '@types/argparse': 1.0.38 + argparse: 1.0.10 + string-argv: 0.3.2 + transitivePeerDependencies: + - '@types/node' + dev: true + + /@rushstack/webpack-plugin-utilities@0.3.16(@types/webpack@4.41.32)(webpack@4.47.0): + resolution: + { + integrity: sha512-0Xb0GESYEyv6Q7hzANZ8RIWa3seiJiCKBNNG83znQwMZ9l0bfnoJzZ3cYODkofoK0E8/nr4hTsn/pWKommf6Mw== + } + peerDependencies: + '@types/webpack': ^4.39.8 + webpack: ^5.35.1 || ^4 || ^5 + peerDependenciesMeta: + '@types/webpack': + optional: true + webpack: + optional: true + dependencies: + '@types/webpack': 4.41.32 + memfs: 3.4.3 + webpack: 4.47.0(webpack-cli@3.3.12) + webpack-merge: 5.8.0 + + /@serverless-stack/aws-lambda-ric@2.0.13: + resolution: + { + integrity: sha512-Aj4X2wMW6O5/PQoKoBdQGC3LwQyGTgW1XZtF0rs07WE9s6Q+46zWaVgURQjoNmTNQKpHSGJYo6B+ycp9u7/CSA== + } + hasBin: true + dependencies: + node-addon-api: 3.2.1 + node-gyp: 8.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@serverless-stack/cli@1.18.4(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0)(constructs@10.0.130): + resolution: + { + integrity: sha512-eEG3brlbF/ptIo/s69Hcrn185CVkLWHpmtOmere7+lMPkmy1vxNhWIUuic+LNG0yweK+sg4uMVipREyvwblNDQ== + } + hasBin: true + dependencies: + '@aws-cdk/aws-apigatewayv2-alpha': 2.50.0-alpha.0(aws-cdk-lib@2.50.0)(constructs@10.0.130) + '@serverless-stack/core': 1.18.4 + '@serverless-stack/resources': 1.18.4(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0) + aws-cdk: 2.50.0 + aws-cdk-lib: 2.50.0(constructs@10.0.130) + aws-sdk: 2.1580.0 + body-parser: 1.20.2 + chalk: 4.1.2 + chokidar: 3.4.3 + cross-spawn: 7.0.3 + detect-port-alt: 1.1.6 + esbuild: 0.14.54 + esbuild-runner: 2.2.2(esbuild@0.14.54) + express: 4.19.2 + fs-extra: 9.1.0 + remeda: 0.0.32 + source-map-support: 0.5.21 + ws: 8.14.2 + yargs: 15.4.1 + transitivePeerDependencies: + - '@aws-sdk/client-sso-oidc' + - '@aws-sdk/client-sts' + - aws-crt + - better-sqlite3 + - bufferutil + - constructs + - mysql2 + - pg + - supports-color + - utf-8-validate + dev: true + + /@serverless-stack/core@1.18.4: + resolution: + { + integrity: sha512-j6eoGoZbADbLsc95ZJZQ3nWkXqdlfayx1xEWE0UpFjxthKUi8qZUONd7NOEyTHiR0yYV1NrANcWur2alvn+vlA== + } + dependencies: + '@serverless-stack/aws-lambda-ric': 2.0.13 + '@trpc/server': 9.27.4 + acorn: 8.11.3 + acorn-walk: 8.3.2 + async-retry: 1.3.3 + aws-cdk: 2.50.0 + aws-cdk-lib: 2.50.0(constructs@10.0.130) + aws-sdk: 2.1580.0 + chalk: 4.1.2 + chokidar: 3.6.0 + ci-info: 3.9.0 + conf: 10.2.0 + constructs: 10.0.130 + cross-spawn: 7.0.3 + dendriform-immer-patch-optimiser: 2.1.3(immer@9.0.21) + dotenv: 10.0.0 + dotenv-expand: 5.1.0 + esbuild: 0.14.54 + escodegen: 2.1.0 + express: 4.19.2 + fs-extra: 9.1.0 + immer: 9.0.21 + js-yaml: 4.1.0 + kysely: 0.21.6 + kysely-codegen: 0.6.2(kysely@0.21.6) + kysely-data-api: 0.1.4(aws-sdk@2.1580.0)(kysely@0.21.6) + log4js: 6.9.1 + picomatch: 2.3.1 + remeda: 0.0.32 + semver: 7.5.4 + typescript: 4.9.5 + uuid: 8.3.2 + ws: 8.14.2 + xstate: 4.26.1 + zip-local: 0.3.5 + optionalDependencies: + '@pothos/core': 3.41.1(graphql@16.8.1) + graphql: 16.8.1 + transitivePeerDependencies: + - better-sqlite3 + - bufferutil + - mysql2 + - pg + - supports-color + - utf-8-validate + dev: true + + /@serverless-stack/resources@1.18.4(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0): + resolution: + { + integrity: sha512-rryGU74daEYut9ZCvji0SjanKnLEgGAjzQj3LiFCZ6xzty+stR7cJtbfbk/M0rta/tG8vjzVr2xZ/qLUYjdJqg== + } + dependencies: + '@aws-cdk/aws-apigatewayv2-alpha': 2.50.0-alpha.0(aws-cdk-lib@2.50.0)(constructs@10.0.130) + '@aws-cdk/aws-apigatewayv2-authorizers-alpha': 2.50.0-alpha.0(@aws-cdk/aws-apigatewayv2-alpha@2.50.0-alpha.0)(aws-cdk-lib@2.50.0)(constructs@10.0.130) + '@aws-cdk/aws-apigatewayv2-integrations-alpha': 2.50.0-alpha.0(@aws-cdk/aws-apigatewayv2-alpha@2.50.0-alpha.0)(aws-cdk-lib@2.50.0)(constructs@10.0.130) + '@aws-cdk/aws-appsync-alpha': 2.50.0-alpha.0(aws-cdk-lib@2.50.0)(constructs@10.0.130) + '@aws-sdk/client-codebuild': 3.567.0(@aws-sdk/client-sso-oidc@3.567.0)(@aws-sdk/client-sts@3.567.0) + '@serverless-stack/core': 1.18.4 + archiver: 5.3.2 + aws-cdk-lib: 2.50.0(constructs@10.0.130) + chalk: 4.1.2 + constructs: 10.0.130 + cross-spawn: 7.0.3 + esbuild: 0.20.2 + fs-extra: 9.1.0 + glob: 7.2.3 + indent-string: 5.0.0 + zip-local: 0.3.5 + optionalDependencies: + graphql: 16.8.1 + transitivePeerDependencies: + - '@aws-sdk/client-sso-oidc' + - '@aws-sdk/client-sts' + - aws-crt + - better-sqlite3 + - bufferutil + - mysql2 + - pg + - supports-color + - utf-8-validate + dev: true + + /@sinclair/typebox@0.27.8: + resolution: + { + integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== + } + + /@sindresorhus/is@4.6.0: + resolution: + { + integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== + } + engines: { node: '>=10' } + + /@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 + + /@smithy/abort-controller@2.2.0: + resolution: + { + integrity: sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/config-resolver@2.2.0: + resolution: + { + integrity: sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/node-config-provider': 2.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-config-provider': 2.3.0 + '@smithy/util-middleware': 2.2.0 + tslib: 2.6.2 + dev: true + + /@smithy/core@1.4.2: + resolution: + { + integrity: sha512-2fek3I0KZHWJlRLvRTqxTEri+qV0GRHrJIoLFuBMZB4EMg4WgeBGfF0X6abnrNYpq55KJ6R4D6x4f0vLnhzinA== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/middleware-endpoint': 2.5.1 + '@smithy/middleware-retry': 2.3.1 + '@smithy/middleware-serde': 2.3.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + '@smithy/util-middleware': 2.2.0 + tslib: 2.6.2 + dev: true + + /@smithy/credential-provider-imds@2.3.0: + resolution: + { + integrity: sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/node-config-provider': 2.3.0 + '@smithy/property-provider': 2.2.0 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + tslib: 2.6.2 + dev: true + + /@smithy/fetch-http-handler@2.5.0: + resolution: + { + integrity: sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw== + } + dependencies: + '@smithy/protocol-http': 3.3.0 + '@smithy/querystring-builder': 2.2.0 + '@smithy/types': 2.12.0 + '@smithy/util-base64': 2.3.0 + tslib: 2.6.2 + dev: true + + /@smithy/hash-node@2.2.0: + resolution: + { + integrity: sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + '@smithy/util-buffer-from': 2.2.0 + '@smithy/util-utf8': 2.3.0 + tslib: 2.6.2 + dev: true + + /@smithy/invalid-dependency@2.2.0: + resolution: + { + integrity: sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q== + } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/is-array-buffer@2.2.0: + resolution: + { + integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA== + } + engines: { node: '>=14.0.0' } + dependencies: + tslib: 2.6.2 + dev: true + + /@smithy/middleware-content-length@2.2.0: + resolution: + { + integrity: sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/middleware-endpoint@2.5.1: + resolution: + { + integrity: sha512-1/8kFp6Fl4OsSIVTWHnNjLnTL8IqpIb/D3sTSczrKFnrE9VMNWxnrRKNvpUHOJ6zpGD5f62TPm7+17ilTJpiCQ== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/middleware-serde': 2.3.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-middleware': 2.2.0 + tslib: 2.6.2 + dev: true + + /@smithy/middleware-retry@2.3.1: + resolution: + { + integrity: sha512-P2bGufFpFdYcWvqpyqqmalRtwFUNUA8vHjJR5iGqbfR6mp65qKOLcUd6lTr4S9Gn/enynSrSf3p3FVgVAf6bXA== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/node-config-provider': 2.3.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/service-error-classification': 2.1.5 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-retry': 2.2.0 + tslib: 2.6.2 + uuid: 9.0.1 + dev: true + + /@smithy/middleware-serde@2.3.0: + resolution: + { + integrity: sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/middleware-stack@2.2.0: + resolution: + { + integrity: sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/node-config-provider@2.3.0: + resolution: + { + integrity: sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/node-http-handler@2.5.0: + resolution: + { + integrity: sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/abort-controller': 2.2.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/querystring-builder': 2.2.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/property-provider@2.2.0: + resolution: + { + integrity: sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/protocol-http@3.3.0: + resolution: + { + integrity: sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/querystring-builder@2.2.0: + resolution: + { + integrity: sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + '@smithy/util-uri-escape': 2.2.0 + tslib: 2.6.2 + dev: true + + /@smithy/querystring-parser@2.2.0: + resolution: + { + integrity: sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/service-error-classification@2.1.5: + resolution: + { + integrity: sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + dev: true + + /@smithy/shared-ini-file-loader@2.4.0: + resolution: + { + integrity: sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/signature-v4@2.3.0: + resolution: + { + integrity: sha512-ui/NlpILU+6HAQBfJX8BBsDXuKSNrjTSuOYArRblcrErwKFutjrCNb/OExfVRyj9+26F9J+ZmfWT+fKWuDrH3Q== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/is-array-buffer': 2.2.0 + '@smithy/types': 2.12.0 + '@smithy/util-hex-encoding': 2.2.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-uri-escape': 2.2.0 + '@smithy/util-utf8': 2.3.0 + tslib: 2.6.2 + dev: true + + /@smithy/smithy-client@2.5.1: + resolution: + { + integrity: sha512-jrbSQrYCho0yDaaf92qWgd+7nAeap5LtHTI51KXqmpIFCceKU3K9+vIVTUH72bOJngBMqa4kyu1VJhRcSrk/CQ== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/middleware-endpoint': 2.5.1 + '@smithy/middleware-stack': 2.2.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-stream': 2.2.0 + tslib: 2.6.2 + dev: true + + /@smithy/types@2.12.0: + resolution: + { + integrity: sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw== + } + engines: { node: '>=14.0.0' } + dependencies: + tslib: 2.6.2 + dev: true + + /@smithy/url-parser@2.2.0: + resolution: + { + integrity: sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ== + } + dependencies: + '@smithy/querystring-parser': 2.2.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/util-base64@2.3.0: + resolution: + { + integrity: sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/util-buffer-from': 2.2.0 + '@smithy/util-utf8': 2.3.0 + tslib: 2.6.2 + dev: true + + /@smithy/util-body-length-browser@2.2.0: + resolution: + { + integrity: sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w== + } + dependencies: + tslib: 2.6.2 + dev: true + + /@smithy/util-body-length-node@2.3.0: + resolution: + { + integrity: sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw== + } + engines: { node: '>=14.0.0' } + dependencies: + tslib: 2.6.2 + dev: true + + /@smithy/util-buffer-from@2.2.0: + resolution: + { + integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/is-array-buffer': 2.2.0 + tslib: 2.6.2 + dev: true + + /@smithy/util-config-provider@2.3.0: + resolution: + { + integrity: sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ== + } + engines: { node: '>=14.0.0' } + dependencies: + tslib: 2.6.2 + dev: true + + /@smithy/util-defaults-mode-browser@2.2.1: + resolution: + { + integrity: sha512-RtKW+8j8skk17SYowucwRUjeh4mCtnm5odCL0Lm2NtHQBsYKrNW0od9Rhopu9wF1gHMfHeWF7i90NwBz/U22Kw== + } + engines: { node: '>= 10.0.0' } + dependencies: + '@smithy/property-provider': 2.2.0 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + bowser: 2.11.0 + tslib: 2.6.2 + dev: true + + /@smithy/util-defaults-mode-node@2.3.1: + resolution: + { + integrity: sha512-vkMXHQ0BcLFysBMWgSBLSk3+leMpFSyyFj8zQtv5ZyUBx8/owVh1/pPEkzmW/DR/Gy/5c8vjLDD9gZjXNKbrpA== + } + engines: { node: '>= 10.0.0' } + dependencies: + '@smithy/config-resolver': 2.2.0 + '@smithy/credential-provider-imds': 2.3.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/property-provider': 2.2.0 + '@smithy/smithy-client': 2.5.1 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/util-endpoints@1.2.0: + resolution: + { + integrity: sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ== + } + engines: { node: '>= 14.0.0' } + dependencies: + '@smithy/node-config-provider': 2.3.0 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/util-hex-encoding@2.2.0: + resolution: + { + integrity: sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ== + } + engines: { node: '>=14.0.0' } + dependencies: + tslib: 2.6.2 + dev: true + + /@smithy/util-middleware@2.2.0: + resolution: + { + integrity: sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/util-retry@2.2.0: + resolution: + { + integrity: sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g== + } + engines: { node: '>= 14.0.0' } + dependencies: + '@smithy/service-error-classification': 2.1.5 + '@smithy/types': 2.12.0 + tslib: 2.6.2 + dev: true + + /@smithy/util-stream@2.2.0: + resolution: + { + integrity: sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-buffer-from': 2.2.0 + '@smithy/util-hex-encoding': 2.2.0 + '@smithy/util-utf8': 2.3.0 + tslib: 2.6.2 + dev: true + + /@smithy/util-uri-escape@2.2.0: + resolution: + { + integrity: sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA== + } + engines: { node: '>=14.0.0' } + dependencies: + tslib: 2.6.2 + dev: true + + /@smithy/util-utf8@2.3.0: + resolution: + { + integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A== + } + engines: { node: '>=14.0.0' } + dependencies: + '@smithy/util-buffer-from': 2.2.0 + tslib: 2.6.2 + dev: true + + /@storybook/addon-actions@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-t2w3iLXFul+R/1ekYxIEzUOZZmvEa7EzUAVAuCHP4i6x0jBnTTZ7sAIUVRaxVREPguH5IqI/2OklYhKanty2Yw== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + core-js: 3.36.0 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + polished: 4.3.1 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-inspector: 5.1.1(react@17.0.2) + regenerator-runtime: 0.13.11 + telejson: 5.3.3 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + uuid-browser: 3.1.0 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/addon-backgrounds@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-xQIV1SsjjRXP7P5tUoGKv+pul1EY8lsV7iBXQb5eGbp4AffBj3qoYBSZbX4uiazl21o0MQiQoeIhhaPVaFIIGg== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + core-js: 3.36.0 + global: 4.4.0 + memoizerific: 1.11.3 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/addon-controls@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2): + resolution: + { + integrity: sha512-f/M/W+7UTEUnr/L6scBMvksq+ZA8GTfh3bomE5FtWyOyaFppq9k8daKAvdYNlzXAOrUUsoZVJDgpb20Z2VBiSQ== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-common': 6.4.22(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/node-logger': 6.4.22 + '@storybook/store': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + core-js: 3.36.0 + lodash: 4.17.21 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + ts-dedent: 2.2.0 + transitivePeerDependencies: + - '@types/react' + - eslint + - supports-color + - typescript + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/addon-docs@6.4.22(@storybook/react@6.4.22)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0): + resolution: + { + integrity: sha512-9j+i+W+BGHJuRe4jUrqk6ubCzP4fc1xgFS2o8pakRiZgPn5kUQPdkticmsyh1XeEJifwhqjKJvkEDrcsleytDA== + } + peerDependencies: + '@storybook/angular': 6.4.22 + '@storybook/html': 6.4.22 + '@storybook/react': 6.4.22 + '@storybook/vue': 6.4.22 + '@storybook/vue3': 6.4.22 + '@storybook/web-components': 6.4.22 + lit: ^2.0.0 + lit-html: ^1.4.1 || ^2.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + svelte: ^3.31.2 + sveltedoc-parser: ^4.1.0 + vue: ^2.6.10 || ^3.0.0 + webpack: '*' + peerDependenciesMeta: + '@storybook/angular': + optional: true + '@storybook/html': + optional: true + '@storybook/react': + optional: true + '@storybook/vue': + optional: true + '@storybook/vue3': + optional: true + '@storybook/web-components': + optional: true + lit: + optional: true + lit-html: + optional: true + react: + optional: true + react-dom: + optional: true + svelte: + optional: true + sveltedoc-parser: + optional: true + vue: + optional: true + webpack: + optional: true + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/generator': 7.23.6 + '@babel/parser': 7.24.0 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.20.12) + '@babel/preset-env': 7.24.0(@babel/core@7.20.12) + '@jest/transform': 26.6.2 + '@mdx-js/loader': 1.6.22(react@17.0.2) + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22(react@17.0.2) + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/builder-webpack4': 6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/client-logger': 6.4.22 + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core': 6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0) + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/csf-tools': 6.4.22 + '@storybook/node-logger': 6.4.22 + '@storybook/postinstall': 6.4.22 + '@storybook/preview-web': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/react': 6.4.22(@babel/core@7.20.12)(@types/node@18.17.15)(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/source-loader': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/store': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + acorn: 7.4.1 + acorn-jsx: 5.3.2(acorn@7.4.1) + acorn-walk: 7.2.0 + core-js: 3.36.0 + doctrine: 3.0.0 + escodegen: 2.1.0 + fast-deep-equal: 3.1.3 + global: 4.4.0 + html-tags: 3.3.1 + js-string-escape: 1.0.1 + loader-utils: 2.0.4 + lodash: 4.17.21 + nanoid: 3.3.7 + p-limit: 3.1.0 + prettier: 2.3.0 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-element-to-jsx-string: 14.3.4(react-dom@17.0.2)(react@17.0.2) + regenerator-runtime: 0.13.11 + remark-external-links: 8.0.0 + remark-slug: 6.1.0 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + webpack: 4.47.0(webpack-cli@3.3.12) + transitivePeerDependencies: + - '@storybook/builder-webpack5' + - '@storybook/manager-webpack5' + - '@types/react' + - bufferutil + - encoding + - eslint + - supports-color + - typescript + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/addon-essentials@6.4.22(@babel/core@7.20.12)(@storybook/react@6.4.22)(@types/react@17.0.74)(babel-loader@8.2.5)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0): + resolution: + { + integrity: sha512-GTv291fqvWq2wzm7MruBvCGuWaCUiuf7Ca3kzbQ/WqWtve7Y/1PDsqRNQLGZrQxkXU0clXCqY1XtkTrtA3WGFQ== + } + peerDependencies: + '@babel/core': ^7.9.6 + '@storybook/vue': 6.4.22 + '@storybook/web-components': 6.4.22 + babel-loader: ^8.0.0 + lit-html: ^1.4.1 || ^2.0.0-rc.3 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + webpack: '*' + peerDependenciesMeta: + '@storybook/vue': + optional: true + '@storybook/web-components': + optional: true + lit-html: + optional: true + react: + optional: true + react-dom: + optional: true + webpack: + optional: true + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@storybook/addon-actions': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-backgrounds': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-controls': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/addon-docs': 6.4.22(@storybook/react@6.4.22)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0) + '@storybook/addon-measure': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-outline': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-toolbars': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addon-viewport': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/node-logger': 6.4.22 + babel-loader: 8.2.5(@babel/core@7.20.12)(webpack@4.47.0) + core-js: 3.36.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + webpack: 4.47.0(webpack-cli@3.3.12) + transitivePeerDependencies: + - '@storybook/angular' + - '@storybook/builder-webpack5' + - '@storybook/html' + - '@storybook/manager-webpack5' + - '@storybook/react' + - '@storybook/vue3' + - '@types/react' + - bufferutil + - encoding + - eslint + - lit + - supports-color + - svelte + - sveltedoc-parser + - typescript + - utf-8-validate + - vue + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/addon-links@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-OSOyDnTXnmcplJHlXTYUTMkrfpLqxtHp2R69IXfAyI1e8WNDb79mXflrEXDA/RSNEliLkqYwCyYby7gDMGds5Q== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/router': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/qs': 6.9.13 + core-js: 3.36.0 + global: 4.4.0 + prop-types: 15.8.1 + qs: 6.12.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/addon-measure@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-CjDXoCNIXxNfXfgyJXPc0McjCcwN1scVNtHa9Ckr+zMjiQ8pPHY7wDZCQsG69KTqcWHiVfxKilI82456bcHYhQ== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + core-js: 3.36.0 + global: 4.4.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/addon-outline@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-VIMEzvBBRbNnupGU7NV0ahpFFb6nKVRGYWGREjtABdFn2fdKr1YicOHFe/3U7hRGjb5gd+VazSvyUvhaKX9T7Q== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + core-js: 3.36.0 + global: 4.4.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/addon-toolbars@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-FFyj6XDYpBBjcUu6Eyng7R805LUbVclEfydZjNiByAoDVyCde9Hb4sngFxn/T4fKAfBz/32HKVXd5iq4AHYtLg== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + core-js: 3.36.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/addon-viewport@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-6jk0z49LemeTblez5u2bYXYr6U+xIdLbywe3G283+PZCBbEDE6eNYy2d2HDL+LbCLbezJBLYPHPalElphjJIcw== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-events': 6.4.22 + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + core-js: 3.36.0 + global: 4.4.0 + memoizerific: 1.11.3 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/addons@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-P/R+Jsxh7pawKLYo8MtE3QU/ilRFKbtCewV/T1o5U/gm8v7hKQdFz3YdRMAra4QuCY8bQIp7MKd2HrB5aH5a1A== + } + peerDependencies: + '@types/react': '>=16' + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/channels': 6.4.22 + '@storybook/client-logger': 6.4.22 + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/router': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/react': 17.0.74 + '@types/webpack-env': 1.18.0 + core-js: 3.36.0 + global: 4.4.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + dev: true + + /@storybook/api@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-lAVI3o2hKupYHXFTt+1nqFct942up5dHH6YD7SZZJGyW21dwKC3HK1IzCsTawq3fZAKkgWFgmOO649hKk60yKg== + } + peerDependencies: + '@types/react': '>=16' + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/channels': 6.4.22 + '@storybook/client-logger': 6.4.22 + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/router': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/react': 17.0.74 + core-js: 3.36.0 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + store2: 2.14.3 + telejson: 5.3.3 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/builder-webpack4@6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2): + resolution: + { + integrity: sha512-A+GgGtKGnBneRFSFkDarUIgUTI8pYFdLmUVKEAGdh2hL+vLXAz9A46sEY7C8LQ85XWa8TKy3OTDxqR4+4iWj3A== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-decorators': 7.24.0(@babel/core@7.20.12) + '@babel/plugin-proposal-export-default-from': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.12) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.20.12) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.20.12) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.20.12) + '@babel/preset-env': 7.24.0(@babel/core@7.20.12) + '@babel/preset-react': 7.23.3(@babel/core@7.20.12) + '@babel/preset-typescript': 7.23.3(@babel/core@7.20.12) + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/channel-postmessage': 6.4.22 + '@storybook/channels': 6.4.22 + '@storybook/client-api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-common': 6.4.22(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/core-events': 6.4.22 + '@storybook/node-logger': 6.4.22 + '@storybook/preview-web': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/router': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/ui': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/node': 14.18.63 + '@types/webpack': 4.41.32 + autoprefixer: 9.8.8 + babel-loader: 8.2.5(@babel/core@7.20.12)(webpack@4.47.0) + babel-plugin-macros: 2.8.0 + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.20.12) + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.36.0 + css-loader: 3.6.0(webpack@4.47.0) + file-loader: 6.2.0(webpack@4.47.0) + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 4.1.6 + glob: 7.2.3 + glob-promise: 3.4.0(glob@7.2.3) + global: 4.4.0 + html-webpack-plugin: 4.5.2(webpack@4.47.0) + pnp-webpack-plugin: 1.6.4(typescript@5.4.2) + postcss: 7.0.39 + postcss-flexbugs-fixes: 4.2.1 + postcss-loader: 4.3.0(postcss@7.0.39)(webpack@4.47.0) + raw-loader: 4.0.2(webpack@4.47.0) + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + stable: 0.1.8 + style-loader: 1.3.0(webpack@4.47.0) + terser-webpack-plugin: 4.2.3(webpack@4.47.0) + ts-dedent: 2.2.0 + typescript: 5.4.2 + url-loader: 4.1.1(file-loader@6.2.0)(webpack@4.47.0) + util-deprecate: 1.0.2 + webpack: 4.47.0(webpack-cli@3.3.12) + webpack-dev-middleware: 3.7.3(@types/webpack@4.41.32)(webpack@4.47.0) + webpack-filter-warnings-plugin: 1.2.1(webpack@4.47.0) + webpack-hot-middleware: 2.26.1 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/channel-postmessage@6.4.22: + resolution: + { + integrity: sha512-gt+0VZLszt2XZyQMh8E94TqjHZ8ZFXZ+Lv/Mmzl0Yogsc2H+6VzTTQO4sv0IIx6xLbpgG72g5cr8VHsxW5kuDQ== + } + dependencies: + '@storybook/channels': 6.4.22 + '@storybook/client-logger': 6.4.22 + '@storybook/core-events': 6.4.22 + core-js: 3.36.0 + global: 4.4.0 + qs: 6.12.0 + telejson: 5.3.3 + dev: true + + /@storybook/channel-websocket@6.4.22: + resolution: + { + integrity: sha512-Bm/FcZ4Su4SAK5DmhyKKfHkr7HiHBui6PNutmFkASJInrL9wBduBfN8YQYaV7ztr8ezoHqnYRx8sj28jpwa6NA== + } + dependencies: + '@storybook/channels': 6.4.22 + '@storybook/client-logger': 6.4.22 + core-js: 3.36.0 + global: 4.4.0 + telejson: 5.3.3 + dev: true + + /@storybook/channels@6.4.22: + resolution: + { + integrity: sha512-cfR74tu7MLah1A8Rru5sak71I+kH2e/sY6gkpVmlvBj4hEmdZp4Puj9PTeaKcMXh9DgIDPNA5mb8yvQH6VcyxQ== + } + dependencies: + core-js: 3.36.0 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/cli@6.4.22(jest@29.3.1)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2): + resolution: + { + integrity: sha512-Paj5JtiYG6HjYYEiLm0SGg6GJ+ebJSvfbbYx5W+MNiojyMwrzkof+G2VEGk5AbE2JSkXvDQJ/9B8/SuS94yqvA== + } + hasBin: true + peerDependencies: + jest: '*' + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/preset-env': 7.24.0(@babel/core@7.20.12) + '@storybook/codemod': 6.4.22(@babel/preset-env@7.24.0) + '@storybook/core-common': 6.4.22(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/csf-tools': 6.4.22 + '@storybook/node-logger': 6.4.22 + '@storybook/semver': 7.3.2 + boxen: 5.1.2 + chalk: 4.1.2 + commander: 6.2.1 + core-js: 3.36.0 + cross-spawn: 7.0.3 + envinfo: 7.11.1 + express: 4.19.2 + find-up: 5.0.0 + fs-extra: 9.1.0 + get-port: 5.1.1 + globby: 11.1.0 + jest: 29.3.1(@types/node@18.17.15) + jscodeshift: 0.13.1(@babel/preset-env@7.24.0) + json5: 2.2.3 + leven: 3.1.0 + prompts: 2.4.2 + puppeteer-core: 2.1.1 + read-pkg-up: 7.0.1 + shelljs: 0.8.5 + strip-json-comments: 3.1.1 + ts-dedent: 2.2.0 + update-notifier: 5.1.0 + transitivePeerDependencies: + - eslint + - react + - react-dom + - supports-color + - typescript + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/client-api@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-sO6HJNtrrdit7dNXQcZMdlmmZG1k6TswH3gAyP/DoYajycrTwSJ6ovkarzkO+0QcJ+etgra4TEdTIXiGHBMe/A== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/channel-postmessage': 6.4.22 + '@storybook/channels': 6.4.22 + '@storybook/client-logger': 6.4.22 + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/store': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/qs': 6.9.13 + '@types/webpack-env': 1.18.0 + core-js: 3.36.0 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + qs: 6.12.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + store2: 2.14.3 + synchronous-promise: 2.0.17 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/client-logger@6.4.22: + resolution: + { + integrity: sha512-LXhxh/lcDsdGnK8kimqfhu3C0+D2ylCSPPQNbU0IsLRmTfbpQYMdyl0XBjPdHiRVwlL7Gkw5OMjYemQgJ02zlw== + } + dependencies: + core-js: 3.36.0 + global: 4.4.0 + dev: true + + /@storybook/codemod@6.4.22(@babel/preset-env@7.24.0): + resolution: + { + integrity: sha512-xqnTKUQU2W3vS3dce9s4bYhy15tIfAHIzog37jqpKYOHnByXpPj/KkluGePtv5I6cvMxqP8IhQzn+Eh/lVjM4Q== + } + dependencies: + '@babel/types': 7.24.0 + '@mdx-js/mdx': 1.6.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/csf-tools': 6.4.22 + '@storybook/node-logger': 6.4.22 + core-js: 3.36.0 + cross-spawn: 7.0.3 + globby: 11.1.0 + jscodeshift: 0.13.1(@babel/preset-env@7.24.0) + lodash: 4.17.21 + prettier: 2.3.0 + recast: 0.19.1 + regenerator-runtime: 0.13.11 + transitivePeerDependencies: + - '@babel/preset-env' + - supports-color + dev: true + + /@storybook/components@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-dCbXIJF9orMvH72VtAfCQsYbe57OP7fAADtR6YTwfCw9Sm1jFuZr8JbblQ1HcrXEoJG21nOyad3Hm5EYVb/sBw== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@popperjs/core': 2.11.8 + '@storybook/client-logger': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/color-convert': 2.0.3 + '@types/overlayscrollbars': 1.12.5 + '@types/react-syntax-highlighter': 11.0.5 + color-convert: 2.0.1 + core-js: 3.36.0 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + markdown-to-jsx: 7.4.3(react@17.0.2) + memoizerific: 1.11.3 + overlayscrollbars: 1.13.3 + polished: 4.3.1 + prop-types: 15.8.1 + react: 17.0.2 + react-colorful: 5.6.1(react-dom@17.0.2)(react@17.0.2) + react-dom: 17.0.2(react@17.0.2) + react-popper-tooltip: 3.1.1(react-dom@17.0.2)(react@17.0.2) + react-syntax-highlighter: 13.5.3(react@17.0.2) + react-textarea-autosize: 8.5.3(@types/react@17.0.74)(react@17.0.2) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-client@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0): + resolution: + { + integrity: sha512-uHg4yfCBeM6eASSVxStWRVTZrAnb4FT6X6v/xDqr4uXCpCttZLlBzrSDwPBLNNLtCa7ntRicHM8eGKIOD5lMYQ== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/channel-postmessage': 6.4.22 + '@storybook/channel-websocket': 6.4.22 + '@storybook/client-api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/store': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/ui': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.36.0 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.12.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + typescript: 5.4.2 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 4.47.0(webpack-cli@3.3.12) + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-common@6.4.22(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2): + resolution: + { + integrity: sha512-PD3N/FJXPNRHeQS2zdgzYFtqPLdi3MLwAicbnw+U3SokcsspfsAuyYHZOYZgwO8IAEKy6iCc7TpBdiSJZ/vAKQ== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-decorators': 7.24.0(@babel/core@7.20.12) + '@babel/plugin-proposal-export-default-from': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.20.12) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.12) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.20.12) + '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.20.12) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.20.12) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.20.12) + '@babel/preset-env': 7.24.0(@babel/core@7.20.12) + '@babel/preset-react': 7.23.3(@babel/core@7.20.12) + '@babel/preset-typescript': 7.23.3(@babel/core@7.20.12) + '@babel/register': 7.23.7(@babel/core@7.20.12) + '@storybook/node-logger': 6.4.22 + '@storybook/semver': 7.3.2 + '@types/node': 14.18.63 + '@types/pretty-hrtime': 1.0.3 + babel-loader: 8.2.5(@babel/core@7.20.12)(webpack@4.47.0) + babel-plugin-macros: 3.1.0 + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.20.12) + chalk: 4.1.2 + core-js: 3.36.0 + express: 4.19.2 + file-system-cache: 1.1.0 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.0)(typescript@5.4.2)(webpack@4.47.0) + fs-extra: 9.1.0 + glob: 7.2.3 + handlebars: 4.7.8 + interpret: 2.2.0 + json5: 2.2.3 + lazy-universal-dotenv: 3.0.1 + picomatch: 2.3.1 + pkg-dir: 5.0.0 + pretty-hrtime: 1.0.3 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + resolve-from: 5.0.0 + slash: 3.0.0 + telejson: 5.3.3 + ts-dedent: 2.2.0 + typescript: 5.4.2 + util-deprecate: 1.0.2 + webpack: 4.47.0(webpack-cli@3.3.12) + transitivePeerDependencies: + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core-events@6.4.22: + resolution: + { + integrity: sha512-5GYY5+1gd58Gxjqex27RVaX6qbfIQmJxcbzbNpXGNSqwqAuIIepcV1rdCVm6I4C3Yb7/AQ3cN5dVbf33QxRIwA== + } + dependencies: + core-js: 3.36.0 + dev: true + + /@storybook/core-server@6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2): + resolution: + { + integrity: sha512-wFh3e2fa0un1d4+BJP+nd3FVWUO7uHTqv3OGBfOmzQMKp4NU1zaBNdSQG7Hz6mw0fYPBPZgBjPfsJRwIYLLZyw== + } + peerDependencies: + '@storybook/builder-webpack5': 6.4.22 + '@storybook/manager-webpack5': 6.4.22 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + '@storybook/builder-webpack4': 6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/core-client': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0) + '@storybook/core-common': 6.4.22(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/csf-tools': 6.4.22 + '@storybook/manager-webpack4': 6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/node-logger': 6.4.22 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/node': 14.18.63 + '@types/node-fetch': 2.6.2 + '@types/pretty-hrtime': 1.0.3 + '@types/webpack': 4.41.32 + better-opn: 2.1.1 + boxen: 5.1.2 + chalk: 4.1.2 + cli-table3: 0.6.3 + commander: 6.2.1 + compression: 1.7.4 + core-js: 3.36.0 + cpy: 8.1.2 + detect-port: 1.5.1 + express: 4.19.2 + file-system-cache: 1.1.0 + fs-extra: 9.1.0 + globby: 11.1.0 + ip: 1.1.9 + lodash: 4.17.21 + node-fetch: 2.6.7 + pretty-hrtime: 1.0.3 + prompts: 2.4.2 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + serve-favicon: 2.5.0 + slash: 3.0.0 + telejson: 5.3.3 + ts-dedent: 2.2.0 + typescript: 5.4.2 + util-deprecate: 1.0.2 + watchpack: 2.4.0 + webpack: 4.47.0(webpack-cli@3.3.12) + ws: 8.14.2 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - encoding + - eslint + - supports-color + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core@6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0): + resolution: + { + integrity: sha512-KZYJt7GM5NgKFXbPRZZZPEONZ5u/tE/cRbMdkn/zWN3He8+VP+65/tz8hbriI/6m91AWVWkBKrODSkeq59NgRA== + } + peerDependencies: + '@storybook/builder-webpack5': 6.4.22 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + typescript: + optional: true + dependencies: + '@storybook/core-client': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0) + '@storybook/core-server': 6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + typescript: 5.4.2 + webpack: 4.47.0(webpack-cli@3.3.12) + transitivePeerDependencies: + - '@storybook/manager-webpack5' + - '@types/react' + - bufferutil + - encoding + - eslint + - supports-color + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/csf-tools@6.4.22: + resolution: + { + integrity: sha512-LMu8MZAiQspJAtMBLU2zitsIkqQv7jOwX7ih5JrXlyaDticH7l2j6Q+1mCZNWUOiMTizj0ivulmUsSaYbpToSw== + } + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/generator': 7.23.6 + '@babel/parser': 7.24.0 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.20.12) + '@babel/preset-env': 7.24.0(@babel/core@7.20.12) + '@babel/traverse': 7.24.0(supports-color@8.1.1) + '@babel/types': 7.24.0 + '@mdx-js/mdx': 1.6.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + core-js: 3.36.0 + fs-extra: 9.1.0 + global: 4.4.0 + js-string-escape: 1.0.1 + lodash: 4.17.21 + prettier: 2.3.0 + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@storybook/csf@0.0.2--canary.87bc651.0: + resolution: + { + integrity: sha512-ajk1Uxa+rBpFQHKrCcTmJyQBXZ5slfwHVEaKlkuFaW77it8RgbPJp/ccna3sgoi8oZ7FkkOyvv1Ve4SmwFqRqw== + } + dependencies: + lodash: 4.17.21 + dev: true + + /@storybook/manager-webpack4@6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2): + resolution: + { + integrity: sha512-nzhDMJYg0vXdcG0ctwE6YFZBX71+5NYaTGkxg3xT7gbgnP1YFXn9gVODvgq3tPb3gcRapjyOIxUa20rV+r8edA== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.20.12) + '@babel/preset-react': 7.23.3(@babel/core@7.20.12) + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-client': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0) + '@storybook/core-common': 6.4.22(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/node-logger': 6.4.22 + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/ui': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/node': 14.18.63 + '@types/webpack': 4.41.32 + babel-loader: 8.2.5(@babel/core@7.20.12)(webpack@4.47.0) + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.36.0 + css-loader: 3.6.0(webpack@4.47.0) + express: 4.19.2 + file-loader: 6.2.0(webpack@4.47.0) + file-system-cache: 1.1.0 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 4.5.2(webpack@4.47.0) + node-fetch: 2.6.7 + pnp-webpack-plugin: 1.6.4(typescript@5.4.2) + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.11 + resolve-from: 5.0.0 + style-loader: 1.3.0(webpack@4.47.0) + telejson: 5.3.3 + terser-webpack-plugin: 4.2.3(webpack@4.47.0) + ts-dedent: 2.2.0 + typescript: 5.4.2 + url-loader: 4.1.1(file-loader@6.2.0)(webpack@4.47.0) + util-deprecate: 1.0.2 + webpack: 4.47.0(webpack-cli@3.3.12) + webpack-dev-middleware: 3.7.3(@types/webpack@4.41.32)(webpack@4.47.0) + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - encoding + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/node-logger@6.4.22: + resolution: + { + integrity: sha512-sUXYFqPxiqM7gGH7gBXvO89YEO42nA4gBicJKZjj9e+W4QQLrftjF9l+mAw2K0mVE10Bn7r4pfs5oEZ0aruyyA== + } + dependencies: + '@types/npmlog': 4.1.6 + chalk: 4.1.2 + core-js: 3.36.0 + npmlog: 5.0.1 + pretty-hrtime: 1.0.3 + dev: true + + /@storybook/postinstall@6.4.22: + resolution: + { + integrity: sha512-LdIvA+l70Mp5FSkawOC16uKocefc+MZLYRHqjTjgr7anubdi6y7W4n9A7/Yw4IstZHoknfL88qDj/uK5N+Ahzw== + } + dependencies: + core-js: 3.36.0 + dev: true + + /@storybook/preview-web@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-sWS+sgvwSvcNY83hDtWUUL75O2l2LY/GTAS0Zp2dh3WkObhtuJ/UehftzPZlZmmv7PCwhb4Q3+tZDKzMlFxnKQ== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/channel-postmessage': 6.4.22 + '@storybook/client-logger': 6.4.22 + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/store': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + ansi-to-html: 0.6.15 + core-js: 3.36.0 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.12.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + synchronous-promise: 2.0.17 + ts-dedent: 2.2.0 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/react-docgen-typescript-plugin@1.0.2-canary.253f8c1.0(typescript@5.4.2)(webpack@4.47.0): + resolution: + { + integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw== + } + peerDependencies: + typescript: '>= 3.x' + webpack: '>= 4 || ^4 || ^5' + dependencies: + debug: 4.3.4(supports-color@8.1.1) + endent: 2.1.0 + find-cache-dir: 3.3.2 + flat-cache: 3.2.0 + micromatch: 4.0.5 + react-docgen-typescript: 2.2.2(typescript@5.4.2) + tslib: 2.3.1 + typescript: 5.4.2 + webpack: 4.47.0(webpack-cli@3.3.12) + transitivePeerDependencies: + - supports-color + dev: true + + /@storybook/react@6.4.22(@babel/core@7.20.12)(@types/node@18.17.15)(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2): + resolution: + { + integrity: sha512-5BFxtiguOcePS5Ty/UoH7C6odmvBYIZutfiy4R3Ua6FYmtxac5vP9r5KjCz1IzZKT8mCf4X+PuK1YvDrPPROgQ== + } + engines: { node: '>=10.13.0' } + hasBin: true + peerDependencies: + '@babel/core': ^7.11.5 + '@types/node': '>=12' + '@types/react': '>=16' + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/preset-flow': 7.24.0(@babel/core@7.20.12) + '@babel/preset-react': 7.23.3(@babel/core@7.20.12) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.11.0)(webpack@4.47.0) + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core': 6.4.22(@types/react@17.0.74)(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2)(webpack@4.47.0) + '@storybook/core-common': 6.4.22(eslint@8.57.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.4.2) + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/node-logger': 6.4.22 + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0(typescript@5.4.2)(webpack@4.47.0) + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@types/node': 18.17.15 + '@types/react': 17.0.74 + '@types/webpack-env': 1.18.0 + babel-plugin-add-react-displayname: 0.0.5 + babel-plugin-named-asset-import: 0.3.8(@babel/core@7.20.12) + babel-plugin-react-docgen: 4.2.1 + core-js: 3.36.0 + global: 4.4.0 + lodash: 4.17.21 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-refresh: 0.11.0 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + typescript: 5.4.2 + webpack: 4.47.0(webpack-cli@3.3.12) + transitivePeerDependencies: + - '@storybook/builder-webpack5' + - '@storybook/manager-webpack5' + - '@types/webpack' + - bufferutil + - encoding + - eslint + - sockjs-client + - supports-color + - type-fest + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + dev: true + + /@storybook/router@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-zeuE8ZgFhNerQX8sICQYNYL65QEi3okyzw7ynF58Ud6nRw4fMxSOHcj2T+nZCIU5ufozRL4QWD/Rg9P2s/HtLw== + } + peerDependencies: + '@types/react': '>=16' + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/client-logger': 6.4.22 + '@types/react': 17.0.74 + core-js: 3.36.0 + fast-deep-equal: 3.1.3 + global: 4.4.0 + history: 5.0.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + qs: 6.12.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-router: 6.22.3(@types/react@17.0.74)(react@17.0.2) + react-router-dom: 6.22.3(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + ts-dedent: 2.2.0 + dev: true + + /@storybook/semver@7.3.2: + resolution: + { + integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg== + } + engines: { node: '>=10' } + hasBin: true + dependencies: + core-js: 3.36.0 + find-up: 4.1.0 + dev: true + + /@storybook/source-loader@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-O4RxqPgRyOgAhssS6q1Rtc8LiOvPBpC1EqhCYWRV3K+D2EjFarfQMpjgPj18hC+QzpUSfzoBZYqsMECewEuLNw== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + core-js: 3.36.0 + estraverse: 5.3.0 + global: 4.4.0 + loader-utils: 2.0.4 + lodash: 4.17.21 + prettier: 2.3.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/store@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-lrmcZtYJLc2emO+1l6AG4Txm9445K6Pyv9cGAuhOJ9Kks0aYe0YtvMkZVVry0RNNAIv6Ypz72zyKc/QK+tZLAQ== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.22 + '@storybook/core-events': 6.4.22 + '@storybook/csf': 0.0.2--canary.87bc651.0 + core-js: 3.36.0 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + slash: 3.0.0 + stable: 0.1.8 + synchronous-promise: 2.0.17 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/theming@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-NVMKH/jxSPtnMTO4VCN1k47uztq+u9fWv4GSnzq/eezxdGg9ceGL4/lCrNGoNajht9xbrsZ4QvsJ/V2sVGM8wA== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@emotion/core': 10.3.1(@types/react@17.0.74)(react@17.0.2) + '@emotion/is-prop-valid': 0.8.8 + '@emotion/serialize': 1.1.3 + '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(@types/react@17.0.74)(react@17.0.2) + '@emotion/utils': 1.2.1 + '@storybook/client-logger': 6.4.22 + core-js: 3.36.0 + deep-object-diff: 1.1.9 + emotion-theming: 10.3.0(@emotion/core@10.3.1)(@types/react@17.0.74)(react@17.0.2) + global: 4.4.0 + memoizerific: 1.11.3 + polished: 4.3.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + resolve-from: 5.0.0 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/ui@6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-UVjMoyVsqPr+mkS1L7m30O/xrdIEgZ5SCWsvqhmyMUok3F3tRB+6M+OA5Yy+cIVfvObpA7MhxirUT1elCGXsWQ== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@emotion/core': 10.3.1(@types/react@17.0.74)(react@17.0.2) + '@storybook/addons': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/channels': 6.4.22 + '@storybook/client-logger': 6.4.22 + '@storybook/components': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-events': 6.4.22 + '@storybook/router': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.4.22(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2) + copy-to-clipboard: 3.3.3 + core-js: 3.36.0 + core-js-pure: 3.36.0 + downshift: 6.1.12(react@17.0.2) + emotion-theming: 10.3.0(@emotion/core@10.3.1)(@types/react@17.0.74)(react@17.0.2) + fuse.js: 3.6.1 + global: 4.4.0 + lodash: 4.17.21 + markdown-to-jsx: 7.4.3(react@17.0.2) + memoizerific: 1.11.3 + polished: 4.3.1 + qs: 6.12.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-draggable: 4.4.6(react-dom@17.0.2)(react@17.0.2) + react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2) + react-sizeme: 3.0.2 + regenerator-runtime: 0.13.11 + resolve-from: 5.0.0 + store2: 2.14.3 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@swc/helpers@0.4.14: + resolution: + { + integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== + } + dependencies: + tslib: 2.6.2 + dev: false + + /@swc/helpers@0.4.36: + resolution: + { + integrity: sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q== + } + dependencies: + legacy-swc-helpers: /@swc/helpers@0.4.14 + tslib: 2.6.2 + dev: false + + /@swc/helpers@0.5.7: + resolution: + { + integrity: sha512-BVvNZhx362+l2tSwSuyEUV4h7+jk9raNdoTSdLfwTshXJSaGmYKluGRJznziCI3KX02Z19DdsQrdfrpXAU3Hfg== + } + dependencies: + tslib: 2.6.2 + dev: false + + /@szmarczak/http-timer@4.0.6: + resolution: + { + integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w== + } + engines: { node: '>=10' } + dependencies: + defer-to-connect: 2.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' } + + /@trpc/server@9.27.4: + resolution: + { + integrity: sha512-yw0omUrxGp8+gEAuieZFeXB4bCqFvmyCDL3GOBv+Q6+cK0m5824ViHZKPgK5DYG1ijN/lbi1hP3UVKywPN7rbQ== + } + dev: true + + /@trysound/sax@0.2.0: + resolution: + { + integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + } + engines: { node: '>=10.13.0' } + dev: false + + /@types/argparse@1.0.38: + resolution: + { + integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA== + } + + /@types/aws-lambda@8.10.93: + resolution: + { + integrity: sha512-Vsyi9ogDAY3REZDjYnXMRJJa62SDvxHXxJI5nGDQdZW058dDE+av/anynN2rLKbCKXDRNw3D/sQmqxVflZFi4A== + } + dev: true + + /@types/babel__core@7.20.5: + resolution: + { + integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== + } + dependencies: + '@babel/parser': 7.24.0 + '@babel/types': 7.24.0 + '@types/babel__generator': 7.6.8 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.5 + + /@types/babel__generator@7.6.8: + resolution: + { + integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== + } + dependencies: + '@babel/types': 7.24.0 + + /@types/babel__template@7.4.4: + resolution: + { + integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== + } + dependencies: + '@babel/parser': 7.24.0 + '@babel/types': 7.24.0 + + /@types/babel__traverse@7.20.5: + resolution: + { + integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ== + } + dependencies: + '@babel/types': 7.24.0 + + /@types/body-parser@1.19.5: + resolution: + { + integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg== + } + dependencies: + '@types/connect': 3.4.38 + '@types/node': 20.12.12 + + /@types/bonjour@3.5.13: + resolution: + { + integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ== + } + dependencies: + '@types/node': 20.12.12 + dev: false + + /@types/cacheable-request@6.0.3: + resolution: + { + integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw== + } + dependencies: + '@types/http-cache-semantics': 4.0.4 + '@types/keyv': 3.1.4 + '@types/node': 20.12.12 + '@types/responselike': 1.0.3 + + /@types/cli-table@0.3.0: + resolution: + { + integrity: sha512-QnZUISJJXyhyD6L1e5QwXDV/A5i2W1/gl6D6YMc8u0ncPepbv/B4w3S+izVvtAg60m6h+JP09+Y/0zF2mojlFQ== + } + dev: true + + /@types/color-convert@2.0.3: + resolution: + { + integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg== + } + dependencies: + '@types/color-name': 1.1.3 + dev: true + + /@types/color-name@1.1.3: + resolution: + { + integrity: sha512-87W6MJCKZYDhLAx/J1ikW8niMvmGRyY+rpUxWpL1cO7F8Uu5CHuQoFv+R0/L5pgNdW4jTyda42kv60uwVIPjLw== + } + dev: true + + /@types/compression@1.7.5(@types/express@4.17.21): + resolution: + { + integrity: sha512-AAQvK5pxMpaT+nDvhHrsBhLSYG5yQdtkaJE1WYieSNY2mVFKAgmU4ks65rkZD5oqnGCFLyQpUr1CqI4DmUMyDg== + } + peerDependencies: + '@types/express': '*' + dependencies: + '@types/express': 4.17.21 + dev: true + + /@types/configstore@6.0.2: + resolution: + { + integrity: sha512-OS//b51j9uyR3zvwD04Kfs5kHpve2qalQ18JhY/ho3voGYUTPLEG90/ocfKPI48hyHH8T04f7KEEbK6Ue60oZQ== + } + dev: true + + /@types/connect-history-api-fallback@1.5.4: + resolution: + { + integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw== + } + dependencies: + '@types/express-serve-static-core': 4.17.43 + '@types/node': 20.12.12 + dev: false + + /@types/connect@3.4.38: + resolution: + { + integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug== + } + dependencies: + '@types/node': 20.12.12 + + /@types/cors@2.8.17: + resolution: + { + integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA== + } + dependencies: + '@types/node': 20.11.30 + dev: true + + /@types/diff@5.0.1: + resolution: + { + integrity: sha512-XIpxU6Qdvp1ZE6Kr3yrkv1qgUab0fyf4mHYvW8N3Bx3PCsbN6or1q9/q72cv5jIFWolaGH08U9XyYoLLIykyKQ== + } + dev: true + + /@types/eslint-scope@3.7.7: + resolution: + { + integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== + } + dependencies: + '@types/eslint': 8.2.0 + '@types/estree': 1.0.5 + + /@types/eslint@8.2.0: + resolution: + { + integrity: sha512-74hbvsnc+7TEDa1z5YLSe4/q8hGYB3USNvCuzHUJrjPV6hXaq8IXcngCrHkuvFt0+8rFz7xYXrHgNayIX0UZvQ== + } + dependencies: + '@types/estree': 1.0.5 + '@types/json-schema': 7.0.15 + + /@types/estree@1.0.5: + resolution: + { + integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + } + + /@types/events@3.0.3: + resolution: + { + integrity: sha512-trOc4AAUThEz9hapPtSd7wf5tiQKvTtu5b371UxXdTuqzIh0ArcRspRP0i0Viu+LXstIQ1z96t1nsPxT9ol01g== + } + dev: true + + /@types/express-serve-static-core@4.17.43: + resolution: + { + integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg== + } + dependencies: + '@types/node': 20.12.12 + '@types/qs': 6.9.13 + '@types/range-parser': 1.2.7 + '@types/send': 0.17.4 + + /@types/express@4.17.21: + resolution: + { + integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ== + } + dependencies: + '@types/body-parser': 1.19.5 + '@types/express-serve-static-core': 4.17.43 + '@types/qs': 6.9.13 + '@types/serve-static': 1.15.5 + + /@types/fs-extra@7.0.0: + resolution: + { + integrity: sha512-ndoMMbGyuToTy4qB6Lex/inR98nPiNHacsgMPvy+zqMLgSxbt8VtWpDArpGp69h1fEDQHn1KB+9DWD++wgbwYA== + } + dependencies: + '@types/node': 20.12.12 + dev: true + + /@types/glob@7.1.1: + resolution: + { + integrity: sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== + } + dependencies: + '@types/events': 3.0.3 + '@types/minimatch': 3.0.5 + '@types/node': 20.12.12 + dev: true + + /@types/graceful-fs@4.1.9: + resolution: + { + integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== + } + dependencies: + '@types/node': 20.12.12 + + /@types/hast@2.3.10: + resolution: + { + integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw== + } + dependencies: + '@types/unist': 2.0.10 + dev: true + + /@types/heft-jest@1.0.1: + resolution: + { + integrity: sha512-cF2iEUpvGh2WgLowHVAdjI05xuDo+GwCA8hGV3Q5PBl8apjd6BTcpPFQ2uPlfUM7BLpgur2xpYo8VeBXopMI4A== + } + dependencies: + '@types/jest': 29.2.5 + + /@types/hoist-non-react-statics@3.3.5: + resolution: + { + integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg== + } + dependencies: + '@types/react': 17.0.74 + hoist-non-react-statics: 3.3.2 + + /@types/html-minifier-terser@5.1.2: + resolution: + { + integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w== + } + + /@types/html-minifier-terser@6.1.0: + resolution: + { + integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== + } + + /@types/http-cache-semantics@4.0.4: + resolution: + { + integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA== + } + + /@types/http-errors@2.0.4: + resolution: + { + integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA== + } + + /@types/http-proxy@1.17.14: + resolution: + { + integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w== + } + dependencies: + '@types/node': 20.12.12 + + /@types/inquirer@7.3.1: + resolution: + { + integrity: sha512-osD38QVIfcdgsPCT0V3lD7eH0OFurX71Jft18bZrsVQWVRt6TuxRzlr0GJLrxoHZR2V5ph7/qP8se/dcnI7o0g== + } + dependencies: + '@types/through': 0.0.33 + rxjs: 6.6.7 + dev: true + + /@types/is-function@1.0.3: + resolution: + { + integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw== + } + dev: true + + /@types/istanbul-lib-coverage@2.0.4: + resolution: + { + integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + } + + /@types/istanbul-lib-coverage@2.0.6: + resolution: + { + integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== + } + + /@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@3.0.4: + resolution: + { + integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== + } + dependencies: + '@types/istanbul-lib-report': 3.0.3 + + /@types/jest@23.3.13: + resolution: + { + integrity: sha512-ePl4l+7dLLmCucIwgQHAgjiepY++qcI6nb8eAwGNkB6OxmTe3Z9rQU3rSpomqu42PCCnlThZbOoxsf+qylJsLA== + } + dev: true + + /@types/jest@28.1.1: + resolution: + { + integrity: sha512-C2p7yqleUKtCkVjlOur9BWVA4HgUQmEj/HWCt5WzZ5mLXrWnyIfl0wGuArc+kBXsy0ZZfLp+7dywB4HtSVYGVA== + } + dependencies: + jest-matcher-utils: 27.5.1 + pretty-format: 27.5.1 + dev: true + + /@types/jest@29.2.5: + resolution: + { + integrity: sha512-H2cSxkKgVmqNHXP7TC2L/WUorrZu8ZigyRywfVzv6EyBlxj39n4C00hjXYQWsbwqgElaj/CiAeSRmk5GoaKTgw== + } + dependencies: + expect: 29.7.0 + pretty-format: 29.7.0 + + /@types/jest@29.5.12: + resolution: + { + integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw== + } + dependencies: + expect: 29.7.0 + pretty-format: 29.7.0 + dev: true + + /@types/jju@1.4.1: + resolution: + { + integrity: sha512-LFt+YA7Lv2IZROMwokZKiPNORAV5N3huMs3IKnzlE430HWhWYZ8b+78HiwJXJJP1V2IEjinyJURuRJfGoaFSIA== + } + dev: true + + /@types/js-yaml@3.12.1: + resolution: + { + integrity: sha512-SGGAhXLHDx+PK4YLNcNGa6goPf9XRWQNAUUbffkwVGGXIxmDKWyGGL4inzq2sPmExu431Ekb9aEMn9BkPqEYFA== + } + dev: true + + /@types/jsdom@20.0.1: + resolution: + { + integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ== + } + dependencies: + '@types/node': 20.12.12 + '@types/tough-cookie': 4.0.5 + parse5: 7.1.2 + + /@types/json-schema@7.0.15: + resolution: + { + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== + } + + /@types/json5@0.0.29: + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + } + dev: false + + /@types/keyv@3.1.4: + resolution: + { + integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg== + } + dependencies: + '@types/node': 20.12.12 + + /@types/loader-utils@1.1.3: + resolution: + { + integrity: sha512-euKGFr2oCB3ASBwG39CYJMR3N9T0nanVqXdiH7Zu/Nqddt6SmFRxytq/i2w9LQYNQekEtGBz+pE3qG6fQTNvRg== + } + dependencies: + '@types/node': 20.12.12 + '@types/webpack': 4.41.32 + dev: true + + /@types/lodash@4.14.116: + resolution: + { + integrity: sha512-lRnAtKnxMXcYYXqOiotTmJd74uawNWuPnsnPrrO7HiFuE3npE2iQhfABatbYDyxTNqZNuXzcKGhw37R7RjBFLg== + } + + /@types/long@4.0.0: + resolution: + { + integrity: sha512-1w52Nyx4Gq47uuu0EVcsHBxZFJgurQ+rTKS3qMHxR1GY2T8c2AJYd6vZoZ9q1rupaDjU0yT+Jc2XTyXkjeMA+Q== + } + dev: false + + /@types/mdast@3.0.15: + resolution: + { + integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ== + } + dependencies: + '@types/unist': 2.0.10 + dev: true + + /@types/mime-types@2.1.4: + resolution: + { + integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w== + } + dev: true + + /@types/mime@1.3.5: + resolution: + { + integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w== + } + + /@types/mime@3.0.4: + resolution: + { + integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw== + } + + /@types/minimatch@3.0.5: + resolution: + { + integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== + } + + /@types/minimist@1.2.5: + resolution: + { + integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag== + } + dev: false + + /@types/mocha@10.0.6: + resolution: + { + integrity: sha512-dJvrYWxP/UcXm36Qn36fxhUKu8A/xMRXVT2cliFF1Z7UA9liG5Psj3ezNSZw+5puH2czDXRLcXQxf8JbJt0ejg== + } + dev: true + + /@types/node-fetch@2.6.2: + resolution: + { + integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A== + } + dependencies: + '@types/node': 20.12.12 + form-data: 3.0.1 + + /@types/node-forge@1.0.4: + resolution: + { + integrity: sha512-UpX8LTRrarEZPQvQqF5/6KQAqZolOVckH7txWdlsWIJrhBFFtwEUTcqeDouhrJl6t0F7Wg5cyUOAqqF8a6hheg== + } + dependencies: + '@types/node': 20.12.12 + dev: true + + /@types/node-forge@1.3.11: + resolution: + { + integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ== + } + dependencies: + '@types/node': 20.12.12 + dev: false + + /@types/node@14.0.1: + resolution: + { + integrity: sha512-FAYBGwC+W6F9+huFIDtn43cpy7+SzG+atzRiTfdp3inUKL2hXnd4rG8hylJLIh4+hqrQy1P17kvJByE/z825hA== + } + dev: true + + /@types/node@14.18.63: + resolution: + { + integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ== + } + dev: true + + /@types/node@17.0.41: + resolution: + { + integrity: sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw== + } + dev: true + + /@types/node@18.17.15: + resolution: + { + integrity: sha512-2yrWpBk32tvV/JAd3HNHWuZn/VDN1P+72hWirHnvsvTGSqbANi+kSeuQR9yAHnbvaBvHDsoTdXV0Fe+iRtHLKA== + } + + /@types/node@20.11.30: + resolution: + { + integrity: sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw== + } + dependencies: + undici-types: 5.26.5 + + /@types/node@20.12.12: + resolution: + { + integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw== + } + dependencies: + undici-types: 5.26.5 + + /@types/normalize-package-data@2.4.4: + resolution: + { + integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA== + } + + /@types/npm-package-arg@6.1.0: + resolution: + { + integrity: sha512-vbt5fb0y1svMhu++1lwtKmZL76d0uPChFlw7kEzyUmTwfmpHRcFb8i0R8ElT69q/L+QLgK2hgECivIAvaEDwag== + } + dev: true + + /@types/npm-packlist@1.1.2: + resolution: + { + integrity: sha512-9NYoEH87t90e6dkaQOuUTY/R1xUE0a67sXzJBuAB+b+/z4FysHFD19g/O154ToGjyWqKYkezVUtuBdtfd4hyfw== + } + dev: true + + /@types/npmlog@4.1.6: + resolution: + { + integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ== + } + dependencies: + '@types/node': 20.12.12 + dev: true + + /@types/overlayscrollbars@1.12.5: + resolution: + { + integrity: sha512-1yMmgFrq1DQ3sCHyb3DNfXnE0dB463MjG47ugX3cyade3sOt3U8Fjxk/Com0JJguTLPtw766TSDaO4NC65Wgkw== + } + dev: true + + /@types/parse-json@4.0.2: + resolution: + { + integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw== + } + + /@types/parse5@5.0.3: + resolution: + { + integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw== + } + dev: true + + /@types/prettier@2.7.3: + resolution: + { + integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== + } + + /@types/pretty-hrtime@1.0.3: + resolution: + { + integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA== + } + dev: true + + /@types/prop-types@15.7.11: + resolution: + { + integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== + } + + /@types/qs@6.9.13: + resolution: + { + integrity: sha512-iLR+1vTTJ3p0QaOUq6ACbY1mzKTODFDT/XedZI8BksOotFmL4ForwDfRQ/DZeuTHR7/2i4lI1D203gdfxuqTlA== + } + + /@types/range-parser@1.2.7: + resolution: + { + integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ== + } + + /@types/react-dom@17.0.25: + resolution: + { + integrity: sha512-urx7A7UxkZQmThYA4So0NelOVjx3V4rNFVJwp0WZlbIK5eM4rNJDiN3R/E9ix0MBh6kAEojk/9YL+Te6D9zHNA== + } + dependencies: + '@types/react': 17.0.74 + + /@types/react-redux@7.1.33: + resolution: + { + integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg== + } + dependencies: + '@types/hoist-non-react-statics': 3.3.5 + '@types/react': 17.0.74 + hoist-non-react-statics: 3.3.2 + redux: 4.2.1 + dev: true + + /@types/react-syntax-highlighter@11.0.5: + resolution: + { + integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg== + } + dependencies: + '@types/react': 17.0.74 + dev: true + + /@types/react@17.0.74: + resolution: + { + integrity: sha512-nBtFGaeTMzpiL/p73xbmCi00SiCQZDTJUk9ZuHOLtil3nI+y7l269LHkHIAYpav99ZwGnPJzuJsJpfLXjiQ52g== + } + dependencies: + '@types/prop-types': 15.7.11 + '@types/scheduler': 0.16.8 + csstype: 3.1.3 + + /@types/read-package-tree@5.1.0: + resolution: + { + integrity: sha512-QEaGDX5COe5Usog79fca6PEycs59075O/W0QcOJjVNv+ZQ26xjqxg8sWu63Lwdt4KAI08gb4Muho1EbEKs3YFw== + } + dev: true + + /@types/resolve@1.20.2: + resolution: + { + integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q== + } + dev: true + + /@types/responselike@1.0.3: + resolution: + { + integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw== + } + dependencies: + '@types/node': 20.12.12 + + /@types/retry@0.12.0: + resolution: + { + integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== + } + dev: false + + /@types/scheduler@0.16.8: + resolution: + { + integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A== + } + + /@types/semver@7.5.0: + resolution: + { + integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== + } + + /@types/send@0.17.4: + resolution: + { + integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA== + } + dependencies: + '@types/mime': 1.3.5 + '@types/node': 20.12.12 + + /@types/serialize-javascript@5.0.2: + resolution: + { + integrity: sha512-BRLlwZzRoZukGaBtcUxkLsZsQfWZpvog6MZk3PWQO9Q6pXmXFzjU5iGzZ+943evp6tkkbN98N1Z31KT0UG1yRw== + } + dev: true + + /@types/serve-index@1.9.4: + resolution: + { + integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug== + } + dependencies: + '@types/express': 4.17.21 + dev: false + + /@types/serve-static@1.15.5: + resolution: + { + integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ== + } + dependencies: + '@types/http-errors': 2.0.4 + '@types/mime': 3.0.4 + '@types/node': 20.12.12 + + /@types/sockjs@0.3.36: + resolution: + { + integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q== + } + dependencies: + '@types/node': 20.12.12 + dev: false + + /@types/source-list-map@0.1.6: + resolution: + { + integrity: sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g== + } + + /@types/ssri@7.1.5: + resolution: + { + integrity: sha512-odD/56S3B51liILSk5aXJlnYt99S6Rt9EFDDqGtJM26rKHApHcwyU/UoYHrzKkdkHMAIquGWCuHtQTbes+FRQw== + } + dependencies: + '@types/node': 20.12.12 + dev: true + + /@types/stack-utils@2.0.3: + resolution: + { + integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== + } + + /@types/strict-uri-encode@2.0.0: + resolution: + { + integrity: sha512-R6vDd7CHxcWMzv5wfVhR3qyCRVQoZKwVd6kit0rkozTThRZSXZKEW2Kz3AxfVqq9+UyJAz1g8Q+bJ3CL6NzztQ== + } + dev: true + + /@types/supports-color@8.1.3: + resolution: + { + integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg== + } + dev: true + + /@types/tapable@1.0.6: + resolution: + { + integrity: sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA== + } + + /@types/tar@6.1.6: + resolution: + { + integrity: sha512-HQ06kiiDXz9uqtmE9ksQUn1ovcPr1gGV9EgaCWo6FGYKD0onNBCetBzL0kfcS8Kbj1EFxJWY9jL2W4ZvvtGI8Q== + } + dependencies: + '@types/node': 20.12.12 + minipass: 4.2.8 + dev: true + + /@types/through@0.0.33: + resolution: + { + integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ== + } + dependencies: + '@types/node': 20.12.12 + dev: true + + /@types/tough-cookie@4.0.5: + resolution: + { + integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA== + } + + /@types/tunnel@0.0.3: + resolution: + { + integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA== + } + dependencies: + '@types/node': 20.12.12 + dev: false + + /@types/uglify-js@3.17.5: + resolution: + { + integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ== + } + dependencies: + source-map: 0.6.1 + + /@types/unist@2.0.10: + resolution: + { + integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA== + } + dev: true + + /@types/update-notifier@6.0.8: + resolution: + { + integrity: sha512-IlDFnfSVfYQD+cKIg63DEXn3RFmd7W1iYtKQsJodcHK9R1yr8aKbKaPKfBxzPpcHCq2DU8zUq4PIPmy19Thjfg== + } + dependencies: + '@types/configstore': 6.0.2 + boxen: 7.1.1 + dev: true + + /@types/use-sync-external-store@0.0.3: + resolution: + { + integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA== + } + dev: false + + /@types/uuid@8.3.4: + resolution: + { + integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw== + } + dev: true + + /@types/vscode@1.87.0: + resolution: + { + integrity: sha512-y3yYJV2esWr8LNjp3VNbSMWG7Y43jC8pCldG8YwiHGAQbsymkkMMt0aDT1xZIOFM2eFcNiUc+dJMx1+Z0UT8fg== + } + dev: true + + /@types/watchpack@2.4.0: + resolution: + { + integrity: sha512-PSAD+o9hezvfUFFzrYB/PO6Je7kwiZ2BSnB3/EZ9le+jTDKB6x5NJ96WWzQz1h/AyGJ/de3/1KpuBTkUFZm77A== + } + dependencies: + '@types/graceful-fs': 4.1.9 + '@types/node': 20.11.30 + dev: true + + /@types/webpack-env@1.18.0: + resolution: + { + integrity: sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg== + } + + /@types/webpack-sources@1.4.2: + resolution: + { + integrity: sha512-77T++JyKow4BQB/m9O96n9d/UUHWLQHlcqXb9Vsf4F1+wKNrrlWNFPDLKNT92RJnCSL6CieTc+NDXtCVZswdTw== + } + dependencies: + '@types/node': 20.12.12 + '@types/source-list-map': 0.1.6 + source-map: 0.7.4 + + /@types/webpack@4.41.32: + resolution: + { + integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg== + } + dependencies: + '@types/node': 20.12.12 + '@types/tapable': 1.0.6 + '@types/uglify-js': 3.17.5 + '@types/webpack-sources': 1.4.2 + anymatch: 3.1.3 + source-map: 0.6.1 + + /@types/ws@8.5.5: + resolution: + { + integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg== + } + dependencies: + '@types/node': 20.12.12 + + /@types/xmldoc@1.1.4: + resolution: + { + integrity: sha512-a/ONNCf9itbmzEz1ohx0Fv5TLJzXIPQTapxFu+DlYlDtn9UcAa1OhnrOOMwbU8125hFjrkJKL3qllD7vO5Bivw== + } + dev: true + + /@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.32: + resolution: + { + integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== + } + dependencies: + '@types/yargs-parser': 21.0.3 + + /@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1)(eslint@7.11.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 6.19.1(eslint@7.11.0)(typescript@5.4.2) + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/type-utils': 6.19.1(eslint@7.11.0)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@7.11.0)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.11.0 + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1)(eslint@7.30.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 6.19.1(eslint@7.30.0)(typescript@5.4.2) + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/type-utils': 6.19.1(eslint@7.30.0)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@7.30.0)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.30.0 + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1)(eslint@7.7.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 6.19.1(eslint@7.7.0)(typescript@5.4.2) + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/type-utils': 6.19.1(eslint@7.7.0)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@7.7.0)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.7.0 + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2): + resolution: + { + integrity: sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/type-utils': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.57.0(supports-color@8.1.1) + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 6.19.1(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 6.19.1(typescript@4.9.5) + '@typescript-eslint/type-utils': 6.19.1(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.57.0(supports-color@8.1.1) + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.3.0(typescript@4.9.5) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/eslint-plugin@8.1.0(@typescript-eslint/parser@8.1.0)(eslint@8.57.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-LlNBaHFCEBPHyD4pZXb35mzjGkuGKXU5eeCA1SxvHfiRES0E82dOounfVpL4DCqYvJEKab0bZIA0gCRpdLKkCw== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 8.1.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/scope-manager': 8.1.0(typescript@5.4.2) + '@typescript-eslint/type-utils': 8.1.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@5.4.2) + eslint: 8.57.0(supports-color@8.1.1) + graphemer: 1.4.0 + ignore: 5.3.1 + natural-compare: 1.4.0 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: false + + /@typescript-eslint/parser@6.19.1(eslint@7.11.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.11.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@6.19.1(eslint@7.30.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.30.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@6.19.1(eslint@7.7.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.7.0 + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2): + resolution: + { + integrity: sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.57.0(supports-color@8.1.1) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@6.19.1(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 6.19.1(typescript@4.9.5) + '@typescript-eslint/types': 6.19.1(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.57.0(supports-color@8.1.1) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@8.1.0(eslint@8.57.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-U7iTAtGgJk6DPX9wIWPPOlt1gO57097G06gIcl0N0EEnNw8RGD62c+2/DiP/zL7KrkqnnqF7gtFGR7YgzPllTA== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 8.1.0(typescript@5.4.2) + '@typescript-eslint/types': 8.1.0(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.57.0(supports-color@8.1.1) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + /@typescript-eslint/rule-tester@8.1.0(@eslint/eslintrc@3.0.2)(eslint@8.57.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-shzRkkwKoCUCV1lttzqMFsKnbsOWQ0vjfxe1q3kDjrqdhKkQ/t3t3GwHk0QqjYQd7NUjKk2EB+nNaNI//0IL7Q== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + '@eslint/eslintrc': '>=2' + eslint: ^8.57.0 || ^9.0.0 + dependencies: + '@eslint/eslintrc': 3.0.2 + '@types/semver': 7.5.0 + '@typescript-eslint/parser': 8.1.0(eslint@8.57.0)(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.4.2) + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@5.4.2) + ajv: 6.12.6 + eslint: 8.57.0(supports-color@8.1.1) + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + semver: 7.6.3 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/scope-manager@6.19.1(typescript@4.9.5): + resolution: + { + integrity: sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w== + } + engines: { node: ^16.0.0 || >=18.0.0 } + dependencies: + '@typescript-eslint/types': 6.19.1(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@4.9.5) + transitivePeerDependencies: + - typescript + dev: true + + /@typescript-eslint/scope-manager@6.19.1(typescript@5.4.2): + resolution: + { + integrity: sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w== + } + engines: { node: ^16.0.0 || >=18.0.0 } + dependencies: + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + transitivePeerDependencies: + - typescript + + /@typescript-eslint/scope-manager@8.1.0(typescript@5.4.2): + resolution: + { + integrity: sha512-DsuOZQji687sQUjm4N6c9xABJa7fjvfIdjqpSIIVOgaENf2jFXiM9hIBZOL3hb6DHK9Nvd2d7zZnoMLf9e0OtQ== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + dependencies: + '@typescript-eslint/types': 8.1.0(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@5.4.2) + transitivePeerDependencies: + - typescript + + /@typescript-eslint/type-utils@6.19.1(eslint@7.11.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@7.11.0)(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.11.0 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/type-utils@6.19.1(eslint@7.30.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@7.30.0)(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.30.0 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/type-utils@6.19.1(eslint@7.7.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@7.7.0)(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.7.0 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/type-utils@6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2): + resolution: + { + integrity: sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.57.0(supports-color@8.1.1) + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/type-utils@6.19.1(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 6.19.1(typescript@4.9.5) + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 8.57.0(supports-color@8.1.1) + ts-api-utils: 1.3.0(typescript@4.9.5) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/type-utils@8.1.0(eslint@8.57.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-oLYvTxljVvsMnldfl6jIKxTaU7ok7km0KDrwOt1RHYu6nxlhN3TIx8k5Q52L6wR33nOwDgM7VwW1fT1qMNfFIA== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.4.2) + '@typescript-eslint/utils': 8.1.0(eslint@8.57.0)(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - eslint + - supports-color + dev: false + + /@typescript-eslint/types@5.59.11(typescript@5.4.2): + resolution: + { + integrity: sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + typescript: '*' + dependencies: + typescript: 5.4.2 + dev: true + + /@typescript-eslint/types@6.19.1(typescript@4.9.5): + resolution: + { + integrity: sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + typescript: '*' + dependencies: + typescript: 4.9.5 + dev: true + + /@typescript-eslint/types@6.19.1(typescript@5.4.2): + resolution: + { + integrity: sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + typescript: '*' + dependencies: + typescript: 5.4.2 + + /@typescript-eslint/types@8.1.0(typescript@5.4.2): + resolution: + { + integrity: sha512-q2/Bxa0gMOu/2/AKALI0tCKbG2zppccnRIRCW6BaaTlRVaPKft4oVYPp7WOPpcnsgbr0qROAVCVKCvIQ0tbWog== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: '*' + dependencies: + typescript: 5.4.2 + + /@typescript-eslint/typescript-estree@6.19.1(supports-color@8.1.1)(typescript@5.4.2): + resolution: + { + integrity: sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.5.4 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + /@typescript-eslint/typescript-estree@6.19.1(typescript@4.9.5): + resolution: + { + integrity: sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 6.19.1(typescript@4.9.5) + '@typescript-eslint/visitor-keys': 6.19.1(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.5.4 + ts-api-utils: 1.3.0(typescript@4.9.5) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/typescript-estree@8.1.0(typescript@5.4.2): + resolution: + { + integrity: sha512-NTHhmufocEkMiAord/g++gWKb0Fr34e9AExBRdqgWdVBaKoei2dIyYKD9Q0jBnvfbEA5zaf8plUFMUH6kQ0vGg== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 8.1.0(typescript@5.4.2) + '@typescript-eslint/visitor-keys': 8.1.0(typescript@5.4.2) + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.3 + ts-api-utils: 1.3.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + + /@typescript-eslint/utils@6.19.1(eslint@7.11.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@7.11.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + eslint: 7.11.0 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils@6.19.1(eslint@7.30.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@7.30.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + eslint: 7.30.0 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils@6.19.1(eslint@7.7.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@7.7.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + eslint: 7.7.0 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils@6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2): + resolution: + { + integrity: sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 6.19.1(typescript@5.4.2) + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 6.19.1(supports-color@8.1.1)(typescript@5.4.2) + eslint: 8.57.0(supports-color@8.1.1) + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + + /@typescript-eslint/utils@6.19.1(eslint@8.57.0)(typescript@4.9.5): + resolution: + { + integrity: sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w== + } + engines: { node: ^16.0.0 || >=18.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 6.19.1(typescript@4.9.5) + '@typescript-eslint/types': 6.19.1(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 6.19.1(typescript@4.9.5) + eslint: 8.57.0(supports-color@8.1.1) + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils@8.1.0(eslint@8.57.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-ypRueFNKTIFwqPeJBfeIpxZ895PQhNyH4YID6js0UoBImWYoSjBsahUn9KMiJXh94uOjVBgHD9AmkyPsPnFwJA== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@typescript-eslint/scope-manager': 8.1.0(typescript@5.4.2) + '@typescript-eslint/types': 8.1.0(typescript@5.4.2) + '@typescript-eslint/typescript-estree': 8.1.0(typescript@5.4.2) + eslint: 8.57.0(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + - typescript + + /@typescript-eslint/visitor-keys@6.19.1(typescript@4.9.5): + resolution: + { + integrity: sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ== + } + engines: { node: ^16.0.0 || >=18.0.0 } + dependencies: + '@typescript-eslint/types': 6.19.1(typescript@4.9.5) + eslint-visitor-keys: 3.4.3 + transitivePeerDependencies: + - typescript + dev: true + + /@typescript-eslint/visitor-keys@6.19.1(typescript@5.4.2): + resolution: + { + integrity: sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ== + } + engines: { node: ^16.0.0 || >=18.0.0 } + dependencies: + '@typescript-eslint/types': 6.19.1(typescript@5.4.2) + eslint-visitor-keys: 3.4.3 + transitivePeerDependencies: + - typescript + + /@typescript-eslint/visitor-keys@8.1.0(typescript@5.4.2): + resolution: + { + integrity: sha512-ba0lNI19awqZ5ZNKh6wCModMwoZs457StTebQ0q1NP58zSi2F6MOZRXwfKZy+jB78JNJ/WH8GSh2IQNzXX8Nag== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + dependencies: + '@typescript-eslint/types': 8.1.0(typescript@5.4.2) + eslint-visitor-keys: 3.4.3 + transitivePeerDependencies: + - typescript + + /@ungap/structured-clone@1.2.0: + resolution: + { + integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + } + + /@vscode/test-electron@1.6.2: + resolution: + { + integrity: sha512-W01ajJEMx6223Y7J5yaajGjVs1QfW3YGkkOJHVKfAMEqNB1ZHN9wCcViehv5ZwVSSJnjhu6lYEYgwBdHtCxqhQ== + } + engines: { node: '>=8.9.3' } + 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 + + /@vue/compiler-core@3.4.21: + resolution: + { + integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og== + } + dependencies: + '@babel/parser': 7.24.0 + '@vue/shared': 3.4.21 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.1.0 + dev: false + + /@vue/compiler-dom@3.4.21: + resolution: + { + integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA== + } + dependencies: + '@vue/compiler-core': 3.4.21 + '@vue/shared': 3.4.21 + dev: false + + /@vue/compiler-sfc@3.4.21: + resolution: + { + integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ== + } + dependencies: + '@babel/parser': 7.24.0 + '@vue/compiler-core': 3.4.21 + '@vue/compiler-dom': 3.4.21 + '@vue/compiler-ssr': 3.4.21 + '@vue/shared': 3.4.21 + estree-walker: 2.0.2 + magic-string: 0.30.8 + postcss: 8.4.36 + source-map-js: 1.1.0 + dev: false + + /@vue/compiler-ssr@3.4.21: + resolution: + { + integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q== + } + dependencies: + '@vue/compiler-dom': 3.4.21 + '@vue/shared': 3.4.21 + dev: false + + /@vue/shared@3.4.21: + resolution: + { + integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g== + } + dev: false + + /@webassemblyjs/ast@1.12.1: + resolution: + { + integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg== + } + dependencies: + '@webassemblyjs/helper-numbers': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + + /@webassemblyjs/ast@1.9.0: + resolution: + { + integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA== + } + dependencies: + '@webassemblyjs/helper-module-context': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/wast-parser': 1.9.0 + + /@webassemblyjs/floating-point-hex-parser@1.11.6: + resolution: + { + integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw== + } + + /@webassemblyjs/floating-point-hex-parser@1.9.0: + resolution: + { + integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA== + } + + /@webassemblyjs/helper-api-error@1.11.6: + resolution: + { + integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q== + } + + /@webassemblyjs/helper-api-error@1.9.0: + resolution: + { + integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw== + } + + /@webassemblyjs/helper-buffer@1.12.1: + resolution: + { + integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw== + } + + /@webassemblyjs/helper-buffer@1.9.0: + resolution: + { + integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA== + } + + /@webassemblyjs/helper-code-frame@1.9.0: + resolution: + { + integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA== + } + dependencies: + '@webassemblyjs/wast-printer': 1.9.0 + + /@webassemblyjs/helper-fsm@1.9.0: + resolution: + { + integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw== + } + + /@webassemblyjs/helper-module-context@1.9.0: + resolution: + { + integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g== + } + dependencies: + '@webassemblyjs/ast': 1.9.0 + + /@webassemblyjs/helper-numbers@1.11.6: + resolution: + { + integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g== + } + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@xtuc/long': 4.2.2 + + /@webassemblyjs/helper-wasm-bytecode@1.11.6: + resolution: + { + integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA== + } + + /@webassemblyjs/helper-wasm-bytecode@1.9.0: + resolution: + { + integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw== + } + + /@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 + + /@webassemblyjs/helper-wasm-section@1.9.0: + resolution: + { + integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw== + } + dependencies: + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-buffer': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/wasm-gen': 1.9.0 + + /@webassemblyjs/ieee754@1.11.6: + resolution: + { + integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg== + } + dependencies: + '@xtuc/ieee754': 1.2.0 + + /@webassemblyjs/ieee754@1.9.0: + resolution: + { + integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg== + } + dependencies: + '@xtuc/ieee754': 1.2.0 + + /@webassemblyjs/leb128@1.11.6: + resolution: + { + integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ== + } + dependencies: + '@xtuc/long': 4.2.2 + + /@webassemblyjs/leb128@1.9.0: + resolution: + { + integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw== + } + dependencies: + '@xtuc/long': 4.2.2 + + /@webassemblyjs/utf8@1.11.6: + resolution: + { + integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA== + } + + /@webassemblyjs/utf8@1.9.0: + resolution: + { + integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w== + } + + /@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 + + /@webassemblyjs/wasm-edit@1.9.0: + resolution: + { + integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw== + } + dependencies: + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-buffer': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/helper-wasm-section': 1.9.0 + '@webassemblyjs/wasm-gen': 1.9.0 + '@webassemblyjs/wasm-opt': 1.9.0 + '@webassemblyjs/wasm-parser': 1.9.0 + '@webassemblyjs/wast-printer': 1.9.0 + + /@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 + + /@webassemblyjs/wasm-gen@1.9.0: + resolution: + { + integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA== + } + dependencies: + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/ieee754': 1.9.0 + '@webassemblyjs/leb128': 1.9.0 + '@webassemblyjs/utf8': 1.9.0 + + /@webassemblyjs/wasm-opt@1.12.1: + resolution: + { + integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg== + } + dependencies: + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/wasm-gen': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + + /@webassemblyjs/wasm-opt@1.9.0: + resolution: + { + integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A== + } + dependencies: + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-buffer': 1.9.0 + '@webassemblyjs/wasm-gen': 1.9.0 + '@webassemblyjs/wasm-parser': 1.9.0 + + /@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 + + /@webassemblyjs/wasm-parser@1.9.0: + resolution: + { + integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA== + } + dependencies: + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-api-error': 1.9.0 + '@webassemblyjs/helper-wasm-bytecode': 1.9.0 + '@webassemblyjs/ieee754': 1.9.0 + '@webassemblyjs/leb128': 1.9.0 + '@webassemblyjs/utf8': 1.9.0 + + /@webassemblyjs/wast-parser@1.9.0: + resolution: + { + integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw== + } + dependencies: + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/floating-point-hex-parser': 1.9.0 + '@webassemblyjs/helper-api-error': 1.9.0 + '@webassemblyjs/helper-code-frame': 1.9.0 + '@webassemblyjs/helper-fsm': 1.9.0 + '@xtuc/long': 4.2.2 + + /@webassemblyjs/wast-printer@1.12.1: + resolution: + { + integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA== + } + dependencies: + '@webassemblyjs/ast': 1.12.1 + '@xtuc/long': 4.2.2 + + /@webassemblyjs/wast-printer@1.9.0: + resolution: + { + integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA== + } + dependencies: + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/wast-parser': 1.9.0 + '@xtuc/long': 4.2.2 + + /@xtuc/ieee754@1.2.0: + resolution: + { + integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + } + + /@xtuc/long@4.2.2: + resolution: + { + integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + } + + /@yarnpkg/lockfile@1.0.2: + resolution: + { + integrity: sha512-MqJ00WXw89ga0rK6GZkdmmgv3bAsxpJixyTthjcix73O44pBqotyU2BejBkLuIsaOBI6SEu77vAnSyLe5iIHkw== + } + dev: false + + /@zkochan/cmd-shim@5.4.1: + resolution: + { + integrity: sha512-odWb1qUzt0dIOEUPyWBEpFDYQPRjEMr/dbHHAfgBkVkYR9aO7Zo+I7oYWrXIxl+cKlC7+49ftPm8uJxL1MA9kw== + } + engines: { node: '>=10.13' } + dependencies: + cmd-extension: 1.0.2 + graceful-fs: 4.2.11 + is-windows: 1.0.2 + dev: false + + /abab@2.0.6: + resolution: + { + integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== + } + deprecated: Use your platform's native atob() and btoa() methods instead + + /abbrev@1.1.1: + resolution: + { + integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + } + dev: true + + /abstract-logging@2.0.1: + resolution: + { + integrity: sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA== + } + dev: false + + /accepts@1.3.8: + resolution: + { + integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + } + engines: { node: '>= 0.6' } + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + + /acorn-globals@7.0.1: + resolution: + { + integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q== + } + dependencies: + acorn: 8.11.3 + acorn-walk: 8.3.2 + + /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 + + /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-jsx@5.3.2(acorn@8.11.3): + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + } + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.11.3 + + /acorn-walk@7.2.0: + resolution: + { + integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== + } + engines: { node: '>=0.4.0' } + dev: true + + /acorn-walk@8.3.2: + resolution: + { + integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A== + } + engines: { node: '>=0.4.0' } + + /acorn@6.4.2: + resolution: + { + integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== + } + engines: { node: '>=0.4.0' } + hasBin: 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 + + /address@1.2.2: + resolution: + { + integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== + } + engines: { node: '>= 10.0.0' } + dev: true + + /agent-base@5.1.1: + resolution: + { + integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g== + } + engines: { node: '>= 6.0.0' } + dev: true + + /agent-base@6.0.2: + resolution: + { + integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + } + engines: { node: '>= 6.0.0' } + dependencies: + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + /agent-base@7.1.0: + resolution: + { + integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg== + } + engines: { node: '>= 14' } + dependencies: + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: false + + /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 + + /airbnb-js-shims@2.2.1: + resolution: + { + integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ== + } + dependencies: + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 + es5-shim: 4.6.7 + es6-shim: 0.35.8 + function.prototype.name: 1.1.6 + globalthis: 1.0.3 + object.entries: 1.1.8 + object.fromentries: 2.0.7 + object.getownpropertydescriptors: 2.1.7 + object.values: 1.2.0 + promise.allsettled: 1.0.7 + promise.prototype.finally: 3.1.8 + string.prototype.matchall: 4.0.10 + string.prototype.padend: 3.1.5 + string.prototype.padstart: 3.1.6 + symbol.prototype.description: 1.0.6 + dev: true + + /ajv-draft-04@1.0.0(ajv@8.13.0): + resolution: + { + integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw== + } + peerDependencies: + ajv: ^8.5.0 + peerDependenciesMeta: + ajv: + optional: true + dependencies: + ajv: 8.13.0 + + /ajv-errors@1.0.1(ajv@6.12.6): + resolution: + { + integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== + } + peerDependencies: + ajv: '>=5.0.0' + dependencies: + ajv: 6.12.6 + + /ajv-formats@2.1.1: + resolution: + { + integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== + } + dependencies: + ajv: 8.13.0 + + /ajv-formats@3.0.1(ajv@8.13.0): + resolution: + { + integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ== + } + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + dependencies: + ajv: 8.13.0 + + /ajv-keywords@3.5.2(ajv@6.12.6): + resolution: + { + integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + } + peerDependencies: + ajv: ^6.9.1 + dependencies: + ajv: 6.12.6 + + /ajv-keywords@5.1.0(ajv@8.13.0): + resolution: + { + integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== + } + peerDependencies: + ajv: ^8.8.2 + dependencies: + ajv: 8.13.0 + fast-deep-equal: 3.1.3 + dev: false + + /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 + + /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 + + /ajv@8.13.0: + resolution: + { + integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA== + } + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + + /ansi-align@3.0.1: + resolution: + { + integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== + } + dependencies: + string-width: 4.2.3 + + /ansi-colors@3.2.4: + resolution: + { + integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== + } + engines: { node: '>=6' } + dev: true + + /ansi-colors@4.1.1: + resolution: + { + integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== + } + engines: { node: '>=6' } + 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 + + /ansi-html-community@0.0.8: + resolution: + { + integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== + } + engines: { '0': node >= 0.8.0 } + hasBin: true + + /ansi-regex@2.1.1: + resolution: + { + integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== + } + engines: { node: '>=0.10.0' } + + /ansi-regex@4.1.1: + resolution: + { + integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + } + engines: { node: '>=6' } + + /ansi-regex@5.0.1: + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + } + engines: { node: '>=8' } + + /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 + + /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' } + + /ansi-styles@6.2.1: + resolution: + { + integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + } + engines: { node: '>=12' } + dev: true + + /ansi-to-html@0.6.15: + resolution: + { + integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ== + } + engines: { node: '>=8.0.0' } + hasBin: true + dependencies: + entities: 2.2.0 + dev: true + + /any-promise@1.3.0: + resolution: + { + integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + } + dev: false + + /anymatch@2.0.0: + resolution: + { + integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + } + dependencies: + micromatch: 3.1.10 + normalize-path: 2.1.1 + + /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 + + /app-root-dir@1.0.2: + resolution: + { + integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g== + } + dev: true + + /aproba@1.2.0: + resolution: + { + integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + } + + /aproba@2.0.0: + resolution: + { + integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + } + dev: true + + /archiver-utils@2.1.0: + resolution: + { + integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw== + } + engines: { node: '>= 6' } + dependencies: + glob: 7.2.3 + graceful-fs: 4.2.11 + lazystream: 1.0.1 + lodash.defaults: 4.2.0 + lodash.difference: 4.5.0 + lodash.flatten: 4.4.0 + lodash.isplainobject: 4.0.6 + lodash.union: 4.6.0 + normalize-path: 3.0.0 + readable-stream: 2.3.8 + dev: true + + /archiver-utils@3.0.4: + resolution: + { + integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw== + } + engines: { node: '>= 10' } + dependencies: + glob: 7.2.3 + graceful-fs: 4.2.11 + lazystream: 1.0.1 + lodash.defaults: 4.2.0 + lodash.difference: 4.5.0 + lodash.flatten: 4.4.0 + lodash.isplainobject: 4.0.6 + lodash.union: 4.6.0 + normalize-path: 3.0.0 + readable-stream: 3.6.2 + dev: true + + /archiver@5.3.2: + resolution: + { + integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw== + } + engines: { node: '>= 10' } + dependencies: + archiver-utils: 2.1.0 + async: 3.2.5 + buffer-crc32: 0.2.13 + readable-stream: 3.6.2 + readdir-glob: 1.1.3 + tar-stream: 2.2.0 + zip-stream: 4.1.1 + dev: true + + /archy@1.0.0: + resolution: + { + integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== + } + dev: false + + /are-we-there-yet@1.1.7: + resolution: + { + integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g== + } + dependencies: + delegates: 1.0.0 + readable-stream: 2.3.8 + dev: true + + /are-we-there-yet@2.0.0: + resolution: + { + integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== + } + engines: { node: '>=10' } + dependencies: + delegates: 1.0.0 + readable-stream: 3.6.2 + dev: true + + /argparse@1.0.10: + resolution: + { + integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + } + dependencies: + sprintf-js: 1.0.3 + + /argparse@2.0.1: + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + } + + /arr-diff@4.0.0: + resolution: + { + integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA== + } + engines: { node: '>=0.10.0' } + + /arr-flatten@1.1.0: + resolution: + { + integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + } + engines: { node: '>=0.10.0' } + + /arr-union@3.1.0: + resolution: + { + integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== + } + engines: { node: '>=0.10.0' } + + /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 + + /array-differ@3.0.0: + resolution: + { + integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== + } + engines: { node: '>=8' } + dev: false + + /array-flatten@1.1.1: + resolution: + { + integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + } + + /array-includes@3.1.7: + resolution: + { + integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + get-intrinsic: 1.2.4 + is-string: 1.0.7 + + /array-union@1.0.2: + resolution: + { + integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng== + } + engines: { node: '>=0.10.0' } + dependencies: + array-uniq: 1.0.3 + dev: true + + /array-union@2.1.0: + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + } + engines: { node: '>=8' } + + /array-uniq@1.0.3: + resolution: + { + integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q== + } + engines: { node: '>=0.10.0' } + dev: true + + /array-unique@0.3.2: + resolution: + { + integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== + } + engines: { node: '>=0.10.0' } + + /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.2 + es-shim-unscopables: 1.0.2 + + /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.2 + es-shim-unscopables: 1.0.2 + + /array.prototype.map@1.0.7: + resolution: + { + integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + es-array-method-boxes-properly: 1.0.0 + es-object-atoms: 1.0.0 + is-string: 1.0.7 + dev: true + + /array.prototype.reduce@1.0.6: + resolution: + { + integrity: sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + es-array-method-boxes-properly: 1.0.0 + is-string: 1.0.7 + + /array.prototype.tosorted@1.1.3: + resolution: + { + integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg== + } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + es-errors: 1.3.0 + es-shim-unscopables: 1.0.2 + + /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.2 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + is-array-buffer: 3.0.4 + is-shared-array-buffer: 1.0.3 + + /arrify@1.0.1: + resolution: + { + integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + } + engines: { node: '>=0.10.0' } + dev: false + + /arrify@2.0.1: + resolution: + { + integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== + } + engines: { node: '>=8' } + + /asap@2.0.6: + resolution: + { + integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== + } + dev: false + + /asn1.js@4.10.1: + resolution: + { + integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== + } + dependencies: + bn.js: 4.12.0 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + + /assert@1.5.1: + resolution: + { + integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A== + } + dependencies: + object.assign: 4.1.5 + util: 0.10.4 + + /assign-symbols@1.0.0: + resolution: + { + integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== + } + engines: { node: '>=0.10.0' } + + /ast-types@0.13.3: + resolution: + { + integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA== + } + engines: { node: '>=4' } + dev: true + + /ast-types@0.14.2: + resolution: + { + integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA== + } + engines: { node: '>=4' } + dependencies: + tslib: 2.3.1 + dev: true + + /astral-regex@1.0.0: + resolution: + { + integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + } + engines: { node: '>=4' } + dev: true + + /astral-regex@2.0.0: + resolution: + { + integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + } + engines: { node: '>=8' } + dev: true + + /async-each@1.0.6: + resolution: + { + integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg== + } + requiresBuild: true + optional: true + + /async-limiter@1.0.1: + resolution: + { + integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + } + dev: true + + /async-retry@1.3.3: + resolution: + { + integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw== + } + dependencies: + retry: 0.13.1 + dev: true + + /async@1.5.2: + resolution: + { + integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w== + } + dev: true + + /async@3.2.5: + resolution: + { + integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== + } + dev: true + + /asynckit@0.4.0: + resolution: + { + integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + } + + /at-least-node@1.0.0: + resolution: + { + integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + } + engines: { node: '>= 4.0.0' } + dev: true + + /atob@2.1.2: + resolution: + { + integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + } + engines: { node: '>= 4.5.0' } + hasBin: true + + /atomic-sleep@1.0.0: + resolution: + { + integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ== + } + engines: { node: '>=8.0.0' } + dev: false + + /atomically@1.7.0: + resolution: + { + integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w== + } + engines: { node: '>=10.12.0' } + dev: true + + /autoprefixer@10.4.18(postcss@8.4.36): + resolution: + { + integrity: sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g== + } + engines: { node: ^10 || ^12 || >=14 } + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.23.0 + caniuse-lite: 1.0.30001599 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + + /autoprefixer@9.8.8: + resolution: + { + integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA== + } + hasBin: true + dependencies: + browserslist: 4.23.0 + caniuse-lite: 1.0.30001599 + normalize-range: 0.1.2 + num2fraction: 1.2.2 + picocolors: 0.2.1 + postcss: 7.0.39 + postcss-value-parser: 4.2.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 + + /avvio@7.2.5: + resolution: + { + integrity: sha512-AOhBxyLVdpOad3TujtC9kL/9r3HnTkxwQ5ggOsYrvvZP1cCFvzHWJd5XxZDFuTn+IN8vkKSG5SEJrd27vCSbeA== + } + dependencies: + archy: 1.0.0 + debug: 4.3.4(supports-color@8.1.1) + fastq: 1.17.1 + queue-microtask: 1.2.3 + transitivePeerDependencies: + - supports-color + dev: false + + /aws-cdk-lib@2.50.0(constructs@10.0.130): + resolution: + { + integrity: sha512-deDbZTI7oyu3rqUyqjwhP6tnUO8MD70lE98yR65xiYty4yXBpsWKbeH3s1wNLpLAWS3hWJYyMtjZ4ZfC35NtVg== + } + engines: { node: '>= 14.15.0' } + peerDependencies: + constructs: ^10.0.0 + dependencies: + '@balena/dockerignore': 1.0.2 + case: 1.6.3 + constructs: 10.0.130 + fs-extra: 9.1.0 + ignore: 5.3.1 + jsonschema: 1.4.1 + minimatch: 3.1.2 + punycode: 2.3.1 + semver: 7.5.4 + yaml: 1.10.2 + dev: true + bundledDependencies: + - '@balena/dockerignore' + - case + - fs-extra + - ignore + - jsonschema + - minimatch + - punycode + - semver + - yaml + + /aws-cdk-lib@2.80.0(constructs@10.0.130): + resolution: + { + integrity: sha512-PoqD3Yms5I0ajuTi071nTW/hpkH3XsdyZzn5gYsPv0qD7mqP3h6Qr+6RiGx+yQ1KcVFyxWdX15uK+DsC0KwvcQ== + } + engines: { node: '>= 14.15.0' } + peerDependencies: + constructs: ^10.0.0 + dependencies: + '@aws-cdk/asset-awscli-v1': 2.2.202 + '@aws-cdk/asset-kubectl-v20': 2.1.2 + '@aws-cdk/asset-node-proxy-agent-v5': 2.0.166 + '@balena/dockerignore': 1.0.2 + case: 1.6.3 + constructs: 10.0.130 + fs-extra: 11.2.0 + ignore: 5.3.1 + jsonschema: 1.4.1 + minimatch: 3.1.2 + punycode: 2.3.1 + semver: 7.5.4 + table: 6.8.1 + yaml: 1.10.2 + dev: true + bundledDependencies: + - '@balena/dockerignore' + - case + - fs-extra + - ignore + - jsonschema + - minimatch + - punycode + - semver + - table + - yaml + + /aws-cdk@2.50.0: + resolution: + { + integrity: sha512-55vmKTf2DZRqioumVfXn+S0H9oAbpRK3HFHY8EjZ5ykR5tq2+XiMWEZkYduX2HJhVAeHJJIS6h+Okk3smZjeqw== + } + engines: { node: '>= 14.15.0' } + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /aws-sdk@2.1580.0: + resolution: + { + integrity: sha512-jR9EWyo1UY6QrYs+jhXCpqxBYXU6QYmqNejpsPgU5OzAWxUgalbXfQPAaw0A/DBxXU99qHO+j6RUYof82veiKw== + } + engines: { node: '>= 10.0.0' } + requiresBuild: true + dependencies: + buffer: 4.9.2 + events: 1.1.1 + ieee754: 1.1.13 + jmespath: 0.16.0 + querystring: 0.2.0 + sax: 1.2.1 + url: 0.10.3 + util: 0.12.5 + uuid: 8.0.0 + xml2js: 0.6.2 + dev: true + + /azure-devops-node-api@11.2.0: + resolution: + { + integrity: sha512-XdiGPhrpaT5J8wdERRKs5g8E0Zy1pvOYTli7z9E8nmOn3YGp4FhtjhrOyFmX/8veWCwdI69mCHKJw6l+4J/bHA== + } + dependencies: + tunnel: 0.0.6 + typed-rest-client: 1.8.11 + dev: true + + /babel-core@7.0.0-bridge.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + dev: true + + /babel-jest@29.7.0(@babel/core@7.20.12)(supports-color@8.1.1): + 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.20.12(supports-color@8.1.1) + '@jest/transform': 29.7.0(supports-color@8.1.1) + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1(supports-color@8.1.1) + babel-preset-jest: 29.6.3(@babel/core@7.20.12) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + + /babel-loader@8.2.5(@babel/core@7.20.12)(webpack@4.47.0): + resolution: + { + integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ== + } + engines: { node: '>= 8.9' } + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2 || ^4 || ^5' + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + find-cache-dir: 3.3.2 + loader-utils: 2.0.4 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /babel-plugin-add-react-displayname@0.0.5: + resolution: + { + integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw== + } + dev: true + + /babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9): + resolution: + { + integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ== + } + peerDependencies: + '@babel/core': ^7.11.6 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@mdx-js/util': 1.6.22 + dev: true + + /babel-plugin-emotion@10.2.2: + resolution: + { + integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA== + } + dependencies: + '@babel/helper-module-imports': 7.22.15 + '@emotion/hash': 0.8.0 + '@emotion/memoize': 0.7.4 + '@emotion/serialize': 0.11.16 + babel-plugin-macros: 2.8.0 + babel-plugin-syntax-jsx: 6.18.0 + convert-source-map: 1.9.0 + escape-string-regexp: 1.0.5 + find-root: 1.1.0 + source-map: 0.5.7 + dev: true + + /babel-plugin-extract-import-names@1.6.22: + resolution: + { + integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ== + } + dependencies: + '@babel/helper-plugin-utils': 7.10.4 + dev: true + + /babel-plugin-istanbul@6.1.1(supports-color@8.1.1): + resolution: + { + integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + } + engines: { node: '>=8' } + dependencies: + '@babel/helper-plugin-utils': 7.24.0 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-instrument: 5.2.1(supports-color@8.1.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.24.0 + '@babel/types': 7.24.0 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.5 + + /babel-plugin-macros@2.8.0: + resolution: + { + integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== + } + dependencies: + '@babel/runtime': 7.24.0 + cosmiconfig: 6.0.0 + resolve: 1.22.8 + dev: true + + /babel-plugin-macros@3.1.0: + resolution: + { + integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== + } + engines: { node: '>=10', npm: '>=6' } + dependencies: + '@babel/runtime': 7.24.0 + cosmiconfig: 7.1.0 + resolve: 1.22.8 + dev: true + + /babel-plugin-named-asset-import@0.3.8(@babel/core@7.20.12): + resolution: + { + integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q== + } + peerDependencies: + '@babel/core': ^7.1.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + dev: true + + /babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.20.12): + resolution: + { + integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ== + } + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/compat-data': 7.23.5 + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.20.12) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.20.12): + resolution: + { + integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw== + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.20.12) + core-js-compat: 3.36.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.20.12): + resolution: + { + integrity: sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg== + } + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.20.12) + core-js-compat: 3.36.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.20.12): + resolution: + { + integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg== + } + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.20.12) + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-react-docgen@4.2.1: + resolution: + { + integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ== + } + dependencies: + ast-types: 0.14.2 + lodash: 4.17.21 + react-docgen: 5.4.3 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-syntax-jsx@6.18.0: + resolution: + { + integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw== + } + dev: true + + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.12): + resolution: + { + integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== + } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.12) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.12) + + /babel-preset-jest@29.6.3(@babel/core@7.20.12): + 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.20.12(supports-color@8.1.1) + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.12) + + /bail@1.0.5: + resolution: + { + integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== + } + dev: true + + /balanced-match@1.0.2: + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + } + + /base64-js@1.5.1: + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + } + + /base@0.11.2: + resolution: + { + integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + } + engines: { node: '>=0.10.0' } + dependencies: + cache-base: 1.0.1 + class-utils: 0.3.6 + component-emitter: 1.3.1 + define-property: 1.0.0 + isobject: 3.0.1 + mixin-deep: 1.3.2 + pascalcase: 0.1.1 + + /batch-processor@1.0.0: + resolution: + { + integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA== + } + dev: true + + /batch@0.6.1: + resolution: + { + integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== + } + dev: false + + /better-opn@2.1.1: + resolution: + { + integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA== + } + engines: { node: '>8.0.0' } + dependencies: + open: 7.4.2 + 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: false + + /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== + } + + /binary-extensions@1.13.1: + resolution: + { + integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== + } + engines: { node: '>=0.10.0' } + requiresBuild: true + optional: true + + /binary-extensions@2.3.0: + resolution: + { + integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== + } + engines: { node: '>=8' } + + /binary@0.3.0: + resolution: + { + integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg== + } + dependencies: + buffers: 0.1.1 + chainsaw: 0.1.0 + dev: true + + /bindings@1.5.0: + resolution: + { + integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + } + requiresBuild: true + dependencies: + file-uri-to-path: 1.0.0 + optional: true + + /bl@4.1.0: + resolution: + { + integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + } + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + + /bluebird@3.4.7: + resolution: + { + integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA== + } + dev: true + + /bluebird@3.7.2: + resolution: + { + integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + } + + /bn.js@4.12.0: + resolution: + { + integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + } + + /bn.js@5.2.1: + resolution: + { + integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + } + + /body-parser@1.20.2: + resolution: + { + integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== + } + engines: { node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16 } + dependencies: + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.11.0 + raw-body: 2.5.2 + type-is: 1.6.18 + unpipe: 1.0.0 + + /bole@4.0.1: + resolution: + { + integrity: sha512-42r0aSOJFJti2l6LasBHq2BuWJzohGs349olQnH/ETlJo87XnoWw7UT8pGE6UstjxzOKkwz7tjoFcmSr6L16vg== + } + dependencies: + fast-safe-stringify: 2.1.1 + individual: 3.0.0 + dev: true + + /bonjour-service@1.2.1: + resolution: + { + integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw== + } + dependencies: + fast-deep-equal: 3.1.3 + multicast-dns: 7.2.5 + dev: false + + /boolbase@1.0.0: + resolution: + { + integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + } + + /bowser@2.11.0: + resolution: + { + integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA== + } + dev: true + + /boxen@5.1.2: + resolution: + { + integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ== + } + engines: { node: '>=10' } + dependencies: + ansi-align: 3.0.1 + camelcase: 6.3.0 + chalk: 4.1.2 + cli-boxes: 2.2.1 + string-width: 4.2.3 + type-fest: 0.20.2 + widest-line: 3.1.0 + wrap-ansi: 7.0.0 + + /boxen@7.1.1: + resolution: + { + integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog== + } + engines: { node: '>=14.16' } + dependencies: + ansi-align: 3.0.1 + camelcase: 7.0.1 + chalk: 5.3.0 + cli-boxes: 3.0.0 + string-width: 5.1.2 + type-fest: 2.19.0 + widest-line: 4.0.1 + wrap-ansi: 8.1.0 + 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@2.3.2: + resolution: + { + integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + } + engines: { node: '>=0.10.0' } + dependencies: + arr-flatten: 1.1.0 + array-unique: 0.3.2 + extend-shallow: 2.0.1 + fill-range: 4.0.0 + isobject: 3.0.1 + repeat-element: 1.1.4 + snapdragon: 0.8.2 + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + + /braces@3.0.2: + resolution: + { + integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + } + engines: { node: '>=8' } + dependencies: + fill-range: 7.0.1 + + /brorand@1.1.0: + resolution: + { + integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + } + + /browser-stdout@1.3.1: + resolution: + { + integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + } + dev: true + + /browserify-aes@1.2.0: + resolution: + { + integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + } + dependencies: + buffer-xor: 1.0.3 + cipher-base: 1.0.4 + create-hash: 1.2.0 + evp_bytestokey: 1.0.3 + inherits: 2.0.4 + safe-buffer: 5.2.1 + + /browserify-cipher@1.0.1: + resolution: + { + integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + } + dependencies: + browserify-aes: 1.2.0 + browserify-des: 1.0.2 + evp_bytestokey: 1.0.3 + + /browserify-des@1.0.2: + resolution: + { + integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + } + dependencies: + cipher-base: 1.0.4 + des.js: 1.1.0 + inherits: 2.0.4 + safe-buffer: 5.2.1 + + /browserify-rsa@4.1.0: + resolution: + { + integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== + } + dependencies: + bn.js: 5.2.1 + randombytes: 2.1.0 + + /browserify-sign@4.2.3: + resolution: + { + integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw== + } + engines: { node: '>= 0.12' } + dependencies: + bn.js: 5.2.1 + browserify-rsa: 4.1.0 + create-hash: 1.2.0 + create-hmac: 1.1.7 + elliptic: 6.5.5 + hash-base: 3.0.4 + inherits: 2.0.4 + parse-asn1: 5.1.7 + readable-stream: 2.3.8 + safe-buffer: 5.2.1 + + /browserify-zlib@0.2.0: + resolution: + { + integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + } + dependencies: + pako: 1.0.11 + + /browserslist@4.23.0: + resolution: + { + integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + hasBin: true + dependencies: + caniuse-lite: 1.0.30001599 + electron-to-chromium: 1.4.709 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.23.0) + + /bser@2.1.1: + resolution: + { + integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + } + dependencies: + node-int64: 0.4.0 + + /buffer-builder@0.2.0: + resolution: + { + integrity: sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg== + } + dev: false + + /buffer-crc32@0.2.13: + resolution: + { + integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== + } + dev: true + + /buffer-equal-constant-time@1.0.1: + resolution: + { + integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA== + } + dev: false + + /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-xor@1.0.3: + resolution: + { + integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== + } + + /buffer@4.9.2: + resolution: + { + integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== + } + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + isarray: 1.0.0 + + /buffer@5.7.1: + resolution: + { + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + } + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + /buffers@0.1.1: + resolution: + { + integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ== + } + engines: { node: '>=0.2.0' } + dev: true + + /builtin-modules@1.1.1: + resolution: + { + integrity: sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ== + } + engines: { node: '>=0.10.0' } + dev: true + + /builtin-modules@3.1.0: + resolution: + { + integrity: sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw== + } + engines: { node: '>=6' } + dev: false + + /builtin-status-codes@3.0.0: + resolution: + { + integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== + } + + /builtins@1.0.3: + resolution: + { + integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== + } + dev: false + + /buttono@1.0.4: + resolution: + { + integrity: sha512-aLOeyK3zrhZnqvH6LzwIbjur8mkKhW8Xl3/jolX+RCJnGG354+L48q1SJWdky89uhQ/mBlTxY/d0x8+ciE0ZWw== + } + dev: false + + /bytes@3.0.0: + resolution: + { + integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + } + engines: { node: '>= 0.8' } + + /bytes@3.1.2: + resolution: + { + integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + } + engines: { node: '>= 0.8' } + + /c8@7.14.0: + resolution: + { + integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw== + } + engines: { node: '>=10.12.0' } + hasBin: true + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@istanbuljs/schema': 0.1.3 + find-up: 5.0.0 + foreground-child: 2.0.0 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-reports: 3.1.7 + rimraf: 3.0.2 + test-exclude: 6.0.0 + v8-to-istanbul: 9.2.0 + yargs: 16.2.0 + yargs-parser: 20.2.9 + dev: true + + /cacache@12.0.4: + resolution: + { + integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== + } + dependencies: + bluebird: 3.7.2 + chownr: 1.1.4 + figgy-pudding: 3.5.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + infer-owner: 1.0.4 + lru-cache: 5.1.1 + mississippi: 3.0.0 + mkdirp: 0.5.6 + move-concurrently: 1.0.1 + promise-inflight: 1.0.1 + rimraf: 2.7.1 + ssri: 6.0.2 + unique-filename: 1.1.1 + y18n: 4.0.3 + + /cacache@15.3.0: + resolution: + { + integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== + } + engines: { node: '>= 10' } + dependencies: + '@npmcli/fs': 1.1.1 + '@npmcli/move-file': 1.1.2 + chownr: 2.0.0 + fs-minipass: 2.1.0 + glob: 7.2.3 + infer-owner: 1.0.4 + lru-cache: 6.0.0 + 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: 8.0.1 + tar: 6.2.1 + unique-filename: 1.1.1 + dev: true + + /cache-base@1.0.1: + resolution: + { + integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + } + engines: { node: '>=0.10.0' } + dependencies: + collection-visit: 1.0.0 + component-emitter: 1.3.1 + get-value: 2.0.6 + has-value: 1.0.0 + isobject: 3.0.1 + set-value: 2.0.1 + to-object-path: 0.3.0 + union-value: 1.0.1 + unset-value: 1.0.0 + + /cacheable-lookup@5.0.4: + resolution: + { + integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA== + } + engines: { node: '>=10.6.0' } + + /cacheable-request@7.0.4: + resolution: + { + integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg== + } + engines: { node: '>=8' } + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.1.1 + keyv: 4.5.4 + lowercase-keys: 2.0.0 + normalize-url: 6.1.0 + responselike: 2.0.1 + + /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.4 + set-function-length: 1.2.2 + + /call-me-maybe@1.0.2: + resolution: + { + integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ== + } + dev: true + + /callsite-record@4.1.5: + resolution: + { + integrity: sha512-OqeheDucGKifjQRx524URgV4z4NaKjocGhygTptDea+DLROre4ZEecA4KXDq+P7qlGCohYVNOh3qr+y5XH5Ftg== + } + dependencies: + '@devexpress/error-stack-parser': 2.0.6 + '@types/lodash': 4.14.116 + callsite: 1.0.0 + chalk: 2.4.2 + highlight-es: 1.0.3 + lodash: 4.17.21 + pinkie-promise: 2.0.1 + dev: false + + /callsite@1.0.0: + resolution: + { + integrity: sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ== + } + dev: false + + /callsites@3.1.0: + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + } + engines: { node: '>=6' } + + /camel-case@4.1.2: + resolution: + { + integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + } + dependencies: + pascal-case: 3.1.2 + tslib: 2.3.1 + + /camelcase-css@2.0.1: + resolution: + { + integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + } + 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: false + + /camelcase@5.3.1: + resolution: + { + integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + } + engines: { node: '>=6' } + + /camelcase@6.3.0: + resolution: + { + integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + } + engines: { node: '>=10' } + + /camelcase@7.0.1: + resolution: + { + integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw== + } + engines: { node: '>=14.16' } + dev: true + + /caniuse-api@3.0.0: + resolution: + { + integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== + } + dependencies: + browserslist: 4.23.0 + caniuse-lite: 1.0.30001599 + lodash.memoize: 4.1.2 + lodash.uniq: 4.5.0 + dev: false + + /caniuse-lite@1.0.30001599: + resolution: + { + integrity: sha512-LRAQHZ4yT1+f9LemSMeqdMpMxZcc4RMWdj4tiFe3G8tNkWK+E58g+/tzotb5cU6TbcVJLr4fySiAW7XmxQvZQA== + } + + /capture-exit@2.0.0: + resolution: + { + integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== + } + engines: { node: 6.* || 8.* || >= 10.* } + dependencies: + rsvp: 4.8.5 + dev: true + + /case-sensitive-paths-webpack-plugin@2.4.0: + resolution: + { + integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw== + } + engines: { node: '>=4' } + dev: true + + /case@1.6.3: + resolution: + { + integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ== + } + engines: { node: '>= 0.8.0' } + dev: true + + /ccount@1.1.0: + resolution: + { + integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== + } + 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 + + /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.2: + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + } + engines: { node: '>=10' } + dependencies: + 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 } + dev: true + + /char-regex@1.0.2: + resolution: + { + integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== + } + engines: { node: '>=10' } + + /character-entities-legacy@1.1.4: + resolution: + { + integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== + } + dev: true + + /character-entities@1.2.4: + resolution: + { + integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== + } + dev: true + + /character-reference-invalid@1.1.4: + resolution: + { + integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== + } + dev: true + + /chardet@0.7.0: + resolution: + { + integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + } + dev: false + + /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 + + /chokidar@2.1.8: + resolution: + { + integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== + } + deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies + requiresBuild: true + dependencies: + anymatch: 2.0.0 + async-each: 1.0.6 + braces: 2.3.2 + glob-parent: 3.1.0 + inherits: 2.0.4 + is-binary-path: 1.0.1 + is-glob: 4.0.3 + normalize-path: 3.0.0 + path-is-absolute: 1.0.1 + readdirp: 2.2.1 + upath: 1.2.0 + optionalDependencies: + fsevents: 1.2.13 + optional: true + + /chokidar@3.4.3: + resolution: + { + integrity: sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== + } + engines: { node: '>= 8.10.0' } + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.5.0 + optionalDependencies: + fsevents: 2.1.3 + + /chokidar@3.5.3: + resolution: + { + integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + } + engines: { node: '>= 8.10.0' } + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + dev: true + + /chokidar@3.6.0: + resolution: + { + integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + } + engines: { node: '>= 8.10.0' } + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + + /chownr@1.1.4: + resolution: + { + integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + } + + /chownr@2.0.0: + resolution: + { + integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + } + engines: { node: '>=10' } + + /chrome-trace-event@1.0.3: + resolution: + { + integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== + } + engines: { node: '>=6.0' } + + /ci-info@2.0.0: + resolution: + { + integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + } + + /ci-info@3.9.0: + resolution: + { + integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== + } + engines: { node: '>=8' } + + /cipher-base@1.0.4: + resolution: + { + integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + } + dependencies: + inherits: 2.0.4 + safe-buffer: 5.2.1 + + /cjs-module-lexer@1.2.3: + resolution: + { + integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== + } + + /class-utils@0.3.6: + resolution: + { + integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + } + engines: { node: '>=0.10.0' } + dependencies: + arr-union: 3.1.0 + define-property: 0.2.5 + isobject: 3.0.1 + static-extend: 0.1.2 + + /clean-css@4.2.4: + resolution: + { + integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A== + } + engines: { node: '>= 4.0' } + dependencies: + source-map: 0.6.1 + + /clean-css@5.3.3: + resolution: + { + integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg== + } + engines: { node: '>= 10.0' } + dependencies: + source-map: 0.6.1 + + /clean-stack@2.2.0: + resolution: + { + integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + } + engines: { node: '>=6' } + dev: true + + /cli-boxes@2.2.1: + resolution: + { + integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw== + } + engines: { node: '>=6' } + + /cli-boxes@3.0.0: + resolution: + { + integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g== + } + engines: { node: '>=10' } + dev: true + + /cli-cursor@3.1.0: + resolution: + { + integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + } + engines: { node: '>=8' } + dependencies: + restore-cursor: 3.1.0 + dev: false + + /cli-spinners@2.9.2: + resolution: + { + integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== + } + engines: { node: '>=6' } + dev: false + + /cli-table3@0.6.3: + resolution: + { + integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== + } + engines: { node: 10.* || >= 12.* } + dependencies: + string-width: 4.2.3 + optionalDependencies: + '@colors/colors': 1.5.0 + dev: true + + /cli-table@0.3.11: + resolution: + { + integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ== + } + engines: { node: '>= 0.2.0' } + dependencies: + colors: 1.0.3 + dev: false + + /cli-width@3.0.0: + resolution: + { + integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + } + engines: { node: '>= 10' } + dev: false + + /cliui@5.0.0: + resolution: + { + integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + } + dependencies: + string-width: 3.1.0 + strip-ansi: 5.2.0 + wrap-ansi: 5.1.0 + + /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 + + /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-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 + + /clone-response@1.0.3: + resolution: + { + integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== + } + dependencies: + mimic-response: 1.0.1 + + /clone@1.0.4: + resolution: + { + integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + } + engines: { node: '>=0.8' } + dev: false + + /clsx@1.2.1: + resolution: + { + integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== + } + engines: { node: '>=6' } + dev: true + + /cluster-key-slot@1.1.2: + resolution: + { + integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA== + } + engines: { node: '>=0.10.0' } + dev: false + + /cmd-extension@1.0.2: + resolution: + { + integrity: sha512-iWDjmP8kvsMdBmLTHxFaqXikO8EdFRDfim7k6vUHglY/2xJ5jLrPsnQGijdfp4U+sr/BeecG0wKm02dSIAeQ1g== + } + engines: { node: '>=10' } + dev: false + + /co@4.6.0: + resolution: + { + integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== + } + engines: { iojs: '>= 1.0.0', node: '>= 0.12.0' } + + /code-point-at@1.1.0: + resolution: + { + integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== + } + engines: { node: '>=0.10.0' } + dev: true + + /collapse-white-space@1.0.6: + resolution: + { + integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== + } + dev: true + + /collect-v8-coverage@1.0.2(@types/node@18.17.15): + resolution: + { + integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== + } + peerDependencies: + '@types/node': '>=12' + dependencies: + '@types/node': 18.17.15 + + /collect-v8-coverage@1.0.2(@types/node@20.11.30): + resolution: + { + integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== + } + peerDependencies: + '@types/node': '>=12' + dependencies: + '@types/node': 20.11.30 + + /collect-v8-coverage@1.0.2(@types/node@20.12.12): + resolution: + { + integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== + } + peerDependencies: + '@types/node': '>=12' + dependencies: + '@types/node': 20.12.12 + + /collection-visit@1.0.0: + resolution: + { + integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw== + } + engines: { node: '>=0.10.0' } + dependencies: + map-visit: 1.0.0 + object-visit: 1.0.1 + + /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-support@1.1.3: + resolution: + { + integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + } + hasBin: true + dev: true + + /colord@2.9.3: + resolution: + { + integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== + } + dev: false + + /colorette@2.0.20: + resolution: + { + integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + } + dev: false + + /colors@1.0.3: + resolution: + { + integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw== + } + engines: { node: '>=0.1.90' } + dev: false + + /colors@1.2.5: + resolution: + { + integrity: sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg== + } + engines: { node: '>=0.1.90' } + + /combined-stream@1.0.8: + resolution: + { + integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + } + engines: { node: '>= 0.8' } + dependencies: + delayed-stream: 1.0.0 + + /comma-separated-tokens@1.0.8: + resolution: + { + integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== + } + dev: true + + /commander@10.0.1: + resolution: + { + integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== + } + engines: { node: '>=14' } + requiresBuild: true + optional: true + + /commander@12.0.0: + resolution: + { + integrity: sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA== + } + engines: { node: '>=18' } + dev: false + + /commander@2.20.3: + resolution: + { + integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + } + + /commander@4.1.1: + resolution: + { + integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + } + engines: { node: '>= 6' } + + /commander@6.2.1: + resolution: + { + integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== + } + engines: { node: '>= 6' } + dev: true + + /commander@7.2.0: + resolution: + { + integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + } + engines: { node: '>= 10' } + + /commander@8.3.0: + resolution: + { + integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== + } + engines: { node: '>= 12' } + + /comment-parser@1.3.0: + resolution: + { + integrity: sha512-hRpmWIKgzd81vn0ydoWoyPoALEOnF4wt8yKD35Ib1D6XC2siLiYaiqfGkYrunuKdsXGwpBpHU3+9r+RVw2NZfA== + } + engines: { node: '>= 12.0.0' } + dev: false + + /common-path-prefix@3.0.0: + resolution: + { + integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== + } + dev: true + + /commondir@1.0.1: + resolution: + { + integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + } + + /component-emitter@1.3.1: + resolution: + { + integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ== + } + + /compress-commons@4.1.2: + resolution: + { + integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg== + } + engines: { node: '>= 10' } + dependencies: + buffer-crc32: 0.2.13 + crc32-stream: 4.0.3 + normalize-path: 3.0.0 + readable-stream: 3.6.2 + dev: true + + /compressible@2.0.18: + resolution: + { + integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + } + engines: { node: '>= 0.6' } + dependencies: + mime-db: 1.52.0 + + /compression@1.7.4: + resolution: + { + integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + } + engines: { node: '>= 0.8.0' } + dependencies: + accepts: 1.3.8 + bytes: 3.0.0 + compressible: 2.0.18 + debug: 2.6.9 + on-headers: 1.0.2 + safe-buffer: 5.1.2 + vary: 1.1.2 + + /compute-scroll-into-view@1.0.20: + resolution: + { + integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg== + } + dev: true + + /concat-map@0.0.1: + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + } + + /concat-stream@1.6.2: + resolution: + { + integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + } + engines: { '0': node >= 0.8 } + dependencies: + buffer-from: 1.1.2 + inherits: 2.0.4 + readable-stream: 2.3.8 + typedarray: 0.0.6 + + /conf@10.2.0: + resolution: + { + integrity: sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg== + } + engines: { node: '>=12' } + dependencies: + ajv: 8.13.0 + ajv-formats: 2.1.1 + atomically: 1.7.0 + debounce-fn: 4.0.0 + dot-prop: 6.0.1 + env-paths: 2.2.1 + json-schema-typed: 7.0.3 + onetime: 5.1.2 + pkg-up: 3.1.0 + semver: 7.5.4 + dev: true + + /configstore@5.0.1: + resolution: + { + integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA== + } + engines: { node: '>=8' } + dependencies: + dot-prop: 5.3.0 + graceful-fs: 4.2.11 + make-dir: 3.1.0 + unique-string: 2.0.0 + write-file-atomic: 3.0.3 + xdg-basedir: 4.0.0 + + /connect-history-api-fallback@2.0.0: + resolution: + { + integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== + } + engines: { node: '>=0.8' } + dev: false + + /console-browserify@1.2.0: + resolution: + { + integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== + } + + /console-control-strings@1.1.0: + resolution: + { + integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + } + dev: true + + /constants-browserify@1.0.0: + resolution: + { + integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== + } + + /constructs@10.0.130: + resolution: + { + integrity: sha512-9LYBePJHHnuXCr42eN0T4+O8xXHRxxak6G/UX+avt8ZZ/SNE9HFbFD8a+FKP8ixSNzzaEamDMswrMwPPTtU8cA== + } + engines: { node: '>= 12.7.0' } + dev: true + + /content-disposition@0.5.4: + resolution: + { + integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + } + engines: { node: '>= 0.6' } + dependencies: + safe-buffer: 5.2.1 + + /content-type@1.0.5: + resolution: + { + integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + } + engines: { node: '>= 0.6' } + + /convert-source-map@1.9.0: + resolution: + { + integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + } + + /convert-source-map@2.0.0: + resolution: + { + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + } + + /cookie-signature@1.0.6: + resolution: + { + integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + } + + /cookie@0.5.0: + resolution: + { + integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + } + engines: { node: '>= 0.6' } + dev: false + + /cookie@0.6.0: + resolution: + { + integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== + } + engines: { node: '>= 0.6' } + + /copy-concurrently@1.0.5: + resolution: + { + integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== + } + dependencies: + aproba: 1.2.0 + fs-write-stream-atomic: 1.0.10 + iferr: 0.1.5 + mkdirp: 0.5.6 + rimraf: 2.7.1 + run-queue: 1.0.3 + + /copy-descriptor@0.1.1: + resolution: + { + integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== + } + engines: { node: '>=0.10.0' } + + /copy-to-clipboard@3.3.3: + resolution: + { + integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA== + } + dependencies: + toggle-selection: 1.0.6 + dev: true + + /core-js-compat@3.36.0: + resolution: + { + integrity: sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw== + } + dependencies: + browserslist: 4.23.0 + dev: true + + /core-js-pure@3.36.0: + resolution: + { + integrity: sha512-cN28qmhRNgbMZZMc/RFu5w8pK9VJzpb2rJVR/lHuZJKwmXnoWOpXmMkxqBB514igkp1Hu8WGROsiOAzUcKdHOQ== + } + requiresBuild: true + dev: true + + /core-js@3.36.0: + resolution: + { + integrity: sha512-mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw== + } + requiresBuild: true + dev: true + + /core-util-is@1.0.3: + resolution: + { + integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + } + + /cors@2.8.5: + resolution: + { + integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g== + } + engines: { node: '>= 0.10' } + dependencies: + object-assign: 4.1.1 + vary: 1.1.2 + dev: false + + /cosmiconfig@6.0.0: + resolution: + { + integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + } + engines: { node: '>=8' } + 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@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 + + /cp-file@7.0.0: + resolution: + { + integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw== + } + engines: { node: '>=8' } + dependencies: + graceful-fs: 4.2.11 + make-dir: 3.1.0 + nested-error-stacks: 2.1.1 + p-event: 4.2.0 + dev: true + + /cpy@8.1.2: + resolution: + { + integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg== + } + engines: { node: '>=8' } + dependencies: + arrify: 2.0.1 + cp-file: 7.0.0 + globby: 9.2.0 + has-glob: 1.0.0 + junk: 3.1.0 + nested-error-stacks: 2.1.1 + p-all: 2.1.0 + p-filter: 2.1.0 + p-map: 3.0.0 + dev: true + + /crc-32@1.2.2: + resolution: + { + integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ== + } + engines: { node: '>=0.8' } + hasBin: true + dev: true + + /crc32-stream@4.0.3: + resolution: + { + integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw== + } + engines: { node: '>= 10' } + dependencies: + crc-32: 1.2.2 + readable-stream: 3.6.2 + dev: true + + /create-ecdh@4.0.4: + resolution: + { + integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== + } + dependencies: + bn.js: 4.12.0 + elliptic: 6.5.5 + + /create-hash@1.2.0: + resolution: + { + integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + } + dependencies: + cipher-base: 1.0.4 + inherits: 2.0.4 + md5.js: 1.3.5 + ripemd160: 2.0.2 + sha.js: 2.4.11 + + /create-hmac@1.1.7: + resolution: + { + integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + } + dependencies: + cipher-base: 1.0.4 + create-hash: 1.2.0 + inherits: 2.0.4 + ripemd160: 2.0.2 + safe-buffer: 5.2.1 + sha.js: 2.4.11 + + /create-jest@29.7.0(@types/node@18.17.15): + 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.17.15) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + 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 + + /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 + + /crypto-browserify@3.12.0: + resolution: + { + integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + } + dependencies: + browserify-cipher: 1.0.1 + browserify-sign: 4.2.3 + create-ecdh: 4.0.4 + create-hash: 1.2.0 + create-hmac: 1.1.7 + diffie-hellman: 5.0.3 + inherits: 2.0.4 + pbkdf2: 3.1.2 + public-encrypt: 4.0.3 + randombytes: 2.1.0 + randomfill: 1.0.4 + + /crypto-random-string@2.0.0: + resolution: + { + integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== + } + engines: { node: '>=8' } + + /css-declaration-sorter@6.4.1(postcss@8.4.36): + resolution: + { + integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== + } + engines: { node: ^10 || ^12 || >=14 } + peerDependencies: + postcss: ^8.0.9 + dependencies: + postcss: 8.4.36 + dev: false + + /css-loader@3.6.0(webpack@4.47.0): + resolution: + { + integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ== + } + engines: { node: '>= 8.9.0' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + camelcase: 5.3.1 + cssesc: 3.0.0 + icss-utils: 4.1.1 + loader-utils: 1.4.2 + normalize-path: 3.0.0 + postcss: 7.0.39 + postcss-modules-extract-imports: 2.0.0 + postcss-modules-local-by-default: 3.0.3 + postcss-modules-scope: 2.2.0 + postcss-modules-values: 3.0.0 + postcss-value-parser: 4.2.0 + schema-utils: 2.7.1 + semver: 6.3.1 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /css-loader@5.2.7(webpack@4.47.0): + resolution: + { + integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + webpack: ^4.27.0 || ^5.0.0 || ^4 || ^5 + dependencies: + icss-utils: 5.1.0(postcss@8.4.36) + loader-utils: 2.0.4 + postcss: 8.4.36 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.36) + postcss-modules-local-by-default: 4.0.4(postcss@8.4.36) + postcss-modules-scope: 3.1.1(postcss@8.4.36) + postcss-modules-values: 4.0.0(postcss@8.4.36) + postcss-value-parser: 4.2.0 + schema-utils: 3.3.0 + semver: 7.5.4 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /css-loader@6.6.0(webpack@5.82.1): + resolution: + { + integrity: sha512-FK7H2lisOixPT406s5gZM1S3l8GrfhEBT3ZiL2UX1Ng1XWs0y2GPllz/OTyvbaHe12VgQrIXIzuEGVlbUhodqg== + } + engines: { node: '>= 12.13.0' } + peerDependencies: + webpack: ^5.0.0 || ^4 || ^5 + dependencies: + icss-utils: 5.1.0(postcss@8.4.36) + postcss: 8.4.36 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.36) + postcss-modules-local-by-default: 4.0.4(postcss@8.4.36) + postcss-modules-scope: 3.1.1(postcss@8.4.36) + postcss-modules-values: 4.0.0(postcss@8.4.36) + postcss-value-parser: 4.2.0 + semver: 7.5.4 + webpack: 5.82.1 + + /css-minimizer-webpack-plugin@3.4.1(webpack@5.82.1): + resolution: + { + integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q== + } + engines: { node: '>= 12.13.0' } + peerDependencies: + '@parcel/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' + webpack: ^5.0.0 || ^4 || ^5 + peerDependenciesMeta: + '@parcel/css': + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + dependencies: + cssnano: 5.1.15(postcss@8.4.36) + jest-worker: 27.5.1 + postcss: 8.4.36 + schema-utils: 4.2.0 + serialize-javascript: 6.0.0 + source-map: 0.6.1 + webpack: 5.82.1 + dev: false + + /css-select@4.3.0: + resolution: + { + integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + } + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.1.1 + + /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-tree@1.1.3: + resolution: + { + integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + } + engines: { node: '>=8.0.0' } + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + dev: false + + /css-what@6.1.0: + resolution: + { + integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + } + engines: { node: '>= 6' } + + /cssesc@3.0.0: + resolution: + { + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + } + engines: { node: '>=4' } + hasBin: true + + /cssnano-preset-default@5.2.14(postcss@8.4.36): + resolution: + { + integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.4.36) + cssnano-utils: 3.1.0(postcss@8.4.36) + postcss: 8.4.36 + postcss-calc: 8.2.4(postcss@8.4.36) + postcss-colormin: 5.3.1(postcss@8.4.36) + postcss-convert-values: 5.1.3(postcss@8.4.36) + postcss-discard-comments: 5.1.2(postcss@8.4.36) + postcss-discard-duplicates: 5.1.0(postcss@8.4.36) + postcss-discard-empty: 5.1.1(postcss@8.4.36) + postcss-discard-overridden: 5.1.0(postcss@8.4.36) + postcss-merge-longhand: 5.1.7(postcss@8.4.36) + postcss-merge-rules: 5.1.4(postcss@8.4.36) + postcss-minify-font-values: 5.1.0(postcss@8.4.36) + postcss-minify-gradients: 5.1.1(postcss@8.4.36) + postcss-minify-params: 5.1.4(postcss@8.4.36) + postcss-minify-selectors: 5.2.1(postcss@8.4.36) + postcss-normalize-charset: 5.1.0(postcss@8.4.36) + postcss-normalize-display-values: 5.1.0(postcss@8.4.36) + postcss-normalize-positions: 5.1.1(postcss@8.4.36) + postcss-normalize-repeat-style: 5.1.1(postcss@8.4.36) + postcss-normalize-string: 5.1.0(postcss@8.4.36) + postcss-normalize-timing-functions: 5.1.0(postcss@8.4.36) + postcss-normalize-unicode: 5.1.1(postcss@8.4.36) + postcss-normalize-url: 5.1.0(postcss@8.4.36) + postcss-normalize-whitespace: 5.1.1(postcss@8.4.36) + postcss-ordered-values: 5.1.3(postcss@8.4.36) + postcss-reduce-initial: 5.1.2(postcss@8.4.36) + postcss-reduce-transforms: 5.1.0(postcss@8.4.36) + postcss-svgo: 5.1.0(postcss@8.4.36) + postcss-unique-selectors: 5.1.1(postcss@8.4.36) + dev: false + + /cssnano-utils@3.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + dev: false + + /cssnano@5.1.15(postcss@8.4.36): + resolution: + { + integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-preset-default: 5.2.14(postcss@8.4.36) + lilconfig: 2.1.0 + postcss: 8.4.36 + yaml: 1.10.2 + dev: false + + /csso@4.2.0: + resolution: + { + integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + } + engines: { node: '>=8.0.0' } + dependencies: + css-tree: 1.1.3 + dev: false + + /cssom@0.3.8: + resolution: + { + integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== + } + + /cssom@0.5.0: + resolution: + { + integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw== + } + + /cssstyle@2.3.0: + resolution: + { + integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== + } + engines: { node: '>=8' } + dependencies: + cssom: 0.3.8 + + /csstype@2.6.21: + resolution: + { + integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w== + } + dev: true + + /csstype@3.1.3: + resolution: + { + integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== + } + + /cyclist@1.0.2: + resolution: + { + integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA== + } + + /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 + + /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 + + /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 + + /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 + + /date-format@4.0.14: + resolution: + { + integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg== + } + engines: { node: '>=4.0' } + dev: true + + /debounce-fn@4.0.0: + resolution: + { + integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ== + } + engines: { node: '>=10' } + dependencies: + mimic-fn: 3.1.0 + dev: true + + /debug@2.6.9: + resolution: + { + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + } + dependencies: + ms: 2.0.0 + + /debug@3.2.7: + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + } + dependencies: + ms: 2.1.3 + + /debug@4.3.4(supports-color@8.1.1): + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + } + engines: { node: '>=6.0' } + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + supports-color: 8.1.1 + + /debuglog@1.0.1: + resolution: + { + integrity: sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw== + } + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + dev: false + + /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: false + + /decamelize@1.2.0: + resolution: + { + integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + } + engines: { node: '>=0.10.0' } + + /decamelize@4.0.0: + resolution: + { + integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== + } + engines: { node: '>=10' } + dev: true + + /decimal.js@10.4.3: + resolution: + { + integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== + } + + /decode-uri-component@0.2.2: + resolution: + { + integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== + } + engines: { node: '>=0.10' } + + /decompress-response@6.0.0: + resolution: + { + integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + } + engines: { node: '>=10' } + dependencies: + mimic-response: 3.1.0 + + /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 + + /deep-extend@0.6.0: + resolution: + { + integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + } + engines: { node: '>=4.0.0' } + + /deep-is@0.1.4: + resolution: + { + integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + } + + /deep-object-diff@1.1.9: + resolution: + { + integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA== + } + dev: true + + /deepmerge@4.3.1: + resolution: + { + integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + } + engines: { node: '>=0.10.0' } + + /default-gateway@6.0.3: + resolution: + { + integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== + } + engines: { node: '>= 10' } + dependencies: + execa: 5.1.1 + dev: false + + /defaults@1.0.4: + resolution: + { + integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + } + dependencies: + clone: 1.0.4 + dev: false + + /defer-to-connect@2.0.1: + resolution: + { + integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== + } + engines: { node: '>=10' } + + /define-data-property@1.1.4: + resolution: + { + integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + } + engines: { node: '>= 0.4' } + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + gopd: 1.0.1 + + /define-lazy-prop@2.0.0: + resolution: + { + integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + } + engines: { node: '>=8' } + dev: false + + /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 + + /define-property@0.2.5: + resolution: + { + integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA== + } + engines: { node: '>=0.10.0' } + dependencies: + is-descriptor: 0.1.7 + + /define-property@1.0.0: + resolution: + { + integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA== + } + engines: { node: '>=0.10.0' } + dependencies: + is-descriptor: 1.0.3 + + /define-property@2.0.2: + resolution: + { + integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + } + engines: { node: '>=0.10.0' } + dependencies: + is-descriptor: 1.0.3 + isobject: 3.0.1 + + /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 + + /dendriform-immer-patch-optimiser@2.1.3(immer@9.0.21): + resolution: + { + integrity: sha512-QG2IegUCdlhycVwsBOJ7SNd18PgzyWPxBivTzuF0E1KFxaU47fHy/frud74A9E66a4WXyFFp9FLLC2XQDkVj7g== + } + engines: { node: '>=10' } + peerDependencies: + immer: '9' + dependencies: + immer: 9.0.21 + dev: true + + /depcheck@1.4.7: + resolution: + { + integrity: sha512-1lklS/bV5chOxwNKA/2XUUk/hPORp8zihZsXflr8x0kLwmcZ9Y9BsS6Hs3ssvA+2wUVbG0U2Ciqvm1SokNjPkA== + } + engines: { node: '>=10' } + hasBin: true + dependencies: + '@babel/parser': 7.24.0 + '@babel/traverse': 7.24.0(supports-color@8.1.1) + '@vue/compiler-sfc': 3.4.21 + callsite: 1.0.0 + camelcase: 6.3.0 + cosmiconfig: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + deps-regex: 0.2.0 + findup-sync: 5.0.0 + ignore: 5.3.1 + is-core-module: 2.13.1 + js-yaml: 3.14.1 + json5: 2.2.3 + lodash: 4.17.21 + minimatch: 7.4.6 + multimatch: 5.0.0 + please-upgrade-node: 3.2.0 + readdirp: 3.6.0 + require-package-name: 2.0.1 + resolve: 1.22.8 + resolve-from: 5.0.0 + semver: 7.5.4 + yargs: 16.2.0 + transitivePeerDependencies: + - supports-color + dev: false + + /depd@1.1.2: + resolution: + { + integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + } + engines: { node: '>= 0.6' } + dev: false + + /depd@2.0.0: + resolution: + { + integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + } + engines: { node: '>= 0.8' } + + /dependency-path@9.2.8: + resolution: + { + integrity: sha512-S0OhIK7sIyAsph8hVH/LMCTDL3jozKtlrPx3dMQrlE2nAlXTquTT+AcOufphDMTQqLkfn4acvfiem9I1IWZ4jQ== + } + engines: { node: '>=14.6' } + dependencies: + '@pnpm/crypto.base32-hash': 1.0.1 + '@pnpm/types': 8.9.0 + encode-registry: 3.0.1 + semver: 7.5.4 + dev: false + + /deps-regex@0.2.0: + resolution: + { + integrity: sha512-PwuBojGMQAYbWkMXOY9Pd/NWCDNHVH12pnS7WHqZkTSeMESe4hwnKKRp0yR87g37113x4JPbo/oIvXY+s/f56Q== + } + dev: false + + /des.js@1.1.0: + resolution: + { + integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg== + } + dependencies: + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + + /destroy@1.0.4: + resolution: + { + integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg== + } + dev: false + + /destroy@1.2.0: + resolution: + { + integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + } + engines: { node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16 } + + /detab@2.0.4: + resolution: + { + integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g== + } + dependencies: + repeat-string: 1.6.1 + dev: true + + /detect-file@1.0.0: + resolution: + { + integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q== + } + engines: { node: '>=0.10.0' } + + /detect-indent@6.1.0: + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + } + engines: { node: '>=8' } + dev: false + + /detect-libc@2.0.2: + resolution: + { + integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw== + } + engines: { node: '>=8' } + dev: true + + /detect-newline@3.1.0: + resolution: + { + integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + } + engines: { node: '>=8' } + + /detect-node@2.1.0: + resolution: + { + integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + } + dev: false + + /detect-port-alt@1.1.6: + resolution: + { + integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== + } + engines: { node: '>= 4.2.1' } + hasBin: true + dependencies: + address: 1.2.2 + debug: 2.6.9 + dev: true + + /detect-port@1.5.1: + resolution: + { + integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ== + } + hasBin: true + dependencies: + address: 1.2.2 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /dezalgo@1.0.4: + resolution: + { + integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig== + } + dependencies: + asap: 2.0.6 + wrappy: 1.0.2 + dev: false + + /diff-sequences@27.5.1: + resolution: + { + integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + dev: true + + /diff-sequences@29.6.3: + resolution: + { + integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + /diff@4.0.2: + resolution: + { + integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + } + engines: { node: '>=0.3.1' } + dev: true + + /diff@5.0.0: + resolution: + { + integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== + } + engines: { node: '>=0.3.1' } + + /diffie-hellman@5.0.3: + resolution: + { + integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + } + dependencies: + bn.js: 4.12.0 + miller-rabin: 4.0.1 + randombytes: 2.1.0 + + /dir-glob@2.2.2: + resolution: + { + integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== + } + engines: { node: '>=4' } + dependencies: + path-type: 3.0.0 + dev: true + + /dir-glob@3.0.1: + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + } + engines: { node: '>=8' } + dependencies: + path-type: 4.0.0 + + /dns-packet@5.6.1: + resolution: + { + integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw== + } + engines: { node: '>=6' } + dependencies: + '@leichtgewicht/ip-codec': 2.0.4 + dev: false + + /doctrine@2.1.0: + resolution: + { + integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + } + engines: { node: '>=0.10.0' } + dependencies: + esutils: 2.0.3 + + /doctrine@3.0.0: + resolution: + { + integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + } + engines: { node: '>=6.0.0' } + dependencies: + esutils: 2.0.3 + + /dom-converter@0.2.0: + resolution: + { + integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== + } + dependencies: + utila: 0.4.0 + + /dom-helpers@5.2.1: + resolution: + { + integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== + } + dependencies: + '@babel/runtime': 7.24.0 + csstype: 3.1.3 + dev: false + + /dom-serializer@1.4.1: + resolution: + { + integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + } + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + + /dom-serializer@2.0.0: + resolution: + { + integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + } + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + dev: true + + /dom-walk@0.1.2: + resolution: + { + integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== + } + dev: true + + /domain-browser@1.2.0: + resolution: + { + integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== + } + engines: { node: '>=0.4', npm: '>=1.2' } + + /domelementtype@2.3.0: + resolution: + { + integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + } + + /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 + + /domhandler@4.3.1: + resolution: + { + integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + } + engines: { node: '>= 4' } + dependencies: + domelementtype: 2.3.0 + + /domhandler@5.0.3: + resolution: + { + integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + } + engines: { node: '>= 4' } + dependencies: + domelementtype: 2.3.0 + dev: true + + /domutils@2.8.0: + resolution: + { + integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + } + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + + /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-case@3.0.4: + resolution: + { + integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + } + dependencies: + no-case: 3.0.4 + tslib: 2.3.1 + + /dot-prop@5.3.0: + resolution: + { + integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + } + engines: { node: '>=8' } + dependencies: + is-obj: 2.0.0 + + /dot-prop@6.0.1: + resolution: + { + integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== + } + engines: { node: '>=10' } + dependencies: + is-obj: 2.0.0 + dev: true + + /dotenv-expand@5.1.0: + resolution: + { + integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== + } + dev: true + + /dotenv@10.0.0: + resolution: + { + integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + } + engines: { node: '>=10' } + dev: true + + /dotenv@16.4.5: + resolution: + { + integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg== + } + engines: { node: '>=12' } + dev: true + + /dotenv@8.6.0: + resolution: + { + integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g== + } + engines: { node: '>=10' } + dev: true + + /downshift@6.1.12(react@17.0.2): + resolution: + { + integrity: sha512-7XB/iaSJVS4T8wGFT3WRXmSF1UlBHAA40DshZtkrIscIN+VC+Lh363skLxFTvJwtNgHxAMDGEHT4xsyQFWL+UA== + } + peerDependencies: + react: '>=16.12.0' + dependencies: + '@babel/runtime': 7.24.0 + compute-scroll-into-view: 1.0.20 + prop-types: 15.8.1 + react: 17.0.2 + react-is: 17.0.2 + tslib: 2.3.1 + 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== + } + + /duplexify@3.7.1: + resolution: + { + integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== + } + dependencies: + end-of-stream: 1.4.4 + inherits: 2.0.4 + readable-stream: 2.3.8 + stream-shift: 1.0.3 + + /eastasianwidth@0.2.0: + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + } + dev: true + + /ecdsa-sig-formatter@1.0.11: + resolution: + { + integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== + } + dependencies: + safe-buffer: 5.2.1 + dev: false + + /ee-first@1.1.1: + resolution: + { + integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + } + + /electron-to-chromium@1.4.709: + resolution: + { + integrity: sha512-ixj1cyHrKqmdXF5CeHDSLbO0KRuOE1BHdCYKbcRA04dPLaKu8Vi7JDK5KLnGrfD6WxKcSEGm9gtHR4MqBq8gmg== + } + + /element-resize-detector@1.2.4: + resolution: + { + integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg== + } + dependencies: + batch-processor: 1.0.0 + dev: true + + /elliptic@6.5.5: + resolution: + { + integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw== + } + dependencies: + bn.js: 4.12.0 + brorand: 1.1.0 + hash.js: 1.1.7 + hmac-drbg: 1.0.1 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 + + /emittery@0.13.1: + resolution: + { + integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== + } + engines: { node: '>=12' } + + /emoji-regex@7.0.3: + resolution: + { + integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + } + + /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' } + + /emotion-theming@10.3.0(@emotion/core@10.3.1)(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA== + } + peerDependencies: + '@emotion/core': ^10.0.27 + '@types/react': '>=16' + react: '>=16.3.0' + dependencies: + '@babel/runtime': 7.24.0 + '@emotion/core': 10.3.1(@types/react@17.0.74)(react@17.0.2) + '@emotion/weak-memoize': 0.2.5 + '@types/react': 17.0.74 + hoist-non-react-statics: 3.3.2 + react: 17.0.2 + dev: true + + /encode-registry@3.0.1: + resolution: + { + integrity: sha512-6qOwkl1g0fv0DN3Y3ggr2EaZXN71aoAqPp3p/pVaWSBSIo+YjLOWN61Fva43oVyQNPf7kgm8lkudzlzojwE2jw== + } + engines: { node: '>=10' } + dependencies: + mem: 8.1.1 + dev: false + + /encodeurl@1.0.2: + resolution: + { + integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + } + engines: { node: '>= 0.8' } + + /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 + + /endent@2.1.0: + resolution: + { + integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w== + } + dependencies: + dedent: 0.7.0 + fast-json-parse: 1.0.3 + objectorarray: 1.0.5 + dev: true + + /enhanced-resolve@4.5.0: + resolution: + { + integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== + } + engines: { node: '>=6.9.0' } + dependencies: + graceful-fs: 4.2.11 + memory-fs: 0.5.0 + tapable: 1.1.3 + + /enhanced-resolve@5.16.0: + resolution: + { + integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA== + } + engines: { node: '>=10.13.0' } + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + + /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.1.0: + resolution: + { + integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== + } + dev: true + + /entities@2.2.0: + resolution: + { + integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + } + + /entities@4.5.0: + resolution: + { + integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + } + engines: { node: '>=0.12' } + + /env-paths@2.2.1: + resolution: + { + integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + } + engines: { node: '>=6' } + dev: true + + /envinfo@7.11.1: + resolution: + { + integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg== + } + engines: { node: '>=4' } + hasBin: true + dev: true + + /err-code@2.0.3: + resolution: + { + integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + } + dev: true + + /errno@0.1.8: + resolution: + { + integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== + } + hasBin: true + dependencies: + prr: 1.0.1 + + /error-ex@1.3.2: + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + } + dependencies: + is-arrayish: 0.2.1 + + /error-stack-parser@2.1.4: + resolution: + { + integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== + } + dependencies: + stackframe: 1.3.4 + dev: true + + /es-abstract@1.23.2: + resolution: + { + integrity: sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w== + } + 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.3 + 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.1 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.2 + 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.7 + 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.5 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.15 + + /es-array-method-boxes-properly@1.0.0: + resolution: + { + integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== + } + + /es-define-property@1.0.0: + resolution: + { + integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + } + engines: { node: '>= 0.4' } + dependencies: + get-intrinsic: 1.2.4 + + /es-errors@1.3.0: + resolution: + { + integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + } + engines: { node: '>= 0.4' } + + /es-get-iterator@1.1.3: + resolution: + { + integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== + } + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + has-symbols: 1.0.3 + is-arguments: 1.1.1 + is-map: 2.0.3 + is-set: 2.0.3 + is-string: 1.0.7 + isarray: 2.0.5 + stop-iteration-iterator: 1.0.0 + dev: true + + /es-iterator-helpers@1.0.18: + resolution: + { + integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + es-errors: 1.3.0 + es-set-tostringtag: 2.0.3 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + globalthis: 1.0.3 + has-property-descriptors: 1.0.2 + has-proto: 1.0.3 + has-symbols: 1.0.3 + internal-slot: 1.0.7 + iterator.prototype: 1.1.2 + safe-array-concat: 1.1.2 + + /es-module-lexer@1.4.1: + resolution: + { + integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w== + } + + /es-object-atoms@1.0.0: + resolution: + { + integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + } + engines: { node: '>= 0.4' } + dependencies: + es-errors: 1.3.0 + + /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 + + /es-shim-unscopables@1.0.2: + resolution: + { + integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== + } + dependencies: + hasown: 2.0.2 + + /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 + + /es5-shim@4.6.7: + resolution: + { + integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ== + } + engines: { node: '>=0.4.0' } + dev: true + + /es6-shim@0.35.8: + resolution: + { + integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg== + } + dev: true + + /esbuild-android-64@0.14.54: + resolution: + { + integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ== + } + engines: { node: '>=12' } + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-android-arm64@0.14.54: + resolution: + { + integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-64@0.14.54: + resolution: + { + integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug== + } + engines: { node: '>=12' } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-arm64@0.14.54: + resolution: + { + integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-64@0.14.54: + resolution: + { + integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg== + } + engines: { node: '>=12' } + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-arm64@0.14.54: + resolution: + { + integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-32@0.14.54: + resolution: + { + integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw== + } + engines: { node: '>=12' } + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-64@0.14.54: + resolution: + { + integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg== + } + engines: { node: '>=12' } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm64@0.14.54: + resolution: + { + integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm@0.14.54: + resolution: + { + integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw== + } + engines: { node: '>=12' } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-mips64le@0.14.54: + resolution: + { + integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw== + } + engines: { node: '>=12' } + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-ppc64le@0.14.54: + resolution: + { + integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ== + } + engines: { node: '>=12' } + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-riscv64@0.14.54: + resolution: + { + integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg== + } + engines: { node: '>=12' } + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-s390x@0.14.54: + resolution: + { + integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA== + } + engines: { node: '>=12' } + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-netbsd-64@0.14.54: + resolution: + { + integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w== + } + engines: { node: '>=12' } + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-openbsd-64@0.14.54: + resolution: + { + integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw== + } + engines: { node: '>=12' } + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-runner@2.2.2(esbuild@0.14.54): + resolution: + { + integrity: sha512-fRFVXcmYVmSmtYm2mL8RlUASt2TDkGh3uRcvHFOKNr/T58VrfVeKD9uT9nlgxk96u0LS0ehS/GY7Da/bXWKkhw== + } + hasBin: true + peerDependencies: + esbuild: '*' + dependencies: + esbuild: 0.14.54 + source-map-support: 0.5.21 + tslib: 2.4.0 + dev: true + + /esbuild-sunos-64@0.14.54: + resolution: + { + integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw== + } + engines: { node: '>=12' } + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-32@0.14.54: + resolution: + { + integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w== + } + engines: { node: '>=12' } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-64@0.14.54: + resolution: + { + integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ== + } + engines: { node: '>=12' } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-arm64@0.14.54: + resolution: + { + integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg== + } + engines: { node: '>=12' } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild@0.14.54: + resolution: + { + integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA== + } + engines: { node: '>=12' } + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/linux-loong64': 0.14.54 + esbuild-android-64: 0.14.54 + esbuild-android-arm64: 0.14.54 + esbuild-darwin-64: 0.14.54 + esbuild-darwin-arm64: 0.14.54 + esbuild-freebsd-64: 0.14.54 + esbuild-freebsd-arm64: 0.14.54 + esbuild-linux-32: 0.14.54 + esbuild-linux-64: 0.14.54 + esbuild-linux-arm: 0.14.54 + esbuild-linux-arm64: 0.14.54 + esbuild-linux-mips64le: 0.14.54 + esbuild-linux-ppc64le: 0.14.54 + esbuild-linux-riscv64: 0.14.54 + esbuild-linux-s390x: 0.14.54 + esbuild-netbsd-64: 0.14.54 + esbuild-openbsd-64: 0.14.54 + esbuild-sunos-64: 0.14.54 + esbuild-windows-32: 0.14.54 + esbuild-windows-64: 0.14.54 + esbuild-windows-arm64: 0.14.54 + dev: true + + /esbuild@0.20.2: + resolution: + { + integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== + } + engines: { node: '>=12' } + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/aix-ppc64': 0.20.2 + '@esbuild/android-arm': 0.20.2 + '@esbuild/android-arm64': 0.20.2 + '@esbuild/android-x64': 0.20.2 + '@esbuild/darwin-arm64': 0.20.2 + '@esbuild/darwin-x64': 0.20.2 + '@esbuild/freebsd-arm64': 0.20.2 + '@esbuild/freebsd-x64': 0.20.2 + '@esbuild/linux-arm': 0.20.2 + '@esbuild/linux-arm64': 0.20.2 + '@esbuild/linux-ia32': 0.20.2 + '@esbuild/linux-loong64': 0.20.2 + '@esbuild/linux-mips64el': 0.20.2 + '@esbuild/linux-ppc64': 0.20.2 + '@esbuild/linux-riscv64': 0.20.2 + '@esbuild/linux-s390x': 0.20.2 + '@esbuild/linux-x64': 0.20.2 + '@esbuild/netbsd-x64': 0.20.2 + '@esbuild/openbsd-x64': 0.20.2 + '@esbuild/sunos-x64': 0.20.2 + '@esbuild/win32-arm64': 0.20.2 + '@esbuild/win32-ia32': 0.20.2 + '@esbuild/win32-x64': 0.20.2 + dev: true + + /escalade@3.1.2: + resolution: + { + integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + } + engines: { node: '>=6' } + + /escape-goat@2.1.1: + resolution: + { + integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== + } + engines: { node: '>=8' } + + /escape-html@1.0.3: + resolution: + { + integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + } + + /escape-string-regexp@1.0.5: + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + } + engines: { node: '>=0.8.0' } + + /escape-string-regexp@2.0.0: + resolution: + { + integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + } + engines: { node: '>=8' } + + /escape-string-regexp@4.0.0: + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + } + engines: { node: '>=10' } + + /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 + + /eslint-import-resolver-node@0.3.9: + resolution: + { + integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== + } + dependencies: + debug: 3.2.7 + is-core-module: 2.13.1 + resolve: 1.22.8 + dev: false + + /eslint-module-utils@2.8.1(eslint@8.57.0): + resolution: + { + integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q== + } + engines: { node: '>=4' } + peerDependencies: + eslint: '*' + peerDependenciesMeta: + eslint: + optional: true + dependencies: + debug: 3.2.7 + eslint: 8.57.0(supports-color@8.1.1) + dev: false + + /eslint-plugin-deprecation@2.0.0(eslint@8.57.0)(typescript@5.4.2): + resolution: + { + integrity: sha512-OAm9Ohzbj11/ZFyICyR5N6LbOIvQMp7ZU2zI7Ej0jIc8kiGUERXPNMfw2QqqHD1ZHtjMub3yPZILovYEYucgoQ== + } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: ^4.2.4 || ^5.0.0 + dependencies: + '@typescript-eslint/utils': 6.19.1(eslint@8.57.0)(supports-color@8.1.1)(typescript@5.4.2) + eslint: 8.57.0(supports-color@8.1.1) + tslib: 2.3.1 + tsutils: 3.21.0(typescript@5.4.2) + typescript: 5.4.2 + transitivePeerDependencies: + - supports-color + dev: false + + /eslint-plugin-header@3.1.1(eslint@8.57.0): + resolution: + { + integrity: sha512-9vlKxuJ4qf793CmeeSrZUvVClw6amtpghq3CuWcB5cUNnWHQhgcqy5eF8oVKFk1G3Y/CbchGfEaw3wiIJaNmVg== + } + peerDependencies: + eslint: '>=7.7.0' + dependencies: + eslint: 8.57.0(supports-color@8.1.1) + + /eslint-plugin-import@2.25.4(eslint@8.57.0): + resolution: + { + integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA== + } + engines: { node: '>=4' } + peerDependencies: + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + dependencies: + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 8.57.0(supports-color@8.1.1) + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.1(eslint@8.57.0) + has: 1.0.4 + is-core-module: 2.13.1 + is-glob: 4.0.3 + minimatch: 3.0.8 + object.values: 1.2.0 + resolve: 1.22.8 + tsconfig-paths: 3.15.0 + dev: false + + /eslint-plugin-jsdoc@37.6.1(eslint@8.57.0): + resolution: + { + integrity: sha512-Y9UhH9BQD40A9P1NOxj59KrSLZb9qzsqYkLCZv30bNeJ7C9eaumTWhh9beiGqvK7m821Hj1dTsZ5LOaFIUTeTg== + } + engines: { node: ^12 || ^14 || ^16 || ^17 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@es-joy/jsdoccomment': 0.17.0 + comment-parser: 1.3.0 + debug: 4.3.4(supports-color@8.1.1) + escape-string-regexp: 4.0.0 + eslint: 8.57.0(supports-color@8.1.1) + esquery: 1.5.0 + regextras: 0.8.0 + semver: 7.5.4 + spdx-expression-parse: 3.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /eslint-plugin-promise@6.1.1(eslint@7.11.0): + resolution: + { + integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + eslint: 7.11.0 + dev: true + + /eslint-plugin-promise@6.1.1(eslint@7.30.0): + resolution: + { + integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + eslint: 7.30.0 + dev: true + + /eslint-plugin-promise@6.1.1(eslint@7.7.0): + resolution: + { + integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + eslint: 7.7.0 + dev: true + + /eslint-plugin-promise@6.1.1(eslint@8.57.0): + resolution: + { + integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.57.0(supports-color@8.1.1) + + /eslint-plugin-react-hooks@4.3.0(eslint@8.57.0): + resolution: + { + integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA== + } + engines: { node: '>=10' } + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 8.57.0(supports-color@8.1.1) + dev: false + + /eslint-plugin-react@7.33.2(eslint@7.11.0): + resolution: + { + integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== + } + engines: { node: '>=4' } + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.3 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.18 + eslint: 7.11.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.2.0 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.10 + dev: true + + /eslint-plugin-react@7.33.2(eslint@7.30.0): + resolution: + { + integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== + } + engines: { node: '>=4' } + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.3 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.18 + eslint: 7.30.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.2.0 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.10 + dev: true + + /eslint-plugin-react@7.33.2(eslint@7.7.0): + resolution: + { + integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== + } + engines: { node: '>=4' } + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.3 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.18 + eslint: 7.7.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.2.0 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.10 + dev: true + + /eslint-plugin-react@7.33.2(eslint@8.57.0): + resolution: + { + integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw== + } + engines: { node: '>=4' } + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.3 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.18 + eslint: 8.57.0(supports-color@8.1.1) + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.2.0 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.10 + + /eslint-plugin-tsdoc@0.3.0: + resolution: + { + integrity: sha512-0MuFdBrrJVBjT/gyhkP2BqpD0np1NxNLfQ38xXDlSs/KVVpKI2A6vN7jx2Rve/CyUsvOsMGwp9KKrinv7q9g3A== + } + dependencies: + '@microsoft/tsdoc': 0.15.0 + '@microsoft/tsdoc-config': 0.17.0 + + /eslint-scope@4.0.3: + resolution: + { + integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== + } + engines: { node: '>=4.0.0' } + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + + /eslint-scope@5.1.1: + resolution: + { + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + } + engines: { node: '>=8.0.0' } + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + + /eslint-scope@7.2.2: + resolution: + { + integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + /eslint-utils@2.1.0: + resolution: + { + integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + } + engines: { node: '>=6' } + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-utils@3.0.0(eslint@8.57.0): + resolution: + { + integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + } + engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 8.57.0(supports-color@8.1.1) + 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-visitor-keys@3.4.3: + resolution: + { + integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + + /eslint-visitor-keys@4.0.0: + resolution: + { + integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + dev: true + + /eslint@7.11.0: + resolution: + { + integrity: sha512-G9+qtYVCHaDi1ZuWzBsOWo2wSwd70TXnU6UHA3cTYHp7gCTXZcpggWFoUVAMRarg68qtPoNfFbzPh+VdOgmwmw== + } + engines: { node: ^10.12.0 || >=12.0.0 } + hasBin: true + dependencies: + '@babel/code-frame': 7.23.5 + '@eslint/eslintrc': 0.1.3 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + 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: 5.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.13.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash: 4.17.21 + minimatch: 3.0.8 + natural-compare: 1.4.0 + optionator: 0.9.3 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.5.4 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + table: 5.4.6 + text-table: 0.2.0 + v8-compile-cache: 2.4.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint@7.30.0: + resolution: + { + integrity: sha512-VLqz80i3as3NdloY44BQSJpFw534L9Oh+6zJOUaViV4JPd+DaHwutqP7tcpkW3YiXbK6s05RZl7yl7cQn+lijg== + } + engines: { node: ^10.12.0 || >=12.0.0 } + hasBin: true + dependencies: + '@babel/code-frame': 7.12.11 + '@eslint/eslintrc': 0.4.3 + '@humanwhocodes/config-array': 0.5.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + doctrine: 3.0.0 + enquirer: 2.4.1 + escape-string-regexp: 4.0.0 + 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 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 5.1.2 + globals: 13.24.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 3.13.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.0.8 + natural-compare: 1.4.0 + optionator: 0.9.3 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.5.4 + 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 + + /eslint@7.7.0: + resolution: + { + integrity: sha512-1KUxLzos0ZVsyL81PnRN335nDtQ8/vZUD6uMtWbF+5zDtjKcsklIi78XoE0MVL93QvWTu+E5y44VyyCsOMBrIg== + } + engines: { node: ^10.12.0 || >=12.0.0 } + hasBin: true + dependencies: + '@babel/code-frame': 7.23.5 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + doctrine: 3.0.0 + enquirer: 2.4.1 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + eslint-visitor-keys: 1.3.0 + espree: 7.3.1 + esquery: 1.5.0 + esutils: 2.0.3 + file-entry-cache: 5.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.13.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash: 4.17.21 + minimatch: 3.0.8 + natural-compare: 1.4.0 + optionator: 0.9.3 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.5.4 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + table: 5.4.6 + text-table: 0.2.0 + v8-compile-cache: 2.4.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint@8.23.1: + resolution: + { + integrity: sha512-w7C1IXCc6fNqjpuYd0yPlcTKKmHlHHktRkzmBPZ+7cvNBQuiNjx0xaMTjAJGCafJhQkrFJooREv0CtrVzmHwqg== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + '@eslint/eslintrc': 1.4.1 + '@humanwhocodes/config-array': 0.10.7 + '@humanwhocodes/gitignore-to-minimatch': 1.0.2 + '@humanwhocodes/module-importer': 1.0.1 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.2 + eslint-utils: 3.0.0(eslint@8.57.0) + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.24.0 + globby: 11.1.0 + grapheme-splitter: 1.0.4 + ignore: 5.3.1 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-sdsl: 4.4.2 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + regexpp: 3.2.0 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint@8.57.0(supports-color@8.1.1): + resolution: + { + integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 2.1.4(supports-color@8.1.1) + '@eslint/js': 8.57.0 + '@humanwhocodes/config-array': 0.11.14(supports-color@8.1.1) + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.24.0 + graphemer: 1.4.0 + ignore: 5.3.1 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + + /eslint@8.6.0: + resolution: + { + integrity: sha512-UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + '@eslint/eslintrc': 1.4.1 + '@humanwhocodes/config-array': 0.9.5 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + doctrine: 3.0.0 + enquirer: 2.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.2 + eslint-utils: 3.0.0(eslint@8.57.0) + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 6.0.2 + globals: 13.24.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.0.8 + natural-compare: 1.4.0 + optionator: 0.9.3 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.5.4 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + v8-compile-cache: 2.4.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@10.0.1: + resolution: + { + integrity: sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww== + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + dependencies: + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) + eslint-visitor-keys: 4.0.0 + dev: true + + /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 + + /espree@9.6.1: + resolution: + { + integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) + eslint-visitor-keys: 3.4.3 + + /esprima@4.0.1: + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + } + engines: { node: '>=4' } + hasBin: true + + /esquery@1.5.0: + resolution: + { + integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== + } + engines: { node: '>=0.10' } + dependencies: + estraverse: 5.3.0 + + /esrecurse@4.3.0: + resolution: + { + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + } + engines: { node: '>=4.0' } + dependencies: + estraverse: 5.3.0 + + /estraverse@4.3.0: + resolution: + { + integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + } + engines: { node: '>=4.0' } + + /estraverse@5.3.0: + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + } + engines: { node: '>=4.0' } + + /estree-to-babel@3.2.1: + resolution: + { + integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg== + } + engines: { node: '>=8.3.0' } + dependencies: + '@babel/traverse': 7.24.0(supports-color@8.1.1) + '@babel/types': 7.24.0 + c8: 7.14.0 + transitivePeerDependencies: + - supports-color + dev: true + + /estree-walker@2.0.2: + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + } + dev: false + + /esutils@2.0.3: + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + } + engines: { node: '>=0.10.0' } + + /etag@1.8.1: + resolution: + { + integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + } + engines: { node: '>= 0.6' } + + /eventemitter3@4.0.7: + resolution: + { + integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + } + + /events@1.1.1: + resolution: + { + integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw== + } + engines: { node: '>=0.4.x' } + dev: true + + /events@3.3.0: + resolution: + { + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + } + engines: { node: '>=0.8.x' } + + /evp_bytestokey@1.0.3: + resolution: + { + integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + } + dependencies: + md5.js: 1.3.5 + safe-buffer: 5.2.1 + + /exec-sh@0.3.6: + resolution: + { + integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== + } + dev: true + + /execa@1.0.0: + resolution: + { + integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + } + engines: { node: '>=6' } + dependencies: + cross-spawn: 6.0.5 + get-stream: 4.1.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.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-brackets@2.1.4: + resolution: + { + integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== + } + engines: { node: '>=0.10.0' } + dependencies: + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + posix-character-classes: 0.1.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + + /expand-template@2.0.3: + resolution: + { + integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== + } + engines: { node: '>=6' } + dev: true + + /expand-tilde@2.0.2: + resolution: + { + integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw== + } + engines: { node: '>=0.10.0' } + dependencies: + homedir-polyfill: 1.0.3 + + /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 + + /express@4.19.2: + resolution: + { + integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== + } + engines: { node: '>= 0.10.0' } + dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.2 + content-disposition: 0.5.4 + content-type: 1.0.5 + cookie: 0.6.0 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 2.0.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.2.0 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.11.0 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.18.0 + serve-static: 1.15.0 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + + /extend-shallow@2.0.1: + resolution: + { + integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== + } + engines: { node: '>=0.10.0' } + dependencies: + is-extendable: 0.1.1 + + /extend-shallow@3.0.2: + resolution: + { + integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== + } + engines: { node: '>=0.10.0' } + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + + /extend@3.0.2: + resolution: + { + integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + } + 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: false + + /extglob@2.0.4: + resolution: + { + integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + } + engines: { node: '>=0.10.0' } + dependencies: + array-unique: 0.3.2 + define-property: 1.0.0 + expand-brackets: 2.1.4 + extend-shallow: 2.0.1 + fragment-cache: 0.2.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + + /extract-zip@1.7.0: + resolution: + { + integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== + } + hasBin: true + dependencies: + concat-stream: 1.6.2 + debug: 2.6.9 + mkdirp: 0.5.6 + yauzl: 2.10.0 + dev: true + + /fast-decode-uri-component@1.0.1: + resolution: + { + integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg== + } + dev: false + + /fast-deep-equal@3.1.3: + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + } + + /fast-glob@2.2.7: + resolution: + { + integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== + } + engines: { node: '>=4.0.0' } + dependencies: + '@mrmlnc/readdir-enhanced': 2.2.1 + '@nodelib/fs.stat': 1.1.3 + glob-parent: 3.1.0 + is-glob: 4.0.3 + merge2: 1.4.1 + micromatch: 3.1.10 + dev: true + + /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-parse@1.0.3: + resolution: + { + integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw== + } + dev: true + + /fast-json-stable-stringify@2.1.0: + resolution: + { + integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + } + + /fast-json-stringify@2.7.13: + resolution: + { + integrity: sha512-ar+hQ4+OIurUGjSJD1anvYSDcUflywhKjfxnsW4TBTD7+u0tJufv6DKRWoQk3vI6YBOWMoz0TQtfbe7dxbQmvA== + } + engines: { node: '>= 10.0.0' } + dependencies: + ajv: 6.12.6 + deepmerge: 4.3.1 + rfdc: 1.3.1 + string-similarity: 4.0.4 + dev: false + + /fast-levenshtein@2.0.6: + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + } + + /fast-redact@3.4.0: + resolution: + { + integrity: sha512-2gwPvyna0zwBdxKnng1suu/dTL5s8XEy2ZqH8mwDUwJdDkV8w5kp+JV26mupdK68HmPMbm6yjW9m7/Ys/BHEHg== + } + engines: { node: '>=6' } + dev: false + + /fast-safe-stringify@2.1.1: + resolution: + { + integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== + } + + /fast-xml-parser@4.2.5: + resolution: + { + integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g== + } + hasBin: true + dependencies: + strnum: 1.0.5 + dev: true + + /fastify-error@0.3.1: + resolution: + { + integrity: sha512-oCfpcsDndgnDVgiI7bwFKAun2dO+4h84vBlkWsWnz/OUK9Reff5UFoFl241xTiLeHWX/vU9zkDVXqYUxjOwHcQ== + } + dev: false + + /fastify-warning@0.2.0: + resolution: + { + integrity: sha512-s1EQguBw/9qtc1p/WTY4eq9WMRIACkj+HTcOIK1in4MV5aFaQC9ZCIt0dJ7pr5bIf4lPpHvAtP2ywpTNgs7hqw== + } + deprecated: This module renamed to process-warning + dev: false + + /fastify@3.16.2: + resolution: + { + integrity: sha512-tdu0fz6wk9AbtD91AbzZGjKgEQLcIy7rT2vEzTUL/zifAMS/L7ViKY9p9k3g3yCRnIQzYzxH2RAbvYZaTbKasw== + } + engines: { node: '>=10.16.0' } + dependencies: + '@fastify/ajv-compiler': 1.1.0 + '@fastify/proxy-addr': 3.0.0 + abstract-logging: 2.0.1 + avvio: 7.2.5 + fast-json-stringify: 2.7.13 + fastify-error: 0.3.1 + fastify-warning: 0.2.0 + find-my-way: 4.5.1 + flatstr: 1.0.12 + light-my-request: 4.12.0 + pino: 6.14.0 + readable-stream: 3.6.2 + rfdc: 1.3.1 + secure-json-parse: 2.7.0 + semver: 7.5.4 + tiny-lru: 7.0.6 + transitivePeerDependencies: + - supports-color + dev: false + + /fastq@1.17.1: + resolution: + { + integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + } + dependencies: + reusify: 1.0.4 + + /fault@1.0.4: + resolution: + { + integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA== + } + dependencies: + format: 0.2.2 + dev: true + + /faye-websocket@0.11.4: + resolution: + { + integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== + } + engines: { node: '>=0.8.0' } + dependencies: + websocket-driver: 0.7.4 + dev: false + + /fb-watchman@2.0.2: + resolution: + { + integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + } + dependencies: + bser: 2.1.1 + + /fd-slicer@1.1.0: + resolution: + { + integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== + } + dependencies: + pend: 1.2.0 + dev: true + + /figgy-pudding@3.5.2: + resolution: + { + integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== + } + deprecated: This module is no longer supported. + + /figures@3.0.0: + resolution: + { + integrity: sha512-HKri+WoWoUgr83pehn/SIgLOMZ9nAWC6dcGj26RY2R4F50u4+RTUz0RCrUlOV3nKRAICW1UGzyb+kcX2qK1S/g== + } + engines: { node: '>=8' } + dependencies: + escape-string-regexp: 1.0.5 + dev: false + + /file-entry-cache@5.0.1: + resolution: + { + integrity: sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== + } + engines: { node: '>=4' } + dependencies: + flat-cache: 2.0.1 + 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 + + /file-loader@6.0.0(webpack@4.47.0): + resolution: + { + integrity: sha512-/aMOAYEFXDdjG0wytpTL5YQLfZnnTmLNjn+AIrJ/6HVnTfDqLsVKUUwkDf4I4kgex36BvjuXEn/TX9B/1ESyqQ== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + loader-utils: 2.0.4 + schema-utils: 2.7.1 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /file-loader@6.2.0(webpack@4.47.0): + resolution: + { + integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /file-system-cache@1.1.0: + resolution: + { + integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw== + } + dependencies: + fs-extra: 10.1.0 + ramda: 0.28.0 + dev: true + + /file-uri-to-path@1.0.0: + resolution: + { + integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + } + requiresBuild: true + optional: true + + /fill-range@4.0.0: + resolution: + { + integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ== + } + engines: { node: '>=0.10.0' } + dependencies: + extend-shallow: 2.0.1 + is-number: 3.0.0 + repeat-string: 1.6.1 + to-regex-range: 2.1.1 + + /fill-range@7.0.1: + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + } + engines: { node: '>=8' } + dependencies: + to-regex-range: 5.0.1 + + /finalhandler@1.2.0: + resolution: + { + integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== + } + engines: { node: '>= 0.8' } + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.1 + unpipe: 1.0.0 + + /find-cache-dir@2.1.0: + resolution: + { + integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + } + engines: { node: '>=6' } + dependencies: + commondir: 1.0.1 + make-dir: 2.1.0 + pkg-dir: 3.0.0 + + /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-my-way@4.5.1: + resolution: + { + integrity: sha512-kE0u7sGoUFbMXcOG/xpkmz4sRLCklERnBcg7Ftuu1iAxsfEt2S46RLJ3Sq7vshsEy2wJT2hZxE58XZK27qa8kg== + } + engines: { node: '>=10' } + dependencies: + fast-decode-uri-component: 1.0.1 + fast-deep-equal: 3.1.3 + safe-regex2: 2.0.0 + semver-store: 0.3.0 + dev: false + + /find-root@1.1.0: + resolution: + { + integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== + } + dev: true + + /find-up@3.0.0: + resolution: + { + integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + } + engines: { node: '>=6' } + dependencies: + locate-path: 3.0.0 + + /find-up@4.1.0: + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + } + engines: { node: '>=8' } + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + /find-up@5.0.0: + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + } + engines: { node: '>=10' } + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + /find-yarn-workspace-root2@1.2.16: + resolution: + { + integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA== + } + dependencies: + micromatch: 4.0.5 + pkg-dir: 4.2.0 + dev: false + + /findup-sync@3.0.0: + resolution: + { + integrity: sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== + } + engines: { node: '>= 0.10' } + dependencies: + detect-file: 1.0.0 + is-glob: 4.0.3 + micromatch: 3.1.10 + resolve-dir: 1.0.1 + + /findup-sync@5.0.0: + resolution: + { + integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ== + } + engines: { node: '>= 10.13.0' } + dependencies: + detect-file: 1.0.0 + is-glob: 4.0.3 + micromatch: 4.0.5 + resolve-dir: 1.0.1 + dev: false + + /flat-cache@2.0.1: + resolution: + { + integrity: sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== + } + engines: { node: '>=4' } + dependencies: + flatted: 2.0.2 + rimraf: 2.6.3 + write: 1.0.3 + dev: true + + /flat-cache@3.2.0: + resolution: + { + integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 + rimraf: 3.0.2 + + /flat@5.0.2: + resolution: + { + integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + } + hasBin: true + dev: true + + /flatstr@1.0.12: + resolution: + { + integrity: sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw== + } + dev: false + + /flatted@2.0.2: + resolution: + { + integrity: sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== + } + dev: true + + /flatted@3.3.1: + resolution: + { + integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + } + + /flow-parser@0.231.0: + resolution: + { + integrity: sha512-WVzuqwq7ZnvBceCG0DGeTQebZE+iIU0mlk5PmJgYj9DDrt+0isGC2m1ezW9vxL4V+HERJJo9ExppOnwKH2op6Q== + } + engines: { node: '>=0.4.0' } + dev: true + + /flush-write-stream@1.1.1: + resolution: + { + integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== + } + dependencies: + inherits: 2.0.4 + readable-stream: 2.3.8 + + /follow-redirects@1.15.6: + resolution: + { + integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== + } + 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 + + /for-in@1.0.2: + resolution: + { + integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== + } + engines: { node: '>=0.10.0' } + + /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 + + /fork-ts-checker-webpack-plugin@4.1.6: + resolution: + { + integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw== + } + engines: { node: '>=6.11.5', yarn: '>=1.0.0' } + dependencies: + '@babel/code-frame': 7.23.5 + chalk: 2.4.2 + micromatch: 3.1.10 + minimatch: 3.0.8 + semver: 5.7.2 + tapable: 1.1.3 + worker-rpc: 0.1.1 + dev: true + + /fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.4.2)(webpack@4.47.0): + resolution: + { + integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ== + } + engines: { node: '>=10', yarn: '>=1.0.0' } + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4 || ^4 || ^5' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/code-frame': 7.23.5 + '@types/json-schema': 7.0.15 + chalk: 4.1.2 + chokidar: 3.4.3 + cosmiconfig: 6.0.0 + deepmerge: 4.3.1 + eslint: 8.57.0(supports-color@8.1.1) + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.4.3 + minimatch: 3.0.8 + schema-utils: 2.7.0 + semver: 7.5.4 + tapable: 1.1.3 + typescript: 5.4.2 + webpack: 4.47.0(webpack-cli@3.3.12) + 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 + + /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 + + /format@0.2.2: + resolution: + { + integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== + } + engines: { node: '>=0.4.x' } + dev: true + + /forwarded@0.2.0: + resolution: + { + integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + } + engines: { node: '>= 0.6' } + + /fraction.js@4.3.7: + resolution: + { + integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== + } + + /fragment-cache@0.2.1: + resolution: + { + integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA== + } + engines: { node: '>=0.10.0' } + dependencies: + map-cache: 0.2.2 + + /fresh@0.5.2: + resolution: + { + integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + } + engines: { node: '>= 0.6' } + + /from2@2.3.0: + resolution: + { + integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== + } + dependencies: + inherits: 2.0.4 + readable-stream: 2.3.8 + + /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 + dev: true + + /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 + + /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 + dev: true + + /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 + + /fs-monkey@1.0.3: + resolution: + { + integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== + } + + /fs-write-stream-atomic@1.0.10: + resolution: + { + integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA== + } + dependencies: + graceful-fs: 4.2.11 + iferr: 0.1.5 + imurmurhash: 0.1.4 + readable-stream: 2.3.8 + + /fs.realpath@1.0.0: + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + } + + /fsevents@1.2.13: + resolution: + { + integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== + } + engines: { node: '>= 4.0' } + os: [darwin] + deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 + requiresBuild: true + dependencies: + bindings: 1.5.0 + nan: 2.19.0 + optional: true + + /fsevents@2.1.3: + resolution: + { + integrity: sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + os: [darwin] + deprecated: '"Please update to latest v2.3 or v2.2"' + requiresBuild: true + optional: true + + /fsevents@2.3.2: + resolution: + { + integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + os: [darwin] + requiresBuild: true + dev: true + optional: 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 + 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== + } + + /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.2 + functions-have-names: 1.2.3 + + /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== + } + + /fuse.js@3.6.1: + resolution: + { + integrity: sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw== + } + engines: { node: '>=6' } + dev: true + + /gauge@2.7.4: + resolution: + { + integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg== + } + dependencies: + aproba: 1.2.0 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 1.0.2 + strip-ansi: 3.0.1 + wide-align: 1.1.5 + dev: true + + /gauge@3.0.2: + resolution: + { + integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== + } + engines: { node: '>=10' } + dependencies: + aproba: 2.0.0 + color-support: 1.1.3 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wide-align: 1.1.5 + dev: true + + /generic-names@4.0.0: + resolution: + { + integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A== + } + dependencies: + loader-utils: 3.2.1 + dev: false + + /generic-pool@3.9.0: + resolution: + { + integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g== + } + engines: { node: '>= 4' } + dev: false + + /gensync@1.0.0-beta.2: + resolution: + { + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + } + engines: { node: '>=6.9.0' } + + /get-caller-file@2.0.5: + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + } + engines: { node: 6.* || 8.* || >= 10.* } + + /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.3 + has-symbols: 1.0.3 + hasown: 2.0.2 + + /get-package-type@0.1.0: + resolution: + { + integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + } + engines: { node: '>=8.0.0' } + + /get-port@5.1.1: + resolution: + { + integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== + } + engines: { node: '>=8' } + dev: true + + /get-stream@4.1.0: + resolution: + { + integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + } + engines: { node: '>=6' } + dependencies: + pump: 3.0.0 + dev: true + + /get-stream@5.2.0: + resolution: + { + integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + } + engines: { node: '>=8' } + dependencies: + pump: 3.0.0 + + /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 + + /get-value@2.0.6: + resolution: + { + integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== + } + engines: { node: '>=0.10.0' } + + /git-repo-info@2.1.1: + resolution: + { + integrity: sha512-8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg== + } + engines: { node: '>= 4.0' } + + /github-from-package@0.0.0: + resolution: + { + integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== + } + dev: true + + /github-slugger@1.5.0: + resolution: + { + integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw== + } + dev: true + + /giturl@1.0.3: + resolution: + { + integrity: sha512-qVDEXufVtYUzYqI5hoDUONh9GCEPi0n+e35KNDafdsNt9fPxB0nvFW/kFiw7W42wkg8TUyhBqb+t24yyaoc87A== + } + engines: { node: '>= 0.10.0' } + dev: false + + /glob-escape@0.0.2: + resolution: + { + integrity: sha512-L/cXYz8x7qer1HAyUQ+mbjcUsJVdpRxpAf7CwqHoNBs9vTpABlGfNN4tzkDxt+u3Z7ZncVyKlCNPtzb0R/7WbA== + } + engines: { node: '>= 0.10' } + dev: false + + /glob-parent@3.1.0: + resolution: + { + integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA== + } + dependencies: + is-glob: 3.1.0 + path-dirname: 1.0.2 + + /glob-parent@5.1.2: + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + } + engines: { node: '>= 6' } + dependencies: + is-glob: 4.0.3 + + /glob-parent@6.0.2: + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + } + engines: { node: '>=10.13.0' } + dependencies: + is-glob: 4.0.3 + + /glob-promise@3.4.0(glob@7.2.3): + resolution: + { + integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw== + } + engines: { node: '>=4' } + peerDependencies: + glob: '*' + dependencies: + '@types/glob': 7.1.1 + glob: 7.2.3 + dev: true + + /glob-to-regexp@0.3.0: + resolution: + { + integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig== + } + dev: true + + /glob-to-regexp@0.4.1: + resolution: + { + integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== + } + + /glob@7.0.6: + resolution: + { + integrity: sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q== + } + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.0.8 + 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 + + /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 + + /global-dirs@3.0.1: + resolution: + { + integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== + } + engines: { node: '>=10' } + dependencies: + ini: 2.0.0 + + /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 + + /global-modules@2.0.0: + resolution: + { + integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + } + engines: { node: '>=6' } + dependencies: + global-prefix: 3.0.0 + + /global-prefix@1.0.2: + 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 + + /global-prefix@3.0.0: + resolution: + { + integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + } + engines: { node: '>=6' } + dependencies: + ini: 1.3.8 + kind-of: 6.0.3 + which: 1.3.1 + + /global@4.4.0: + resolution: + { + integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== + } + dependencies: + min-document: 2.19.0 + process: 0.11.10 + 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 + dev: true + + /globals@13.24.0: + resolution: + { + integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== + } + engines: { node: '>=8' } + dependencies: + type-fest: 0.20.2 + + /globals@14.0.0: + resolution: + { + integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== + } + engines: { node: '>=18' } + dev: true + + /globalthis@1.0.3: + resolution: + { + integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== + } + engines: { node: '>= 0.4' } + dependencies: + define-properties: 1.2.1 + + /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.1 + merge2: 1.4.1 + slash: 3.0.0 + + /globby@9.2.0: + resolution: + { + integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg== + } + engines: { node: '>=6' } + dependencies: + '@types/glob': 7.1.1 + array-union: 1.0.2 + dir-glob: 2.2.2 + fast-glob: 2.2.7 + glob: 7.2.3 + ignore: 4.0.6 + pify: 4.0.1 + slash: 2.0.0 + dev: true + + /gopd@1.0.1: + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + } + dependencies: + get-intrinsic: 1.2.4 + + /got@11.8.6: + resolution: + { + integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g== + } + engines: { node: '>=10.19.0' } + dependencies: + '@sindresorhus/is': 4.6.0 + '@szmarczak/http-timer': 4.0.6 + '@types/cacheable-request': 6.0.3 + '@types/responselike': 1.0.3 + cacheable-lookup: 5.0.4 + cacheable-request: 7.0.4 + decompress-response: 6.0.0 + http2-wrapper: 1.0.3 + lowercase-keys: 2.0.0 + p-cancelable: 2.1.1 + responselike: 2.0.1 + + /graceful-fs@4.2.11: + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + } + + /graceful-fs@4.2.4: + resolution: + { + integrity: sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== + } + dev: false + + /grapheme-splitter@1.0.4: + resolution: + { + integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + } + dev: true + + /graphemer@1.4.0: + resolution: + { + integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + } + + /graphql@16.8.1: + resolution: + { + integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw== + } + engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 } + requiresBuild: true + dev: true + optional: true + + /gzip-size@6.0.0: + resolution: + { + integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q== + } + engines: { node: '>=10' } + dependencies: + duplexer: 0.1.2 + + /handle-thing@2.0.1: + resolution: + { + integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== + } + dev: false + + /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 + + /hard-rejection@2.1.0: + resolution: + { + integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== + } + engines: { node: '>=6' } + dev: false + + /has-bigints@1.0.2: + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + } + + /has-flag@3.0.0: + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + } + engines: { node: '>=4' } + + /has-flag@4.0.0: + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + } + engines: { node: '>=8' } + + /has-glob@1.0.0: + resolution: + { + integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g== + } + engines: { node: '>=0.10.0' } + dependencies: + is-glob: 3.1.0 + dev: true + + /has-property-descriptors@1.0.2: + resolution: + { + integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + } + dependencies: + es-define-property: 1.0.0 + + /has-proto@1.0.3: + resolution: + { + integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + } + engines: { node: '>= 0.4' } + + /has-symbols@1.0.3: + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + } + engines: { node: '>= 0.4' } + + /has-tostringtag@1.0.2: + resolution: + { + integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + } + engines: { node: '>= 0.4' } + dependencies: + has-symbols: 1.0.3 + + /has-unicode@2.0.1: + resolution: + { + integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + } + dev: true + + /has-value@0.3.1: + resolution: + { + integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q== + } + engines: { node: '>=0.10.0' } + dependencies: + get-value: 2.0.6 + has-values: 0.1.4 + isobject: 2.1.0 + + /has-value@1.0.0: + resolution: + { + integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw== + } + engines: { node: '>=0.10.0' } + dependencies: + get-value: 2.0.6 + has-values: 1.0.0 + isobject: 3.0.1 + + /has-values@0.1.4: + resolution: + { + integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ== + } + engines: { node: '>=0.10.0' } + + /has-values@1.0.0: + resolution: + { + integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ== + } + engines: { node: '>=0.10.0' } + dependencies: + is-number: 3.0.0 + kind-of: 4.0.0 + + /has-yarn@2.1.0: + resolution: + { + integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== + } + engines: { node: '>=8' } + + /has@1.0.4: + resolution: + { + integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ== + } + engines: { node: '>= 0.4.0' } + dev: false + + /hash-base@3.0.4: + resolution: + { + integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow== + } + engines: { node: '>=4' } + dependencies: + inherits: 2.0.4 + safe-buffer: 5.2.1 + + /hash-base@3.1.0: + resolution: + { + integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== + } + engines: { node: '>=4' } + dependencies: + inherits: 2.0.4 + readable-stream: 3.6.2 + safe-buffer: 5.2.1 + + /hash.js@1.1.7: + resolution: + { + integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + } + dependencies: + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + + /hasown@2.0.2: + resolution: + { + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + } + engines: { node: '>= 0.4' } + dependencies: + function-bind: 1.1.2 + + /hast-to-hyperscript@9.0.1: + resolution: + { + integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA== + } + dependencies: + '@types/unist': 2.0.10 + comma-separated-tokens: 1.0.8 + property-information: 5.6.0 + space-separated-tokens: 1.1.5 + style-to-object: 0.3.0 + unist-util-is: 4.1.0 + web-namespaces: 1.1.4 + dev: true + + /hast-util-from-parse5@6.0.1: + resolution: + { + integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA== + } + dependencies: + '@types/parse5': 5.0.3 + hastscript: 6.0.0 + property-information: 5.6.0 + vfile: 4.2.1 + vfile-location: 3.2.0 + web-namespaces: 1.1.4 + dev: true + + /hast-util-parse-selector@2.2.5: + resolution: + { + integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ== + } + dev: true + + /hast-util-raw@6.0.1: + resolution: + { + integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig== + } + dependencies: + '@types/hast': 2.3.10 + hast-util-from-parse5: 6.0.1 + hast-util-to-parse5: 6.0.0 + html-void-elements: 1.0.5 + parse5: 6.0.1 + unist-util-position: 3.1.0 + vfile: 4.2.1 + web-namespaces: 1.1.4 + xtend: 4.0.2 + zwitch: 1.0.5 + dev: true + + /hast-util-to-parse5@6.0.0: + resolution: + { + integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ== + } + dependencies: + hast-to-hyperscript: 9.0.1 + property-information: 5.6.0 + web-namespaces: 1.1.4 + xtend: 4.0.2 + zwitch: 1.0.5 + dev: true + + /hastscript@6.0.0: + resolution: + { + integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w== + } + dependencies: + '@types/hast': 2.3.10 + comma-separated-tokens: 1.0.8 + hast-util-parse-selector: 2.2.5 + property-information: 5.6.0 + space-separated-tokens: 1.1.5 + dev: true + + /he@1.2.0: + resolution: + { + integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + } + hasBin: true + + /highlight-es@1.0.3: + resolution: + { + integrity: sha512-s/SIX6yp/5S1p8aC/NRDC1fwEb+myGIfp8/TzZz0rtAv8fzsdX7vGl3Q1TrXCsczFq8DI3CBFBCySPClfBSdbg== + } + dependencies: + chalk: 2.4.2 + is-es2016-keyword: 1.0.0 + js-tokens: 3.0.2 + dev: false + + /highlight.js@10.7.3: + resolution: + { + integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A== + } + dev: true + + /history@5.0.0: + resolution: + { + integrity: sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg== + } + dependencies: + '@babel/runtime': 7.24.0 + dev: true + + /hmac-drbg@1.0.1: + resolution: + { + integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + } + dependencies: + hash.js: 1.1.7 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 + + /hoist-non-react-statics@3.3.2: + resolution: + { + integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + } + dependencies: + react-is: 16.13.1 + + /homedir-polyfill@1.0.3: + resolution: + { + integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== + } + engines: { node: '>=0.10.0' } + dependencies: + parse-passwd: 1.0.0 + + /hosted-git-info@2.8.9: + resolution: + { + integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + } + + /hosted-git-info@4.1.0: + resolution: + { + integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== + } + engines: { node: '>=10' } + dependencies: + lru-cache: 6.0.0 + + /hpack.js@2.1.6: + resolution: + { + integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== + } + dependencies: + inherits: 2.0.4 + obuf: 1.1.2 + readable-stream: 2.3.8 + wbuf: 1.7.3 + dev: false + + /html-encoding-sniffer@3.0.0: + resolution: + { + integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== + } + engines: { node: '>=12' } + dependencies: + whatwg-encoding: 2.0.0 + + /html-entities@2.5.2: + resolution: + { + integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA== + } + + /html-escaper@2.0.2: + resolution: + { + integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + } + + /html-minifier-terser@5.1.1: + resolution: + { + integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== + } + engines: { node: '>=6' } + hasBin: true + dependencies: + camel-case: 4.1.2 + clean-css: 4.2.4 + commander: 4.1.1 + he: 1.2.0 + param-case: 3.0.4 + relateurl: 0.2.7 + terser: 4.8.1 + + /html-minifier-terser@6.1.0: + resolution: + { + integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== + } + engines: { node: '>=12' } + hasBin: true + dependencies: + camel-case: 4.1.2 + clean-css: 5.3.3 + commander: 8.3.0 + he: 1.2.0 + param-case: 3.0.4 + relateurl: 0.2.7 + terser: 5.29.2 + + /html-tags@3.3.1: + resolution: + { + integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== + } + engines: { node: '>=8' } + dev: true + + /html-void-elements@1.0.5: + resolution: + { + integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w== + } + dev: true + + /html-webpack-plugin@4.5.2(webpack@4.47.0): + resolution: + { + integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A== + } + engines: { node: '>=6.9' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + '@types/html-minifier-terser': 5.1.2 + '@types/tapable': 1.0.6 + '@types/webpack': 4.41.32 + html-minifier-terser: 5.1.1 + loader-utils: 1.4.2 + lodash: 4.17.21 + pretty-error: 2.1.2 + tapable: 1.1.3 + util.promisify: 1.0.0 + webpack: 4.47.0(webpack-cli@3.3.12) + + /html-webpack-plugin@5.5.4(webpack@5.82.1): + resolution: + { + integrity: sha512-3wNSaVVxdxcu0jd4FpQFoICdqgxs4zIQQvj+2yQKFfBOnLETQ6X5CDWdeasuGlSsooFlMkEioWDTqBv1wvw5Iw== + } + engines: { node: '>=10.13.0' } + peerDependencies: + webpack: ^5.20.0 || ^4 || ^5 + dependencies: + '@types/html-minifier-terser': 6.1.0 + html-minifier-terser: 6.1.0 + lodash: 4.17.21 + pretty-error: 4.0.0 + tapable: 2.2.1 + webpack: 5.82.1 + + /htmlparser2@6.1.0: + resolution: + { + integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== + } + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + domutils: 2.8.0 + entities: 2.2.0 + + /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== + } + + /http-deceiver@1.2.7: + resolution: + { + integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== + } + dev: false + + /http-errors@1.6.3: + resolution: + { + integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== + } + engines: { node: '>= 0.6' } + dependencies: + depd: 1.1.2 + inherits: 2.0.3 + setprototypeof: 1.1.0 + statuses: 1.5.0 + dev: false + + /http-errors@1.8.1: + resolution: + { + integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== + } + engines: { node: '>= 0.6' } + dependencies: + depd: 1.1.2 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 1.5.0 + toidentifier: 1.0.1 + dev: false + + /http-errors@2.0.0: + resolution: + { + integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== + } + engines: { node: '>= 0.8' } + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + + /http-parser-js@0.5.8: + resolution: + { + integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== + } + dev: false + + /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(supports-color@8.1.1) + 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(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + /http-proxy-agent@7.0.2: + resolution: + { + integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== + } + engines: { node: '>= 14' } + dependencies: + agent-base: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: false + + /http-proxy-middleware@2.0.6: + resolution: + { + integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== + } + engines: { node: '>=12.0.0' } + dependencies: + '@types/express': 4.17.21 + '@types/http-proxy': 1.17.14 + http-proxy: 1.18.1 + is-glob: 4.0.3 + is-plain-obj: 3.0.0 + micromatch: 4.0.5 + transitivePeerDependencies: + - debug + dev: false + + /http-proxy@1.18.1: + resolution: + { + integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== + } + engines: { node: '>=8.0.0' } + dependencies: + eventemitter3: 4.0.7 + follow-redirects: 1.15.6 + requires-port: 1.0.0 + transitivePeerDependencies: + - debug + + /http2-express-bridge@1.0.7(@types/express@4.17.21): + resolution: + { + integrity: sha512-bmzZSyn3nuzXRqs/+WgH7IGOQYMCIZNJeqTJ/1AoDgMPTSP5wXQCxPGsdUbGzzxwiHrMwyT4Z7t8ccbsKqiHrw== + } + engines: { node: '>= 10.0.0' } + peerDependencies: + '@types/express': '*' + dependencies: + '@types/express': 4.17.21 + merge-descriptors: 1.0.3 + send: 0.17.2 + setprototypeof: 1.2.0 + dev: false + + /http2-wrapper@1.0.3: + resolution: + { + integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg== + } + engines: { node: '>=10.19.0' } + dependencies: + quick-lru: 5.1.1 + resolve-alpn: 1.2.1 + + /https-browserify@1.0.0: + resolution: + { + integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== + } + + /https-proxy-agent@4.0.0: + resolution: + { + integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg== + } + engines: { node: '>= 6.0.0' } + dependencies: + agent-base: 5.1.1 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + 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(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + /https-proxy-agent@7.0.4: + resolution: + { + integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg== + } + engines: { node: '>= 14' } + dependencies: + agent-base: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: false + + /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 + + /iconv-lite@0.4.24: + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + } + engines: { node: '>=0.10.0' } + dependencies: + safer-buffer: 2.1.2 + + /iconv-lite@0.6.3: + resolution: + { + integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + } + engines: { node: '>=0.10.0' } + dependencies: + safer-buffer: 2.1.2 + + /icss-utils@4.1.1: + resolution: + { + integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== + } + engines: { node: '>= 6' } + dependencies: + postcss: 7.0.39 + dev: true + + /icss-utils@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + } + engines: { node: ^10 || ^12 || >= 14 } + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.36 + + /ieee754@1.1.13: + resolution: + { + integrity: sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== + } + dev: true + + /ieee754@1.2.1: + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + } + + /iferr@0.1.5: + resolution: + { + integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA== + } + + /ignore-walk@3.0.4: + resolution: + { + integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ== + } + dependencies: + minimatch: 3.0.8 + dev: false + + /ignore@4.0.6: + resolution: + { + integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + } + engines: { node: '>= 4' } + dev: true + + /ignore@5.1.9: + resolution: + { + integrity: sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ== + } + engines: { node: '>= 4' } + + /ignore@5.3.1: + resolution: + { + integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + } + engines: { node: '>= 4' } + + /immediate@3.0.6: + resolution: + { + integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ== + } + dev: false + + /immer@9.0.21: + resolution: + { + integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA== + } + + /immutable@4.3.5: + resolution: + { + integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw== + } + dev: false + + /import-fresh@3.3.0: + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + } + engines: { node: '>=6' } + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + /import-lazy@2.1.0: + resolution: + { + integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A== + } + engines: { node: '>=4' } + + /import-lazy@4.0.0: + resolution: + { + integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== + } + engines: { node: '>=8' } + + /import-local@2.0.0: + resolution: + { + integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== + } + engines: { node: '>=6' } + hasBin: true + dependencies: + pkg-dir: 3.0.0 + resolve-cwd: 2.0.0 + + /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' } + + /indent-string@4.0.0: + resolution: + { + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + } + engines: { node: '>=8' } + + /indent-string@5.0.0: + resolution: + { + integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg== + } + engines: { node: '>=12' } + dev: true + + /individual@3.0.0: + resolution: + { + integrity: sha512-rUY5vtT748NMRbEMrTNiFfy29BgGZwGXUi2NFUVMWQrogSLzlJvQV9eeMWi+g1aVaQ53tpyLAQtd5x/JH0Nh1g== + } + dev: true + + /infer-owner@1.0.4: + resolution: + { + integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + } + + /inflight@1.0.6: + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + } + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + /inherits@2.0.3: + resolution: + { + integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + } + + /inherits@2.0.4: + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + } + + /ini@1.3.8: + resolution: + { + integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + } + + /ini@2.0.0: + resolution: + { + integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== + } + engines: { node: '>=10' } + + /inline-style-parser@0.1.1: + resolution: + { + integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q== + } + dev: true + + /inpath@1.0.2: + resolution: + { + integrity: sha512-DTt55ovuYFC62a8oJxRjV2MmTPUdxN43Gd8I2ZgawxbAha6PvJkDQy/RbZGFCJF5IXrpp4PAYtW1w3aV7jXkew== + } + dev: false + + /inquirer@7.3.3: + resolution: + { + integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== + } + engines: { node: '>=8.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.0.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + run-async: 2.4.1 + rxjs: 6.6.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + dev: false + + /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 + + /interpret@1.4.0: + resolution: + { + integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + } + engines: { node: '>= 0.10' } + + /interpret@2.2.0: + resolution: + { + integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== + } + engines: { node: '>= 0.10' } + dev: true + + /invariant@2.2.4: + resolution: + { + integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + } + dependencies: + loose-envify: 1.4.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 + + /ip@1.1.9: + resolution: + { + integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ== + } + dev: true + + /ipaddr.js@1.9.1: + resolution: + { + integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + } + engines: { node: '>= 0.10' } + + /ipaddr.js@2.1.0: + resolution: + { + integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ== + } + engines: { node: '>= 10' } + dev: false + + /is-absolute-url@3.0.3: + resolution: + { + integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== + } + engines: { node: '>=8' } + dev: true + + /is-accessor-descriptor@1.0.1: + resolution: + { + integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA== + } + engines: { node: '>= 0.10' } + dependencies: + hasown: 2.0.2 + + /is-alphabetical@1.0.4: + resolution: + { + integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== + } + dev: true + + /is-alphanumerical@1.0.4: + resolution: + { + integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== + } + dependencies: + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + dev: true + + /is-arguments@1.1.1: + resolution: + { + integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + has-tostringtag: 1.0.2 + 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 + + /is-arrayish@0.2.1: + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + } + + /is-async-function@2.0.0: + resolution: + { + integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA== + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.2 + + /is-bigint@1.0.4: + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + } + dependencies: + has-bigints: 1.0.2 + + /is-binary-path@1.0.1: + resolution: + { + integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q== + } + engines: { node: '>=0.10.0' } + requiresBuild: true + dependencies: + binary-extensions: 1.13.1 + optional: true + + /is-binary-path@2.1.0: + resolution: + { + integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + } + engines: { node: '>=8' } + dependencies: + binary-extensions: 2.3.0 + + /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 + + /is-buffer@1.1.6: + resolution: + { + integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + } + + /is-buffer@2.0.5: + resolution: + { + integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== + } + engines: { node: '>=4' } + dev: true + + /is-callable@1.2.7: + resolution: + { + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + } + engines: { node: '>= 0.4' } + + /is-ci@2.0.0: + resolution: + { + integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + } + hasBin: true + dependencies: + ci-info: 2.0.0 + + /is-core-module@2.13.1: + resolution: + { + integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== + } + dependencies: + hasown: 2.0.2 + + /is-data-descriptor@1.0.1: + resolution: + { + integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw== + } + engines: { node: '>= 0.4' } + dependencies: + hasown: 2.0.2 + + /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 + + /is-date-object@1.0.5: + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.2 + + /is-decimal@1.0.4: + resolution: + { + integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== + } + dev: true + + /is-descriptor@0.1.7: + resolution: + { + integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg== + } + engines: { node: '>= 0.4' } + dependencies: + is-accessor-descriptor: 1.0.1 + is-data-descriptor: 1.0.1 + + /is-descriptor@1.0.3: + resolution: + { + integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw== + } + engines: { node: '>= 0.4' } + dependencies: + is-accessor-descriptor: 1.0.1 + is-data-descriptor: 1.0.1 + + /is-docker@2.2.1: + resolution: + { + integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + } + engines: { node: '>=8' } + hasBin: true + + /is-dom@1.1.0: + resolution: + { + integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ== + } + dependencies: + is-object: 1.0.2 + is-window: 1.0.2 + dev: true + + /is-es2016-keyword@1.0.0: + resolution: + { + integrity: sha512-JtZWPUwjdbQ1LIo9OSZ8MdkWEve198ors27vH+RzUUvZXXZkzXCxFnlUhzWYxy5IexQSRiXVw9j2q/tHMmkVYQ== + } + dev: false + + /is-extendable@0.1.1: + resolution: + { + integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== + } + engines: { node: '>=0.10.0' } + + /is-extendable@1.0.1: + resolution: + { + integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + } + engines: { node: '>=0.10.0' } + dependencies: + is-plain-object: 2.0.4 + + /is-extglob@2.1.1: + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + } + engines: { node: '>=0.10.0' } + + /is-finalizationregistry@1.0.2: + resolution: + { + integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw== + } + dependencies: + call-bind: 1.0.7 + + /is-fullwidth-code-point@1.0.0: + resolution: + { + integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== + } + engines: { node: '>=0.10.0' } + dependencies: + number-is-nan: 1.0.1 + dev: true + + /is-fullwidth-code-point@2.0.0: + resolution: + { + integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== + } + engines: { node: '>=4' } + + /is-fullwidth-code-point@3.0.0: + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + } + engines: { node: '>=8' } + + /is-function@1.0.2: + resolution: + { + integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== + } + dev: true + + /is-generator-fn@2.1.0: + resolution: + { + integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + } + engines: { node: '>=6' } + + /is-generator-function@1.0.10: + resolution: + { + integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.2 + + /is-glob@3.1.0: + resolution: + { + integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw== + } + engines: { node: '>=0.10.0' } + dependencies: + is-extglob: 2.1.1 + + /is-glob@4.0.3: + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + } + engines: { node: '>=0.10.0' } + dependencies: + is-extglob: 2.1.1 + + /is-hexadecimal@1.0.4: + resolution: + { + integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== + } + dev: true + + /is-installed-globally@0.4.0: + resolution: + { + integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== + } + engines: { node: '>=10' } + dependencies: + global-dirs: 3.0.1 + is-path-inside: 3.0.3 + + /is-interactive@1.0.0: + resolution: + { + integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + } + engines: { node: '>=8' } + dev: false + + /is-lambda@1.0.1: + resolution: + { + integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== + } + dev: true + + /is-map@2.0.3: + resolution: + { + integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== + } + engines: { node: '>= 0.4' } + + /is-negative-zero@2.0.3: + resolution: + { + integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== + } + engines: { node: '>= 0.4' } + + /is-npm@5.0.0: + resolution: + { + integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA== + } + engines: { node: '>=10' } + + /is-number-object@1.0.7: + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.2 + + /is-number@3.0.0: + resolution: + { + integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg== + } + engines: { node: '>=0.10.0' } + dependencies: + kind-of: 3.2.2 + + /is-number@7.0.0: + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + } + engines: { node: '>=0.12.0' } + + /is-obj@2.0.0: + resolution: + { + integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + } + engines: { node: '>=8' } + + /is-object@1.0.2: + resolution: + { + integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA== + } + dev: true + + /is-path-inside@3.0.3: + resolution: + { + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + } + engines: { node: '>=8' } + + /is-plain-obj@1.1.0: + resolution: + { + integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== + } + engines: { node: '>=0.10.0' } + dev: false + + /is-plain-obj@2.1.0: + resolution: + { + integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + } + engines: { node: '>=8' } + + /is-plain-obj@3.0.0: + resolution: + { + integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + } + engines: { node: '>=10' } + dev: false + + /is-plain-object@2.0.4: + resolution: + { + integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + } + engines: { node: '>=0.10.0' } + dependencies: + isobject: 3.0.1 + + /is-plain-object@5.0.0: + 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== + } + + /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 + + /is-set@2.0.3: + resolution: + { + integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== + } + engines: { node: '>= 0.4' } + + /is-shared-array-buffer@1.0.3: + resolution: + { + integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + + /is-stream@1.1.0: + resolution: + { + integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== + } + engines: { node: '>=0.10.0' } + 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 + + /is-subdir@1.2.0: + resolution: + { + integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw== + } + engines: { node: '>=4' } + dependencies: + better-path-resolve: 1.0.0 + dev: false + + /is-symbol@1.0.4: + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + } + engines: { node: '>= 0.4' } + dependencies: + has-symbols: 1.0.3 + + /is-typed-array@1.1.13: + resolution: + { + integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== + } + engines: { node: '>= 0.4' } + dependencies: + which-typed-array: 1.1.15 + + /is-typedarray@1.0.0: + resolution: + { + integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + } + + /is-unicode-supported@0.1.0: + resolution: + { + integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + } + engines: { node: '>=10' } + + /is-weakmap@2.0.2: + resolution: + { + integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== + } + engines: { node: '>= 0.4' } + + /is-weakref@1.0.2: + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + } + dependencies: + call-bind: 1.0.7 + + /is-weakset@2.0.3: + resolution: + { + integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + + /is-whitespace-character@1.0.4: + resolution: + { + integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w== + } + dev: true + + /is-window@1.0.2: + resolution: + { + integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg== + } + dev: true + + /is-windows@1.0.2: + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + } + engines: { node: '>=0.10.0' } + + /is-word-character@1.0.4: + resolution: + { + integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA== + } + dev: true + + /is-wsl@1.1.0: + resolution: + { + integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== + } + engines: { node: '>=4' } + + /is-wsl@2.2.0: + resolution: + { + integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + } + engines: { node: '>=8' } + dependencies: + is-docker: 2.2.1 + + /is-yarn-global@0.3.0: + resolution: + { + integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw== + } + + /isarray@1.0.0: + resolution: + { + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + } + + /isarray@2.0.5: + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + } + + /isexe@2.0.0: + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + } + + /isobject@2.1.0: + resolution: + { + integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA== + } + engines: { node: '>=0.10.0' } + dependencies: + isarray: 1.0.0 + + /isobject@3.0.1: + resolution: + { + integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + } + engines: { node: '>=0.10.0' } + + /isobject@4.0.0: + resolution: + { + integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA== + } + engines: { node: '>=0.10.0' } + dev: true + + /istanbul-lib-coverage@3.2.2: + resolution: + { + integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== + } + engines: { node: '>=8' } + + /istanbul-lib-instrument@5.2.1(supports-color@8.1.1): + resolution: + { + integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + } + engines: { node: '>=8' } + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/parser': 7.24.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /istanbul-lib-instrument@6.0.2: + resolution: + { + integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw== + } + engines: { node: '>=10' } + dependencies: + '@babel/core': 7.24.0 + '@babel/parser': 7.24.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.2 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + 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(supports-color@8.1.1): + resolution: + { + integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== + } + engines: { node: '>=10' } + dependencies: + debug: 4.3.4(supports-color@8.1.1) + 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 + + /iterate-iterator@1.0.2: + resolution: + { + integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw== + } + dev: true + + /iterate-value@1.0.2: + resolution: + { + integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ== + } + dependencies: + es-get-iterator: 1.1.3 + iterate-iterator: 1.0.2 + dev: true + + /iterator.prototype@1.1.2: + resolution: + { + integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w== + } + dependencies: + define-properties: 1.2.1 + get-intrinsic: 1.2.4 + has-symbols: 1.0.3 + reflect.getprototypeof: 1.0.6 + set-function-name: 2.0.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(supports-color@8.1.1): + 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(supports-color@8.1.1) + '@jest/test-result': 29.7.0(@types/node@20.12.12) + '@jest/types': 29.6.3 + '@types/node': 20.12.12 + 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(supports-color@8.1.1) + jest-snapshot: 29.7.0(supports-color@8.1.1) + 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 + + /jest-cli@29.7.0(@types/node@18.17.15): + 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 + '@jest/test-result': 29.7.0(@types/node@18.17.15) + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@18.17.15) + exit: 0.1.2 + import-local: 3.1.0 + jest-config: 29.7.0(@types/node@18.17.15) + 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@18.17.15)(supports-color@8.1.1): + 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.20.12(supports-color@8.1.1) + '@jest/test-sequencer': 29.7.0(@types/node@18.17.15) + '@jest/types': 29.5.0 + '@types/node': 18.17.15 + babel-jest: 29.7.0(@babel/core@7.20.12)(supports-color@8.1.1) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(supports-color@8.1.1) + jest-environment-node: 29.5.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.5.0 + jest-runner: 29.7.0(supports-color@8.1.1) + 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 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + /jest-config@29.5.0(@types/node@20.12.12)(supports-color@8.1.1): + 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.20.12(supports-color@8.1.1) + '@jest/test-sequencer': 29.7.0(@types/node@20.12.12) + '@jest/types': 29.5.0 + '@types/node': 20.12.12 + babel-jest: 29.7.0(@babel/core@7.20.12)(supports-color@8.1.1) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(supports-color@8.1.1) + jest-environment-node: 29.5.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.5.0 + jest-runner: 29.7.0(supports-color@8.1.1) + 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 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + /jest-config@29.7.0(@types/node@18.17.15): + 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.20.12(supports-color@8.1.1) + '@jest/test-sequencer': 29.7.0(@types/node@18.17.15) + '@jest/types': 29.6.3 + '@types/node': 18.17.15 + babel-jest: 29.7.0(@babel/core@7.20.12)(supports-color@8.1.1) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(supports-color@8.1.1) + 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(supports-color@8.1.1) + 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 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + dev: true + + /jest-config@29.7.0(@types/node@20.12.12): + 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.20.12(supports-color@8.1.1) + '@jest/test-sequencer': 29.7.0(@types/node@20.12.12) + '@jest/types': 29.6.3 + '@types/node': 20.12.12 + babel-jest: 29.7.0(@babel/core@7.20.12)(supports-color@8.1.1) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(supports-color@8.1.1) + 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(supports-color@8.1.1) + 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 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + dev: true + + /jest-diff@27.5.1: + resolution: + { + integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + dependencies: + chalk: 4.1.2 + diff-sequences: 27.5.1 + jest-get-type: 27.5.1 + pretty-format: 27.5.1 + 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 + + /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.5.0: + resolution: + { + integrity: sha512-/KG8yEK4aN8ak56yFVdqFDzKNHgF4BAymCx2LbPNPsUshUlfAl0eX402Xm1pt+eoG9SLZEUVifqXtX8SK74KCw== + } + 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.5.0 + '@types/jsdom': 20.0.1 + '@types/node': 20.12.12 + jest-mock: 29.7.0 + jest-util: 29.7.0 + jsdom: 20.0.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + /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.5.0 + '@types/node': 20.12.12 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + /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.12.12 + jest-mock: 29.7.0 + jest-util: 29.7.0 + + /jest-get-type@27.5.1: + resolution: + { + integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + dev: true + + /jest-get-type@29.6.3: + resolution: + { + integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + /jest-haste-map@26.6.2: + resolution: + { + integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w== + } + engines: { node: '>= 10.14.2' } + dependencies: + '@jest/types': 26.6.2 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.12.12 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + jest-regex-util: 26.0.0 + jest-serializer: 26.6.2 + jest-util: 26.6.2 + jest-worker: 26.6.2 + micromatch: 4.0.5 + sane: 4.1.0 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + 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.12.12 + 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@12.3.0: + resolution: + { + integrity: sha512-+NmE5ogsEjFppEl90GChrk7xgz8xzvF0f+ZT5AnhW6suJC93gvQtmQjfyjDnE0Z2nXJqEkxF0WXlvjG/J+wn/g== + } + engines: { node: '>=10.12.0' } + dependencies: + mkdirp: 1.0.4 + strip-ansi: 5.2.0 + uuid: 8.3.2 + xml: 1.0.1 + dev: false + + /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@27.5.1: + resolution: + { + integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + dependencies: + chalk: 4.1.2 + jest-diff: 27.5.1 + jest-get-type: 27.5.1 + pretty-format: 27.5.1 + 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@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 + + /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.12.12 + jest-util: 29.7.0 + + /jest-pnp-resolver@1.2.3(jest-resolve@29.5.0): + resolution: + { + integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== + } + engines: { node: '>=6' } + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 29.5.0 + + /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@26.0.0: + resolution: + { + integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== + } + engines: { node: '>= 10.14.2' } + 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(supports-color@8.1.1): + 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(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + + /jest-resolve@29.5.0: + resolution: + { + integrity: sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.5.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-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(supports-color@8.1.1): + 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(@types/node@20.12.12) + '@jest/transform': 29.7.0(supports-color@8.1.1) + '@jest/types': 29.6.3 + '@types/node': 20.12.12 + 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(supports-color@8.1.1) + 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(supports-color@8.1.1): + 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(supports-color@8.1.1) + '@jest/source-map': 29.6.3 + '@jest/test-result': 29.7.0(@types/node@20.12.12) + '@jest/transform': 29.7.0(supports-color@8.1.1) + '@jest/types': 29.6.3 + '@types/node': 20.12.12 + chalk: 4.1.2 + cjs-module-lexer: 1.2.3 + collect-v8-coverage: 1.0.2(@types/node@20.12.12) + glob: 7.2.3 + 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(supports-color@8.1.1) + jest-util: 29.7.0 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + + /jest-serializer@26.6.2: + resolution: + { + integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g== + } + engines: { node: '>= 10.14.2' } + dependencies: + '@types/node': 20.12.12 + graceful-fs: 4.2.11 + dev: true + + /jest-snapshot@29.5.0(supports-color@8.1.1): + resolution: + { + integrity: sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/generator': 7.23.6 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.20.12) + '@babel/traverse': 7.24.0(supports-color@8.1.1) + '@babel/types': 7.24.0 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.5.0(supports-color@8.1.1) + '@jest/types': 29.5.0 + '@types/babel__traverse': 7.20.5 + '@types/prettier': 2.7.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.12) + 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-snapshot@29.7.0(supports-color@8.1.1): + resolution: + { + integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/generator': 7.23.6 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.20.12) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.20.12) + '@babel/types': 7.24.0 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0(supports-color@8.1.1) + '@jest/types': 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.12) + 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-util@26.6.2: + resolution: + { + integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q== + } + engines: { node: '>= 10.14.2' } + dependencies: + '@jest/types': 26.6.2 + '@types/node': 20.12.12 + chalk: 4.1.2 + graceful-fs: 4.2.11 + is-ci: 2.0.0 + micromatch: 4.0.5 + 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.12.12 + 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-get-type: 29.6.3 + leven: 3.1.0 + pretty-format: 29.7.0 + + /jest-watch-select-projects@2.0.0: + resolution: + { + integrity: sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w== + } + dependencies: + ansi-escapes: 4.3.2 + chalk: 3.0.0 + prompts: 2.4.2 + 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(@types/node@20.12.12) + '@jest/types': 29.6.3 + '@types/node': 20.12.12 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.13.1 + jest-util: 29.7.0 + string-length: 4.0.2 + + /jest-worker@26.6.2: + resolution: + { + integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== + } + engines: { node: '>= 10.13.0' } + dependencies: + '@types/node': 20.12.12 + merge-stream: 2.0.0 + supports-color: 7.2.0 + dev: true + + /jest-worker@27.5.1: + resolution: + { + integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== + } + engines: { node: '>= 10.13.0' } + dependencies: + '@types/node': 20.12.12 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + /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.12.12 + jest-util: 29.7.0 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + /jest@29.3.1(@types/node@18.17.15): + resolution: + { + integrity: sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA== + } + 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.5.0(supports-color@8.1.1) + '@jest/types': 29.5.0 + import-local: 3.1.0 + jest-cli: 29.7.0(@types/node@18.17.15) + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + dev: true + + /jju@1.4.0: + resolution: + { + integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA== + } + + /jmespath@0.16.0: + resolution: + { + integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw== + } + engines: { node: '>= 0.6.0' } + dev: true + + /js-sdsl@4.4.2: + resolution: + { + integrity: sha512-dwXFwByc/ajSV6m5bcKAPwe4yDDF6D614pxmIi5odytzxRlwqF6nwoiCek80Ixc7Cvma5awClxrzFtxCQvcM8w== + } + dev: true + + /js-string-escape@1.0.1: + resolution: + { + integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg== + } + engines: { node: '>= 0.8' } + dev: true + + /js-tokens@3.0.2: + resolution: + { + integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg== + } + dev: false + + /js-tokens@4.0.0: + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + } + + /js-yaml@3.13.1: + resolution: + { + integrity: sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== + } + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + + /js-yaml@3.14.1: + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + } + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: false + + /js-yaml@4.1.0: + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + } + hasBin: true + dependencies: + argparse: 2.0.1 + + /jsbn@1.1.0: + resolution: + { + integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== + } + dev: true + + /jscodeshift@0.13.1(@babel/preset-env@7.24.0): + resolution: + { + integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ== + } + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/parser': 7.24.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.12) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.20.12) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.20.12) + '@babel/preset-env': 7.24.0(@babel/core@7.20.12) + '@babel/preset-flow': 7.24.0(@babel/core@7.20.12) + '@babel/preset-typescript': 7.23.3(@babel/core@7.20.12) + '@babel/register': 7.23.7(@babel/core@7.20.12) + babel-core: 7.0.0-bridge.0(@babel/core@7.20.12) + chalk: 4.1.2 + flow-parser: 0.231.0 + graceful-fs: 4.2.11 + micromatch: 3.1.10 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + dev: true + + /jsdoc-type-pratt-parser@2.2.5: + resolution: + { + integrity: sha512-2a6eRxSxp1BW040hFvaJxhsCMI9lT8QB8t14t+NY5tC5rckIR0U9cr2tjOeaFirmEOy6MHvmJnY7zTBHq431Lw== + } + engines: { node: '>=12.0.0' } + dev: false + + /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.14.2 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + /jsesc@0.5.0: + resolution: + { + integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + } + hasBin: true + dev: true + + /jsesc@2.5.2: + resolution: + { + integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + } + engines: { node: '>=4' } + 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== + } + + /json-parse-even-better-errors@2.3.1: + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + } + + /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== + } + + /json-schema-typed@7.0.3: + resolution: + { + integrity: sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A== + } + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + } + + /json-stringify-safe@5.0.1: + resolution: + { + integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + } + dev: true + + /json5@1.0.2: + resolution: + { + integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + } + hasBin: true + dependencies: + minimist: 1.2.8 + + /json5@2.2.3: + resolution: + { + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + } + engines: { node: '>=6' } + hasBin: 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 + dev: true + + /jsonpath-plus@4.0.0: + resolution: + { + integrity: sha512-e0Jtg4KAzDJKKwzbLaUtinCn0RZseWBVRTRGihSpvFlM3wTR7ExSp+PTdeTsDrLNJUe7L7JYJe8mblHX5SCT6A== + } + engines: { node: '>=10.0' } + + /jsonschema@1.4.1: + resolution: + { + integrity: sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ== + } + dev: true + + /jsonwebtoken@9.0.2: + resolution: + { + integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ== + } + engines: { node: '>=12', npm: '>=6' } + dependencies: + jws: 3.2.2 + lodash.includes: 4.3.0 + lodash.isboolean: 3.0.3 + lodash.isinteger: 4.0.4 + lodash.isnumber: 3.0.3 + lodash.isplainobject: 4.0.6 + lodash.isstring: 4.0.1 + lodash.once: 4.1.1 + ms: 2.1.3 + semver: 7.5.4 + dev: false + + /jsx-ast-utils@3.3.5: + resolution: + { + integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== + } + engines: { node: '>=4.0' } + dependencies: + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 + object.assign: 4.1.5 + object.values: 1.2.0 + + /jszip@2.7.0: + resolution: + { + integrity: sha512-JIsRKRVC3gTRo2vM4Wy9WBC3TRcfnIZU8k65Phi3izkvPH975FowRYtKGT6PxevA0XnJ/yO8b0QwV0ydVyQwfw== + } + dependencies: + pako: 1.0.11 + dev: true + + /jszip@3.8.0: + resolution: + { + integrity: sha512-cnpQrXvFSLdsR9KR5/x7zdf6c3m8IhZfZzSblFEHSqBaVwD2nvJ4CuCKLyvKvwBgZm08CgfSoiTBQLm5WW9hGw== + } + dependencies: + lie: 3.3.0 + pako: 1.0.11 + readable-stream: 2.3.8 + set-immediate-shim: 1.0.1 + dev: false + + /junk@3.1.0: + resolution: + { + integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ== + } + engines: { node: '>=8' } + dev: true + + /jwa@1.4.1: + resolution: + { + integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA== + } + dependencies: + buffer-equal-constant-time: 1.0.1 + ecdsa-sig-formatter: 1.0.11 + safe-buffer: 5.2.1 + dev: false + + /jwa@2.0.0: + resolution: + { + integrity: sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA== + } + dependencies: + buffer-equal-constant-time: 1.0.1 + ecdsa-sig-formatter: 1.0.11 + safe-buffer: 5.2.1 + dev: false + + /jws@3.2.2: + resolution: + { + integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA== + } + dependencies: + jwa: 1.4.1 + safe-buffer: 5.2.1 + dev: false + + /jws@4.0.0: + resolution: + { + integrity: sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg== + } + dependencies: + jwa: 2.0.0 + safe-buffer: 5.2.1 + dev: false + + /keyborg@2.5.0: + resolution: + { + integrity: sha512-nb4Ji1suqWqj6VXb61Jrs4ab/UWgtGph4wDch2NIZDfLBUObmLcZE0aiDjZY49ghtu03fvwxDNvS9ZB0XMz6/g== + } + dev: false + + /keytar@7.9.0: + resolution: + { + integrity: sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ== + } + requiresBuild: true + dependencies: + node-addon-api: 4.3.0 + prebuild-install: 7.1.2 + dev: true + + /keyv@4.5.4: + resolution: + { + integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + } + dependencies: + json-buffer: 3.0.1 + + /kind-of@3.2.2: + resolution: + { + integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== + } + engines: { node: '>=0.10.0' } + dependencies: + is-buffer: 1.1.6 + + /kind-of@4.0.0: + resolution: + { + integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw== + } + engines: { node: '>=0.10.0' } + dependencies: + is-buffer: 1.1.6 + + /kind-of@6.0.3: + resolution: + { + integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + } + engines: { node: '>=0.10.0' } + + /kleur@3.0.3: + resolution: + { + integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + } + engines: { node: '>=6' } + dev: true + + /klona@2.0.6: + resolution: + { + integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA== + } + engines: { node: '>= 8' } + + /kysely-codegen@0.6.2(kysely@0.21.6): + resolution: + { + integrity: sha512-AWiaSQ0CBuiHsB3ubBFCf8838BaG8sypdjWi7tCJoNcAvJo1Ls8WO+1YWOi6IAjU4fBO4kG/t1rj4EnSVQwm9A== + } + hasBin: true + peerDependencies: + better-sqlite3: ^7.6.2 + kysely: '>=0.19.12' + mysql2: ^2.3.3 + pg: ^8.7.3 + peerDependenciesMeta: + better-sqlite3: + optional: true + mysql2: + optional: true + pg: + optional: true + dependencies: + chalk: 4.1.2 + dotenv: 16.4.5 + kysely: 0.21.6 + micromatch: 4.0.5 + minimist: 1.2.8 + dev: true + + /kysely-data-api@0.1.4(aws-sdk@2.1580.0)(kysely@0.21.6): + resolution: + { + integrity: sha512-7xgXbNuhsBAOi3PWAc5vETt0kMPCMH9qeOSsmkoVVqhvswa9v3lWUxGOQGhg9ABQqFyTbJe+JdLgd/wChIMiFw== + } + peerDependencies: + aws-sdk: 2.x + kysely: 0.x + dependencies: + aws-sdk: 2.1580.0 + kysely: 0.21.6 + dev: true + + /kysely@0.21.6: + resolution: + { + integrity: sha512-DNecGKzzYtx2OumPJ8inrVFsSfq1lNHLFZDJvXMQxqbrTFElqq70VLR3DiK0P9fw4pB+xXTYvLiLurWiYqgk3w== + } + engines: { node: '>=14.0.0' } + dev: true + + /latest-version@5.1.0: + resolution: + { + integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA== + } + engines: { node: '>=8' } + dependencies: + package-json: 7.0.0 + + /lazy-universal-dotenv@3.0.1: + resolution: + { + integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ== + } + engines: { node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0' } + dependencies: + '@babel/runtime': 7.24.0 + app-root-dir: 1.0.2 + core-js: 3.36.0 + dotenv: 8.6.0 + dotenv-expand: 5.1.0 + dev: true + + /lazystream@1.0.1: + resolution: + { + integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw== + } + engines: { node: '>= 0.6.3' } + dependencies: + readable-stream: 2.3.8 + 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 + + /lie@3.3.0: + resolution: + { + integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ== + } + dependencies: + immediate: 3.0.6 + dev: false + + /light-my-request@4.12.0: + resolution: + { + integrity: sha512-0y+9VIfJEsPVzK5ArSIJ8Dkxp8QMP7/aCuxCUtG/tr9a2NoOf/snATE/OUc05XUplJCEnRh6gTkH7xh9POt1DQ== + } + dependencies: + ajv: 8.13.0 + cookie: 0.5.0 + process-warning: 1.0.0 + set-cookie-parser: 2.6.0 + dev: false + + /lilconfig@2.1.0: + resolution: + { + integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + } + engines: { node: '>=10' } + dev: false + + /lines-and-columns@1.2.4: + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + } + + /linkify-it@3.0.3: + resolution: + { + integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ== + } + dependencies: + uc.micro: 1.0.6 + dev: true + + /listenercount@1.0.1: + resolution: + { + integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ== + } + 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: false + + /load-yaml-file@0.2.0: + resolution: + { + integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw== + } + engines: { node: '>=6' } + dependencies: + graceful-fs: 4.2.11 + js-yaml: 3.13.1 + pify: 4.0.1 + strip-bom: 3.0.0 + dev: false + + /loader-runner@2.4.0: + resolution: + { + integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== + } + engines: { node: '>=4.3.0 <5.0.0 || >=5.10' } + + /loader-runner@4.3.0: + resolution: + { + integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + } + engines: { node: '>=6.11.5' } + + /loader-utils@1.4.2: + resolution: + { + integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg== + } + engines: { node: '>=4.0.0' } + dependencies: + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 1.0.2 + + /loader-utils@2.0.0: + resolution: + { + integrity: sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== + } + engines: { node: '>=8.9.0' } + dependencies: + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 2.2.3 + 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 + + /loader-utils@3.2.1: + resolution: + { + integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== + } + engines: { node: '>= 12.13.0' } + dev: false + + /locate-path@3.0.0: + resolution: + { + integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + } + engines: { node: '>=6' } + dependencies: + p-locate: 3.0.0 + path-exists: 3.0.0 + + /locate-path@5.0.0: + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + } + engines: { node: '>=8' } + dependencies: + p-locate: 4.1.0 + + /locate-path@6.0.0: + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + } + engines: { node: '>=10' } + dependencies: + p-locate: 5.0.0 + + /lodash.camelcase@4.3.0: + resolution: + { + integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== + } + dev: false + + /lodash.debounce@4.0.8: + resolution: + { + integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + } + dev: true + + /lodash.defaults@4.2.0: + resolution: + { + integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== + } + dev: true + + /lodash.difference@4.5.0: + resolution: + { + integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA== + } + dev: true + + /lodash.flatten@4.4.0: + resolution: + { + integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g== + } + dev: true + + /lodash.get@4.4.2: + resolution: + { + integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== + } + + /lodash.includes@4.3.0: + resolution: + { + integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w== + } + dev: false + + /lodash.isboolean@3.0.3: + resolution: + { + integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg== + } + dev: false + + /lodash.isequal@4.5.0: + resolution: + { + integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ== + } + + /lodash.isinteger@4.0.4: + resolution: + { + integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA== + } + dev: false + + /lodash.isnumber@3.0.3: + resolution: + { + integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw== + } + dev: false + + /lodash.isplainobject@4.0.6: + resolution: + { + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== + } + + /lodash.isstring@4.0.1: + resolution: + { + integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw== + } + dev: false + + /lodash.memoize@4.1.2: + resolution: + { + integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + } + dev: false + + /lodash.merge@4.6.2: + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + } + + /lodash.once@4.1.1: + resolution: + { + integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg== + } + dev: false + + /lodash.truncate@4.4.2: + resolution: + { + integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== + } + dev: true + + /lodash.union@4.6.0: + resolution: + { + integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw== + } + dev: true + + /lodash.uniq@4.5.0: + resolution: + { + integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== + } + + /lodash@4.17.21: + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + } + + /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 + + /log4js@6.9.1: + resolution: + { + integrity: sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g== + } + engines: { node: '>=8.0' } + dependencies: + date-format: 4.0.14 + debug: 4.3.4(supports-color@8.1.1) + flatted: 3.3.1 + rfdc: 1.3.1 + streamroller: 3.1.5 + transitivePeerDependencies: + - supports-color + dev: true + + /long@4.0.0: + resolution: + { + integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== + } + dev: false + + /loose-envify@1.4.0: + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + } + hasBin: true + dependencies: + js-tokens: 4.0.0 + + /lower-case@2.0.2: + resolution: + { + integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + } + dependencies: + tslib: 2.3.1 + + /lowercase-keys@2.0.0: + resolution: + { + integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== + } + engines: { node: '>=8' } + + /lowlight@1.20.0: + resolution: + { + integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw== + } + dependencies: + fault: 1.0.4 + highlight.js: 10.7.3 + dev: 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 + + /magic-string@0.30.8: + resolution: + { + integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ== + } + engines: { node: '>=12' } + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + dev: false + + /make-dir@2.1.0: + resolution: + { + integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + } + engines: { node: '>=6' } + dependencies: + pify: 4.0.1 + semver: 5.7.2 + + /make-dir@3.1.0: + resolution: + { + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + } + engines: { node: '>=8' } + dependencies: + semver: 6.3.1 + + /make-dir@4.0.0: + resolution: + { + integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== + } + engines: { node: '>=10' } + dependencies: + semver: 7.5.4 + + /make-fetch-happen@8.0.14: + resolution: + { + integrity: sha512-EsS89h6l4vbfJEtBZnENTOFk8mCRpY5ru36Xe5bcX1KYIli2mkSHqoFsp5O1wMDvTJJzxe/4THpCTtygjeeGWQ== + } + engines: { node: '>= 10' } + dependencies: + agentkeepalive: 4.5.0 + cacache: 15.3.0 + http-cache-semantics: 4.1.1 + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.1 + is-lambda: 1.0.1 + lru-cache: 6.0.0 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-fetch: 1.4.1 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + promise-retry: 2.0.1 + socks-proxy-agent: 5.0.1 + ssri: 8.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /makeerror@1.0.12: + resolution: + { + integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + } + dependencies: + tmpl: 1.0.5 + + /map-age-cleaner@0.1.3: + resolution: + { + integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + } + engines: { node: '>=6' } + dependencies: + p-defer: 1.0.0 + dev: false + + /map-cache@0.2.2: + resolution: + { + integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== + } + engines: { node: '>=0.10.0' } + + /map-obj@1.0.1: + resolution: + { + integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== + } + engines: { node: '>=0.10.0' } + dev: false + + /map-obj@4.3.0: + resolution: + { + integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== + } + engines: { node: '>=8' } + dev: false + + /map-or-similar@1.5.0: + resolution: + { + integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg== + } + dev: true + + /map-visit@1.0.0: + resolution: + { + integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w== + } + engines: { node: '>=0.10.0' } + dependencies: + object-visit: 1.0.1 + + /markdown-escapes@1.0.4: + resolution: + { + integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg== + } + dev: true + + /markdown-it@12.3.2: + resolution: + { + integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg== + } + hasBin: true + dependencies: + argparse: 2.0.1 + entities: 2.1.0 + linkify-it: 3.0.3 + mdurl: 1.0.1 + uc.micro: 1.0.6 + dev: true + + /markdown-to-jsx@7.4.3(react@17.0.2): + resolution: + { + integrity: sha512-qwu2XftKs/SP+f6oCe0ruAFKX6jZaKxrBfDBV4CthqbVbRQwHhNM28QGDQuTldCaOn+hocaqbmGvCuXO5m3smA== + } + engines: { node: '>= 10' } + peerDependencies: + react: '>= 0.14.0' + dependencies: + react: 17.0.2 + dev: true + + /md5.js@1.3.5: + resolution: + { + integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + } + dependencies: + hash-base: 3.1.0 + inherits: 2.0.4 + safe-buffer: 5.2.1 + + /mdast-squeeze-paragraphs@4.0.0: + resolution: + { + integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ== + } + dependencies: + unist-util-remove: 2.1.0 + dev: true + + /mdast-util-definitions@4.0.0: + resolution: + { + integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ== + } + dependencies: + unist-util-visit: 2.0.3 + dev: true + + /mdast-util-to-hast@10.0.1: + resolution: + { + integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA== + } + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 + mdast-util-definitions: 4.0.0 + mdurl: 1.0.1 + unist-builder: 2.0.3 + unist-util-generated: 1.1.6 + unist-util-position: 3.1.0 + unist-util-visit: 2.0.3 + dev: true + + /mdast-util-to-string@1.1.0: + resolution: + { + integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== + } + dev: true + + /mdn-data@2.0.14: + resolution: + { + integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + } + dev: false + + /mdurl@1.0.1: + resolution: + { + integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== + } + dev: true + + /media-typer@0.3.0: + resolution: + { + integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + } + engines: { node: '>= 0.6' } + + /mem@8.1.1: + resolution: + { + integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA== + } + engines: { node: '>=10' } + dependencies: + map-age-cleaner: 0.1.3 + mimic-fn: 3.1.0 + dev: false + + /memfs@3.4.3: + resolution: + { + integrity: sha512-eivjfi7Ahr6eQTn44nvTnR60e4a1Fs1Via2kCR5lHo/kyNoiMWaXCNJ/GpSd0ilXas2JSOl9B5FTIhflXu0hlg== + } + engines: { node: '>= 4.0.0' } + dependencies: + fs-monkey: 1.0.3 + + /memoizerific@1.11.3: + resolution: + { + integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog== + } + dependencies: + map-or-similar: 1.5.0 + dev: true + + /memory-fs@0.4.1: + resolution: + { + integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ== + } + dependencies: + errno: 0.1.8 + readable-stream: 2.3.8 + + /memory-fs@0.5.0: + resolution: + { + integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== + } + engines: { node: '>=4.3.0 <5.0.0 || >=5.10' } + dependencies: + errno: 0.1.8 + readable-stream: 2.3.8 + + /meow@9.0.0: + resolution: + { + integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== + } + engines: { node: '>=10' } + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize: 1.2.0 + 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: false + + /merge-descriptors@1.0.1: + resolution: + { + integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + } + + /merge-descriptors@1.0.3: + resolution: + { + integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== + } + dev: false + + /merge-stream@2.0.0: + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + } + + /merge2@1.4.1: + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + } + engines: { node: '>= 8' } + + /methods@1.1.2: + resolution: + { + integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + } + engines: { node: '>= 0.6' } + + /microevent.ts@0.1.1: + resolution: + { + integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g== + } + dev: true + + /micromatch@3.1.10: + resolution: + { + integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + } + engines: { node: '>=0.10.0' } + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + braces: 2.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + extglob: 2.0.4 + fragment-cache: 0.2.1 + kind-of: 6.0.3 + nanomatch: 1.2.13 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + + /micromatch@4.0.5: + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + } + engines: { node: '>=8.6' } + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + + /miller-rabin@4.0.1: + resolution: + { + integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + } + hasBin: true + dependencies: + bn.js: 4.12.0 + brorand: 1.1.0 + + /mime-db@1.52.0: + resolution: + { + integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + } + engines: { node: '>= 0.6' } + + /mime-types@2.1.35: + resolution: + { + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + } + engines: { node: '>= 0.6' } + dependencies: + mime-db: 1.52.0 + + /mime@1.6.0: + resolution: + { + integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + } + engines: { node: '>=4' } + hasBin: true + + /mime@2.6.0: + resolution: + { + integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== + } + engines: { node: '>=4.0.0' } + hasBin: true + dev: true + + /mimic-fn@2.1.0: + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + } + engines: { node: '>=6' } + + /mimic-fn@3.1.0: + resolution: + { + integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== + } + engines: { node: '>=8' } + + /mimic-response@1.0.1: + resolution: + { + integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + } + engines: { node: '>=4' } + + /mimic-response@3.1.0: + resolution: + { + integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + } + engines: { node: '>=10' } + + /min-document@2.19.0: + resolution: + { + integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ== + } + dependencies: + dom-walk: 0.1.2 + dev: true + + /min-indent@1.0.1: + resolution: + { + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + } + engines: { node: '>=4' } + + /mini-css-extract-plugin@2.5.3(webpack@5.82.1): + resolution: + { + integrity: sha512-YseMB8cs8U/KCaAGQoqYmfUuhhGW0a9p9XvWXrxVOkE3/IiISTLw4ALNt7JR5B2eYauFM+PQGSbXMDmVbR7Tfw== + } + engines: { node: '>= 12.13.0' } + peerDependencies: + webpack: ^5.0.0 || ^4 || ^5 + dependencies: + schema-utils: 4.2.0 + webpack: 5.82.1 + dev: false + + /minimalistic-assert@1.0.1: + resolution: + { + integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + } + + /minimalistic-crypto-utils@1.0.1: + resolution: + { + integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + } + + /minimatch@3.0.8: + resolution: + { + integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== + } + 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.0.1: + resolution: + { + integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g== + } + engines: { node: '>=10' } + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimatch@5.1.6: + resolution: + { + integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + } + engines: { node: '>=10' } + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimatch@7.4.6: + resolution: + { + integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw== + } + engines: { node: '>=10' } + dependencies: + brace-expansion: 2.0.1 + dev: false + + /minimatch@9.0.3: + resolution: + { + integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== + } + engines: { node: '>=16 || 14 >=14.17' } + dependencies: + brace-expansion: 2.0.1 + + /minimatch@9.0.5: + resolution: + { + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + } + engines: { node: '>=16 || 14 >=14.17' } + dependencies: + brace-expansion: 2.0.1 + + /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: false + + /minimist@1.2.8: + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + } + + /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@1.4.1: + resolution: + { + integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw== + } + engines: { node: '>=8' } + dependencies: + minipass: 3.3.6 + 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-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 + + /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' } + + /minizlib@2.1.2: + resolution: + { + integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + } + engines: { node: '>= 8' } + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + + /mississippi@3.0.0: + resolution: + { + integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== + } + engines: { node: '>=4.0.0' } + dependencies: + concat-stream: 1.6.2 + duplexify: 3.7.1 + end-of-stream: 1.4.4 + flush-write-stream: 1.1.1 + from2: 2.3.0 + parallel-transform: 1.2.0 + pump: 3.0.0 + pumpify: 1.5.1 + stream-each: 1.2.3 + through2: 2.0.5 + + /mixin-deep@1.3.2: + resolution: + { + integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + } + engines: { node: '>=0.10.0' } + dependencies: + for-in: 1.0.2 + is-extendable: 1.0.1 + + /mkdirp-classic@0.5.3: + resolution: + { + integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + } + dev: true + + /mkdirp@0.5.6: + resolution: + { + integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + } + hasBin: true + dependencies: + minimist: 1.2.8 + + /mkdirp@1.0.4: + resolution: + { + integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + } + engines: { node: '>=10' } + hasBin: true + + /mocha@10.4.0: + resolution: + { + integrity: sha512-eqhGB8JKapEYcC4ytX/xrzKforgEc3j1pGlAXVy3eRwrtAy5/nIfT1SvgGzfN0XZZxeLq0aQWkOUAmqIJiv+bA== + } + engines: { node: '>= 14.0.0' } + hasBin: true + dependencies: + ansi-colors: 4.1.1 + browser-stdout: 1.3.1 + chokidar: 3.5.3 + debug: 4.3.4(supports-color@8.1.1) + diff: 5.0.0 + escape-string-regexp: 4.0.0 + find-up: 5.0.0 + glob: 8.1.0 + he: 1.2.0 + js-yaml: 4.1.0 + log-symbols: 4.1.0 + minimatch: 5.0.1 + ms: 2.1.3 + serialize-javascript: 6.0.0 + strip-json-comments: 3.1.1 + supports-color: 8.1.1 + workerpool: 6.2.1 + yargs: 16.2.0 + yargs-parser: 20.2.4 + yargs-unparser: 2.0.0 + dev: true + + /move-concurrently@1.0.1: + resolution: + { + integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ== + } + dependencies: + aproba: 1.2.0 + copy-concurrently: 1.0.5 + fs-write-stream-atomic: 1.0.10 + mkdirp: 0.5.6 + rimraf: 2.7.1 + run-queue: 1.0.3 + + /mrmime@1.0.1: + resolution: + { + integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw== + } + engines: { node: '>=10' } + + /ms@2.0.0: + resolution: + { + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + } + + /ms@2.1.1: + resolution: + { + integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + } + 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== + } + + /multicast-dns@7.2.5: + resolution: + { + integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== + } + hasBin: true + dependencies: + dns-packet: 5.6.1 + thunky: 1.1.0 + dev: false + + /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.8 + dev: false + + /mute-stream@0.0.8: + resolution: + { + integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + } + + /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: false + + /nan@2.19.0: + resolution: + { + integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw== + } + requiresBuild: true + optional: true + + /nanoid@3.3.7: + resolution: + { + integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + hasBin: true + + /nanomatch@1.2.13: + resolution: + { + integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + } + engines: { node: '>=0.10.0' } + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + fragment-cache: 0.2.1 + is-windows: 1.0.2 + kind-of: 6.0.3 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + + /napi-build-utils@1.0.2: + resolution: + { + integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== + } + dev: true + + /natural-compare@1.4.0: + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + } + + /ndjson@2.0.0: + resolution: + { + integrity: sha512-nGl7LRGrzugTtaFcJMhLbpzJM6XdivmbkdlaGcrk/LXg2KL/YBC6z1g70xh0/al+oFuVFP8N8kiWRucmeEH/qQ== + } + engines: { node: '>=10' } + hasBin: true + dependencies: + json-stringify-safe: 5.0.1 + minimist: 1.2.8 + readable-stream: 3.6.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /negotiator@0.6.3: + resolution: + { + integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + } + engines: { node: '>= 0.6' } + + /neo-async@2.6.2: + resolution: + { + integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + } + + /nested-error-stacks@2.1.1: + resolution: + { + integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw== + } + dev: true + + /nice-try@1.0.5: + resolution: + { + integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + } + + /no-case@3.0.4: + resolution: + { + integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + } + dependencies: + lower-case: 2.0.2 + tslib: 2.3.1 + + /node-abi@3.56.0: + resolution: + { + integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q== + } + engines: { node: '>=10' } + dependencies: + semver: 7.5.4 + dev: true + + /node-addon-api@3.2.1: + resolution: + { + integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== + } + dev: true + + /node-addon-api@4.3.0: + resolution: + { + integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== + } + dev: true + + /node-dir@0.1.17: + resolution: + { + integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg== + } + engines: { node: '>= 0.10.5' } + dependencies: + minimatch: 3.0.8 + dev: true + + /node-emoji@1.11.0: + resolution: + { + integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A== + } + dependencies: + lodash: 4.17.21 + dev: false + + /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 + + /node-forge@1.3.1: + resolution: + { + integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== + } + engines: { node: '>= 6.13.0' } + dev: false + + /node-gyp@8.1.0: + resolution: + { + integrity: sha512-o2elh1qt7YUp3lkMwY3/l4KF3j/A3fI/Qt4NH+CQQgPJdqGE9y7qnP84cjIWN27Q0jJkrSAhCVDg+wBVNBYdBg== + } + engines: { node: '>= 10.12.0' } + hasBin: true + dependencies: + env-paths: 2.2.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + make-fetch-happen: 8.0.14 + nopt: 5.0.0 + npmlog: 4.1.2 + rimraf: 3.0.2 + semver: 7.5.4 + tar: 6.2.1 + which: 2.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /node-int64@0.4.0: + resolution: + { + integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + } + + /node-libs-browser@2.2.1: + resolution: + { + integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== + } + dependencies: + assert: 1.5.1 + browserify-zlib: 0.2.0 + buffer: 4.9.2 + console-browserify: 1.2.0 + constants-browserify: 1.0.0 + crypto-browserify: 3.12.0 + domain-browser: 1.2.0 + events: 3.3.0 + https-browserify: 1.0.0 + os-browserify: 0.3.0 + path-browserify: 0.0.1 + process: 0.11.10 + punycode: 1.4.1 + querystring-es3: 0.2.1 + readable-stream: 2.3.8 + stream-browserify: 2.0.2 + stream-http: 2.8.3 + string_decoder: 1.3.0 + timers-browserify: 2.0.12 + tty-browserify: 0.0.0 + url: 0.11.3 + util: 0.11.1 + vm-browserify: 1.1.2 + + /node-releases@2.0.14: + resolution: + { + integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== + } + + /nopt@5.0.0: + resolution: + { + integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== + } + engines: { node: '>=6' } + 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 + + /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.5.4 + validate-npm-package-license: 3.0.4 + dev: false + + /normalize-path@2.1.1: + resolution: + { + integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== + } + engines: { node: '>=0.10.0' } + requiresBuild: true + dependencies: + remove-trailing-separator: 1.1.0 + + /normalize-path@3.0.0: + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + } + engines: { node: '>=0.10.0' } + + /normalize-range@0.1.2: + resolution: + { + integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + } + engines: { node: '>=0.10.0' } + + /normalize-url@6.1.0: + resolution: + { + integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== + } + engines: { node: '>=10' } + + /npm-bundled@1.1.2: + resolution: + { + integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== + } + dependencies: + npm-normalize-package-bin: 1.0.1 + dev: false + + /npm-check@6.0.1: + resolution: + { + integrity: sha512-tlEhXU3689VLUHYEZTS/BC61vfeN2xSSZwoWDT6WLuenZTpDmGmNT5mtl15erTR0/A15ldK06/NEKg9jYJ9OTQ== + } + engines: { node: '>=10.9.0' } + hasBin: true + dependencies: + callsite-record: 4.1.5 + chalk: 4.1.2 + co: 4.6.0 + depcheck: 1.4.7 + execa: 5.1.1 + giturl: 1.0.3 + global-modules: 2.0.0 + globby: 11.1.0 + inquirer: 7.3.3 + is-ci: 2.0.0 + lodash: 4.17.21 + meow: 9.0.0 + minimatch: 3.0.8 + node-emoji: 1.11.0 + ora: 5.4.1 + package-json: 7.0.0 + path-exists: 4.0.0 + pkg-dir: 5.0.0 + preferred-pm: 3.1.3 + rc-config-loader: 4.1.3 + semver: 7.5.4 + semver-diff: 3.1.1 + strip-ansi: 6.0.1 + text-table: 0.2.0 + throat: 6.0.2 + update-notifier: 5.1.0 + xtend: 4.0.2 + transitivePeerDependencies: + - supports-color + dev: false + + /npm-normalize-package-bin@1.0.1: + resolution: + { + integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + } + dev: false + + /npm-package-arg@6.1.1: + resolution: + { + integrity: sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg== + } + dependencies: + hosted-git-info: 2.8.9 + osenv: 0.1.5 + semver: 5.7.2 + validate-npm-package-name: 3.0.0 + dev: false + + /npm-packlist@2.1.5: + resolution: + { + integrity: sha512-KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ== + } + engines: { node: '>=10' } + hasBin: true + dependencies: + glob: 7.2.3 + ignore-walk: 3.0.4 + npm-bundled: 1.1.2 + npm-normalize-package-bin: 1.0.1 + dev: false + + /npm-run-path@2.0.2: + resolution: + { + integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== + } + engines: { node: '>=4' } + dependencies: + path-key: 2.0.1 + dev: true + + /npm-run-path@4.0.1: + resolution: + { + integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + } + engines: { node: '>=8' } + dependencies: + path-key: 3.1.1 + + /npmlog@4.1.2: + resolution: + { + integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + } + dependencies: + are-we-there-yet: 1.1.7 + console-control-strings: 1.1.0 + gauge: 2.7.4 + set-blocking: 2.0.0 + dev: true + + /npmlog@5.0.1: + resolution: + { + integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== + } + dependencies: + are-we-there-yet: 2.0.0 + console-control-strings: 1.1.0 + gauge: 3.0.2 + 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 + + /num2fraction@1.2.2: + resolution: + { + integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg== + } + dev: true + + /number-is-nan@1.0.1: + resolution: + { + integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== + } + engines: { node: '>=0.10.0' } + dev: true + + /nwsapi@2.2.7: + resolution: + { + integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== + } + + /object-assign@4.1.1: + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + } + engines: { node: '>=0.10.0' } + + /object-copy@0.1.0: + resolution: + { + integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== + } + engines: { node: '>=0.10.0' } + dependencies: + copy-descriptor: 0.1.1 + define-property: 0.2.5 + kind-of: 3.2.2 + + /object-inspect@1.13.1: + resolution: + { + integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== + } + + /object-keys@1.1.1: + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + } + engines: { node: '>= 0.4' } + + /object-visit@1.0.1: + resolution: + { + integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== + } + engines: { node: '>=0.10.0' } + dependencies: + isobject: 3.0.1 + + /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 + + /object.entries@1.1.8: + resolution: + { + integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + /object.fromentries@2.0.7: + resolution: + { + integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + + /object.getownpropertydescriptors@2.1.7: + resolution: + { + integrity: sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g== + } + engines: { node: '>= 0.8' } + dependencies: + array.prototype.reduce: 1.0.6 + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + safe-array-concat: 1.1.2 + + /object.hasown@1.1.3: + resolution: + { + integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA== + } + dependencies: + define-properties: 1.2.1 + es-abstract: 1.23.2 + + /object.pick@1.3.0: + resolution: + { + integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== + } + engines: { node: '>=0.10.0' } + dependencies: + isobject: 3.0.1 + + /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 + + /objectorarray@1.0.5: + resolution: + { + integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg== + } + dev: true + + /obuf@1.1.2: + resolution: + { + integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + } + dev: false + + /on-finished@2.3.0: + resolution: + { + integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== + } + engines: { node: '>= 0.8' } + dependencies: + ee-first: 1.1.1 + dev: false + + /on-finished@2.4.1: + resolution: + { + integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + } + engines: { node: '>= 0.8' } + dependencies: + ee-first: 1.1.1 + + /on-headers@1.0.2: + resolution: + { + integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + } + engines: { node: '>= 0.8' } + + /once@1.4.0: + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + } + dependencies: + wrappy: 1.0.2 + + /onetime@5.1.2: + resolution: + { + integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + } + engines: { node: '>=6' } + dependencies: + mimic-fn: 2.1.0 + + /open@7.4.2: + resolution: + { + integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== + } + engines: { node: '>=8' } + dependencies: + is-docker: 2.2.1 + is-wsl: 2.2.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: false + + /opener@1.5.2: + resolution: + { + integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== + } + hasBin: 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 + + /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: false + + /os-browserify@0.3.0: + resolution: + { + integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== + } + + /os-homedir@1.0.2: + resolution: + { + integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== + } + engines: { node: '>=0.10.0' } + dev: false + + /os-tmpdir@1.0.2: + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + } + engines: { node: '>=0.10.0' } + dev: false + + /osenv@0.1.5: + resolution: + { + integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + } + dependencies: + os-homedir: 1.0.2 + os-tmpdir: 1.0.2 + dev: false + + /overlayscrollbars@1.13.3: + resolution: + { + integrity: sha512-1nB/B5kaakJuHXaLXLRK0bUIilWhUGT6q5g+l2s5vqYdLle/sd0kscBHkQC1kuuDg9p9WR4MTdySDOPbeL/86g== + } + dev: true + + /p-all@2.1.0: + resolution: + { + integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA== + } + engines: { node: '>=6' } + dependencies: + p-map: 2.1.0 + dev: true + + /p-cancelable@2.1.1: + resolution: + { + integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== + } + engines: { node: '>=8' } + + /p-defer@1.0.0: + resolution: + { + integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw== + } + engines: { node: '>=4' } + dev: false + + /p-event@4.2.0: + resolution: + { + integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ== + } + engines: { node: '>=8' } + dependencies: + p-timeout: 3.2.0 + 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@2.3.0: + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + } + engines: { node: '>=6' } + dependencies: + p-try: 2.2.0 + + /p-limit@3.1.0: + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + } + engines: { node: '>=10' } + dependencies: + yocto-queue: 0.1.0 + + /p-locate@3.0.0: + resolution: + { + integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + } + engines: { node: '>=6' } + dependencies: + p-limit: 2.3.0 + + /p-locate@4.1.0: + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + } + engines: { node: '>=8' } + dependencies: + p-limit: 2.3.0 + + /p-locate@5.0.0: + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + } + engines: { node: '>=10' } + dependencies: + p-limit: 3.1.0 + + /p-map@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-reflect@2.1.0: + resolution: + { + integrity: sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg== + } + engines: { node: '>=8' } + dev: false + + /p-retry@4.6.2: + resolution: + { + integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== + } + engines: { node: '>=8' } + dependencies: + '@types/retry': 0.12.0 + retry: 0.13.1 + dev: false + + /p-settle@4.1.1: + resolution: + { + integrity: sha512-6THGh13mt3gypcNMm0ADqVNCcYa3BK6DWsuJWFCuEKP1rpY+OKGp7gaZwVmLspmic01+fsg/fN57MfvDzZ/PuQ== + } + engines: { node: '>=10' } + dependencies: + p-limit: 2.3.0 + p-reflect: 2.1.0 + dev: false + + /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@2.2.0: + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + } + engines: { node: '>=6' } + + /package-json@7.0.0: + resolution: + { + integrity: sha512-CHJqc94AA8YfSLHGQT3DbvSIuE12NLFekpM4n7LRrAd3dOJtA911+4xe9q6nC3/jcKraq7nNS9VxgtT0KC+diA== + } + engines: { node: '>=12' } + dependencies: + got: 11.8.6 + registry-auth-token: 4.2.2 + registry-url: 5.1.0 + semver: 7.5.4 + + /pako@1.0.11: + resolution: + { + integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + } + + /parallel-transform@1.2.0: + resolution: + { + integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== + } + dependencies: + cyclist: 1.0.2 + inherits: 2.0.4 + readable-stream: 2.3.8 + + /param-case@3.0.4: + resolution: + { + integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + } + dependencies: + dot-case: 3.0.4 + tslib: 2.3.1 + + /parent-module@1.0.1: + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + } + engines: { node: '>=6' } + dependencies: + callsites: 3.1.0 + + /parse-asn1@5.1.7: + resolution: + { + integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg== + } + engines: { node: '>= 0.10' } + dependencies: + asn1.js: 4.10.1 + browserify-aes: 1.2.0 + evp_bytestokey: 1.0.3 + hash-base: 3.0.4 + pbkdf2: 3.1.2 + safe-buffer: 5.2.1 + + /parse-entities@2.0.0: + resolution: + { + integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== + } + dependencies: + character-entities: 1.2.4 + character-entities-legacy: 1.1.4 + character-reference-invalid: 1.1.4 + is-alphanumerical: 1.0.4 + is-decimal: 1.0.4 + is-hexadecimal: 1.0.4 + 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 + + /parse-passwd@1.0.0: + resolution: + { + integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q== + } + engines: { node: '>=0.10.0' } + + /parse-semver@1.1.1: + resolution: + { + integrity: sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ== + } + dependencies: + semver: 5.7.2 + 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@6.0.1: + resolution: + { + integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== + } + dev: true + + /parse5@7.1.2: + resolution: + { + integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== + } + dependencies: + entities: 4.5.0 + + /parseurl@1.3.3: + resolution: + { + integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + } + engines: { node: '>= 0.8' } + + /pascal-case@3.1.2: + resolution: + { + integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + } + dependencies: + no-case: 3.0.4 + tslib: 2.3.1 + + /pascalcase@0.1.1: + resolution: + { + integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== + } + engines: { node: '>=0.10.0' } + + /path-browserify@0.0.1: + resolution: + { + integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== + } + + /path-dirname@1.0.2: + resolution: + { + integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q== + } + requiresBuild: true + + /path-exists@3.0.0: + resolution: + { + integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== + } + engines: { node: '>=4' } + + /path-exists@4.0.0: + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + } + engines: { node: '>=8' } + + /path-is-absolute@1.0.1: + 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' } + + /path-key@3.1.1: + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + } + engines: { node: '>=8' } + + /path-parse@1.0.7: + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + } + + /path-to-regexp@0.1.7: + resolution: + { + integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + } + + /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' } + + /pbkdf2@3.1.2: + resolution: + { + integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== + } + engines: { node: '>=0.12' } + dependencies: + create-hash: 1.2.0 + create-hmac: 1.1.7 + ripemd160: 2.0.2 + safe-buffer: 5.2.1 + sha.js: 2.4.11 + + /pend@1.2.0: + resolution: + { + integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== + } + dev: true + + /picocolors@0.2.1: + resolution: + { + integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== + } + dev: true + + /picocolors@1.0.0: + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + } + + /picomatch@2.3.1: + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + } + engines: { node: '>=8.6' } + + /pidof@1.0.2: + resolution: + { + integrity: sha512-LLJhTVEUCZnotdAM5rd7KiTdLGgk6i763/hsd5pO+8yuF7mdgg0ob8w/98KrTAcPsj6YzGrkFLPVtBOr1uW2ag== + } + dev: false + + /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' } + + /pinkie-promise@2.0.1: + resolution: + { + integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw== + } + engines: { node: '>=0.10.0' } + dependencies: + pinkie: 2.0.4 + dev: false + + /pinkie@2.0.4: + resolution: + { + integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg== + } + engines: { node: '>=0.10.0' } + dev: false + + /pino-std-serializers@3.2.0: + resolution: + { + integrity: sha512-EqX4pwDPrt3MuOAAUBMU0Tk5kR/YcCM5fNPEzgCO2zJ5HfX0vbiH9HbJglnyeQsN96Kznae6MWD47pZB5avTrg== + } + dev: false + + /pino@6.14.0: + resolution: + { + integrity: sha512-iuhEDel3Z3hF9Jfe44DPXR8l07bhjuFY3GMHIXbjnY9XcafbyDDwl2sN2vw2GjMPf5Nkoe+OFao7ffn9SXaKDg== + } + hasBin: true + dependencies: + fast-redact: 3.4.0 + fast-safe-stringify: 2.1.1 + flatstr: 1.0.12 + pino-std-serializers: 3.2.0 + process-warning: 1.0.0 + quick-format-unescaped: 4.0.4 + sonic-boom: 1.4.1 + dev: false + + /pirates@4.0.6: + resolution: + { + integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + } + engines: { node: '>= 6' } + + /pkg-dir@3.0.0: + resolution: + { + integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + } + engines: { node: '>=6' } + dependencies: + find-up: 3.0.0 + + /pkg-dir@4.2.0: + resolution: + { + integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + } + engines: { node: '>=8' } + dependencies: + find-up: 4.1.0 + + /pkg-dir@5.0.0: + resolution: + { + integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== + } + engines: { node: '>=10' } + dependencies: + find-up: 5.0.0 + + /pkg-up@3.1.0: + resolution: + { + integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== + } + engines: { node: '>=8' } + dependencies: + find-up: 3.0.0 + dev: true + + /please-upgrade-node@3.2.0: + resolution: + { + integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== + } + dependencies: + semver-compare: 1.0.0 + dev: false + + /pnp-webpack-plugin@1.6.4(typescript@5.4.2): + resolution: + { + integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg== + } + engines: { node: '>=6' } + dependencies: + ts-pnp: 1.2.0(typescript@5.4.2) + transitivePeerDependencies: + - typescript + dev: true + + /pnpm-sync-lib@0.2.9: + resolution: + { + integrity: sha512-qd2/crPxmpEXAWHlotOQfxQZ3a1fZIG4u73CiSPwPYDtd7Ithx7O3gtqzQb/0LXDEvk1NpL7u4xf7yEiUCqg3Q== + } + dependencies: + '@pnpm/dependency-path': 2.1.8 + yaml: 2.4.1 + dev: false + + /polished@4.3.1: + resolution: + { + integrity: sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA== + } + engines: { node: '>=10' } + dependencies: + '@babel/runtime': 7.24.0 + dev: true + + /posix-character-classes@0.1.1: + resolution: + { + integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== + } + engines: { node: '>=0.10.0' } + + /possible-typed-array-names@1.0.0: + resolution: + { + integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + } + engines: { node: '>= 0.4' } + + /postcss-calc@8.2.4(postcss@8.4.36): + resolution: + { + integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== + } + peerDependencies: + postcss: ^8.2.2 + dependencies: + postcss: 8.4.36 + postcss-selector-parser: 6.0.16 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-colormin@5.3.1(postcss@8.4.36): + resolution: + { + integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.23.0 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-convert-values@5.1.3(postcss@8.4.36): + resolution: + { + integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.23.0 + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-discard-comments@5.1.2(postcss@8.4.36): + resolution: + { + integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + dev: false + + /postcss-discard-duplicates@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + dev: false + + /postcss-discard-empty@5.1.1(postcss@8.4.36): + resolution: + { + integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + dev: false + + /postcss-discard-overridden@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + dev: false + + /postcss-flexbugs-fixes@4.2.1: + resolution: + { + integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ== + } + dependencies: + postcss: 7.0.39 + dev: true + + /postcss-loader@4.1.0(postcss@8.4.36)(webpack@4.47.0): + resolution: + { + integrity: sha512-vbCkP70F3Q9PIk6d47aBwjqAMI4LfkXCoyxj+7NPNuVIwfTGdzv2KVQes59/RuxMniIgsYQCFSY42P3+ykJfaw== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.6 + loader-utils: 2.0.4 + postcss: 8.4.36 + schema-utils: 3.3.0 + semver: 7.5.4 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /postcss-loader@4.3.0(postcss@7.0.39)(webpack@4.47.0): + resolution: + { + integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.6 + loader-utils: 2.0.4 + postcss: 7.0.39 + schema-utils: 3.3.0 + semver: 7.5.4 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /postcss-loader@6.2.1(postcss@8.4.36)(webpack@5.82.1): + resolution: + { + integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q== + } + engines: { node: '>= 12.13.0' } + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 || ^4 || ^5 + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.6 + postcss: 8.4.36 + semver: 7.5.4 + webpack: 5.82.1 + dev: false + + /postcss-merge-longhand@5.1.7(postcss@8.4.36): + resolution: + { + integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + stylehacks: 5.1.1(postcss@8.4.36) + dev: false + + /postcss-merge-rules@5.1.4(postcss@8.4.36): + resolution: + { + integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.23.0 + caniuse-api: 3.0.0 + cssnano-utils: 3.1.0(postcss@8.4.36) + postcss: 8.4.36 + postcss-selector-parser: 6.0.16 + dev: false + + /postcss-minify-font-values@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-minify-gradients@5.1.1(postcss@8.4.36): + resolution: + { + integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + colord: 2.9.3 + cssnano-utils: 3.1.0(postcss@8.4.36) + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-minify-params@5.1.4(postcss@8.4.36): + resolution: + { + integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.23.0 + cssnano-utils: 3.1.0(postcss@8.4.36) + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-minify-selectors@5.2.1(postcss@8.4.36): + resolution: + { + integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-selector-parser: 6.0.16 + dev: false + + /postcss-modules-extract-imports@2.0.0: + resolution: + { + integrity: sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== + } + engines: { node: '>= 6' } + dependencies: + postcss: 7.0.39 + dev: true + + /postcss-modules-extract-imports@3.0.0(postcss@8.4.36): + resolution: + { + integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== + } + engines: { node: ^10 || ^12 || >= 14 } + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.36 + + /postcss-modules-local-by-default@3.0.3: + resolution: + { + integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== + } + engines: { node: '>= 6' } + dependencies: + icss-utils: 4.1.1 + postcss: 7.0.39 + postcss-selector-parser: 6.0.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-modules-local-by-default@4.0.4(postcss@8.4.36): + resolution: + { + integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q== + } + engines: { node: ^10 || ^12 || >= 14 } + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0(postcss@8.4.36) + postcss: 8.4.36 + postcss-selector-parser: 6.0.16 + postcss-value-parser: 4.2.0 + + /postcss-modules-scope@2.2.0: + resolution: + { + integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== + } + engines: { node: '>= 6' } + dependencies: + postcss: 7.0.39 + postcss-selector-parser: 6.0.16 + dev: true + + /postcss-modules-scope@3.1.1(postcss@8.4.36): + resolution: + { + integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA== + } + engines: { node: ^10 || ^12 || >= 14 } + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.36 + postcss-selector-parser: 6.0.16 + + /postcss-modules-values@3.0.0: + resolution: + { + integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== + } + dependencies: + icss-utils: 4.1.1 + postcss: 7.0.39 + dev: true + + /postcss-modules-values@4.0.0(postcss@8.4.36): + resolution: + { + integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + } + engines: { node: ^10 || ^12 || >= 14 } + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0(postcss@8.4.36) + postcss: 8.4.36 + + /postcss-modules@6.0.0(postcss@8.4.36): + resolution: + { + integrity: sha512-7DGfnlyi/ju82BRzTIjWS5C4Tafmzl3R79YP/PASiocj+aa6yYphHhhKUOEoXQToId5rgyFgJ88+ccOUydjBXQ== + } + peerDependencies: + postcss: ^8.0.0 + dependencies: + generic-names: 4.0.0 + icss-utils: 5.1.0(postcss@8.4.36) + lodash.camelcase: 4.3.0 + postcss: 8.4.36 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.36) + postcss-modules-local-by-default: 4.0.4(postcss@8.4.36) + postcss-modules-scope: 3.1.1(postcss@8.4.36) + postcss-modules-values: 4.0.0(postcss@8.4.36) + string-hash: 1.1.3 + dev: false + + /postcss-normalize-charset@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + dev: false + + /postcss-normalize-display-values@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-normalize-positions@5.1.1(postcss@8.4.36): + resolution: + { + integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-normalize-repeat-style@5.1.1(postcss@8.4.36): + resolution: + { + integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-normalize-string@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-normalize-timing-functions@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-normalize-unicode@5.1.1(postcss@8.4.36): + resolution: + { + integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.23.0 + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-normalize-url@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + normalize-url: 6.1.0 + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-normalize-whitespace@5.1.1(postcss@8.4.36): + resolution: + { + integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-ordered-values@5.1.3(postcss@8.4.36): + resolution: + { + integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 3.1.0(postcss@8.4.36) + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-reduce-initial@5.1.2(postcss@8.4.36): + resolution: + { + integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.23.0 + caniuse-api: 3.0.0 + postcss: 8.4.36 + dev: false + + /postcss-reduce-transforms@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-selector-parser@6.0.16: + resolution: + { + integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw== + } + engines: { node: '>=4' } + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + /postcss-svgo@5.1.0(postcss@8.4.36): + resolution: + { + integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-value-parser: 4.2.0 + svgo: 2.8.0 + dev: false + + /postcss-unique-selectors@5.1.1(postcss@8.4.36): + resolution: + { + integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.36 + postcss-selector-parser: 6.0.16 + dev: false + + /postcss-value-parser@4.2.0: + resolution: + { + integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + } + + /postcss@7.0.39: + resolution: + { + integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== + } + engines: { node: '>=6.0.0' } + dependencies: + picocolors: 0.2.1 + source-map: 0.6.1 + dev: true + + /postcss@8.4.36: + resolution: + { + integrity: sha512-/n7eumA6ZjFHAsbX30yhHup/IMkOmlmvtEi7P+6RMYf+bGJSUHc3geH4a0NSZxAz/RJfiS9tooCTs9LAVYUZKw== + } + engines: { node: ^10 || ^12 || >=14 } + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.0 + source-map-js: 1.1.0 + + /prebuild-install@7.1.2: + resolution: + { + integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ== + } + engines: { node: '>=10' } + hasBin: true + dependencies: + detect-libc: 2.0.2 + expand-template: 2.0.3 + github-from-package: 0.0.0 + minimist: 1.2.8 + mkdirp-classic: 0.5.3 + napi-build-utils: 1.0.2 + node-abi: 3.56.0 + pump: 3.0.0 + rc: 1.2.8 + simple-get: 4.0.1 + tar-fs: 2.1.1 + tunnel-agent: 0.6.0 + dev: true + + /preferred-pm@3.1.3: + resolution: + { + integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w== + } + 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: false + + /prelude-ls@1.2.1: + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + } + engines: { node: '>= 0.8.0' } + + /prettier@2.3.0: + resolution: + { + integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w== + } + engines: { node: '>=10.13.0' } + hasBin: true + dev: true + + /pretty-error@2.1.2: + resolution: + { + integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw== + } + dependencies: + lodash: 4.17.21 + renderkid: 2.0.7 + + /pretty-error@4.0.0: + resolution: + { + integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== + } + dependencies: + lodash: 4.17.21 + renderkid: 3.0.0 + + /pretty-format@27.5.1: + resolution: + { + integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + dependencies: + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 17.0.2 + 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 + + /pretty-hrtime@1.0.3: + resolution: + { + integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A== + } + engines: { node: '>= 0.8' } + dev: true + + /prismjs@1.27.0: + resolution: + { + integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA== + } + engines: { node: '>=6' } + dev: true + + /prismjs@1.29.0: + resolution: + { + integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== + } + engines: { node: '>=6' } + dev: true + + /private@0.1.8: + resolution: + { + integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + } + engines: { node: '>= 0.6' } + dev: true + + /process-nextick-args@2.0.1: + resolution: + { + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + } + + /process-warning@1.0.0: + resolution: + { + integrity: sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q== + } + dev: false + + /process@0.11.10: + resolution: + { + integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== + } + engines: { node: '>= 0.6.0' } + + /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== + } + + /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 + + /promise.allsettled@1.0.7: + resolution: + { + integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA== + } + engines: { node: '>= 0.4' } + dependencies: + array.prototype.map: 1.0.7 + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + get-intrinsic: 1.2.4 + iterate-value: 1.0.2 + dev: true + + /promise.prototype.finally@3.1.8: + resolution: + { + integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + es-errors: 1.3.0 + set-function-name: 2.0.2 + 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 + + /prop-types@15.8.1: + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + /property-information@5.6.0: + resolution: + { + integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA== + } + dependencies: + xtend: 4.0.2 + dev: true + + /proxy-addr@2.0.7: + resolution: + { + integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + } + engines: { node: '>= 0.10' } + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + + /proxy-from-env@1.1.0: + resolution: + { + integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + } + dev: true + + /prr@1.0.1: + resolution: + { + integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw== + } + + /pseudolocale@1.1.0: + resolution: + { + integrity: sha512-OZ8I/hwYEJ3beN3IEcNnt8EpcqblH0/x23hulKBXjs+WhTTEle+ijCHCkh2bd+cIIeCuCwSCbBe93IthGG6hLw== + } + dependencies: + commander: 12.0.0 + dev: false + + /psl@1.9.0: + resolution: + { + integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + } + + /public-encrypt@4.0.3: + resolution: + { + integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + } + dependencies: + bn.js: 4.12.0 + browserify-rsa: 4.1.0 + create-hash: 1.2.0 + parse-asn1: 5.1.7 + randombytes: 2.1.0 + safe-buffer: 5.2.1 + + /pump@2.0.1: + resolution: + { + integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + } + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + + /pump@3.0.0: + resolution: + { + integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + } + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + + /pumpify@1.5.1: + resolution: + { + integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== + } + dependencies: + duplexify: 3.7.1 + inherits: 2.0.4 + pump: 2.0.1 + + /punycode@1.3.2: + resolution: + { + integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw== + } + dev: true + + /punycode@1.4.1: + resolution: + { + integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== + } + + /punycode@2.3.1: + resolution: + { + integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + } + engines: { node: '>=6' } + + /pupa@2.1.1: + resolution: + { + integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== + } + engines: { node: '>=8' } + dependencies: + escape-goat: 2.1.1 + + /puppeteer-core@2.1.1: + resolution: + { + integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w== + } + engines: { node: '>=8.16.0' } + dependencies: + '@types/mime-types': 2.1.4 + debug: 4.3.4(supports-color@8.1.1) + extract-zip: 1.7.0 + https-proxy-agent: 4.0.0 + mime: 2.6.0 + mime-types: 2.1.35 + progress: 2.0.3 + proxy-from-env: 1.1.0 + rimraf: 2.7.1 + ws: 6.2.2 + transitivePeerDependencies: + - supports-color + dev: true + + /pure-rand@6.0.4: + resolution: + { + integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA== + } + + /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.11.0: + resolution: + { + integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + } + engines: { node: '>=0.6' } + dependencies: + side-channel: 1.0.6 + + /qs@6.12.0: + resolution: + { + integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg== + } + engines: { node: '>=0.6' } + dependencies: + side-channel: 1.0.6 + + /querystring-es3@0.2.1: + resolution: + { + integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA== + } + engines: { node: '>=0.4.x' } + + /querystring@0.2.0: + resolution: + { + integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g== + } + engines: { node: '>=0.4.x' } + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + dev: true + + /querystringify@2.2.0: + resolution: + { + integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== + } + + /queue-microtask@1.2.3: + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + } + + /quick-format-unescaped@4.0.4: + resolution: + { + integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg== + } + dev: false + + /quick-lru@4.0.1: + resolution: + { + integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== + } + engines: { node: '>=8' } + dev: false + + /quick-lru@5.1.1: + resolution: + { + integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== + } + engines: { node: '>=10' } + + /ramda@0.27.2: + resolution: + { + integrity: sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA== + } + dev: false + + /ramda@0.28.0: + resolution: + { + integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA== + } + dev: true + + /randombytes@2.1.0: + resolution: + { + integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + } + dependencies: + safe-buffer: 5.2.1 + + /randomfill@1.0.4: + resolution: + { + integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + } + dependencies: + randombytes: 2.1.0 + safe-buffer: 5.2.1 + + /range-parser@1.2.1: + resolution: + { + integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + } + engines: { node: '>= 0.6' } + + /raw-body@2.5.2: + resolution: + { + integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== + } + engines: { node: '>= 0.8' } + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + + /raw-loader@4.0.2(webpack@4.47.0): + resolution: + { + integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /rc-config-loader@4.1.3: + resolution: + { + integrity: sha512-kD7FqML7l800i6pS6pvLyIE2ncbk9Du8Q0gp/4hMPhJU6ZxApkoLcGD8ZeqgiAlfwZ6BlETq6qqe+12DUL207w== + } + dependencies: + debug: 4.3.4(supports-color@8.1.1) + js-yaml: 4.1.0 + json5: 2.2.3 + require-from-string: 2.0.2 + transitivePeerDependencies: + - supports-color + dev: false + + /rc@1.2.8: + resolution: + { + integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + } + hasBin: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.8 + strip-json-comments: 2.0.1 + + /react-colorful@5.6.1(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw== + } + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /react-docgen-typescript@2.2.2(typescript@5.4.2): + resolution: + { + integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg== + } + peerDependencies: + typescript: '>= 4.3.x' + dependencies: + typescript: 5.4.2 + dev: true + + /react-docgen@5.4.3: + resolution: + { + integrity: sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA== + } + engines: { node: '>=8.10.0' } + hasBin: true + dependencies: + '@babel/core': 7.20.12(supports-color@8.1.1) + '@babel/generator': 7.23.6 + '@babel/runtime': 7.24.0 + ast-types: 0.14.2 + commander: 2.20.3 + doctrine: 3.0.0 + estree-to-babel: 3.2.1 + neo-async: 2.6.2 + node-dir: 0.1.17 + strip-indent: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /react-dom@17.0.2(react@17.0.2): + resolution: + { + integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA== + } + peerDependencies: + react: 17.0.2 + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react: 17.0.2 + scheduler: 0.20.2 + + /react-draggable@4.4.6(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-LtY5Xw1zTPqHkVmtM3X8MUOxNDOUhv/khTgBgrUvwaS064bwVvxT+q5El0uUFNx5IEPKXuRejr7UqLwBIg5pdw== + } + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' + dependencies: + clsx: 1.2.1 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: true + + /react-element-to-jsx-string@14.3.4(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg== + } + peerDependencies: + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + dependencies: + '@base2/pretty-print-object': 1.0.1 + is-plain-object: 5.0.0 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-is: 17.0.2 + dev: true + + /react-fast-compare@3.2.2: + resolution: + { + integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== + } + dev: true + + /react-helmet-async@1.3.0(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg== + } + peerDependencies: + react: ^16.6.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@babel/runtime': 7.24.0 + invariant: 2.2.4 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-fast-compare: 3.2.2 + shallowequal: 1.1.0 + dev: true + + /react-hook-form@7.24.2(react@17.0.2): + resolution: + { + integrity: sha512-Ora2l2A4ts8xLxP9QOKEAObTMNZNdR7gt3UpWb9alFJx/AFAQcYAi/joLNo6PoC0AE/Vyq4pnCYb9jUufWoVNw== + } + engines: { node: '>=12.22.0' } + peerDependencies: + react: ^16.8.0 || ^17 + dependencies: + react: 17.0.2 + dev: false + + /react-inspector@5.1.1(react@17.0.2): + resolution: + { + integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg== + } + peerDependencies: + react: ^16.8.4 || ^17.0.0 + dependencies: + '@babel/runtime': 7.24.0 + is-dom: 1.1.0 + prop-types: 15.8.1 + react: 17.0.2 + dev: true + + /react-is@16.13.1: + resolution: + { + integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + } + + /react-is@17.0.2: + resolution: + { + integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + } + + /react-is@18.2.0: + resolution: + { + integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== + } + + /react-popper-tooltip@3.1.1(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ== + } + peerDependencies: + react: ^16.6.0 || ^17.0.0 + react-dom: ^16.6.0 || ^17.0.0 + dependencies: + '@babel/runtime': 7.24.0 + '@popperjs/core': 2.11.8 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@17.0.2)(react@17.0.2) + dev: true + + /react-popper@2.3.0(@popperjs/core@2.11.8)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q== + } + peerDependencies: + '@popperjs/core': ^2.0.0 + react: ^16.8.0 || ^17 || ^18 + react-dom: ^16.8.0 || ^17 || ^18 + dependencies: + '@popperjs/core': 2.11.8 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-fast-compare: 3.2.2 + warning: 4.0.3 + dev: true + + /react-redux@8.0.7(@reduxjs/toolkit@1.8.6)(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2)(redux@4.2.1): + resolution: + { + integrity: sha512-1vRQuCQI5Y2uNmrMXg81RXKiBHY3jBzvCvNmZF437O/Z9/pZ+ba2uYHbemYXb3g8rjsacBGo+/wmfrQKzMhJsg== + } + peerDependencies: + '@reduxjs/toolkit': ^1 || ^2.0.0-beta.0 + '@types/react': ^16.8 || ^17.0 || ^18.0 + '@types/react-dom': ^16.8 || ^17.0 || ^18.0 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + react-native: '>=0.59' + redux: ^4 || ^5.0.0-beta.0 + peerDependenciesMeta: + '@reduxjs/toolkit': + optional: true + '@types/react': + optional: true + '@types/react-dom': + optional: true + react-dom: + optional: true + react-native: + optional: true + redux: + optional: true + dependencies: + '@babel/runtime': 7.24.0 + '@reduxjs/toolkit': 1.8.6(react-redux@8.0.7)(react@17.0.2) + '@types/hoist-non-react-statics': 3.3.5 + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + '@types/use-sync-external-store': 0.0.3 + hoist-non-react-statics: 3.3.2 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-is: 18.2.0 + redux: 4.2.1 + use-sync-external-store: 1.2.0(react@17.0.2) + dev: false + + /react-refresh@0.11.0: + resolution: + { + integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A== + } + engines: { node: '>=0.10.0' } + dev: true + + /react-router-dom@6.22.3(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-7ZILI7HjcE+p31oQvwbokjk6OA/bnFxrhJ19n82Ex9Ph8fNAq+Hm/7KchpMGlTgWhUxRHMMCut+vEtNpWpowKw== + } + engines: { node: '>=14.0.0' } + peerDependencies: + '@types/react': '>=16' + react: '>=16.8' + react-dom: '>=16.8' + dependencies: + '@remix-run/router': 1.15.3 + '@types/react': 17.0.74 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + react-router: 6.22.3(@types/react@17.0.74)(react@17.0.2) + dev: true + + /react-router@6.22.3(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-dr2eb3Mj5zK2YISHK++foM9w4eBnO23eKnZEDs7c880P6oKbrjz/Svg9+nxqtHQK+oMW4OtjZca0RqPglXxguQ== + } + engines: { node: '>=14.0.0' } + peerDependencies: + '@types/react': '>=16' + react: '>=16.8' + dependencies: + '@remix-run/router': 1.15.3 + '@types/react': 17.0.74 + react: 17.0.2 + dev: true + + /react-sizeme@3.0.2: + resolution: + { + integrity: sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw== + } + dependencies: + element-resize-detector: 1.2.4 + invariant: 2.2.4 + shallowequal: 1.1.0 + throttle-debounce: 3.0.1 + dev: true + + /react-syntax-highlighter@13.5.3(react@17.0.2): + resolution: + { + integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg== + } + peerDependencies: + react: '>= 0.14.0' + dependencies: + '@babel/runtime': 7.24.0 + highlight.js: 10.7.3 + lowlight: 1.20.0 + prismjs: 1.29.0 + react: 17.0.2 + refractor: 3.6.0 + dev: true + + /react-textarea-autosize@8.5.3(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ== + } + engines: { node: '>=10' } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@babel/runtime': 7.24.0 + react: 17.0.2 + use-composed-ref: 1.3.0(react@17.0.2) + use-latest: 1.2.1(@types/react@17.0.74)(react@17.0.2) + transitivePeerDependencies: + - '@types/react' + dev: true + + /react-transition-group@4.4.5(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== + } + peerDependencies: + react: '>=16.6.0' + react-dom: '>=16.6.0' + dependencies: + '@babel/runtime': 7.24.0 + dom-helpers: 5.2.1 + loose-envify: 1.4.0 + prop-types: 15.8.1 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /react@17.0.2: + resolution: + { + integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== + } + engines: { node: '>=0.10.0' } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + + /read-package-json@2.1.2: + resolution: + { + integrity: sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA== + } + dependencies: + glob: 7.2.3 + json-parse-even-better-errors: 2.3.1 + normalize-package-data: 2.5.0 + npm-normalize-package-bin: 1.0.1 + dev: false + + /read-package-tree@5.1.6: + resolution: + { + integrity: sha512-FCX1aT3GWyY658wzDICef4p+n0dB+ENRct8E/Qyvppj6xVpOYerBHfUu7OP5Rt1/393Tdglguf5ju5DEX4wZNg== + } + deprecated: The functionality that this package provided is now in @npmcli/arborist + dependencies: + debuglog: 1.0.1 + dezalgo: 1.0.4 + once: 1.4.0 + read-package-json: 2.1.2 + readdir-scoped-modules: 1.1.0 + dev: false + + /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 + + /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 + + /read-yaml-file@2.1.0: + resolution: + { + integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ== + } + engines: { node: '>=10.13' } + dependencies: + js-yaml: 4.1.0 + strip-bom: 4.0.0 + dev: false + + /read@1.0.7: + resolution: + { + integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ== + } + engines: { node: '>=0.8' } + dependencies: + mute-stream: 0.0.8 + + /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 + + /readdir-glob@1.1.3: + resolution: + { + integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA== + } + dependencies: + minimatch: 5.1.6 + dev: true + + /readdir-scoped-modules@1.1.0: + resolution: + { + integrity: sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw== + } + deprecated: This functionality has been moved to @npmcli/fs + dependencies: + debuglog: 1.0.1 + dezalgo: 1.0.4 + graceful-fs: 4.2.11 + once: 1.4.0 + dev: false + + /readdirp@2.2.1: + resolution: + { + integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== + } + engines: { node: '>=0.10' } + requiresBuild: true + dependencies: + graceful-fs: 4.2.11 + micromatch: 3.1.10 + readable-stream: 2.3.8 + optional: true + + /readdirp@3.5.0: + resolution: + { + integrity: sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== + } + engines: { node: '>=8.10.0' } + dependencies: + picomatch: 2.3.1 + + /readdirp@3.6.0: + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + } + engines: { node: '>=8.10.0' } + dependencies: + picomatch: 2.3.1 + + /recast@0.19.1: + resolution: + { + integrity: sha512-8FCjrBxjeEU2O6I+2hyHyBFH1siJbMBLwIRvVr1T3FD2cL754sOaJDsJ/8h3xYltasbJ8jqWRIhMuDGBSiSbjw== + } + engines: { node: '>= 4' } + dependencies: + ast-types: 0.13.3 + esprima: 4.0.1 + private: 0.1.8 + source-map: 0.6.1 + dev: true + + /recast@0.20.5: + resolution: + { + integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ== + } + engines: { node: '>= 4' } + dependencies: + ast-types: 0.14.2 + esprima: 4.0.1 + source-map: 0.6.1 + tslib: 2.3.1 + 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: false + + /redux-thunk@2.4.2(redux@4.2.1): + resolution: + { + integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q== + } + peerDependencies: + redux: ^4 + dependencies: + redux: 4.2.1 + dev: false + + /redux@4.2.1: + resolution: + { + integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w== + } + dependencies: + '@babel/runtime': 7.24.0 + + /reflect.getprototypeof@1.0.6: + resolution: + { + integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + globalthis: 1.0.3 + which-builtin-type: 1.1.3 + + /refractor@3.6.0: + resolution: + { + integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA== + } + dependencies: + hastscript: 6.0.0 + parse-entities: 2.0.0 + prismjs: 1.27.0 + dev: true + + /regenerate-unicode-properties@10.1.1: + resolution: + { + integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q== + } + engines: { node: '>=4' } + dependencies: + regenerate: 1.4.2 + dev: true + + /regenerate@1.4.2: + resolution: + { + integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + } + dev: true + + /regenerator-runtime@0.13.11: + resolution: + { + integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + } + dev: true + + /regenerator-runtime@0.14.1: + resolution: + { + integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw== + } + + /regenerator-transform@0.15.2: + resolution: + { + integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg== + } + dependencies: + '@babel/runtime': 7.24.0 + dev: true + + /regex-not@1.0.2: + resolution: + { + integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + } + engines: { node: '>=0.10.0' } + dependencies: + extend-shallow: 3.0.2 + safe-regex: 1.1.0 + + /regexp.prototype.flags@1.5.2: + resolution: + { + integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + } + 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 + + /regexpp@3.2.0: + resolution: + { + integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + } + engines: { node: '>=8' } + dev: true + + /regexpu-core@5.3.2: + resolution: + { + integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + } + engines: { node: '>=4' } + dependencies: + '@babel/regjsgen': 0.8.0 + regenerate: 1.4.2 + regenerate-unicode-properties: 10.1.1 + regjsparser: 0.9.1 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.1.0 + dev: true + + /regextras@0.8.0: + resolution: + { + integrity: sha512-k519uI04Z3SaY0fLX843MRXnDeG2+vHOFsyhiPZvNLe7r8rD2YNRjq4BQLZZ0oAr2NrtvZlICsXysGNFPGa3CQ== + } + engines: { node: '>=0.1.14' } + dev: false + + /registry-auth-token@4.2.2: + resolution: + { + integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg== + } + engines: { node: '>=6.0.0' } + dependencies: + rc: 1.2.8 + + /registry-url@5.1.0: + resolution: + { + integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw== + } + engines: { node: '>=8' } + dependencies: + rc: 1.2.8 + + /regjsparser@0.9.1: + resolution: + { + integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + } + hasBin: true + dependencies: + jsesc: 0.5.0 + dev: true + + /relateurl@0.2.7: + resolution: + { + integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== + } + engines: { node: '>= 0.10' } + + /remark-external-links@8.0.0: + resolution: + { + integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA== + } + dependencies: + extend: 3.0.2 + is-absolute-url: 3.0.3 + mdast-util-definitions: 4.0.0 + space-separated-tokens: 1.1.5 + unist-util-visit: 2.0.3 + dev: true + + /remark-footnotes@2.0.0: + resolution: + { + integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ== + } + dev: true + + /remark-mdx@1.6.22: + resolution: + { + integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ== + } + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.10.4 + '@babel/plugin-proposal-object-rest-spread': 7.12.1(@babel/core@7.12.9) + '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9) + '@mdx-js/util': 1.6.22 + is-alphabetical: 1.0.4 + remark-parse: 8.0.3 + unified: 9.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /remark-parse@8.0.3: + resolution: + { + integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q== + } + dependencies: + ccount: 1.1.0 + collapse-white-space: 1.0.6 + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + is-whitespace-character: 1.0.4 + is-word-character: 1.0.4 + markdown-escapes: 1.0.4 + parse-entities: 2.0.0 + repeat-string: 1.6.1 + state-toggle: 1.0.3 + trim: 0.0.1 + trim-trailing-lines: 1.1.4 + unherit: 1.1.3 + unist-util-remove-position: 2.0.1 + vfile-location: 3.2.0 + xtend: 4.0.2 + dev: true + + /remark-slug@6.1.0: + resolution: + { + integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ== + } + dependencies: + github-slugger: 1.5.0 + mdast-util-to-string: 1.1.0 + unist-util-visit: 2.0.3 + dev: true + + /remark-squeeze-paragraphs@4.0.0: + resolution: + { + integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw== + } + dependencies: + mdast-squeeze-paragraphs: 4.0.0 + dev: true + + /remeda@0.0.32: + resolution: + { + integrity: sha512-FEdl8ONpqY7AvvMHG5WYdomc0mGf2khHPUDu6QvNkOq4Wjkw5BvzWM4QyksAQ/US1sFIIRG8TVBn6iJx6HbRrA== + } + dev: true + + /remove-trailing-separator@1.1.0: + resolution: + { + integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== + } + requiresBuild: true + + /renderkid@2.0.7: + resolution: + { + integrity: sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ== + } + dependencies: + css-select: 4.3.0 + dom-converter: 0.2.0 + htmlparser2: 6.1.0 + lodash: 4.17.21 + strip-ansi: 3.0.1 + + /renderkid@3.0.0: + resolution: + { + integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== + } + dependencies: + css-select: 4.3.0 + dom-converter: 0.2.0 + htmlparser2: 6.1.0 + lodash: 4.17.21 + strip-ansi: 6.0.1 + + /repeat-element@1.1.4: + resolution: + { + integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== + } + engines: { node: '>=0.10.0' } + + /repeat-string@1.6.1: + resolution: + { + integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== + } + engines: { node: '>=0.10' } + + /require-directory@2.1.1: + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + } + engines: { node: '>=0.10.0' } + + /require-from-string@2.0.2: + resolution: + { + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + } + engines: { node: '>=0.10.0' } + + /require-main-filename@2.0.0: + resolution: + { + integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + } + + /require-package-name@2.0.1: + resolution: + { + integrity: sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q== + } + dev: false + + /requires-port@1.0.0: + resolution: + { + integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + } + + /reselect@4.1.8: + resolution: + { + integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ== + } + dev: false + + /resolve-alpn@1.2.1: + resolution: + { + integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== + } + + /resolve-cwd@2.0.0: + resolution: + { + integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg== + } + engines: { node: '>=4' } + dependencies: + resolve-from: 3.0.0 + + /resolve-cwd@3.0.0: + resolution: + { + integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + } + engines: { node: '>=8' } + dependencies: + resolve-from: 5.0.0 + dev: true + + /resolve-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 + + /resolve-from@3.0.0: + resolution: + { + integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== + } + engines: { node: '>=4' } + + /resolve-from@4.0.0: + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + } + engines: { node: '>=4' } + + /resolve-from@5.0.0: + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + } + engines: { node: '>=8' } + + /resolve-url@0.2.1: + resolution: + { + integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== + } + deprecated: https://github.com/lydell/resolve-url#deprecated + + /resolve.exports@2.0.2: + resolution: + { + integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== + } + engines: { node: '>=10' } + + /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 + + /resolve@2.0.0-next.5: + resolution: + { + integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA== + } + hasBin: true + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + /responselike@2.0.1: + resolution: + { + integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw== + } + dependencies: + lowercase-keys: 2.0.0 + + /restore-cursor@3.1.0: + resolution: + { + integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + } + engines: { node: '>=8' } + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: false + + /ret@0.1.15: + resolution: + { + integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + } + engines: { node: '>=0.12' } + + /ret@0.2.2: + resolution: + { + integrity: sha512-M0b3YWQs7R3Z917WRQy1HHA7Ba7D8hvZg6UE5mLykJxQVE2ju0IXbGlaHPPlkY+WN7wFP+wUMXmBFA0aV6vYGQ== + } + engines: { node: '>=4' } + dev: false + + /retry@0.12.0: + resolution: + { + integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + } + engines: { node: '>= 4' } + dev: true + + /retry@0.13.1: + resolution: + { + integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== + } + engines: { node: '>= 4' } + + /reusify@1.0.4: + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + } + engines: { iojs: '>=1.0.0', node: '>=0.10.0' } + + /rfc4648@1.5.3: + resolution: + { + integrity: sha512-MjOWxM065+WswwnmNONOT+bD1nXzY9Km6u3kzvnx8F8/HXGZdz3T6e6vZJ8Q/RIMUSp/nxqjH3GwvJDy8ijeQQ== + } + dev: false + + /rfdc@1.3.1: + resolution: + { + integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg== + } + + /rimraf@2.6.3: + resolution: + { + integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + } + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + dependencies: + glob: 7.2.3 + 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.2.3 + + /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.2.3 + + /ripemd160@2.0.2: + resolution: + { + integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + } + dependencies: + hash-base: 3.1.0 + inherits: 2.0.4 + + /rsvp@4.8.5: + resolution: + { + integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== + } + engines: { node: 6.* || >= 7.* } + dev: true + + /rtl-css-js@1.16.1: + resolution: + { + integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg== + } + dependencies: + '@babel/runtime': 7.24.0 + dev: false + + /run-async@2.4.1: + resolution: + { + integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + } + engines: { node: '>=0.12.0' } + dev: false + + /run-parallel@1.2.0: + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + } + dependencies: + queue-microtask: 1.2.3 + + /run-queue@1.0.3: + resolution: + { + integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg== + } + dependencies: + aproba: 1.2.0 + + /rxjs@6.6.7: + resolution: + { + integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== + } + engines: { npm: '>=2.0.0' } + dependencies: + tslib: 1.14.1 + + /rxjs@7.8.1: + resolution: + { + integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== + } + dependencies: + tslib: 2.3.1 + dev: false + + /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 + + /safe-buffer@5.1.1: + resolution: + { + integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg== + } + 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.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 + + /safe-regex2@2.0.0: + resolution: + { + integrity: sha512-PaUSFsUaNNuKwkBijoAPHAK6/eM6VirvyPWlZ7BAQy4D+hCvh4B6lIG+nPdhbFfIbP+gTGBcrdsOaUs0F+ZBOQ== + } + dependencies: + ret: 0.2.2 + dev: false + + /safe-regex@1.1.0: + resolution: + { + integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== + } + dependencies: + ret: 0.1.15 + + /safer-buffer@2.1.2: + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + } + + /sane@4.1.0: + resolution: + { + integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== + } + engines: { node: 6.* || 8.* || >= 10.* } + deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added + hasBin: true + dependencies: + '@cnakazawa/watch': 1.0.4 + anymatch: 2.0.0 + capture-exit: 2.0.0 + exec-sh: 0.3.6 + execa: 1.0.0 + fb-watchman: 2.0.2 + micromatch: 3.1.10 + minimist: 1.2.8 + walker: 1.0.8 + dev: true + + /sass-embedded-android-arm64@1.77.2: + resolution: + { + integrity: sha512-7DiFMros5iRYrkPlNqUBfzZ/DCgsI199pRF8xuBsPf9yuB8SLDOqvNk3QOnUCMAbpjW5VW1JgdfGFFlHTCnJQA== + } + engines: { node: '>=14.0.0' } + cpu: [arm64] + os: [android] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-android-arm@1.77.2: + resolution: + { + integrity: sha512-rMuIMZ/FstMrT9Y23LDgQGpCyfe3i10dJnmW+DVJ9Gqz4dR7qpysEBIQXU35mHVq8ppNZ0yGiFlFZTSiiVMdzQ== + } + engines: { node: '>=14.0.0' } + cpu: [arm] + os: [android] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-android-ia32@1.77.2: + resolution: + { + integrity: sha512-qN0laKrAjuvBLFdUogGz8jQlbHs6tgH91tKQeE7ZE4AO9zzDRlXtaEJP1x6B6AGVc8UOEkvQyR3Nej4qwWprhA== + } + engines: { node: '>=14.0.0' } + cpu: [ia32] + os: [android] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-android-x64@1.77.2: + resolution: + { + integrity: sha512-HByqtC5g5hOaJenWs4Klx6gFEIZYx+IEFh5K56U+wB+jd6EU32Lrnbdxy1+i/p/kZrd+23HrVHQPv8zpmxucaw== + } + engines: { node: '>=14.0.0' } + cpu: [x64] + os: [android] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-darwin-arm64@1.77.2: + resolution: + { + integrity: sha512-0jkL/FwbAStqqxFSjHfhElEAWrKRRvFz2JeXOxskUdzMehDMv5LaewqSRCijyeKBO3KgurvndmSfrOizdU6WAw== + } + engines: { node: '>=14.0.0' } + cpu: [arm64] + os: [darwin] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-darwin-x64@1.77.2: + resolution: + { + integrity: sha512-8Sy36IxOOFPWA5TdhC87SvOkrXUSis51CGKlIsM8yZISQiY9y8b+wrNJM1f3oHvs641xZBaeIuwibJXaY6hNBg== + } + engines: { node: '>=14.0.0' } + cpu: [x64] + os: [darwin] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-linux-arm64@1.77.2: + resolution: + { + integrity: sha512-hlfNFu1IWHI0cOsbpFWPrJlx7IFZfXuI3iEhwa4oljM21y72E6tETUFmTr4f9Ka9qDLXkUxUoYaTH2SqGU9dDA== + } + engines: { node: '>=14.0.0' } + cpu: [arm64] + os: [linux] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-linux-arm@1.77.2: + resolution: + { + integrity: sha512-/gtCseBkGCBw61p6MG2BqeYy8rblffw2KXUzMKjo9Hlqj/KajWDk7j1B+mVnqrHOPB/KBbm8Ym/2ooCYpnMIkQ== + } + engines: { node: '>=14.0.0' } + cpu: [arm] + os: [linux] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-linux-ia32@1.77.2: + resolution: + { + integrity: sha512-JSIqGIeAKlrMw/oMFFFxZ10F3QUJVdjeGVI83h6mwNHTYgrX6PuOngcAYleIpYR5XicQgfueC5pPVPbP5CArBQ== + } + engines: { node: '>=14.0.0' } + cpu: [ia32] + os: [linux] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-linux-musl-arm64@1.77.2: + resolution: + { + integrity: sha512-JQZuONuhIurKjc/qE9cTiJXSLixL8hGkalWN3LJHasYHVAU92QA/t8rv0T51vIzf/I2F59He3bapkPme60dwSw== + } + engines: { node: '>=14.0.0' } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /sass-embedded-linux-musl-arm@1.77.2: + resolution: + { + integrity: sha512-LZTSnfHPlfvkdQ8orpnEUCEx40qhKpMjxN3Ggi8kgQqv5jvtqn0ECdWl0n4WI5CrlkmtdS3VeFcsf078bt/f8Q== + } + engines: { node: '>=14.0.0' } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /sass-embedded-linux-musl-ia32@1.77.2: + resolution: + { + integrity: sha512-6F1GHBgPkcTXtfM0MK3PofozagNF8IawdfIG4RNzGeSZRhGBRgZLOS+vdre4xubTLSaa6xjbI47YfaD43z8URQ== + } + engines: { node: '>=14.0.0' } + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /sass-embedded-linux-musl-x64@1.77.2: + resolution: + { + integrity: sha512-8BiqLA1NJeN3rCaX6t747GWMMdH5YUFYuytXU8waDC/u+FSGoOHRxfrsB8BEWHVgSPDxhwZklanPCXXzbzB2lw== + } + engines: { node: '>=14.0.0' } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /sass-embedded-linux-x64@1.77.2: + resolution: + { + integrity: sha512-czQOxGOX4U47jW9k+cbFBgSt/6FVx2WGLPqPvrgDiEToLJdZyvzUqrkpqQYfJ6hN1koqatCPEpDrUZBcTPGUGg== + } + engines: { node: '>=14.0.0' } + cpu: [x64] + os: [linux] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-win32-arm64@1.77.2: + resolution: + { + integrity: sha512-NA+4Y5PO04YQGtKNCyLrUjQU2nijskVA3Er/UYGtx66BBlWZ/ttbnlk+dU05SF5Jhjb3HtThGGH1meb7pKA+OQ== + } + engines: { node: '>=14.0.0' } + cpu: [arm64] + os: [win32] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-win32-ia32@1.77.2: + resolution: + { + integrity: sha512-/3hGz4GefhVuuUu2gSOdsxBYym5Di0co0tZbtiokCU/8VhYhcAQ3v2Lni49VV6OnsyJLb1nUx+rbpd8cKO1U4w== + } + engines: { node: '>=14.0.0' } + cpu: [ia32] + os: [win32] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded-win32-x64@1.77.2: + resolution: + { + integrity: sha512-joHLDICWmnR9Ca+LT9B+Fp85sCvV9F3gdtHtXLSuQAEulG5Ip1Z9euB3FUw+Z0s0Vz4MjNea+JD+TwO9eMrpyw== + } + engines: { node: '>=14.0.0' } + cpu: [x64] + os: [win32] + hasBin: true + requiresBuild: true + dev: false + optional: true + + /sass-embedded@1.77.2: + resolution: + { + integrity: sha512-luiDeWNZ0tKs1jCiSFbuz8wFVQxYqN+vh+yfm9v7kW42yPtwEF8+z2ROaDJluSUZ7vhFmsXuqoKg9qBxc7SCnw== + } + engines: { node: '>=16.0.0' } + dependencies: + '@bufbuild/protobuf': 1.8.0 + buffer-builder: 0.2.0 + immutable: 4.3.5 + rxjs: 7.8.1 + supports-color: 8.1.1 + varint: 6.0.0 + optionalDependencies: + sass-embedded-android-arm: 1.77.2 + sass-embedded-android-arm64: 1.77.2 + sass-embedded-android-ia32: 1.77.2 + sass-embedded-android-x64: 1.77.2 + sass-embedded-darwin-arm64: 1.77.2 + sass-embedded-darwin-x64: 1.77.2 + sass-embedded-linux-arm: 1.77.2 + sass-embedded-linux-arm64: 1.77.2 + sass-embedded-linux-ia32: 1.77.2 + sass-embedded-linux-musl-arm: 1.77.2 + sass-embedded-linux-musl-arm64: 1.77.2 + sass-embedded-linux-musl-ia32: 1.77.2 + sass-embedded-linux-musl-x64: 1.77.2 + sass-embedded-linux-x64: 1.77.2 + sass-embedded-win32-arm64: 1.77.2 + sass-embedded-win32-ia32: 1.77.2 + sass-embedded-win32-x64: 1.77.2 + dev: false + + /sass-loader@10.0.5(sass@1.3.2)(webpack@4.47.0): + resolution: + { + integrity: sha512-2LqoNPtKkZq/XbXNQ4C64GFEleSEHKv6NPSI+bMC/l+jpEXGJhiRYkAQToO24MR7NU4JRY2RpLpJ/gjo2Uf13w== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 + sass: ^1.3.0 + webpack: ^4.36.0 || ^5.0.0 || ^4 || ^5 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + klona: 2.0.6 + loader-utils: 2.0.4 + neo-async: 2.6.2 + sass: 1.3.2 + schema-utils: 3.3.0 + semver: 7.5.4 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /sass-loader@12.4.0(sass@1.49.11)(webpack@5.82.1): + resolution: + { + integrity: sha512-7xN+8khDIzym1oL9XyS6zP6Ges+Bo2B2xbPrjdMHEYyV3AQYhd/wXeru++3ODHF0zMjYmVadblSKrPrjEkL8mg== + } + engines: { node: '>= 12.13.0' } + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + sass: ^1.3.0 + webpack: ^5.0.0 || ^4 || ^5 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + klona: 2.0.6 + neo-async: 2.6.2 + sass: 1.49.11 + webpack: 5.82.1 + dev: false + + /sass@1.3.2: + resolution: + { + integrity: sha512-1dBIuVtEc5lcgHaEUY8FE50YlTZB59pyodpaVoPkBppxm9JcE6X2u+IcVitMxoQnvJvpjk8esR7UlnbNmFTH+Q== + } + engines: { node: '>=0.11.8' } + hasBin: true + dev: true + + /sass@1.49.11: + resolution: + { + integrity: sha512-wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ== + } + engines: { node: '>=12.0.0' } + hasBin: true + dependencies: + chokidar: 3.4.3 + immutable: 4.3.5 + source-map-js: 1.1.0 + dev: false + + /sax@1.2.1: + resolution: + { + integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA== + } + dev: true + + /sax@1.3.0: + resolution: + { + integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA== + } + + /saxes@6.0.0: + resolution: + { + integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== + } + engines: { node: '>=v12.22.7' } + dependencies: + xmlchars: 2.2.0 + + /scheduler@0.19.0: + resolution: + { + integrity: sha512-xowbVaTPe9r7y7RUejcK73/j8tt2jfiyTednOvHbA8JoClvMYCp+r8QegLwK/n8zWQAtZb1fFnER4XLBZXrCxA== + } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + dev: false + + /scheduler@0.20.2: + resolution: + { + integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ== + } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + + /schema-utils@1.0.0: + resolution: + { + integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== + } + engines: { node: '>= 4' } + dependencies: + ajv: 6.12.6 + ajv-errors: 1.0.1(ajv@6.12.6) + ajv-keywords: 3.5.2(ajv@6.12.6) + + /schema-utils@2.7.0: + resolution: + { + integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== + } + engines: { node: '>= 8.9.0' } + dependencies: + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + dev: true + + /schema-utils@2.7.1: + resolution: + { + integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== + } + engines: { node: '>= 8.9.0' } + dependencies: + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + 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) + + /schema-utils@4.2.0: + resolution: + { + integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== + } + engines: { node: '>= 12.13.0' } + dependencies: + '@types/json-schema': 7.0.15 + ajv: 8.13.0 + ajv-formats: 2.1.1 + ajv-keywords: 5.1.0(ajv@8.13.0) + dev: false + + /secure-json-parse@2.7.0: + resolution: + { + integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw== + } + dev: false + + /select-hose@2.0.0: + resolution: + { + integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== + } + dev: false + + /selfsigned@2.4.1: + resolution: + { + integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q== + } + engines: { node: '>=10' } + dependencies: + '@types/node-forge': 1.3.11 + node-forge: 1.3.1 + dev: false + + /semver-compare@1.0.0: + resolution: + { + integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== + } + dev: false + + /semver-diff@3.1.1: + resolution: + { + integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg== + } + engines: { node: '>=8' } + dependencies: + semver: 6.3.1 + + /semver-store@0.3.0: + resolution: + { + integrity: sha512-TcZvGMMy9vodEFSse30lWinkj+JgOBvPn8wRItpQRSayhc+4ssDs335uklkfvQQJgL/WvmHLVj4Ycv2s7QCQMg== + } + dev: false + + /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 + + /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 + + /semver@7.6.3: + resolution: + { + integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== + } + engines: { node: '>=10' } + hasBin: true + + /send@0.17.2: + resolution: + { + integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww== + } + engines: { node: '>= 0.8.0' } + dependencies: + debug: 2.6.9 + depd: 1.1.2 + destroy: 1.0.4 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 1.8.1 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.3.0 + range-parser: 1.2.1 + statuses: 1.5.0 + dev: false + + /send@0.18.0: + resolution: + { + integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== + } + engines: { node: '>= 0.8.0' } + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + + /serialize-javascript@4.0.0: + resolution: + { + integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== + } + dependencies: + randombytes: 2.1.0 + + /serialize-javascript@5.0.1: + resolution: + { + integrity: sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA== + } + dependencies: + randombytes: 2.1.0 + dev: true + + /serialize-javascript@6.0.0: + resolution: + { + integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== + } + dependencies: + randombytes: 2.1.0 + + /serialize-javascript@6.0.2: + resolution: + { + integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== + } + dependencies: + randombytes: 2.1.0 + + /serve-favicon@2.5.0: + resolution: + { + integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA== + } + engines: { node: '>= 0.8.0' } + dependencies: + etag: 1.8.1 + fresh: 0.5.2 + ms: 2.1.1 + parseurl: 1.3.3 + safe-buffer: 5.1.1 + dev: true + + /serve-index@1.9.1: + resolution: + { + integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== + } + engines: { node: '>= 0.8.0' } + dependencies: + accepts: 1.3.8 + batch: 0.6.1 + debug: 2.6.9 + escape-html: 1.0.3 + http-errors: 1.6.3 + mime-types: 2.1.35 + parseurl: 1.3.3 + dev: false + + /serve-static@1.15.0: + resolution: + { + integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + } + engines: { node: '>= 0.8.0' } + dependencies: + encodeurl: 1.0.2 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.18.0 + + /set-blocking@2.0.0: + resolution: + { + integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + } + + /set-cookie-parser@2.6.0: + resolution: + { + integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ== + } + dev: false + + /set-function-length@1.2.2: + resolution: + { + integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + } + engines: { node: '>= 0.4' } + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + has-property-descriptors: 1.0.2 + + /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 + + /set-immediate-shim@1.0.1: + resolution: + { + integrity: sha512-Li5AOqrZWCVA2n5kryzEmqai6bKSIvpz5oUJHPVj6+dsbD3X1ixtsY5tEnsaNpH3pFAHmG8eIHUrtEtohrg+UQ== + } + engines: { node: '>=0.10.0' } + dev: false + + /set-value@2.0.1: + resolution: + { + integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + } + engines: { node: '>=0.10.0' } + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + + /setimmediate@1.0.5: + resolution: + { + integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== + } + + /setprototypeof@1.1.0: + resolution: + { + integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + } + dev: false + + /setprototypeof@1.2.0: + resolution: + { + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + } + + /sha.js@2.4.11: + resolution: + { + integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + } + hasBin: true + dependencies: + inherits: 2.0.4 + safe-buffer: 5.2.1 + + /shallow-clone@3.0.1: + resolution: + { + integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + } + engines: { node: '>=8' } + dependencies: + kind-of: 6.0.3 + + /shallowequal@1.1.0: + resolution: + { + integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== + } + 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 + + /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' } + + /shebang-regex@3.0.0: + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + } + engines: { node: '>=8' } + + /shelljs@0.8.5: + resolution: + { + integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + } + engines: { node: '>=4' } + hasBin: true + dependencies: + glob: 7.0.6 + interpret: 1.4.0 + rechoir: 0.6.2 + 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.1 + + /signal-exit@3.0.7: + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + } + + /simple-concat@1.0.1: + resolution: + { + integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + } + dev: true + + /simple-get@4.0.1: + resolution: + { + integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== + } + dependencies: + decompress-response: 6.0.0 + once: 1.4.0 + simple-concat: 1.0.1 + dev: true + + /sirv@1.0.19: + resolution: + { + integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ== + } + engines: { node: '>= 10' } + dependencies: + '@polka/url': 1.0.0-next.25 + mrmime: 1.0.1 + totalist: 1.1.0 + + /sisteransi@1.0.5: + resolution: + { + integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + } + dev: true + + /slash@2.0.0: + resolution: + { + integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + } + engines: { node: '>=6' } + dev: true + + /slash@3.0.0: + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + } + engines: { node: '>=8' } + + /slice-ansi@2.1.0: + resolution: + { + integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + } + engines: { node: '>=6' } + dependencies: + ansi-styles: 3.2.1 + astral-regex: 1.0.0 + is-fullwidth-code-point: 2.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 + + /snapdragon-node@2.1.1: + resolution: + { + integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + } + engines: { node: '>=0.10.0' } + dependencies: + define-property: 1.0.0 + isobject: 3.0.1 + snapdragon-util: 3.0.1 + + /snapdragon-util@3.0.1: + resolution: + { + integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + } + engines: { node: '>=0.10.0' } + dependencies: + kind-of: 3.2.2 + + /snapdragon@0.8.2: + resolution: + { + integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + } + engines: { node: '>=0.10.0' } + dependencies: + base: 0.11.2 + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + map-cache: 0.2.2 + source-map: 0.5.7 + source-map-resolve: 0.5.3 + use: 3.1.1 + + /sockjs@0.3.24: + resolution: + { + integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== + } + dependencies: + faye-websocket: 0.11.4 + uuid: 8.3.2 + websocket-driver: 0.7.4 + dev: false + + /socks-proxy-agent@5.0.1: + resolution: + { + integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ== + } + engines: { node: '>= 6' } + dependencies: + agent-base: 6.0.2 + debug: 4.3.4(supports-color@8.1.1) + socks: 2.8.1 + transitivePeerDependencies: + - supports-color + dev: true + + /socks@2.8.1: + resolution: + { + integrity: sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ== + } + engines: { node: '>= 10.0.0', npm: '>= 3.0.0' } + dependencies: + ip-address: 9.0.5 + smart-buffer: 4.2.0 + dev: true + + /sonic-boom@1.4.1: + resolution: + { + integrity: sha512-LRHh/A8tpW7ru89lrlkU4AszXt1dbwSjVWguGrmlxE7tawVmDBlI1PILMkXAxJTwqhgsEeTHzj36D5CmHgQmNg== + } + dependencies: + atomic-sleep: 1.0.0 + flatstr: 1.0.12 + dev: false + + /sort-keys@4.2.0: + resolution: + { + integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg== + } + engines: { node: '>=8' } + dependencies: + is-plain-obj: 2.1.0 + dev: false + + /source-list-map@2.0.1: + resolution: + { + integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== + } + + /source-map-js@1.1.0: + resolution: + { + integrity: sha512-9vC2SfsJzlej6MAaMPLu8HiBSHGdRAJ9hVFYN1ibZoNkeanmDmLUcIrj6G9DGL7XMJ54AKg/G75akXl1/izTOw== + } + engines: { node: '>=0.10.0' } + + /source-map-loader@1.1.3(webpack@4.47.0): + resolution: + { + integrity: sha512-6YHeF+XzDOrT/ycFJNI53cgEsp/tHTMl37hi7uVyqFAlTXW109JazaQCkbc+jjoL2637qkH1amLi+JzrIpt5lA== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + abab: 2.0.6 + iconv-lite: 0.6.3 + loader-utils: 2.0.4 + schema-utils: 3.3.0 + source-map: 0.6.1 + webpack: 4.47.0(webpack-cli@3.3.12) + whatwg-mimetype: 2.3.0 + dev: true + + /source-map-loader@3.0.2(webpack@5.82.1): + resolution: + { + integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg== + } + engines: { node: '>= 12.13.0' } + peerDependencies: + webpack: ^5.0.0 || ^4 || ^5 + dependencies: + abab: 2.0.6 + iconv-lite: 0.6.3 + source-map-js: 1.1.0 + webpack: 5.82.1 + + /source-map-resolve@0.5.3: + resolution: + { + integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== + } + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.2 + resolve-url: 0.2.1 + source-map-url: 0.4.1 + urix: 0.1.0 + + /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.21: + resolution: + { + integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + } + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + /source-map-url@0.4.1: + resolution: + { + integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== + } + deprecated: See https://github.com/lydell/source-map-url#deprecated + + /source-map@0.5.7: + resolution: + { + integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + } + engines: { node: '>=0.10.0' } + + /source-map@0.6.1: + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + } + engines: { node: '>=0.10.0' } + + /source-map@0.7.4: + resolution: + { + integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + } + engines: { node: '>= 8' } + + /space-separated-tokens@1.1.5: + resolution: + { + integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== + } + dev: true + + /spdx-correct@3.2.0: + resolution: + { + integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== + } + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.17 + + /spdx-exceptions@2.5.0: + resolution: + { + integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w== + } + + /spdx-expression-parse@3.0.1: + resolution: + { + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + } + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.17 + + /spdx-license-ids@3.0.17: + resolution: + { + integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg== + } + + /spdy-transport@3.0.0: + resolution: + { + integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== + } + dependencies: + debug: 4.3.4(supports-color@8.1.1) + detect-node: 2.1.0 + hpack.js: 2.1.6 + obuf: 1.1.2 + readable-stream: 3.6.2 + wbuf: 1.7.3 + transitivePeerDependencies: + - supports-color + dev: false + + /spdy@4.0.2: + resolution: + { + integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== + } + engines: { node: '>=6.0.0' } + dependencies: + debug: 4.3.4(supports-color@8.1.1) + handle-thing: 2.0.1 + http-deceiver: 1.2.7 + select-hose: 2.0.0 + spdy-transport: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: false + + /split-string@3.1.0: + resolution: + { + integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + } + engines: { node: '>=0.10.0' } + dependencies: + extend-shallow: 3.0.2 + + /split2@3.2.2: + resolution: + { + integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== + } + dependencies: + readable-stream: 3.6.2 + 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 + + /ssri@6.0.2: + resolution: + { + integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q== + } + dependencies: + figgy-pudding: 3.5.2 + + /ssri@8.0.1: + resolution: + { + integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== + } + engines: { node: '>= 8' } + dependencies: + minipass: 3.3.6 + + /stable@0.1.8: + resolution: + { + integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + } + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + /stack-utils@2.0.6: + resolution: + { + integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== + } + engines: { node: '>=10' } + dependencies: + escape-string-regexp: 2.0.0 + + /stackframe@1.3.4: + resolution: + { + integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== + } + + /state-toggle@1.0.3: + resolution: + { + integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== + } + dev: true + + /static-extend@0.1.2: + resolution: + { + integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== + } + engines: { node: '>=0.10.0' } + dependencies: + define-property: 0.2.5 + object-copy: 0.1.0 + + /statuses@1.5.0: + resolution: + { + integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + } + engines: { node: '>= 0.6' } + dev: false + + /statuses@2.0.1: + resolution: + { + integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + } + engines: { node: '>= 0.8' } + + /stop-iteration-iterator@1.0.0: + resolution: + { + integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== + } + engines: { node: '>= 0.4' } + dependencies: + internal-slot: 1.0.7 + dev: true + + /stoppable@1.1.0: + resolution: + { + integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw== + } + engines: { node: '>=4', npm: '>=6' } + dev: false + + /store2@2.14.3: + resolution: + { + integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg== + } + dev: true + + /stream-browserify@2.0.2: + resolution: + { + integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== + } + dependencies: + inherits: 2.0.4 + readable-stream: 2.3.8 + + /stream-each@1.2.3: + resolution: + { + integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== + } + dependencies: + end-of-stream: 1.4.4 + stream-shift: 1.0.3 + + /stream-http@2.8.3: + resolution: + { + integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== + } + dependencies: + builtin-status-codes: 3.0.0 + inherits: 2.0.4 + readable-stream: 2.3.8 + to-arraybuffer: 1.0.1 + xtend: 4.0.2 + + /stream-shift@1.0.3: + resolution: + { + integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ== + } + + /streamroller@3.1.5: + resolution: + { + integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw== + } + engines: { node: '>=8.0' } + dependencies: + date-format: 4.0.14 + debug: 4.3.4(supports-color@8.1.1) + fs-extra: 8.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /strict-uri-encode@2.0.0: + resolution: + { + integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== + } + engines: { node: '>=4' } + dev: false + + /string-argv@0.3.2: + resolution: + { + integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== + } + engines: { node: '>=0.6.19' } + + /string-hash@1.1.3: + resolution: + { + integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A== + } + dev: false + + /string-length@4.0.2: + resolution: + { + integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== + } + engines: { node: '>=10' } + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 + + /string-similarity@4.0.4: + resolution: + { + integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ== + } + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + dev: false + + /string-width@1.0.2: + resolution: + { + integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== + } + engines: { node: '>=0.10.0' } + dependencies: + code-point-at: 1.1.0 + is-fullwidth-code-point: 1.0.0 + strip-ansi: 3.0.1 + dev: true + + /string-width@3.1.0: + resolution: + { + integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + } + engines: { node: '>=6' } + dependencies: + emoji-regex: 7.0.3 + is-fullwidth-code-point: 2.0.0 + strip-ansi: 5.2.0 + + /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 + + /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.matchall@4.0.10: + resolution: + { + integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ== + } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + get-intrinsic: 1.2.4 + has-symbols: 1.0.3 + internal-slot: 1.0.7 + regexp.prototype.flags: 1.5.2 + set-function-name: 2.0.2 + side-channel: 1.0.6 + + /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.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + dev: true + + /string.prototype.padstart@3.1.6: + resolution: + { + integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + 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.2 + es-object-atoms: 1.0.0 + + /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 + + /string.prototype.trimstart@1.0.7: + resolution: + { + integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg== + } + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.2 + + /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 + + /strip-ansi@3.0.1: + resolution: + { + integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== + } + engines: { node: '>=0.10.0' } + dependencies: + ansi-regex: 2.1.1 + + /strip-ansi@5.2.0: + resolution: + { + integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + } + engines: { node: '>=6' } + dependencies: + ansi-regex: 4.1.1 + + /strip-ansi@6.0.1: + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + } + engines: { node: '>=8' } + dependencies: + ansi-regex: 5.0.1 + + /strip-ansi@7.1.0: + resolution: + { + integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + } + engines: { node: '>=12' } + dependencies: + ansi-regex: 6.0.1 + dev: true + + /strip-bom@3.0.0: + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + } + engines: { node: '>=4' } + dev: false + + /strip-bom@4.0.0: + resolution: + { + integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + } + engines: { node: '>=8' } + + /strip-eof@1.0.0: + resolution: + { + integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== + } + engines: { node: '>=0.10.0' } + dev: true + + /strip-final-newline@2.0.0: + resolution: + { + integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + } + engines: { node: '>=6' } + + /strip-indent@3.0.0: + resolution: + { + integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + } + engines: { node: '>=8' } + dependencies: + min-indent: 1.0.1 + + /strip-json-comments@2.0.1: + resolution: + { + integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + } + engines: { node: '>=0.10.0' } + + /strip-json-comments@3.1.1: + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + } + engines: { node: '>=8' } + + /strnum@1.0.5: + resolution: + { + integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA== + } + dev: true + + /style-loader@1.3.0(webpack@4.47.0): + resolution: + { + integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q== + } + engines: { node: '>= 8.9.0' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + loader-utils: 2.0.4 + schema-utils: 2.7.1 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /style-loader@2.0.0(webpack@4.47.0): + resolution: + { + integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /style-loader@3.3.4(webpack@5.82.1): + resolution: + { + integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w== + } + engines: { node: '>= 12.13.0' } + peerDependencies: + webpack: ^5.0.0 || ^4 || ^5 + dependencies: + webpack: 5.82.1 + + /style-to-object@0.3.0: + resolution: + { + integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA== + } + dependencies: + inline-style-parser: 0.1.1 + dev: true + + /stylehacks@5.1.1(postcss@8.4.36): + resolution: + { + integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.23.0 + postcss: 8.4.36 + postcss-selector-parser: 6.0.16 + dev: false + + /stylis@4.3.1: + resolution: + { + integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ== + } + dev: false + + /sudo@1.0.3: + resolution: + { + integrity: sha512-3xMsaPg+8Xm+4LQm0b2V+G3lz3YxtDBzlqiU8CXw2AOIIDSvC1kBxIxBjnoCTq8dTTXAy23m58g6mdClUocpmQ== + } + engines: { node: '>=0.8' } + dependencies: + inpath: 1.0.2 + pidof: 1.0.2 + read: 1.0.7 + dev: false + + /supports-color@5.5.0: + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + } + engines: { node: '>=4' } + dependencies: + has-flag: 3.0.0 + + /supports-color@6.1.0: + resolution: + { + integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + } + engines: { node: '>=6' } + dependencies: + has-flag: 3.0.0 + + /supports-color@7.2.0: + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + } + engines: { node: '>=8' } + dependencies: + has-flag: 4.0.0 + + /supports-color@8.1.1: + 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' } + + /svgo@2.8.0: + resolution: + { + integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== + } + engines: { node: '>=10.13.0' } + hasBin: true + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 4.3.0 + css-tree: 1.1.3 + csso: 4.2.0 + picocolors: 1.0.0 + stable: 0.1.8 + dev: false + + /symbol-tree@3.2.4: + resolution: + { + integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== + } + + /symbol.prototype.description@1.0.6: + resolution: + { + integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA== + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-symbol-description: 1.0.2 + has-symbols: 1.0.3 + object.getownpropertydescriptors: 2.1.7 + dev: true + + /synchronous-promise@2.0.17: + resolution: + { + integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g== + } + dev: true + + /table@5.4.6: + resolution: + { + integrity: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== + } + engines: { node: '>=6.0.0' } + dependencies: + ajv: 6.12.6 + lodash: 4.17.21 + slice-ansi: 2.1.0 + string-width: 3.1.0 + dev: true + + /table@6.8.1: + resolution: + { + integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA== + } + engines: { node: '>=10.0.0' } + dependencies: + ajv: 8.13.0 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /tabster@6.1.0: + resolution: + { + integrity: sha512-wTPy2d6WVmU/YjT0ERY9jc+et1P/B8FoSQ4qhr1xi7liwTezRbRV6yA1pKx8kdPWmLdIOBA4fn07x9c0x/wnow== + } + dependencies: + keyborg: 2.5.0 + tslib: 2.3.1 + dev: false + + /tapable@1.1.3: + resolution: + { + integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + } + engines: { node: '>=6' } + + /tapable@2.2.1: + resolution: + { + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== + } + engines: { node: '>=6' } + + /tar-fs@2.1.1: + resolution: + { + integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + } + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.0 + tar-stream: 2.2.0 + 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.2.1: + resolution: + { + integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== + } + engines: { node: '>=10' } + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + + /telejson@5.3.3: + resolution: + { + integrity: sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA== + } + dependencies: + '@types/is-function': 1.0.3 + global: 4.4.0 + is-function: 1.0.2 + is-regex: 1.1.4 + is-symbol: 1.0.4 + isobject: 4.0.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + dev: true + + /temp@0.8.4: + resolution: + { + integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg== + } + engines: { node: '>=6.0.0' } + dependencies: + rimraf: 2.6.3 + dev: true + + /terser-webpack-plugin@1.4.5(webpack@4.47.0): + resolution: + { + integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw== + } + engines: { node: '>= 6.9.0' } + peerDependencies: + webpack: ^4.0.0 || ^4 || ^5 + dependencies: + cacache: 12.0.4 + find-cache-dir: 2.1.0 + is-wsl: 1.1.0 + schema-utils: 1.0.0 + serialize-javascript: 4.0.0 + source-map: 0.6.1 + terser: 4.8.1 + webpack: 4.47.0(webpack-cli@3.3.12) + webpack-sources: 1.4.3 + worker-farm: 1.7.0 + + /terser-webpack-plugin@3.0.8(webpack@4.47.0): + resolution: + { + integrity: sha512-ygwK8TYMRTYtSyLB2Mhnt90guQh989CIq/mL/2apwi6rA15Xys4ydNUiH4ah6EZCfQxSk26ZFQilZ4IQ6IZw6A== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + cacache: 15.3.0 + find-cache-dir: 3.3.2 + jest-worker: 26.6.2 + p-limit: 3.1.0 + schema-utils: 2.7.1 + serialize-javascript: 4.0.0 + source-map: 0.6.1 + terser: 4.8.1 + webpack: 4.47.0(webpack-cli@3.3.12) + webpack-sources: 1.4.3 + dev: true + + /terser-webpack-plugin@4.2.3(webpack@4.47.0): + resolution: + { + integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + dependencies: + cacache: 15.3.0 + find-cache-dir: 3.3.2 + jest-worker: 26.6.2 + p-limit: 3.1.0 + schema-utils: 3.3.0 + serialize-javascript: 5.0.1 + source-map: 0.6.1 + terser: 5.29.2 + webpack: 4.47.0(webpack-cli@3.3.12) + webpack-sources: 1.4.3 + dev: true + + /terser-webpack-plugin@5.3.10(webpack@5.82.1): + resolution: + { + integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 || ^4 || ^5 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.25 + jest-worker: 27.5.1 + schema-utils: 3.3.0 + serialize-javascript: 6.0.2 + terser: 5.29.2 + webpack: 5.82.1 + + /terser@4.8.1: + resolution: + { + integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw== + } + engines: { node: '>=6.0.0' } + hasBin: true + dependencies: + commander: 2.20.3 + source-map: 0.6.1 + source-map-support: 0.5.21 + + /terser@5.29.2: + resolution: + { + integrity: sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw== + } + engines: { node: '>=10' } + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.11.3 + commander: 2.20.3 + source-map-support: 0.5.21 + + /test-exclude@6.0.0: + resolution: + { + integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + } + engines: { node: '>=8' } + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.2.3 + minimatch: 3.0.8 + + /text-table@0.2.0: + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + } + + /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: false + + /thenify@3.3.1: + resolution: + { + integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + } + dependencies: + any-promise: 1.3.0 + dev: false + + /throat@6.0.2: + resolution: + { + integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ== + } + dev: false + + /throttle-debounce@3.0.1: + resolution: + { + integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg== + } + engines: { node: '>=10' } + dev: true + + /through2@2.0.5: + resolution: + { + integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + } + dependencies: + readable-stream: 2.3.8 + xtend: 4.0.2 + + /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: false + + /thunky@1.1.0: + resolution: + { + integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + } + dev: false + + /timers-browserify@2.0.12: + resolution: + { + integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== + } + engines: { node: '>=0.6.0' } + dependencies: + setimmediate: 1.0.5 + + /tiny-lru@7.0.6: + resolution: + { + integrity: sha512-zNYO0Kvgn5rXzWpL0y3RS09sMK67eGaQj9805jlK9G6pSadfriTczzLHFXa/xcW4mIRfmlB9HyQ/+SgL0V1uow== + } + engines: { node: '>=6' } + dev: false + + /tmp@0.0.33: + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + } + engines: { node: '>=0.6.0' } + dependencies: + os-tmpdir: 1.0.2 + dev: false + + /tmp@0.2.3: + resolution: + { + integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w== + } + engines: { node: '>=14.14' } + dev: true + + /tmpl@1.0.5: + resolution: + { + integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + } + + /to-arraybuffer@1.0.1: + resolution: + { + integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA== + } + + /to-fast-properties@2.0.0: + resolution: + { + integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + } + engines: { node: '>=4' } + + /to-object-path@0.3.0: + resolution: + { + integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== + } + engines: { node: '>=0.10.0' } + dependencies: + kind-of: 3.2.2 + + /to-regex-range@2.1.1: + resolution: + { + integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg== + } + engines: { node: '>=0.10.0' } + dependencies: + is-number: 3.0.0 + repeat-string: 1.6.1 + + /to-regex-range@5.0.1: + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + } + engines: { node: '>=8.0' } + dependencies: + is-number: 7.0.0 + + /to-regex@3.0.2: + resolution: + { + integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + } + engines: { node: '>=0.10.0' } + dependencies: + define-property: 2.0.2 + extend-shallow: 3.0.2 + regex-not: 1.0.2 + safe-regex: 1.1.0 + + /toggle-selection@1.0.6: + resolution: + { + integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ== + } + dev: true + + /toidentifier@1.0.1: + resolution: + { + integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + } + engines: { node: '>=0.6' } + + /totalist@1.1.0: + resolution: + { + integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g== + } + engines: { node: '>=6' } + + /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 + + /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 + + /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: false + + /trim-trailing-lines@1.1.4: + resolution: + { + integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ== + } + dev: true + + /trim@0.0.1: + resolution: + { + integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ== + } + deprecated: Use String.prototype.trim() instead + dev: true + + /trough@1.0.5: + resolution: + { + integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== + } + dev: true + + /true-case-path@2.2.1: + resolution: + { + integrity: sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q== + } + + /ts-api-utils@1.3.0(typescript@4.9.5): + resolution: + { + integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== + } + engines: { node: '>=16' } + peerDependencies: + typescript: '>=4.2.0' + dependencies: + typescript: 4.9.5 + dev: true + + /ts-api-utils@1.3.0(typescript@5.4.2): + resolution: + { + integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== + } + engines: { node: '>=16' } + peerDependencies: + typescript: '>=4.2.0' + dependencies: + typescript: 5.4.2 + + /ts-dedent@2.2.0: + resolution: + { + integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ== + } + engines: { node: '>=6.10' } + dev: true + + /ts-loader@6.0.0(typescript@5.4.2): + resolution: + { + integrity: sha512-lszy+D41R0Te2+loZxADWS+E1+Z55A+i3dFfFie1AZHL++65JRKVDBPQgeWgRrlv5tbxdU3zOtXp8b7AFR6KEg== + } + engines: { node: '>=8.6' } + peerDependencies: + typescript: '*' + dependencies: + chalk: 2.4.2 + enhanced-resolve: 4.5.0 + loader-utils: 1.4.2 + micromatch: 4.0.5 + semver: 6.3.1 + typescript: 5.4.2 + dev: false + + /ts-pnp@1.2.0(typescript@5.4.2): + resolution: + { + integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== + } + engines: { node: '>=6' } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + typescript: 5.4.2 + dev: true + + /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: false + + /tslib@1.14.1: + resolution: + { + integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + } + + /tslib@2.3.1: + resolution: + { + integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + } + + /tslib@2.4.0: + resolution: + { + integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + } + dev: true + + /tslib@2.6.2: + resolution: + { + integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + } + + /tslint@5.20.1(typescript@2.9.2): + resolution: + { + integrity: sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg== + } + engines: { node: '>=4.8.0' } + hasBin: true + peerDependencies: + typescript: '>=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev' + dependencies: + '@babel/code-frame': 7.23.5 + builtin-modules: 1.1.1 + chalk: 2.4.2 + commander: 2.20.3 + diff: 4.0.2 + glob: 7.2.3 + js-yaml: 3.13.1 + minimatch: 3.0.8 + mkdirp: 0.5.6 + resolve: 1.22.8 + semver: 5.7.2 + tslib: 1.14.1 + tsutils: 2.29.0(typescript@2.9.2) + typescript: 2.9.2 + dev: true + + /tslint@5.20.1(typescript@3.9.10): + resolution: + { + integrity: sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg== + } + engines: { node: '>=4.8.0' } + hasBin: true + peerDependencies: + typescript: '>=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev' + dependencies: + '@babel/code-frame': 7.23.5 + builtin-modules: 1.1.1 + chalk: 2.4.2 + commander: 2.20.3 + diff: 4.0.2 + glob: 7.2.3 + js-yaml: 3.13.1 + minimatch: 3.0.8 + mkdirp: 0.5.6 + resolve: 1.22.8 + semver: 5.7.2 + tslib: 1.14.1 + tsutils: 2.29.0(typescript@3.9.10) + typescript: 3.9.10 + dev: true + + /tslint@5.20.1(typescript@4.9.5): + resolution: + { + integrity: sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg== + } + engines: { node: '>=4.8.0' } + hasBin: true + peerDependencies: + typescript: '>=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev' + dependencies: + '@babel/code-frame': 7.23.5 + builtin-modules: 1.1.1 + chalk: 2.4.2 + commander: 2.20.3 + diff: 4.0.2 + glob: 7.2.3 + js-yaml: 3.13.1 + minimatch: 3.0.8 + mkdirp: 0.5.6 + resolve: 1.22.8 + semver: 5.7.2 + tslib: 1.14.1 + tsutils: 2.29.0(typescript@4.9.5) + typescript: 4.9.5 + dev: true + + /tslint@5.20.1(typescript@5.4.2): + resolution: + { + integrity: sha512-EcMxhzCFt8k+/UP5r8waCf/lzmeSyVlqxqMEDQE7rWYiQky8KpIBz1JAoYXfROHrPZ1XXd43q8yQnULOLiBRQg== + } + engines: { node: '>=4.8.0' } + hasBin: true + peerDependencies: + typescript: '>=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev' + dependencies: + '@babel/code-frame': 7.23.5 + builtin-modules: 1.1.1 + chalk: 2.4.2 + commander: 2.20.3 + diff: 4.0.2 + glob: 7.2.3 + js-yaml: 3.13.1 + minimatch: 3.0.8 + mkdirp: 0.5.6 + resolve: 1.22.8 + semver: 5.7.2 + tslib: 1.14.1 + tsutils: 2.29.0(typescript@5.4.2) + typescript: 5.4.2 + dev: true + + /tsutils@2.29.0(typescript@2.9.2): + resolution: + { + integrity: sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== + } + peerDependencies: + typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev' + dependencies: + tslib: 1.14.1 + typescript: 2.9.2 + dev: true + + /tsutils@2.29.0(typescript@3.9.10): + resolution: + { + integrity: sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== + } + peerDependencies: + typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev' + dependencies: + tslib: 1.14.1 + typescript: 3.9.10 + dev: true + + /tsutils@2.29.0(typescript@4.9.5): + resolution: + { + integrity: sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== + } + peerDependencies: + typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev' + dependencies: + tslib: 1.14.1 + typescript: 4.9.5 + dev: true + + /tsutils@2.29.0(typescript@5.4.2): + resolution: + { + integrity: sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA== + } + peerDependencies: + typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev' + dependencies: + tslib: 1.14.1 + typescript: 5.4.2 + dev: true + + /tsutils@3.21.0(typescript@5.4.2): + 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: 5.4.2 + dev: false + + /tty-browserify@0.0.0: + resolution: + { + integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw== + } + + /tunnel-agent@0.6.0: + resolution: + { + integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + } + dependencies: + safe-buffer: 5.2.1 + dev: true + + /tunnel@0.0.6: + resolution: + { + integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== + } + engines: { node: '>=0.6.11 <=0.7.0 || >=0.7.3' } + + /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.18.1: + resolution: + { + integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== + } + engines: { node: '>=10' } + dev: false + + /type-fest@0.20.2: + resolution: + { + integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + } + engines: { node: '>=10' } + + /type-fest@0.21.3: + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + } + engines: { node: '>=10' } + + /type-fest@0.6.0: + resolution: + { + integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + } + engines: { node: '>=8' } + + /type-fest@0.8.1: + resolution: + { + integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + } + engines: { node: '>=8' } + + /type-fest@2.19.0: + resolution: + { + integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== + } + engines: { node: '>=12.20' } + dev: true + + /type-is@1.6.18: + resolution: + { + integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + } + engines: { node: '>= 0.6' } + dependencies: + media-typer: 0.3.0 + mime-types: 2.1.35 + + /typed-array-buffer@1.0.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 + + /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 + + /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 + + /typed-array-length@1.0.5: + resolution: + { + integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA== + } + 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 + + /typed-rest-client@1.8.11: + resolution: + { + integrity: sha512-5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA== + } + dependencies: + qs: 6.12.0 + tunnel: 0.0.6 + underscore: 1.13.6 + dev: true + + /typedarray-to-buffer@3.1.5: + resolution: + { + integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + } + dependencies: + is-typedarray: 1.0.0 + + /typedarray@0.0.6: + resolution: + { + integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== + } + + /typescript@2.9.2: + resolution: + { + integrity: sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w== + } + engines: { node: '>=4.2.0' } + hasBin: true + dev: true + + /typescript@3.9.10: + resolution: + { + integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== + } + engines: { node: '>=4.2.0' } + hasBin: true + dev: true + + /typescript@4.9.5: + resolution: + { + integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + } + engines: { node: '>=4.2.0' } + hasBin: true + dev: true + + /typescript@5.4.2: + resolution: + { + integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ== + } + engines: { node: '>=14.17' } + hasBin: 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.7 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + + /underscore@1.13.6: + resolution: + { + integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== + } + dev: true + + /undici-types@5.26.5: + resolution: + { + integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== + } + + /unfetch@4.2.0: + resolution: + { + integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA== + } + dev: true + + /unherit@1.1.3: + resolution: + { + integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== + } + dependencies: + inherits: 2.0.4 + xtend: 4.0.2 + dev: true + + /unicode-canonical-property-names-ecmascript@2.0.0: + resolution: + { + integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + } + engines: { node: '>=4' } + dev: true + + /unicode-match-property-ecmascript@2.0.0: + resolution: + { + integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + } + engines: { node: '>=4' } + dependencies: + unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-property-aliases-ecmascript: 2.1.0 + dev: true + + /unicode-match-property-value-ecmascript@2.1.0: + resolution: + { + integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + } + engines: { node: '>=4' } + dev: true + + /unicode-property-aliases-ecmascript@2.1.0: + resolution: + { + integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + } + engines: { node: '>=4' } + dev: true + + /unified@9.2.0: + resolution: + { + integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg== + } + dependencies: + bail: 1.0.5 + extend: 3.0.2 + is-buffer: 2.0.5 + is-plain-obj: 2.1.0 + trough: 1.0.5 + vfile: 4.2.1 + dev: true + + /union-value@1.0.1: + resolution: + { + integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== + } + engines: { node: '>=0.10.0' } + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + + /unique-filename@1.1.1: + resolution: + { + integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + } + dependencies: + unique-slug: 2.0.2 + + /unique-slug@2.0.2: + resolution: + { + integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== + } + dependencies: + imurmurhash: 0.1.4 + + /unique-string@2.0.0: + resolution: + { + integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg== + } + engines: { node: '>=8' } + dependencies: + crypto-random-string: 2.0.0 + + /unist-builder@2.0.3: + resolution: + { + integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw== + } + dev: true + + /unist-util-generated@1.1.6: + resolution: + { + integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg== + } + dev: true + + /unist-util-is@4.1.0: + resolution: + { + integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== + } + dev: true + + /unist-util-position@3.1.0: + resolution: + { + integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA== + } + dev: true + + /unist-util-remove-position@2.0.1: + resolution: + { + integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA== + } + dependencies: + unist-util-visit: 2.0.3 + dev: true + + /unist-util-remove@2.1.0: + resolution: + { + integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q== + } + dependencies: + unist-util-is: 4.1.0 + dev: true + + /unist-util-stringify-position@2.0.3: + resolution: + { + integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== + } + dependencies: + '@types/unist': 2.0.10 + dev: true + + /unist-util-visit-parents@3.1.1: + resolution: + { + integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== + } + dependencies: + '@types/unist': 2.0.10 + unist-util-is: 4.1.0 + dev: true + + /unist-util-visit@2.0.3: + resolution: + { + integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q== + } + dependencies: + '@types/unist': 2.0.10 + unist-util-is: 4.1.0 + unist-util-visit-parents: 3.1.1 + 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' } + + /universalify@2.0.1: + resolution: + { + integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw== + } + engines: { node: '>= 10.0.0' } + dev: true + + /unpipe@1.0.0: + resolution: + { + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + } + engines: { node: '>= 0.8' } + + /unset-value@1.0.0: + resolution: + { + integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== + } + engines: { node: '>=0.10.0' } + dependencies: + has-value: 0.3.1 + isobject: 3.0.1 + + /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@1.2.0: + resolution: + { + integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== + } + engines: { node: '>=4' } + requiresBuild: true + optional: true + + /update-browserslist-db@1.0.13(browserslist@4.23.0): + resolution: + { + integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== + } + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.23.0 + escalade: 3.1.2 + picocolors: 1.0.0 + + /update-notifier@5.1.0: + resolution: + { + integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== + } + engines: { node: '>=10' } + dependencies: + boxen: 5.1.2 + chalk: 4.1.2 + configstore: 5.0.1 + has-yarn: 2.1.0 + import-lazy: 2.1.0 + is-ci: 2.0.0 + is-installed-globally: 0.4.0 + is-npm: 5.0.0 + is-yarn-global: 0.3.0 + latest-version: 5.1.0 + pupa: 2.1.1 + semver: 7.5.4 + semver-diff: 3.1.1 + xdg-basedir: 4.0.0 + + /uri-js@4.4.1: + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + } + dependencies: + punycode: 2.3.1 + + /urix@0.1.0: + resolution: + { + integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== + } + deprecated: Please see https://github.com/lydell/urix#deprecated + + /url-join@4.0.1: + resolution: + { + integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA== + } + dev: true + + /url-loader@4.1.1(file-loader@6.2.0)(webpack@4.47.0): + resolution: + { + integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + file-loader: '*' + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + peerDependenciesMeta: + file-loader: + optional: true + dependencies: + file-loader: 6.2.0(webpack@4.47.0) + loader-utils: 2.0.4 + mime-types: 2.1.35 + schema-utils: 3.3.0 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /url-loader@4.1.1(webpack@5.82.1): + resolution: + { + integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== + } + engines: { node: '>= 10.13.0' } + peerDependencies: + file-loader: '*' + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + peerDependenciesMeta: + file-loader: + optional: true + dependencies: + loader-utils: 2.0.4 + mime-types: 2.1.35 + schema-utils: 3.3.0 + webpack: 5.82.1 + dev: false + + /url-parse@1.5.10: + resolution: + { + integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== + } + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + + /url@0.10.3: + resolution: + { + integrity: sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ== + } + dependencies: + punycode: 1.3.2 + querystring: 0.2.0 + dev: true + + /url@0.11.3: + resolution: + { + integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw== + } + dependencies: + punycode: 1.4.1 + qs: 6.12.0 + + /use-composed-ref@1.3.0(react@17.0.2): + resolution: + { + integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 17.0.2 + dev: true + + /use-disposable@1.0.2(@types/react-dom@17.0.25)(@types/react@17.0.74)(react-dom@17.0.2)(react@17.0.2): + resolution: + { + integrity: sha512-UMaXVlV77dWOu4GqAFNjRzHzowYKUKbJBQfCexvahrYeIz4OkUYUjna4Tjjdf92NH8Nm8J7wEfFRgTIwYjO5jg== + } + peerDependencies: + '@types/react': '>=16.8.0 <19.0.0' + '@types/react-dom': '>=16.8.0 <19.0.0' + react: '>=16.8.0 <19.0.0' + react-dom: '>=16.8.0 <19.0.0' + dependencies: + '@types/react': 17.0.74 + '@types/react-dom': 17.0.25 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + + /use-isomorphic-layout-effect@1.1.2(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== + } + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 17.0.74 + react: 17.0.2 + dev: true + + /use-latest@1.2.1(@types/react@17.0.74)(react@17.0.2): + resolution: + { + integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw== + } + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 17.0.74 + react: 17.0.2 + use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.74)(react@17.0.2) + dev: true + + /use-sync-external-store@1.2.0(react@17.0.2): + resolution: + { + integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 17.0.2 + dev: false + + /use@3.1.1: + resolution: + { + integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + } + engines: { node: '>=0.10.0' } + + /util-deprecate@1.0.2: + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + } + + /util.promisify@1.0.0: + resolution: + { + integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== + } + dependencies: + define-properties: 1.2.1 + object.getownpropertydescriptors: 2.1.7 + + /util@0.10.4: + resolution: + { + integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== + } + dependencies: + inherits: 2.0.3 + + /util@0.11.1: + resolution: + { + integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== + } + dependencies: + inherits: 2.0.3 + + /util@0.12.5: + resolution: + { + integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== + } + dependencies: + inherits: 2.0.4 + is-arguments: 1.1.1 + is-generator-function: 1.0.10 + is-typed-array: 1.1.13 + which-typed-array: 1.1.15 + dev: true + + /utila@0.4.0: + resolution: + { + integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== + } + + /utils-merge@1.0.1: + resolution: + { + integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + } + engines: { node: '>= 0.4.0' } + + /uuid-browser@3.1.0: + resolution: + { + integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg== + } + deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead + dev: true + + /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.0.0: + resolution: + { + integrity: sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw== + } + 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.4.0: + resolution: + { + integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw== + } + + /v8-to-istanbul@9.2.0: + resolution: + { + integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA== + } + 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 + + /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 + + /validate-npm-package-name@3.0.0: + resolution: + { + integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== + } + dependencies: + builtins: 1.0.3 + dev: false + + /validator@13.11.0: + resolution: + { + integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ== + } + engines: { node: '>= 0.10' } + + /varint@6.0.0: + resolution: + { + integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg== + } + dev: false + + /vary@1.1.2: + resolution: + { + integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + } + engines: { node: '>= 0.8' } + + /vfile-location@3.2.0: + resolution: + { + integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA== + } + dev: true + + /vfile-message@2.0.4: + resolution: + { + integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ== + } + dependencies: + '@types/unist': 2.0.10 + unist-util-stringify-position: 2.0.3 + dev: true + + /vfile@4.2.1: + resolution: + { + integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA== + } + dependencies: + '@types/unist': 2.0.10 + is-buffer: 2.0.5 + unist-util-stringify-position: 2.0.3 + vfile-message: 2.0.4 + dev: true + + /vm-browserify@1.1.2: + resolution: + { + integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== + } + + /vsce@2.14.0: + resolution: + { + integrity: sha512-LH0j++sHjcFNT++SYcJ86Zyw49GvyoTRfzYJGmaCgfzTyL7MyMhZeVEnj9K9qKh/m1N3/sdWWNxP+PFS/AvWiA== + } + engines: { node: '>= 14' } + deprecated: vsce has been renamed to @vscode/vsce. Install using @vscode/vsce instead. + hasBin: true + dependencies: + azure-devops-node-api: 11.2.0 + chalk: 2.4.2 + cheerio: 1.0.0-rc.12 + commander: 6.2.1 + glob: 7.0.6 + hosted-git-info: 4.1.0 + keytar: 7.9.0 + leven: 3.1.0 + markdown-it: 12.3.2 + mime: 1.6.0 + minimatch: 3.0.8 + parse-semver: 1.1.1 + read: 1.0.7 + semver: 5.7.2 + tmp: 0.2.3 + typed-rest-client: 1.8.11 + url-join: 4.0.1 + xml2js: 0.4.23 + yauzl: 2.10.0 + yazl: 2.5.1 + dev: true + + /w3c-xmlserializer@4.0.0: + resolution: + { + integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== + } + engines: { node: '>=14' } + dependencies: + xml-name-validator: 4.0.0 + + /walker@1.0.8: + resolution: + { + integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + } + dependencies: + makeerror: 1.0.12 + + /warning@4.0.3: + resolution: + { + integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== + } + dependencies: + loose-envify: 1.4.0 + dev: true + + /watchpack-chokidar2@2.0.1: + resolution: + { + integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww== + } + requiresBuild: true + dependencies: + chokidar: 2.1.8 + optional: true + + /watchpack@1.7.5: + resolution: + { + integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ== + } + dependencies: + graceful-fs: 4.2.11 + neo-async: 2.6.2 + optionalDependencies: + chokidar: 3.4.3 + watchpack-chokidar2: 2.0.1 + + /watchpack@2.4.0: + resolution: + { + integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + } + engines: { node: '>=10.13.0' } + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + + /wbuf@1.7.3: + resolution: + { + integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + } + dependencies: + minimalistic-assert: 1.0.1 + dev: false + + /wcwidth@1.0.1: + resolution: + { + integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + } + dependencies: + defaults: 1.0.4 + dev: false + + /web-namespaces@1.1.4: + resolution: + { + integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw== + } + 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' } + + /webpack-bundle-analyzer@4.5.0: + resolution: + { + integrity: sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ== + } + engines: { node: '>= 10.13.0' } + hasBin: true + dependencies: + acorn: 8.11.3 + acorn-walk: 8.3.2 + chalk: 4.1.2 + commander: 7.2.0 + gzip-size: 6.0.0 + lodash: 4.17.21 + opener: 1.5.2 + sirv: 1.0.19 + ws: 7.5.9 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + /webpack-cli@3.3.12(webpack@4.47.0): + resolution: + { + integrity: sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag== + } + engines: { node: '>=6.11.5' } + hasBin: true + peerDependencies: + webpack: 4.x.x || ^4 || ^5 + dependencies: + chalk: 2.4.2 + cross-spawn: 6.0.5 + enhanced-resolve: 4.5.0 + findup-sync: 3.0.0 + global-modules: 2.0.0 + import-local: 2.0.0 + interpret: 1.4.0 + loader-utils: 1.4.2 + supports-color: 6.1.0 + v8-compile-cache: 2.4.0 + webpack: 4.47.0(webpack-cli@3.3.12) + yargs: 13.3.2 + + /webpack-dev-middleware@3.7.3(@types/webpack@4.41.32)(webpack@4.47.0): + resolution: + { + integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ== + } + engines: { node: '>= 6' } + peerDependencies: + '@types/webpack': ^4 + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + peerDependenciesMeta: + '@types/webpack': + optional: true + dependencies: + '@types/webpack': 4.41.32 + memory-fs: 0.4.1 + mime: 2.6.0 + mkdirp: 0.5.6 + range-parser: 1.2.1 + webpack: 4.47.0(webpack-cli@3.3.12) + webpack-log: 2.0.0 + dev: true + + /webpack-dev-middleware@5.3.3(@types/webpack@4.41.32)(webpack@4.47.0): + resolution: + { + integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== + } + engines: { node: '>= 12.13.0' } + peerDependencies: + '@types/webpack': ^4 + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + peerDependenciesMeta: + '@types/webpack': + optional: true + dependencies: + '@types/webpack': 4.41.32 + colorette: 2.0.20 + memfs: 3.4.3 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 4.2.0 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: false + + /webpack-dev-middleware@5.3.3(webpack@5.82.1): + resolution: + { + integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== + } + engines: { node: '>= 12.13.0' } + peerDependencies: + '@types/webpack': ^4 + webpack: ^4.0.0 || ^5.0.0 || ^4 || ^5 + peerDependenciesMeta: + '@types/webpack': + optional: true + dependencies: + colorette: 2.0.20 + memfs: 3.4.3 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 4.2.0 + webpack: 5.82.1 + dev: false + + /webpack-dev-server@4.9.3(@types/webpack@4.41.32)(webpack@4.47.0): + resolution: + { + integrity: sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw== + } + engines: { node: '>= 12.13.0' } + hasBin: true + peerDependencies: + '@types/webpack': ^4 + webpack: ^4.37.0 || ^5.0.0 || ^4 || ^5 + webpack-cli: '*' + peerDependenciesMeta: + '@types/webpack': + optional: true + webpack-cli: + optional: true + dependencies: + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/express-serve-static-core': 4.17.43 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.5 + '@types/sockjs': 0.3.36 + '@types/webpack': 4.41.32 + '@types/ws': 8.5.5 + ansi-html-community: 0.0.8 + anymatch: 3.1.3 + bonjour-service: 1.2.1 + chokidar: 3.6.0 + colorette: 2.0.20 + compression: 1.7.4 + connect-history-api-fallback: 2.0.0 + default-gateway: 6.0.3 + express: 4.19.2 + graceful-fs: 4.2.11 + html-entities: 2.5.2 + http-proxy-middleware: 2.0.6 + ipaddr.js: 2.1.0 + open: 8.4.2 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.2.0 + selfsigned: 2.4.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack: 4.47.0(webpack-cli@3.3.12) + webpack-dev-middleware: 5.3.3(@types/webpack@4.41.32)(webpack@4.47.0) + ws: 8.14.2 + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + dev: false + + /webpack-dev-server@4.9.3(webpack-cli@3.3.12)(webpack@4.47.0): + resolution: + { + integrity: sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw== + } + engines: { node: '>= 12.13.0' } + hasBin: true + peerDependencies: + '@types/webpack': ^4 + webpack: ^4.37.0 || ^5.0.0 || ^4 || ^5 + webpack-cli: '*' + peerDependenciesMeta: + '@types/webpack': + optional: true + webpack-cli: + optional: true + dependencies: + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/express-serve-static-core': 4.17.43 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.5 + '@types/sockjs': 0.3.36 + '@types/ws': 8.5.5 + ansi-html-community: 0.0.8 + anymatch: 3.1.3 + bonjour-service: 1.2.1 + chokidar: 3.6.0 + colorette: 2.0.20 + compression: 1.7.4 + connect-history-api-fallback: 2.0.0 + default-gateway: 6.0.3 + express: 4.19.2 + graceful-fs: 4.2.11 + html-entities: 2.5.2 + http-proxy-middleware: 2.0.6 + ipaddr.js: 2.1.0 + open: 8.4.2 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.2.0 + selfsigned: 2.4.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack: 4.47.0(webpack-cli@3.3.12) + webpack-cli: 3.3.12(webpack@4.47.0) + webpack-dev-middleware: 5.3.3(@types/webpack@4.41.32)(webpack@4.47.0) + ws: 8.14.2 + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + dev: false + + /webpack-dev-server@4.9.3(webpack@5.82.1): + resolution: + { + integrity: sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw== + } + engines: { node: '>= 12.13.0' } + hasBin: true + peerDependencies: + '@types/webpack': ^4 + webpack: ^4.37.0 || ^5.0.0 || ^4 || ^5 + webpack-cli: '*' + peerDependenciesMeta: + '@types/webpack': + optional: true + webpack-cli: + optional: true + dependencies: + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/express-serve-static-core': 4.17.43 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.5 + '@types/sockjs': 0.3.36 + '@types/ws': 8.5.5 + ansi-html-community: 0.0.8 + anymatch: 3.1.3 + bonjour-service: 1.2.1 + chokidar: 3.6.0 + colorette: 2.0.20 + compression: 1.7.4 + connect-history-api-fallback: 2.0.0 + default-gateway: 6.0.3 + express: 4.19.2 + graceful-fs: 4.2.11 + html-entities: 2.5.2 + http-proxy-middleware: 2.0.6 + ipaddr.js: 2.1.0 + open: 8.4.2 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.2.0 + selfsigned: 2.4.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack: 5.82.1 + webpack-dev-middleware: 5.3.3(webpack@5.82.1) + ws: 8.14.2 + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + dev: false + + /webpack-filter-warnings-plugin@1.2.1(webpack@4.47.0): + resolution: + { + integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg== + } + engines: { node: '>= 4.3 < 5.0.0 || >= 5.10' } + peerDependencies: + webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^4 || ^5 + dependencies: + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + + /webpack-hot-middleware@2.26.1: + resolution: + { + integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A== + } + dependencies: + ansi-html-community: 0.0.8 + html-entities: 2.5.2 + strip-ansi: 6.0.1 + dev: true + + /webpack-log@2.0.0: + resolution: + { + integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== + } + engines: { node: '>= 6' } + dependencies: + ansi-colors: 3.2.4 + uuid: 3.4.0 + dev: true + + /webpack-merge@5.8.0: + resolution: + { + integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== + } + engines: { node: '>=10.0.0' } + dependencies: + clone-deep: 4.0.1 + wildcard: 2.0.1 + + /webpack-sources@1.4.3: + resolution: + { + integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== + } + dependencies: + source-list-map: 2.0.1 + source-map: 0.6.1 + + /webpack-sources@3.2.3: + resolution: + { + integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== + } + engines: { node: '>=10.13.0' } + + /webpack-virtual-modules@0.2.2: + resolution: + { + integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA== + } + dependencies: + debug: 3.2.7 + dev: true + + /webpack@4.47.0(webpack-cli@3.3.12): + resolution: + { + integrity: sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ== + } + engines: { node: '>=6.11.5' } + hasBin: true + peerDependencies: + webpack-cli: '*' + webpack-command: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + webpack-command: + optional: true + dependencies: + '@webassemblyjs/ast': 1.9.0 + '@webassemblyjs/helper-module-context': 1.9.0 + '@webassemblyjs/wasm-edit': 1.9.0 + '@webassemblyjs/wasm-parser': 1.9.0 + acorn: 6.4.2 + ajv: 6.12.6 + ajv-keywords: 3.5.2(ajv@6.12.6) + chrome-trace-event: 1.0.3 + enhanced-resolve: 4.5.0 + eslint-scope: 4.0.3 + json-parse-better-errors: 1.0.2 + loader-runner: 2.4.0 + loader-utils: 1.4.2 + memory-fs: 0.4.1 + micromatch: 3.1.10 + mkdirp: 0.5.6 + neo-async: 2.6.2 + node-libs-browser: 2.2.1 + schema-utils: 1.0.0 + tapable: 1.1.3 + terser-webpack-plugin: 1.4.5(webpack@4.47.0) + watchpack: 1.7.5 + webpack-cli: 3.3.12(webpack@4.47.0) + webpack-sources: 1.4.3 + + /webpack@5.82.1: + resolution: + { + integrity: sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw== + } + 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.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + acorn: 8.11.3 + acorn-import-assertions: 1.9.0(acorn@8.11.3) + browserslist: 4.23.0 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.16.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(webpack@5.82.1) + watchpack: 2.4.0 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + + /websocket-driver@0.7.4: + resolution: + { + integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + } + engines: { node: '>=0.8.0' } + dependencies: + http-parser-js: 0.5.8 + safe-buffer: 5.2.1 + websocket-extensions: 0.1.4 + dev: false + + /websocket-extensions@0.1.4: + resolution: + { + integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== + } + engines: { node: '>=0.8.0' } + dev: false + + /whatwg-encoding@2.0.0: + resolution: + { + integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== + } + engines: { node: '>=12' } + dependencies: + iconv-lite: 0.6.3 + + /whatwg-mimetype@2.3.0: + resolution: + { + integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + } + dev: true + + /whatwg-mimetype@3.0.0: + resolution: + { + integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== + } + engines: { node: '>=12' } + + /whatwg-url@11.0.0: + resolution: + { + integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ== + } + engines: { node: '>=12' } + dependencies: + tr46: 3.0.0 + webidl-conversions: 7.0.0 + + /whatwg-url@5.0.0: + 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 + + /which-builtin-type@1.1.3: + resolution: + { + integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw== + } + engines: { node: '>= 0.4' } + dependencies: + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.2 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.0.2 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.2 + which-typed-array: 1.1.15 + + /which-collection@1.0.2: + resolution: + { + integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== + } + engines: { node: '>= 0.4' } + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.3 + + /which-module@2.0.1: + resolution: + { + integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== + } + + /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: false + + /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 + + /which@1.3.1: + resolution: + { + integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + } + hasBin: true + dependencies: + isexe: 2.0.0 + + /which@2.0.2: + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + } + engines: { node: '>= 8' } + hasBin: true + dependencies: + isexe: 2.0.0 + + /wide-align@1.1.5: + resolution: + { + integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + } + dependencies: + string-width: 4.2.3 + dev: true + + /widest-line@3.1.0: + resolution: + { + integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== + } + engines: { node: '>=8' } + dependencies: + string-width: 4.2.3 + + /widest-line@4.0.1: + resolution: + { + integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig== + } + engines: { node: '>=12' } + dependencies: + string-width: 5.1.2 + dev: true + + /wildcard@2.0.1: + resolution: + { + integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== + } + + /wordwrap@1.0.0: + resolution: + { + integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== + } + dev: true + + /worker-farm@1.7.0: + resolution: + { + integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== + } + dependencies: + errno: 0.1.8 + + /worker-rpc@0.1.1: + resolution: + { + integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg== + } + dependencies: + microevent.ts: 0.1.1 + dev: true + + /workerpool@6.2.1: + resolution: + { + integrity: sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw== + } + dev: true + + /wrap-ansi@5.1.0: + resolution: + { + integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + } + engines: { node: '>=6' } + dependencies: + ansi-styles: 3.2.1 + string-width: 3.1.0 + strip-ansi: 5.2.0 + + /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 + + /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 + + /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-yaml-file@4.2.0: + resolution: + { + integrity: sha512-LwyucHy0uhWqbrOkh9cBluZBeNVxzHjDaE9mwepZG3n3ZlbM4v3ndrFw51zW/NXYFFqP+QWZ72ihtLWTh05e4Q== + } + engines: { node: '>=10.13' } + dependencies: + js-yaml: 4.1.0 + write-file-atomic: 3.0.3 + dev: false + + /write@1.0.3: + resolution: + { + integrity: sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== + } + engines: { node: '>=4' } + dependencies: + mkdirp: 0.5.6 + dev: true + + /ws@6.2.2: + resolution: + { + integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== + } + dependencies: + async-limiter: 1.0.1 + dev: true + + /ws@7.5.9: + resolution: + { + integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + } + engines: { node: '>=8.3.0' } + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + /ws@8.14.2: + resolution: + { + integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== + } + 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 + + /xdg-basedir@4.0.0: + resolution: + { + integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q== + } + engines: { node: '>=8' } + + /xml-name-validator@4.0.0: + resolution: + { + integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== + } + engines: { node: '>=12' } + + /xml2js@0.4.23: + resolution: + { + integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== + } + engines: { node: '>=4.0.0' } + dependencies: + sax: 1.3.0 + xmlbuilder: 11.0.1 + dev: true + + /xml2js@0.5.0: + resolution: + { + integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA== + } + engines: { node: '>=4.0.0' } + dependencies: + sax: 1.3.0 + xmlbuilder: 11.0.1 + dev: false + + /xml2js@0.6.2: + resolution: + { + integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA== + } + engines: { node: '>=4.0.0' } + dependencies: + sax: 1.3.0 + xmlbuilder: 11.0.1 + dev: true + + /xml@1.0.1: + resolution: + { + integrity: sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw== + } + dev: false + + /xmlbuilder@11.0.1: + resolution: + { + integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== + } + engines: { node: '>=4.0' } + + /xmlchars@2.2.0: + resolution: + { + integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== + } + + /xmldoc@1.1.4: + resolution: + { + integrity: sha512-rQshsBGR5s7pUNENTEncpI2LTCuzicri0DyE4SCV5XmS0q81JS8j1iPijP0Q5c4WLGbKh3W92hlOwY6N9ssW1w== + } + dependencies: + sax: 1.3.0 + dev: false + + /xstate@4.26.1: + resolution: + { + integrity: sha512-JLofAEnN26l/1vbODgsDa+Phqa61PwDlxWu8+2pK+YbXf+y9pQSDLRvcYH2H1kkeUBA5fGp+xFL/zfE8jNMw4g== + } + dev: true + + /xtend@4.0.2: + resolution: + { + integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + } + engines: { node: '>=0.4' } + + /y18n@4.0.3: + resolution: + { + integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + } + + /y18n@5.0.8: + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + } + engines: { node: '>=10' } + + /yallist@3.1.1: + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + } + + /yallist@4.0.0: + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + } + + /yaml@1.10.2: + resolution: + { + integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + } + engines: { node: '>= 6' } + + /yaml@2.4.1: + resolution: + { + integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg== + } + engines: { node: '>= 14' } + hasBin: true + dev: false + + /yargs-parser@13.1.2: + resolution: + { + integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== + } + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + + /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' } + + /yargs-parser@21.1.1: + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + } + engines: { node: '>=12' } + dev: true + + /yargs-unparser@2.0.0: + resolution: + { + integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== + } + engines: { node: '>=10' } + dependencies: + camelcase: 6.3.0 + decamelize: 4.0.0 + flat: 5.0.2 + is-plain-obj: 2.1.0 + dev: true + + /yargs@13.3.2: + resolution: + { + integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== + } + dependencies: + cliui: 5.0.0 + find-up: 3.0.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: 3.1.0 + which-module: 2.0.1 + y18n: 4.0.3 + yargs-parser: 13.1.2 + + /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.2 + 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 + + /yargs@17.7.2: + resolution: + { + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== + } + engines: { node: '>=12' } + dependencies: + cliui: 8.0.1 + escalade: 3.1.2 + 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 + + /yocto-queue@0.1.0: + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + } + engines: { node: '>=10' } + + /z-schema@5.0.6: + resolution: + { + integrity: sha512-+XR1GhnWklYdfr8YaZv/iu+vY+ux7V5DS5zH1DQf6bO5ufrt/5cgNhVO5qyhsjFXvsqQb/f08DWE9b6uPscyAg== + } + engines: { node: '>=8.0.0' } + deprecated: has issues with node 14 + hasBin: true + dependencies: + lodash.get: 4.4.2 + lodash.isequal: 4.5.0 + validator: 13.11.0 + optionalDependencies: + commander: 10.0.1 + + /zip-local@0.3.5: + resolution: + { + integrity: sha512-GRV3D5TJY+/PqyeRm5CYBs7xVrKTKzljBoEXvocZu0HJ7tPEcgpSOYa2zFIsCZWgKWMuc4U3yMFgFkERGFIB9w== + } + dependencies: + async: 1.5.2 + graceful-fs: 4.2.11 + jszip: 2.7.0 + q: 1.5.1 + dev: true + + /zip-stream@4.1.1: + resolution: + { + integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ== + } + engines: { node: '>= 10' } + dependencies: + archiver-utils: 3.0.4 + compress-commons: 4.1.2 + readable-stream: 3.6.2 + dev: true + + /zwitch@1.0.5: + resolution: + { + integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw== + } + dev: true diff --git a/rush-plugins/rush-resolver-cache-plugin/tsconfig.json b/rush-plugins/rush-resolver-cache-plugin/tsconfig.json index dac21d04081..0107527a7e8 100644 --- a/rush-plugins/rush-resolver-cache-plugin/tsconfig.json +++ b/rush-plugins/rush-resolver-cache-plugin/tsconfig.json @@ -1,3 +1,7 @@ { - "extends": "./node_modules/local-node-rig/profiles/default/tsconfig-base.json" + "extends": "./node_modules/local-node-rig/profiles/default/tsconfig-base.json", + + "compilerOptions": { + "types": ["heft-jest", "node", "webpack-env"] + } } From 77b81071749b0b5b0257dc242b935676f1c61795 Mon Sep 17 00:00:00 2001 From: David Michon Date: Thu, 22 Aug 2024 19:51:16 +0000 Subject: [PATCH 6/8] [rush] Fix eslint, typings --- .../rush-resolver-cache-plugin/src/afterInstallAsync.ts | 2 +- rush-plugins/rush-resolver-cache-plugin/src/externals.ts | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts b/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts index 9dd15c374e5..94348aa3403 100644 --- a/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts +++ b/rush-plugins/rush-resolver-cache-plugin/src/afterInstallAsync.ts @@ -25,11 +25,11 @@ import type { IResolverContext } from './types'; function getPlatformInfo(): IPlatformInfo { // Acquiring the libc version is a bit more obnoxious than platform and arch, // but all of them are ultimately on the same object. - // eslint-disable-next-line @typescript-eslint/no-explicit-any const { platform: os, arch: cpu, glibcVersionRuntime + // eslint-disable-next-line @typescript-eslint/no-explicit-any } = (process.report?.getReport() as any)?.header ?? process; const libc: 'glibc' | 'musl' = glibcVersionRuntime ? 'glibc' : 'musl'; diff --git a/rush-plugins/rush-resolver-cache-plugin/src/externals.ts b/rush-plugins/rush-resolver-cache-plugin/src/externals.ts index 714a67f2c39..942c7d2dd89 100644 --- a/rush-plugins/rush-resolver-cache-plugin/src/externals.ts +++ b/rush-plugins/rush-resolver-cache-plugin/src/externals.ts @@ -20,8 +20,6 @@ type OperationStatus = OperationStatusType; export { Operation, OperationStatus }; // Support this plugin being webpacked. -// eslint-disable-next-line @typescript-eslint/naming-convention -declare const __non_webpack_require__: typeof require; const req: typeof require = typeof __non_webpack_require__ === 'function' ? __non_webpack_require__ : require; const entryModule: Module | undefined = req.main; From b544ae5eaae082326d772caaa3d410645e9765f9 Mon Sep 17 00:00:00 2001 From: David Michon Date: Thu, 22 Aug 2024 20:38:23 +0000 Subject: [PATCH 7/8] [rush] Add missing heft dependency --- common/config/subspaces/default/pnpm-lock.yaml | 3 +++ rush-plugins/rush-resolver-cache-plugin/package.json | 1 + 2 files changed, 4 insertions(+) diff --git a/common/config/subspaces/default/pnpm-lock.yaml b/common/config/subspaces/default/pnpm-lock.yaml index e8d57eb7f96..448bf3ee973 100644 --- a/common/config/subspaces/default/pnpm-lock.yaml +++ b/common/config/subspaces/default/pnpm-lock.yaml @@ -4134,6 +4134,9 @@ importers: specifier: workspace:* version: link:../../libraries/rush-sdk devDependencies: + '@rushstack/heft': + specifier: workspace:* + version: link:../../apps/heft '@rushstack/lookup-by-path': specifier: workspace:* version: link:../../libraries/lookup-by-path diff --git a/rush-plugins/rush-resolver-cache-plugin/package.json b/rush-plugins/rush-resolver-cache-plugin/package.json index 300f01c5e32..f7b1bc7f2e1 100644 --- a/rush-plugins/rush-resolver-cache-plugin/package.json +++ b/rush-plugins/rush-resolver-cache-plugin/package.json @@ -19,6 +19,7 @@ "@rushstack/rush-sdk": "workspace:*" }, "devDependencies": { + "@rushstack/heft": "workspace:*", "@rushstack/lookup-by-path": "workspace:*", "@rushstack/node-core-library": "workspace:*", "@rushstack/terminal": "workspace:*", From 935a0b21169ff797795b605f295a4a80a0e1499d Mon Sep 17 00:00:00 2001 From: David Michon Date: Thu, 22 Aug 2024 21:06:30 +0000 Subject: [PATCH 8/8] [rush-resolve-plugin] Platform agnostic path resolution --- rush-plugins/rush-resolver-cache-plugin/src/helpers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rush-plugins/rush-resolver-cache-plugin/src/helpers.ts b/rush-plugins/rush-resolver-cache-plugin/src/helpers.ts index b5c1fe84f8e..610e920e8e9 100644 --- a/rush-plugins/rush-resolver-cache-plugin/src/helpers.ts +++ b/rush-plugins/rush-resolver-cache-plugin/src/helpers.ts @@ -72,9 +72,9 @@ export function resolveDependencyKey( return getDescriptionFileRootFromKey(lockfileFolder, specifier); } else if (specifier.startsWith('link:')) { if (context.isProject) { - return path.resolve(context.descriptionFileRoot, specifier.slice(5)); + return path.posix.join(context.descriptionFileRoot, specifier.slice(5)); } else { - return path.resolve(lockfileFolder, specifier.slice(5)); + return path.posix.join(lockfileFolder, specifier.slice(5)); } } else if (specifier.startsWith('file:')) { return getDescriptionFileRootFromKey(lockfileFolder, specifier, key);