From 7e5ad10a7a99c38f7100d061238e7c6fa279c4fb Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Wed, 9 Aug 2023 22:08:18 -0700 Subject: [PATCH 1/5] docs: enforce 'When Not To Use It' on all rules --- .cspell.json | 1 + .../eslint-plugin/docs/rules/array-type.md | 5 +++ .../eslint-plugin/docs/rules/ban-types.md | 4 +++ .../rules/consistent-indexed-object-style.md | 5 +++ .../docs/rules/consistent-type-definitions.md | 2 +- .../docs/rules/consistent-type-exports.md | 4 +-- .../docs/rules/consistent-type-imports.md | 2 +- .../docs/rules/no-duplicate-enum-values.md | 6 ++++ .../rules/no-duplicate-type-constituents.md | 4 +++ .../docs/rules/no-extra-non-null-assertion.md | 4 +++ .../rules/no-meaningless-void-operator.md | 4 +++ ...no-non-null-asserted-nullish-coalescing.md | 5 +++ .../no-non-null-asserted-optional-chain.md | 5 +++ .../rules/no-redundant-type-constituents.md | 14 ++++++++ .../no-unnecessary-boolean-literal-compare.md | 2 +- .../rules/no-unnecessary-type-arguments.md | 4 +++ .../docs/rules/no-unsafe-argument.md | 9 +++++ .../docs/rules/no-unsafe-assignment.md | 9 +++++ .../docs/rules/no-unsafe-call.md | 9 +++++ .../rules/no-unsafe-declaration-merging.md | 4 +++ .../docs/rules/no-unsafe-member-access.md | 9 +++++ .../docs/rules/no-unsafe-return.md | 9 +++++ .../docs/rules/no-useless-empty-export.md | 4 +++ .../docs/rules/prefer-function-type.md | 2 +- .../rules/prefer-readonly-parameter-types.md | 4 +++ .../docs/rules/prefer-readonly.md | 4 +++ .../docs/rules/promise-function-async.md | 4 +++ .../rules/restrict-template-expressions.md | 4 +++ .../docs/rules/sort-type-constituents.md | 5 +++ .../docs/rules/strict-boolean-expressions.md | 4 +++ .../docs/rules/unbound-method.md | 2 +- .../docs/rules/unified-signatures.md | 5 +++ packages/eslint-plugin/tests/docs.test.ts | 33 +++++++++++++------ 33 files changed, 174 insertions(+), 17 deletions(-) diff --git a/.cspell.json b/.cspell.json index 6f036d77516b..2ae791632e8f 100644 --- a/.cspell.json +++ b/.cspell.json @@ -118,6 +118,7 @@ "serializers", "Sourcegraph", "stringification", + "stringifying", "superset", "thenables", "transpiled", diff --git a/packages/eslint-plugin/docs/rules/array-type.md b/packages/eslint-plugin/docs/rules/array-type.md index 66905370cf02..889122a4386d 100644 --- a/packages/eslint-plugin/docs/rules/array-type.md +++ b/packages/eslint-plugin/docs/rules/array-type.md @@ -101,3 +101,8 @@ This matrix lists all possible option combinations and their expected results fo | `generic` | `array` | `Array` | `Array` | `readonly number[]` | `readonly (Foo & Bar)[]` | | `generic` | `array-simple` | `Array` | `Array` | `readonly number[]` | `ReadonlyArray` | | `generic` | `generic` | `Array` | `Array` | `ReadonlyArray` | `ReadonlyArray` | + +## When Not To Use It + +This rule is purely a stylistic rule for maintaining consistency in your project. +You can turn it off if you don't want to keep a consistent style for array types. diff --git a/packages/eslint-plugin/docs/rules/ban-types.md b/packages/eslint-plugin/docs/rules/ban-types.md index 7109e24e8456..54dd6c978006 100644 --- a/packages/eslint-plugin/docs/rules/ban-types.md +++ b/packages/eslint-plugin/docs/rules/ban-types.md @@ -181,3 +181,7 @@ Example configuration: ] } ``` + +## When Not To Use It + +If your project intentionally deals with the class equivalents of primitives, it might not be worthwhile to enable `ban-types`. diff --git a/packages/eslint-plugin/docs/rules/consistent-indexed-object-style.md b/packages/eslint-plugin/docs/rules/consistent-indexed-object-style.md index d8d805df6925..d0f0afc67005 100644 --- a/packages/eslint-plugin/docs/rules/consistent-indexed-object-style.md +++ b/packages/eslint-plugin/docs/rules/consistent-indexed-object-style.md @@ -78,3 +78,8 @@ type Foo = { [key: string]: unknown; }; ``` + +## When Not To Use It + +This rule is purely a stylistic rule for maintaining consistency in your project. +You can turn it off if you don't want to keep a consistent style for indexed object types. diff --git a/packages/eslint-plugin/docs/rules/consistent-type-definitions.md b/packages/eslint-plugin/docs/rules/consistent-type-definitions.md index 9d72abe36ae7..08a27c4164ee 100644 --- a/packages/eslint-plugin/docs/rules/consistent-type-definitions.md +++ b/packages/eslint-plugin/docs/rules/consistent-type-definitions.md @@ -79,4 +79,4 @@ type T = { x: number }; ## When Not To Use It -If you specifically want to use an interface or type literal for stylistic reasons, you can disable this rule. +If you specifically want to use an interface or type literal for stylistic reasons, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/consistent-type-exports.md b/packages/eslint-plugin/docs/rules/consistent-type-exports.md index 57682fc176d4..20447cd6ff3d 100644 --- a/packages/eslint-plugin/docs/rules/consistent-type-exports.md +++ b/packages/eslint-plugin/docs/rules/consistent-type-exports.md @@ -96,5 +96,5 @@ export { Button, type ButtonProps } from 'some-library'; ## When Not To Use It -- If you specifically want to use both export kinds for stylistic reasons, you can disable this rule. -- If you use `--isolatedModules` the compiler would error if a type is not re-exported using `export type`. If you also don't wish to enforce one style over the other, you can disable this rule. +- If you specifically want to use both export kinds for stylistic reasons, you can avoid this rule. +- If you use `--isolatedModules` the compiler would error if a type is not re-exported using `export type`. If you also don't wish to enforce one style over the other, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/consistent-type-imports.md b/packages/eslint-plugin/docs/rules/consistent-type-imports.md index ca8a87717409..8eea0d10f274 100644 --- a/packages/eslint-plugin/docs/rules/consistent-type-imports.md +++ b/packages/eslint-plugin/docs/rules/consistent-type-imports.md @@ -96,7 +96,7 @@ If you are using [type-aware linting](https://typescript-eslint.io/linting/typed ## When Not To Use It -- If you specifically want to use both import kinds for stylistic reasons, you can disable this rule. +- If you specifically want to use both import kinds for stylistic reasons, you can avoid this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md b/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md index 22b951a4a160..7c74bd8fa926 100644 --- a/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md +++ b/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md @@ -48,3 +48,9 @@ enum E { B = 'B', } ``` + +## When Not To Use It + +It can sometimes be useful to include duplicate enum members. +For example, when renaming an enum member, it can sometimes be useful to keep the old name until a scheduled major breaking change. +If your project intentionally duplicates enum member values, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md b/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md index c240bd4582eb..d823f45deea1 100644 --- a/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md +++ b/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md @@ -57,3 +57,7 @@ When set to true, duplicate checks on intersection type constituents are ignored ### `ignoreUnions` When set to true, duplicate checks on union type constituents are ignored. + +## When Not To Use It + +If you don't mind excess types taking up space in intersections or unions, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/no-extra-non-null-assertion.md b/packages/eslint-plugin/docs/rules/no-extra-non-null-assertion.md index db2c584827c7..d5d542be4149 100644 --- a/packages/eslint-plugin/docs/rules/no-extra-non-null-assertion.md +++ b/packages/eslint-plugin/docs/rules/no-extra-non-null-assertion.md @@ -50,3 +50,7 @@ function foo(bar?: { n: number }) { return bar?.n; } ``` + +## When Not To Use It + +If you don't mind excess `!`s in your code, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/no-meaningless-void-operator.md b/packages/eslint-plugin/docs/rules/no-meaningless-void-operator.md index f904c473d667..5c149ef653af 100644 --- a/packages/eslint-plugin/docs/rules/no-meaningless-void-operator.md +++ b/packages/eslint-plugin/docs/rules/no-meaningless-void-operator.md @@ -45,3 +45,7 @@ void bar(); // discarding a number ## Options `checkNever: true` will suggest removing `void` when the argument has type `never`. + +## When Not To Use It + +If you don't mind extra `void`s in your project, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md b/packages/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md index 09bf9be3be84..4917fbe305d8 100644 --- a/packages/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md +++ b/packages/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md @@ -43,6 +43,11 @@ let x: string; x! ?? ''; ``` +## When Not To Use It + +If your project's types don't always fully describe whether values may be nullable, this rule might create many false reports. +You may want to disable it in those cases. + ## Further Reading - [TypeScript 3.7 Release Notes](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html) diff --git a/packages/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md b/packages/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md index 4a6c1607a947..ad94914aa4ca 100644 --- a/packages/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md +++ b/packages/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md @@ -29,6 +29,11 @@ foo?.bar; foo?.bar(); ``` +## When Not To Use It + +If your project's types don't always fully describe whether values may be nullable, this rule might create many false reports. +You may want to disable it in those cases. + ## Further Reading - [TypeScript 3.7 Release Notes](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html) diff --git a/packages/eslint-plugin/docs/rules/no-redundant-type-constituents.md b/packages/eslint-plugin/docs/rules/no-redundant-type-constituents.md index 69cd6c83af03..a18b06b4f42b 100644 --- a/packages/eslint-plugin/docs/rules/no-redundant-type-constituents.md +++ b/packages/eslint-plugin/docs/rules/no-redundant-type-constituents.md @@ -70,6 +70,20 @@ type IntersectionStringLiteral = 'foo'; This rule plays it safe and only works with bottom types, top types, and comparing literal types to primitive types. +## When Not To Use It + +Some projects choose to occasionally intentionally include a redundant type constituent for documentation purposes. +For example, the following code includes `string` in a union even though the `unknown` makes it redundant: + +```ts +/** + * Normally a string name, but sometimes arbitrary unknown data. + */ +type NameOrOther = string | unknown; +``` + +If you strongly feel a preference for these unnecessary type constituents, this rule might not be for you. + ## Further Reading - [Union Types](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) diff --git a/packages/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md b/packages/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md index d41eee1a0906..f28724a35626 100644 --- a/packages/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md +++ b/packages/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md @@ -126,7 +126,7 @@ if (!(someNullCondition ?? true)) { | `!(nullableBooleanVar === false)` | `nullableBooleanVar ?? true` | Only checked/fixed if the `allowComparingNullableBooleansToFalse` option is `false` | | `!(nullableBooleanVar !== false)` | `!(nullableBooleanVar ?? true)` | Only checked/fixed if the `allowComparingNullableBooleansToFalse` option is `false` | -## Not To Use It +## When Not To Use It Do not use this rule when `strictNullChecks` is disabled. ESLint is not able to distinguish between `false` and `undefined` or `null` values. diff --git a/packages/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md b/packages/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md index 43526aec5719..aa75e0359f4f 100644 --- a/packages/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md +++ b/packages/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md @@ -71,3 +71,7 @@ class D extends C {} interface I {} class Impl implements I {} ``` + +## When Not To Use It + +If you prefer explicitly specifying type parameters even when they are equal to the default, you can skip this rule. diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-argument.md b/packages/eslint-plugin/docs/rules/no-unsafe-argument.md index 6390409827a0..57cdb19a4aa0 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-argument.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-argument.md @@ -78,6 +78,15 @@ declare function foo(arg1: unknown, arg2: Set, arg3: unknown[]): void; foo(1 as any, new Set(), [] as any[]); ``` +## When Not To Use It + +If your codebase has many existing `any`s, it may be difficult to enable this rule. +It may be easier to skip the `no-unsafe-*` rules pending increasing strictness in your types. + ## Related To - [`no-explicit-any`](./no-explicit-any.md) +- [`no-unsafe-assignment`](./no-unsafe-assignment.md) +- [`no-unsafe-call`](./no-unsafe-call.md) +- [`no-unsafe-member-access`](./no-unsafe-member-access.md) +- [`no-unsafe-return`](./no-unsafe-return.md) diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-assignment.md b/packages/eslint-plugin/docs/rules/no-unsafe-assignment.md index 98228f81683b..6ca8f3537f99 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-assignment.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-assignment.md @@ -81,6 +81,15 @@ const x: unknown[] = y as any[]; const x: Set = y as Set; ``` +## When Not To Use It + +If your codebase has many existing `any`s, it may be difficult to enable this rule. +It may be easier to skip the `no-unsafe-*` rules pending increasing strictness in your types. + ## Related To - [`no-explicit-any`](./no-explicit-any.md) +- [`no-unsafe-argument`](./no-unsafe-argument.md) +- [`no-unsafe-call`](./no-unsafe-call.md) +- [`no-unsafe-member-access`](./no-unsafe-member-access.md) +- [`no-unsafe-return`](./no-unsafe-return.md) diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-call.md b/packages/eslint-plugin/docs/rules/no-unsafe-call.md index 8fddb2774b61..8c093c0428f1 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-call.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-call.md @@ -53,6 +53,15 @@ new Map(); String.raw`foo`; ``` +## When Not To Use It + +If your codebase has many existing `any`s, it may be difficult to enable this rule. +It may be easier to skip the `no-unsafe-*` rules pending increasing strictness in your types. + ## Related To - [`no-explicit-any`](./no-explicit-any.md) +- [`no-unsafe-argument`](./no-unsafe-argument.md) +- [`no-unsafe-assignment`](./no-unsafe-assignment.md) +- [`no-unsafe-member-access`](./no-unsafe-member-access.md) +- [`no-unsafe-return`](./no-unsafe-return.md) diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md b/packages/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md index 9c917aa3ee0c..d5a378cd8e7a 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md @@ -49,6 +49,10 @@ namespace Qux {} function Qux() {} ``` +## When Not To Use It + +If your project intentionally defines classes and interfaces with unsafe declaration merging patterns, this rule might not be for you. + ## Further Reading - [Declaration Merging](https://www.typescriptlang.org/docs/handbook/declaration-merging.html) diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-member-access.md b/packages/eslint-plugin/docs/rules/no-unsafe-member-access.md index dfefaccd8b44..977ed85edea4 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-member-access.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-member-access.md @@ -59,6 +59,15 @@ arr[idx]; arr[idx++]; ``` +## When Not To Use It + +If your codebase has many existing `any`s, it may be difficult to enable this rule. +It may be easier to skip the `no-unsafe-*` rules pending increasing strictness in your types. + ## Related To - [`no-explicit-any`](./no-explicit-any.md) +- [`no-unsafe-argument`](./no-unsafe-argument.md) +- [`no-unsafe-assignment`](./no-unsafe-assignment.md) +- [`no-unsafe-call`](./no-unsafe-call.md) +- [`no-unsafe-return`](./no-unsafe-return.md) diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-return.md b/packages/eslint-plugin/docs/rules/no-unsafe-return.md index 796580f23dd1..9293177f72bf 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-return.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-return.md @@ -98,6 +98,15 @@ function foo2(): unknown[] { } ``` +## When Not To Use It + +If your codebase has many existing `any`s, it may be difficult to enable this rule. +It may be easier to disable the `no-unsafe-*` rules around `any` safety pending increasing strictness in your types. + ## Related To - [`no-explicit-any`](./no-explicit-any.md) +- [`no-unsafe-argument`](./no-unsafe-argument.md) +- [`no-unsafe-assignment`](./no-unsafe-assignment.md) +- [`no-unsafe-call`](./no-unsafe-call.md) +- [`no-unsafe-member-access`](./no-unsafe-member-access.md) diff --git a/packages/eslint-plugin/docs/rules/no-useless-empty-export.md b/packages/eslint-plugin/docs/rules/no-useless-empty-export.md index 9358e954b3ff..1720a223de56 100644 --- a/packages/eslint-plugin/docs/rules/no-useless-empty-export.md +++ b/packages/eslint-plugin/docs/rules/no-useless-empty-export.md @@ -41,3 +41,7 @@ export const value = 'Hello, world!'; ```ts import 'some-other-module'; ``` + +## When Not To Use It + +If you don't mind an empty `export {}` at the bottom of files, you likely don't need this rule. diff --git a/packages/eslint-plugin/docs/rules/prefer-function-type.md b/packages/eslint-plugin/docs/rules/prefer-function-type.md index a8aca65f296b..c3e84ac491c1 100644 --- a/packages/eslint-plugin/docs/rules/prefer-function-type.md +++ b/packages/eslint-plugin/docs/rules/prefer-function-type.md @@ -84,7 +84,7 @@ type Intersection = ((data: string) => number) & ((id: number) => string); ## When Not To Use It -If you specifically want to use an interface or type literal with a single call signature for stylistic reasons, you can disable this rule. +If you specifically want to use an interface or type literal with a single call signature for stylistic reasons, you can avoid this rule. This rule has a known edge case of sometimes triggering on global augmentations such as `interface Function`. These edge cases are rare and often symptomatic of odd code. diff --git a/packages/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md b/packages/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md index 703b16fa3f00..5f61c02661a6 100644 --- a/packages/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md +++ b/packages/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md @@ -361,3 +361,7 @@ type MyType = { }; function foo(arg: MyType) {} ``` + +## When Not To Use It + +If your project does not attempt to enforce strong immutability guarantees of parameters, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/prefer-readonly.md b/packages/eslint-plugin/docs/rules/prefer-readonly.md index 774b55b39ffa..78cff1bbc58a 100644 --- a/packages/eslint-plugin/docs/rules/prefer-readonly.md +++ b/packages/eslint-plugin/docs/rules/prefer-readonly.md @@ -85,3 +85,7 @@ class Container { private neverModifiedPrivate = 'unchanged'; } ``` + +## When Not To Use It + +If you aren't trying to enforce strong immutability guarantees, this rule may be too restrictive for your project. diff --git a/packages/eslint-plugin/docs/rules/promise-function-async.md b/packages/eslint-plugin/docs/rules/promise-function-async.md index f3095ed1808c..d8eac2c3a489 100644 --- a/packages/eslint-plugin/docs/rules/promise-function-async.md +++ b/packages/eslint-plugin/docs/rules/promise-function-async.md @@ -57,3 +57,7 @@ async function functionReturnsUnionWithPromiseImplicitly(p: boolean) { return p ? 'value' : Promise.resolve('value'); } ``` + +## When Not To Use It + +If you don't mind the extra weight of functions being `async` despite not `await`ing, you can turn off this rule. diff --git a/packages/eslint-plugin/docs/rules/restrict-template-expressions.md b/packages/eslint-plugin/docs/rules/restrict-template-expressions.md index eeb7c4881609..10ee6e900032 100644 --- a/packages/eslint-plugin/docs/rules/restrict-template-expressions.md +++ b/packages/eslint-plugin/docs/rules/restrict-template-expressions.md @@ -111,6 +111,10 @@ const arg = 'something'; const msg1 = typeof arg === 'string' ? arg : `arg = ${arg}`; ``` +## When Not To Use It + +If you're not worried about incorrectly stringifying non-string values in template literals, then you likely don't need this rule. + ## Related To - [`no-base-to-string`](./no-base-to-string.md) diff --git a/packages/eslint-plugin/docs/rules/sort-type-constituents.md b/packages/eslint-plugin/docs/rules/sort-type-constituents.md index 025e31ccad4f..5a4fabcc283e 100644 --- a/packages/eslint-plugin/docs/rules/sort-type-constituents.md +++ b/packages/eslint-plugin/docs/rules/sort-type-constituents.md @@ -99,3 +99,8 @@ The ordering of groups is determined by this option. - `tuple` - Tuple types (`[A, B, C]`) - `union` - Union types (`A | B`) - `nullish` - `null` and `undefined` + +## When Not To Use It + +This rule is purely a stylistic rule for maintaining consistency in your project. +You can turn it off if you don't want to keep a consistent, predictable order for intersection and union types. diff --git a/packages/eslint-plugin/docs/rules/strict-boolean-expressions.md b/packages/eslint-plugin/docs/rules/strict-boolean-expressions.md index 45a7f8f94962..be83e187234d 100644 --- a/packages/eslint-plugin/docs/rules/strict-boolean-expressions.md +++ b/packages/eslint-plugin/docs/rules/strict-boolean-expressions.md @@ -178,6 +178,10 @@ This rule provides following fixes and suggestions for particular types in boole - `any` and `unknown` - Provides following suggestions: - Explicitly cast value to a boolean (`value` → `Boolean(value)`) +## When Not To Use It + +If your project isn't likely to experience bugs from falsy non-boolean values being used in logical conditions, you can skip enabling this rule. + ## Related To - [no-unnecessary-condition](./no-unnecessary-condition.md) - Similar rule which reports always-truthy and always-falsy values in conditions diff --git a/packages/eslint-plugin/docs/rules/unbound-method.md b/packages/eslint-plugin/docs/rules/unbound-method.md index 99dc8ba79632..edcc2e734784 100644 --- a/packages/eslint-plugin/docs/rules/unbound-method.md +++ b/packages/eslint-plugin/docs/rules/unbound-method.md @@ -98,6 +98,6 @@ log(); ## When Not To Use It -If your code intentionally waits to bind methods after use, such as by passing a `scope: this` along with the method, you can disable this rule. +If your code intentionally waits to bind methods after use, such as by passing a `scope: this` along with the method, you can avoid this rule. If you're wanting to use `toBeCalled` and similar matches in `jest` tests, you can disable this rule for your test files in favor of [`eslint-plugin-jest`'s version of this rule](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/unbound-method.md). diff --git a/packages/eslint-plugin/docs/rules/unified-signatures.md b/packages/eslint-plugin/docs/rules/unified-signatures.md index 3ef37a6391a1..a41bb9ac07e4 100644 --- a/packages/eslint-plugin/docs/rules/unified-signatures.md +++ b/packages/eslint-plugin/docs/rules/unified-signatures.md @@ -66,3 +66,8 @@ function f(a: string): void; function f(a: number): void; function f(b: string): void; ``` + +## When Not To Use It + +This is purely a stylistic rule to help with readability of function signature overloads. +You can turn it off if you don't want to consistently keep them next to each other and unified. diff --git a/packages/eslint-plugin/tests/docs.test.ts b/packages/eslint-plugin/tests/docs.test.ts index a2bef8cac839..3effaa1037d7 100644 --- a/packages/eslint-plugin/tests/docs.test.ts +++ b/packages/eslint-plugin/tests/docs.test.ts @@ -90,31 +90,44 @@ describe('Validating rule docs', () => { }); }); - test(`headers must be title-cased`, () => { - // Get all H2 headers objects as the other levels are variable by design. - const headers = tokens.filter(tokenIsH2); + test(`headings must be title-cased`, () => { + // Get all H2 headings objects as the other levels are variable by design. + const headings = tokens.filter(tokenIsH2); - headers.forEach(header => - expect(header.text).toBe(titleCase(header.text)), + headings.forEach(heading => + expect(heading.text).toBe(titleCase(heading.text)), ); }); + const requiredHeadings = ['When Not To Use It']; const importantHeadings = new Set([ + ...requiredHeadings, 'How to Use', 'Options', 'Related To', - 'When Not To Use It', ]); test('important headings must be h2s', () => { - const headers = tokens.filter(tokenIsHeading); + const headings = tokens.filter(tokenIsHeading); - for (const header of headers) { - if (importantHeadings.has(header.raw.replace(/#/g, '').trim())) { - expect(header.depth).toBe(2); + for (const heading of headings) { + if (importantHeadings.has(heading.raw.replace(/#/g, '').trim())) { + expect(heading.depth).toBe(2); } } }); + + if (!rules[ruleName as keyof typeof rules].meta.docs?.extendsBaseRule) { + test('must include required headings', () => { + const headingTexts = new Set( + tokens.filter(tokenIsH2).map(token => token.text), + ); + + for (const requiredHeading of requiredHeadings) { + expect(headingTexts).toContain(requiredHeading); + } + }); + } }); } }); From 81d6b3b5d4ecf5eebbdc41b5662d1b5d9d510025 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Mon, 13 Nov 2023 11:45:24 -0500 Subject: [PATCH 2/5] Responded to immediate feedback --- packages/eslint-plugin/docs/rules/ban-types.md | 2 +- .../eslint-plugin/docs/rules/no-duplicate-enum-values.md | 6 ++++-- .../docs/rules/no-duplicate-type-constituents.md | 5 ++++- .../eslint-plugin/docs/rules/no-extra-non-null-assertion.md | 4 +--- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/packages/eslint-plugin/docs/rules/ban-types.md b/packages/eslint-plugin/docs/rules/ban-types.md index 54dd6c978006..87923c059614 100644 --- a/packages/eslint-plugin/docs/rules/ban-types.md +++ b/packages/eslint-plugin/docs/rules/ban-types.md @@ -184,4 +184,4 @@ Example configuration: ## When Not To Use It -If your project intentionally deals with the class equivalents of primitives, it might not be worthwhile to enable `ban-types`. +If your project is a rare one that intentionally deals with the class equivalents of primitives, it might not be worthwhile to enable the default `ban-types` options. diff --git a/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md b/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md index 7c74bd8fa926..ee3d2f8cb205 100644 --- a/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md +++ b/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md @@ -51,6 +51,8 @@ enum E { ## When Not To Use It -It can sometimes be useful to include duplicate enum members. +It can sometimes be useful to include duplicate enum members for very specific use cases. For example, when renaming an enum member, it can sometimes be useful to keep the old name until a scheduled major breaking change. -If your project intentionally duplicates enum member values, you can avoid this rule. +You might consider using an [ESLint disable comment](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations. + +In general, if your project intentionally duplicates enum member values, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md b/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md index d823f45deea1..76ba38c744b8 100644 --- a/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md +++ b/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md @@ -60,4 +60,7 @@ When set to true, duplicate checks on union type constituents are ignored. ## When Not To Use It -If you don't mind excess types taking up space in intersections or unions, you can avoid this rule. +It can sometimes be useful for the sake of documentation to include aliases for the same type. +You might consider using an [ESLint disable comment](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations. + +> In some of those cases, [branded types](https://basarat.gitbook.io/typescript/main-1/nominaltyping#using-interfaces) might be a type-safe way to represent the underlying data types. diff --git a/packages/eslint-plugin/docs/rules/no-extra-non-null-assertion.md b/packages/eslint-plugin/docs/rules/no-extra-non-null-assertion.md index d5d542be4149..5e71dc011a70 100644 --- a/packages/eslint-plugin/docs/rules/no-extra-non-null-assertion.md +++ b/packages/eslint-plugin/docs/rules/no-extra-non-null-assertion.md @@ -51,6 +51,4 @@ function foo(bar?: { n: number }) { } ``` -## When Not To Use It - -If you don't mind excess `!`s in your code, you can avoid this rule. + From cb4db897850863824cf6a284aa831a40d7ec9851 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Mon, 13 Nov 2023 16:47:28 -0500 Subject: [PATCH 3/5] Filled them all in and updated test --- .nx/cache/d/server-process.json | 1 + .nx/cache/file-map.json | 31250 ++++++++++ .nx/cache/lockfile.hash | 1 + .nx/cache/parsed-lock-file.json | 49557 ++++++++++++++++ .nx/cache/project-graph.json | 44633 ++++++++++++++ .../rules/adjacent-overload-signatures.md | 8 +- .../eslint-plugin/docs/rules/array-type.md | 3 + .../docs/rules/await-thenable.md | 4 +- .../docs/rules/ban-ts-comment.md | 3 +- .../docs/rules/ban-tslint-comment.md | 2 +- .../eslint-plugin/docs/rules/ban-types.md | 1 + .../rules/class-literal-property-style.md | 3 +- .../docs/rules/class-methods-use-this.md | 5 + .../rules/consistent-generic-constructors.md | 3 + .../rules/consistent-indexed-object-style.md | 3 + .../docs/rules/consistent-type-assertions.md | 3 + .../docs/rules/consistent-type-definitions.md | 7 + .../docs/rules/consistent-type-exports.md | 9 +- .../docs/rules/consistent-type-imports.md | 5 +- .../eslint-plugin/docs/rules/dot-notation.md | 7 + .../rules/explicit-function-return-type.md | 9 +- .../rules/explicit-member-accessibility.md | 21 +- .../rules/explicit-module-boundary-types.md | 10 +- .../docs/rules/member-delimiter-style.md | 5 +- .../docs/rules/method-signature-style.md | 3 + .../docs/rules/naming-convention.md | 9 +- .../docs/rules/no-base-to-string.md | 2 +- .../rules/no-confusing-void-expression.md | 2 +- .../docs/rules/no-duplicate-enum-values.md | 2 +- .../rules/no-duplicate-type-constituents.md | 2 +- .../docs/rules/no-dynamic-delete.md | 2 +- .../docs/rules/no-empty-function.md | 9 + .../docs/rules/no-explicit-any.md | 11 +- .../docs/rules/no-extraneous-class.md | 3 +- .../docs/rules/no-floating-promises.md | 4 +- .../docs/rules/no-for-in-array.md | 3 +- .../docs/rules/no-implied-eval.md | 3 +- .../docs/rules/no-import-type-side-effects.md | 3 +- .../docs/rules/no-inferrable-types.md | 4 +- .../docs/rules/no-invalid-void-type.md | 3 +- .../docs/rules/no-magic-numbers.md | 6 + .../docs/rules/no-misused-new.md | 3 +- .../docs/rules/no-misused-promises.md | 5 +- .../eslint-plugin/docs/rules/no-namespace.md | 4 +- ...no-non-null-asserted-nullish-coalescing.md | 4 +- .../no-non-null-asserted-optional-chain.md | 4 +- .../docs/rules/no-non-null-assertion.md | 4 +- .../docs/rules/no-require-imports.md | 3 +- .../eslint-plugin/docs/rules/no-this-alias.md | 3 +- .../docs/rules/no-throw-literal.md | 2 + .../eslint-plugin/docs/rules/no-type-alias.md | 5 +- .../docs/rules/no-unnecessary-condition.md | 3 +- .../docs/rules/no-unnecessary-qualifier.md | 2 +- .../docs/rules/no-unsafe-argument.md | 3 +- .../docs/rules/no-unsafe-assignment.md | 3 +- .../docs/rules/no-unsafe-call.md | 3 +- .../rules/no-unsafe-declaration-merging.md | 1 + .../docs/rules/no-unsafe-enum-comparison.md | 3 + .../docs/rules/no-unsafe-member-access.md | 3 +- .../docs/rules/no-unsafe-return.md | 3 +- .../docs/rules/no-var-requires.md | 3 +- .../non-nullable-type-assertion-style.md | 2 +- .../docs/rules/parameter-properties.md | 5 +- .../docs/rules/prefer-as-const.md | 5 +- .../eslint-plugin/docs/rules/prefer-for-of.md | 4 +- .../docs/rules/prefer-includes.md | 4 +- .../docs/rules/prefer-literal-enum-member.md | 2 +- .../docs/rules/prefer-namespace-keyword.md | 2 +- .../docs/rules/prefer-optional-chain.md | 3 +- .../rules/prefer-reduce-type-parameter.md | 4 +- .../rules/prefer-string-starts-ends-with.md | 3 +- .../docs/rules/prefer-ts-expect-error.md | 1 + .../docs/rules/promise-function-async.md | 3 +- .../docs/rules/require-array-sort-compare.md | 2 +- .../docs/rules/restrict-plus-operands.md | 2 +- .../docs/rules/sort-type-constituents.md | 1 + .../docs/rules/strict-boolean-expressions.md | 3 + .../docs/rules/switch-exhaustiveness-check.md | 2 +- .../docs/rules/triple-slash-reference.md | 7 +- .../docs/rules/unbound-method.md | 4 +- .../docs/rules/unified-signatures.md | 4 + packages/eslint-plugin/tests/docs.test.ts | 26 +- 82 files changed, 125686 insertions(+), 91 deletions(-) create mode 100644 .nx/cache/d/server-process.json create mode 100644 .nx/cache/file-map.json create mode 100644 .nx/cache/lockfile.hash create mode 100644 .nx/cache/parsed-lock-file.json create mode 100644 .nx/cache/project-graph.json diff --git a/.nx/cache/d/server-process.json b/.nx/cache/d/server-process.json new file mode 100644 index 000000000000..7fcb53686a6f --- /dev/null +++ b/.nx/cache/d/server-process.json @@ -0,0 +1 @@ +{ "processId": 11523 } diff --git a/.nx/cache/file-map.json b/.nx/cache/file-map.json new file mode 100644 index 000000000000..519e9119ed8a --- /dev/null +++ b/.nx/cache/file-map.json @@ -0,0 +1,31250 @@ +{ + "version": "6.0", + "nxVersion": "17.1.1", + "deps": { + "@actions/core": "^1.10.0", + "@actions/github": "^5.1.1", + "@babel/code-frame": "^7.22.5", + "@babel/core": "^7.22.8", + "@babel/eslint-parser": "^7.22.7", + "@babel/parser": "^7.22.7", + "@babel/types": "^7.22.5", + "@nrwl/nx-cloud": "16.1.1", + "@nx/jest": "16.5.3", + "@nx/linter": "16.5.3", + "@nx/workspace": "16.5.3", + "@swc/core": "^1.3.68", + "@swc/jest": "^0.2.26", + "@types/babel__code-frame": "^7.0.3", + "@types/babel__core": "^7.20.1", + "@types/debug": "^4.1.8", + "@types/is-glob": "^4.0.2", + "@types/jest-specific-snapshot": "^0.5.6", + "@types/jest": "29.5.3", + "@types/marked": "^5.0.0", + "@types/natural-compare": "^1.4.1", + "@types/ncp": "^2.0.5", + "@types/node": "^20.0.0", + "@types/prettier": "^2.7.2", + "@types/semver": "^7.5.0", + "@types/tmp": "^0.2.3", + "console-fail-test": "^0.2.3", + "cross-fetch": "^4.0.0", + "cspell": "^6.31.1", + "downlevel-dts": ">=0.11.0", + "eslint-plugin-deprecation": "^1.4.1", + "eslint": "^8.44.0", + "eslint-plugin-eslint-comments": "^3.2.0", + "eslint-plugin-eslint-plugin": "^5.1.0", + "eslint-plugin-import": "^2.27.5", + "eslint-plugin-jest": "^27.2.2", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-simple-import-sort": "^10.0.0", + "eslint-plugin-unicorn": "^48.0.1", + "execa": "7.1.1", + "glob": "^10.3.3", + "husky": "^8.0.3", + "jest-diff": "^29.6.1", + "jest-snapshot": "^29.6.1", + "jest-specific-snapshot": "^8.0.0", + "jest": "29.6.2", + "lerna": "7.1.4", + "lint-staged": "^13.2.3", + "make-dir": "^4.0.0", + "markdownlint-cli": "^0.35.0", + "ncp": "^2.0.0", + "netlify": "^13.1.9", + "nx-cloud": "16.1.1", + "nx": "16.5.3", + "patch-package": "^8.0.0", + "prettier": "^2.8.4", + "pretty-format": "^29.6.1", + "raw-loader": "^4.0.2", + "rimraf": "^5.0.1", + "tmp": "^0.2.1", + "ts-node": "10.7.0", + "tslint": "^6.1.3", + "tsx": "^3.12.7", + "typescript": ">=4.3.5 <5.2.0" + }, + "pathMappings": {}, + "nxJsonPlugins": [], + "fileMap": { + "nonProjectFiles": [ + { + "file": ".codecov.yml", + "hash": "3588654380120638246" + }, + { + "file": ".cspell.json", + "hash": "12661666964353772383" + }, + { + "file": ".editorconfig", + "hash": "2216182206570346565" + }, + { + "file": ".eslintignore", + "hash": "9212492684564440902" + }, + { + "file": ".eslintrc.js", + "hash": "5744341293896343336" + }, + { + "file": ".gitattributes", + "hash": "1603409402690093569" + }, + { + "file": ".github/DISCUSSION_TEMPLATE/rfcs.yml", + "hash": "15281058156807290483" + }, + { + "file": ".github/DISCUSSION_TEMPLATE/technical-discussions.yml", + "hash": "7203454779386837617" + }, + { + "file": ".github/FUNDING.yml", + "hash": "6816683087191154763" + }, + { + "file": ".github/ISSUE_TEMPLATE/01-bug-report-plugin.yaml", + "hash": "1670221362241287722" + }, + { + "file": ".github/ISSUE_TEMPLATE/02-enhancement-rule-option.yaml", + "hash": "10942339174516925069" + }, + { + "file": ".github/ISSUE_TEMPLATE/03-enhancement-new-rule.yaml", + "hash": "12771718992926191777" + }, + { + "file": ".github/ISSUE_TEMPLATE/04-enhancement-new-base-rule-extension.yaml", + "hash": "231744493433722066" + }, + { + "file": ".github/ISSUE_TEMPLATE/05-documentation-request.yml", + "hash": "6232876472903875870" + }, + { + "file": ".github/ISSUE_TEMPLATE/06-bug-report-other.yaml", + "hash": "18022198476065272149" + }, + { + "file": ".github/ISSUE_TEMPLATE/07-enhancement-other.yaml", + "hash": "5772294305074395111" + }, + { + "file": ".github/ISSUE_TEMPLATE/08-bug-report-complex.yaml", + "hash": "6380629763493043693" + }, + { + "file": ".github/ISSUE_TEMPLATE/09-config-change.yaml", + "hash": "12163593200102777111" + }, + { + "file": ".github/ISSUE_TEMPLATE/10-repo-maintenance.yaml", + "hash": "8899251174772170046" + }, + { + "file": ".github/ISSUE_TEMPLATE/README.md", + "hash": "8014508629533101767" + }, + { + "file": ".github/ISSUE_TEMPLATE/config.yml", + "hash": "2099327278282614308" + }, + { + "file": ".github/ISSUE_TEMPLATE.md", + "hash": "5639604612386213145" + }, + { + "file": ".github/PULL_REQUEST_TEMPLATE/typescript_version_upgrade.md", + "hash": "13988644412028291341" + }, + { + "file": ".github/SECURITY.md", + "hash": "10579917610263791793" + }, + { + "file": ".github/SPONSORSHIPS.md", + "hash": "10659458774052313306" + }, + { + "file": ".github/actions/prepare-build/action.yml", + "hash": "14120480097333009919" + }, + { + "file": ".github/actions/prepare-install/action.yml", + "hash": "10574272970093016992" + }, + { + "file": ".github/actions/wait-for-netlify/action.yml", + "hash": "2219320941465126911" + }, + { + "file": ".github/actions/wait-for-netlify/index.js", + "hash": "11703114503243547249" + }, + { + "file": ".github/pull_request_template.md", + "hash": "16912974132451522224" + }, + { + "file": ".github/renovate.json5", + "hash": "13023065485916008853" + }, + { + "file": ".github/replies.yml", + "hash": "4735386679485199157" + }, + { + "file": ".github/workflows/ci.yml", + "hash": "7184209703309509358" + }, + { + "file": ".github/workflows/cleanup-cache.yml", + "hash": "17709168097048376639" + }, + { + "file": ".github/workflows/lock.yml", + "hash": "13532087233423655509" + }, + { + "file": ".github/workflows/nx-migrate.yml", + "hash": "5969794474379268784" + }, + { + "file": ".github/workflows/prettier-update.yml", + "hash": "14006684889225672437" + }, + { + "file": ".github/workflows/semantic-pr-titles.yml", + "hash": "9281636720418927065" + }, + { + "file": ".gitignore", + "hash": "4337731992341134047" + }, + { + "file": ".husky/.gitignore", + "hash": "10106645302852536800" + }, + { + "file": ".husky/commit-msg", + "hash": "15057229804480021109" + }, + { + "file": ".husky/pre-commit", + "hash": "16366342537297203598" + }, + { + "file": ".lintstagedrc", + "hash": "17112930514713494830" + }, + { + "file": ".markdownlint.json", + "hash": "5743223800051551345" + }, + { + "file": ".markdownlintignore", + "hash": "12058716789068418667" + }, + { + "file": ".npmrc", + "hash": "9541971661990203804" + }, + { + "file": ".nx/cache/d/server-process.json", + "hash": "3930354967410768709" + }, + { + "file": ".nx/cache/file-map.json", + "hash": "14221971842455737859" + }, + { + "file": ".nx/cache/lockfile.hash", + "hash": "18176616229234575504" + }, + { + "file": ".nx/cache/parsed-lock-file.json", + "hash": "15897927087289313781" + }, + { + "file": ".nx/cache/project-graph.json", + "hash": "11730129011467869186" + }, + { + "file": ".nxignore", + "hash": "17805816663318185715" + }, + { + "file": ".prettierignore", + "hash": "12056315179169594953" + }, + { + "file": ".prettierrc.json", + "hash": "947268500647009979" + }, + { + "file": ".vscode/extensions.json", + "hash": "2985330674820717157" + }, + { + "file": ".vscode/launch.json", + "hash": "659850269013496958" + }, + { + "file": ".vscode/settings.json", + "hash": "8403791949705760745" + }, + { + "file": "CHANGELOG.md", + "hash": "2397742418880236813" + }, + { + "file": "CODE_OF_CONDUCT.md", + "hash": "9527545693940411881" + }, + { + "file": "CONTRIBUTING.md", + "hash": "10574586164822240836" + }, + { + "file": "CONTRIBUTORS.md", + "hash": "11902079016977025678" + }, + { + "file": "DEVELOPMENT.md", + "hash": "471931176522497572" + }, + { + "file": "LICENSE", + "hash": "6556061789826693284" + }, + { + "file": "README.md", + "hash": "17182469216583311626" + }, + { + "file": "docs/Contributing.mdx", + "hash": "5485480992531977783" + }, + { + "file": "docs/Developers.mdx", + "hash": "6396258764375968070" + }, + { + "file": "docs/Getting_Started.mdx", + "hash": "2854261621346246369" + }, + { + "file": "docs/Maintenance.mdx", + "hash": "16642280744903356103" + }, + { + "file": "docs/Packages.mdx", + "hash": "13880484757263580667" + }, + { + "file": "docs/Users.mdx", + "hash": "6666129010694075440" + }, + { + "file": "docs/contributing/Discussions.mdx", + "hash": "5033391441540788748" + }, + { + "file": "docs/contributing/Issues.mdx", + "hash": "9835753625169286670" + }, + { + "file": "docs/contributing/Local_Development.mdx", + "hash": "11941630089759487333" + }, + { + "file": "docs/contributing/Pull_Requests.mdx", + "hash": "17079702614091485834" + }, + { + "file": "docs/contributing/local-development/Local_Linking.mdx", + "hash": "18445480105652122701" + }, + { + "file": "docs/developers/Custom_Rules.mdx", + "hash": "3270218156915778926" + }, + { + "file": "docs/linting/Configurations.mdx", + "hash": "6024004276893293573" + }, + { + "file": "docs/linting/Troubleshooting.mdx", + "hash": "18094579903937995098" + }, + { + "file": "docs/linting/Typed_Linting.mdx", + "hash": "10752381018749457814" + }, + { + "file": "docs/linting/troubleshooting/Formatting.mdx", + "hash": "13963986794075767339" + }, + { + "file": "docs/linting/troubleshooting/Performance.mdx", + "hash": "464604625767587959" + }, + { + "file": "docs/linting/troubleshooting/TSLint.mdx", + "hash": "7610117522201123939" + }, + { + "file": "docs/linting/typed-linting/Monorepos.mdx", + "hash": "3773570621338032579" + }, + { + "file": "docs/maintenance/Branding.mdx", + "hash": "17596587618224810441" + }, + { + "file": "docs/maintenance/Dependency_Version_Upgrades.mdx", + "hash": "13205183814942206411" + }, + { + "file": "docs/maintenance/Issues.mdx", + "hash": "14595599532355313078" + }, + { + "file": "docs/maintenance/Major_Release_Steps.mdx", + "hash": "9087758155050610733" + }, + { + "file": "docs/maintenance/Pull_Requests.mdx", + "hash": "14566776158462048355" + }, + { + "file": "docs/maintenance/issues/Rule_Deprecations.mdx", + "hash": "14128470440327619758" + }, + { + "file": "docs/packages/ESLint_Plugin.mdx", + "hash": "12478882169062005115" + }, + { + "file": "docs/packages/ESLint_Plugin_TSLint.mdx", + "hash": "3272996404487087989" + }, + { + "file": "docs/packages/Parser.mdx", + "hash": "15364123058991856656" + }, + { + "file": "docs/packages/Rule_Tester.mdx", + "hash": "8384834816665388237" + }, + { + "file": "docs/packages/Scope_Manager.mdx", + "hash": "3441738769113955595" + }, + { + "file": "docs/packages/TypeScript_ESTree.mdx", + "hash": "2702492107663369953" + }, + { + "file": "docs/packages/Utils.mdx", + "hash": "643169872000723714" + }, + { + "file": "docs/users/Dependency_Versions.mdx", + "hash": "13726016294365573478" + }, + { + "file": "docs/users/Releases.mdx", + "hash": "18295414310583283764" + }, + { + "file": "docs/users/Versioning.mdx", + "hash": "613300003443057189" + }, + { + "file": "jest.config.base.js", + "hash": "7293724082569316973" + }, + { + "file": "jest.config.js", + "hash": "8665747344681842605" + }, + { + "file": "lerna.json", + "hash": "15460192350534129390" + }, + { + "file": "netlify.toml", + "hash": "3916416198365450498" + }, + { + "file": "nx.json", + "hash": "3857408337286782060" + }, + { + "file": "package.json", + "hash": "10065672707930933383" + }, + { + "file": "patches/@microsoft+api-extractor+7.36.1.patch", + "hash": "6867916966665370553" + }, + { + "file": "patches/ajv+6.12.6.patch", + "hash": "8796128852319552189" + }, + { + "file": "patches/eslint-visitor-keys+3.4.1.patch", + "hash": "2202066072988642704" + }, + { + "file": "patches/react-split-pane+0.1.92.patch", + "hash": "11687126928467928178" + }, + { + "file": "patches/typescript+5.1.6.patch", + "hash": "18408223473311016593" + }, + { + "file": "tools/dummypkg/README.md", + "hash": "18132893217307989645" + }, + { + "file": "tools/dummypkg/index.d.ts", + "hash": "4595979742548113990" + }, + { + "file": "tools/dummypkg/index.js", + "hash": "1611801801002809075" + }, + { + "file": "tools/dummypkg/package.json", + "hash": "16918788523936609523" + }, + { + "file": "tsconfig.base.json", + "hash": "17445838505172236274" + }, + { + "file": "tsconfig.eslint.json", + "hash": "11307375519245742196" + }, + { + "file": "yarn.lock", + "hash": "14609711455657600720" + } + ], + "projectFileMap": { + "type-utils": [ + { + "file": "packages/type-utils/CHANGELOG.md", + "hash": "985091784183001437" + }, + { + "file": "packages/type-utils/LICENSE", + "hash": "367055210820545368" + }, + { + "file": "packages/type-utils/README.md", + "hash": "2395693178189378184" + }, + { + "file": "packages/type-utils/jest.config.js", + "hash": "5004466771274142581", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/type-utils/package.json", + "hash": "10547810822238781380", + "deps": [ + "typescript-estree", + "utils", + "npm:debug", + "parser", + "npm:ajv" + ] + }, + { + "file": "packages/type-utils/project.json", + "hash": "1113095100857613722" + }, + { + "file": "packages/type-utils/src/TypeOrValueSpecifier.ts", + "hash": "6732716365107814626", + "deps": [ + "typescript-estree", + "utils", + "npm:path", + "npm:ts-api-utils", + "npm:typescript" + ] + }, + { + "file": "packages/type-utils/src/containsAllTypesByName.ts", + "hash": "14048141925277940870", + "deps": ["npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/type-utils/src/getConstrainedTypeAtLocation.ts", + "hash": "10106384922814610817", + "deps": ["typescript-estree", "npm:typescript"] + }, + { + "file": "packages/type-utils/src/getContextualType.ts", + "hash": "3503230732877706092", + "deps": ["npm:typescript"] + }, + { + "file": "packages/type-utils/src/getDeclaration.ts", + "hash": "731377487669210972", + "deps": ["typescript-estree", "npm:typescript"] + }, + { + "file": "packages/type-utils/src/getSourceFileOfNode.ts", + "hash": "6570493486884610771", + "deps": ["npm:typescript"] + }, + { + "file": "packages/type-utils/src/getTokenAtPosition.ts", + "hash": "3552608640993522229", + "deps": ["npm:typescript"] + }, + { + "file": "packages/type-utils/src/getTypeArguments.ts", + "hash": "4433084812195311243", + "deps": ["npm:typescript"] + }, + { + "file": "packages/type-utils/src/getTypeName.ts", + "hash": "50186605760303700", + "deps": ["npm:typescript"] + }, + { + "file": "packages/type-utils/src/index.ts", + "hash": "15940071930375800443", + "deps": ["typescript-estree"] + }, + { + "file": "packages/type-utils/src/isTypeReadonly.ts", + "hash": "1061271254326649617", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/type-utils/src/isUnsafeAssignment.ts", + "hash": "9939722327938945752", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/type-utils/src/predicates.ts", + "hash": "14063021472714796805", + "deps": ["npm:debug", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/type-utils/src/propertyTypes.ts", + "hash": "14935183367235765389", + "deps": ["npm:typescript"] + }, + { + "file": "packages/type-utils/src/requiresQuoting.ts", + "hash": "5015531142135698773", + "deps": ["npm:typescript"] + }, + { + "file": "packages/type-utils/src/typeFlagUtils.ts", + "hash": "4975164812862366700", + "deps": ["npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/type-utils/tests/TypeOrValueSpecifier.test.ts", + "hash": "765429763983076140", + "deps": ["parser", "utils", "npm:ajv", "npm:path"] + }, + { + "file": "packages/type-utils/tests/fixtures/file.ts", + "hash": "3244421341483603138" + }, + { + "file": "packages/type-utils/tests/fixtures/tsconfig.json", + "hash": "3291886161545399033" + }, + { + "file": "packages/type-utils/tests/isTypeReadonly.test.ts", + "hash": "6794978953910263158", + "deps": ["parser", "utils", "npm:path", "npm:typescript"] + }, + { + "file": "packages/type-utils/tests/isUnsafeAssignment.test.ts", + "hash": "3749346277267498729", + "deps": ["parser", "utils", "npm:path", "npm:typescript"] + }, + { + "file": "packages/type-utils/tests/test-utils/expectToHaveParserServices.ts", + "hash": "743775638572744989", + "deps": ["typescript-estree"] + }, + { + "file": "packages/type-utils/tsconfig.build.json", + "hash": "17726300828081779894" + }, + { + "file": "packages/type-utils/tsconfig.json", + "hash": "424345101493455867" + }, + { + "file": "packages/type-utils/typings/typescript.d.ts", + "hash": "13450162390443618843", + "deps": ["npm:typescript"] + } + ], + "parser": [ + { + "file": "packages/parser/CHANGELOG.md", + "hash": "3815045421697444911" + }, + { + "file": "packages/parser/LICENSE", + "hash": "5748662019670747909" + }, + { + "file": "packages/parser/README.md", + "hash": "12482171049153230897" + }, + { + "file": "packages/parser/jest.config.js", + "hash": "14541328117139278774", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/parser/package.json", + "hash": "3365603393085193355", + "deps": [ + "scope-manager", + "types", + "typescript-estree", + "visitor-keys", + "npm:debug" + ] + }, + { + "file": "packages/parser/project.json", + "hash": "16011149639272443974" + }, + { + "file": "packages/parser/src/index.ts", + "hash": "1824373557140333180", + "deps": ["typescript-estree"] + }, + { + "file": "packages/parser/src/parser.ts", + "hash": "14022587849062655037", + "deps": [ + "scope-manager", + "types", + "typescript-estree", + "visitor-keys", + "npm:debug", + "npm:typescript" + ] + }, + { + "file": "packages/parser/tests/fixtures/basics/delete-expression.src.js", + "hash": "9984707274053738981" + }, + { + "file": "packages/parser/tests/fixtures/basics/do-while-statements.src.js", + "hash": "10769174380522354935" + }, + { + "file": "packages/parser/tests/fixtures/basics/identifiers-double-underscore.src.js", + "hash": "15968951540597071872" + }, + { + "file": "packages/parser/tests/fixtures/basics/instanceof.src.js", + "hash": "4472916901928080134" + }, + { + "file": "packages/parser/tests/fixtures/basics/new-with-member-expression.src.js", + "hash": "16968620319079535956" + }, + { + "file": "packages/parser/tests/fixtures/basics/new-without-parens.src.js", + "hash": "1591443596597065911" + }, + { + "file": "packages/parser/tests/fixtures/basics/typeof-expression.src.js", + "hash": "16501686623230276212" + }, + { + "file": "packages/parser/tests/fixtures/basics/update-expression.src.js", + "hash": "8739071350657831765" + }, + { + "file": "packages/parser/tests/fixtures/basics/void-expression.src.js", + "hash": "18377984016534143973" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/535.ts", + "hash": "18041667326919663381" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/abstract-class.ts", + "hash": "13856484563027001028" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/class-implements.ts", + "hash": "440770742465841287" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/class-properties.ts", + "hash": "16788974565421491158" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/class-supper-type.ts", + "hash": "15875748098738915969" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/computed-properties-in-interface.ts", + "hash": "12235338975156390237" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/computed-properties-in-type.ts", + "hash": "14652159180334284582" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/declare-function-with-typeof.ts", + "hash": "6389318208886402321" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/declare-function.ts", + "hash": "13312594137757310692" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/declare-global.ts", + "hash": "6170684420228305720" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/declare-module.ts", + "hash": "6521622037839999602" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/decorator-parameter-property-array.ts", + "hash": "724192689667346862" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/decorator-parameter-property-identifier.ts", + "hash": "16019679957686796520" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/decorator-parameter-property-object.ts", + "hash": "4589800310922710907" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/decorator-parameter-property-parameter.ts", + "hash": "1135521518767428212" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/decorator-parameter-property-rest.ts", + "hash": "1297092721483733164" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/decorators.ts", + "hash": "17432328888471705406" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/enum-string.ts", + "hash": "11384274407176875954" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/enum.ts", + "hash": "11025683001170117662" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/export-as-namespace.ts", + "hash": "10227386654074094656" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/expression-as.ts", + "hash": "16375491780673719212" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/expression-type-parameters.ts", + "hash": "3832067972484054420" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/function-overload-2.ts", + "hash": "10647064810501177775" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/function-overload.ts", + "hash": "4706465430301029402" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/identifier-decorators.ts", + "hash": "9581905752032646972" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/ignore-type-only-stuff.ts", + "hash": "12187422256367527413" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/import-equals.ts", + "hash": "8270678681646384508", + "deps": ["npm:bar"] + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/import-keyword.ts", + "hash": "2114869345947175558", + "deps": [["npm:test", "dynamic"]] + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/interface-type.ts", + "hash": "8924159574408773253" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/jsx-attributes.tsx", + "hash": "15913190448589067028" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/method-overload.ts", + "hash": "15977494985263172507" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/namespace.ts", + "hash": "16703103398753073368" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/rest-element.ts", + "hash": "3018672426191731061" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/type-alias.ts", + "hash": "12345376662651846915" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/type-annotations.ts", + "hash": "8601331346026658676" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/type-assertions.ts", + "hash": "8535250998491497780" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/type-parameter.ts", + "hash": "8736966210294439567" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/typed-jsx-element.tsx", + "hash": "12523896580891205912" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/typeof-in-assertions.ts", + "hash": "12736745606587272179" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/typeof-in-call-signature.ts", + "hash": "16772430318057684500" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/typeof-in-return-type.ts", + "hash": "12208799671252037978" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/typeof-in-type-parameters.ts", + "hash": "7970289470100605344" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/typeof-in-var.ts", + "hash": "5976489501744993299" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/typeof.ts", + "hash": "15403208103516388862" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-array-type.src.ts", + "hash": "17658036397411829586" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-conditional-with-null.src.ts", + "hash": "7339393437677139488" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-conditional.src.ts", + "hash": "12220186765382548599" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-indexed.src.ts", + "hash": "16468056372098788267" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-infer.ts", + "hash": "6526626391887511922" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-intersection-type.src.ts", + "hash": "10826581079513359535" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-mapped-readonly-minus.src.ts", + "hash": "5528827026667202149" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-mapped-readonly-plus.src.ts", + "hash": "7875085936911716108" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-mapped-readonly.src.ts", + "hash": "7399962575942930144" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-mapped.src.ts", + "hash": "10914579214708350454" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-nested-types.src.ts", + "hash": "13075877575617292638" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-parenthesized-type.src.ts", + "hash": "2659313535517088492" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-reference-generic-nested.src.ts", + "hash": "8600724172233640390" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-reference-generic.src.ts", + "hash": "1067099699501643129" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-reference.src.ts", + "hash": "6197964539753354109" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-tuple-empty.src.ts", + "hash": "6421421072975583511" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-tuple-optional.src.ts", + "hash": "3744744645212140169" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-tuple-rest.src.ts", + "hash": "16222070879957679133" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-tuple-type.src.ts", + "hash": "10082131887187698708" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-tuple.src.ts", + "hash": "8298963152533874894" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-type-literal.src.ts", + "hash": "15329654954527258077" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-type-operator.src.ts", + "hash": "16287443835577012804" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-typeof.src.ts", + "hash": "6120377488938250489" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-union-intersection.src.ts", + "hash": "8438081530008764665" + }, + { + "file": "packages/parser/tests/fixtures/scope-analysis/types-union-type.src.ts", + "hash": "1584924878872515479" + }, + { + "file": "packages/parser/tests/fixtures/services/isolated-file.src.ts", + "hash": "2796916648800659761" + }, + { + "file": "packages/parser/tests/fixtures/services/tsconfig.json", + "hash": "5089732980941572590" + }, + { + "file": "packages/parser/tests/lib/__snapshots__/services.ts.snap", + "hash": "14400396491993507997" + }, + { + "file": "packages/parser/tests/lib/parser.ts", + "hash": "13834812026819897297", + "deps": ["scope-manager", "types", "typescript-estree", "npm:path"] + }, + { + "file": "packages/parser/tests/lib/services.ts", + "hash": "17175233260029037862", + "deps": ["typescript-estree", "npm:fs", "npm:glob", "npm:path"] + }, + { + "file": "packages/parser/tests/lib/tsx.ts", + "hash": "9564721710819382116", + "deps": ["types"] + }, + { + "file": "packages/parser/tests/tools/test-utils.ts", + "hash": "14230746883415674158", + "deps": ["typescript-estree"] + }, + { + "file": "packages/parser/tests/tools/ts-error-serializer.ts", + "hash": "1965613648965029927", + "deps": ["typescript-estree", "npm:pretty-format"] + }, + { + "file": "packages/parser/tsconfig.build.json", + "hash": "13574659098943310607" + }, + { + "file": "packages/parser/tsconfig.json", + "hash": "2463370617977810910" + } + ], + "website": [ + { + "file": "packages/website/.stylelintrc.json", + "hash": "6937573808889099518" + }, + { + "file": "packages/website/CHANGELOG.md", + "hash": "16044205206321481347" + }, + { + "file": "packages/website/README.md", + "hash": "1381654192391995630" + }, + { + "file": "packages/website/babel.config.js", + "hash": "17052139581436977475", + "deps": ["npm:@docusaurus/core/lib/babel/preset"] + }, + { + "file": "packages/website/blog/2022-09-18-automated-rule-docs-with-docusaurus-and-remark.md", + "hash": "18136135786510825934" + }, + { + "file": "packages/website/blog/2022-12-05-asts-and-typescript-eslint.md", + "hash": "7315305384946544394" + }, + { + "file": "packages/website/blog/2023-02-24-consistent-type-exports-and-imports-why-and-how.md", + "hash": "8683012215709209347" + }, + { + "file": "packages/website/blog/2023-03-13-announcing-typescript-eslint-v6-beta.md", + "hash": "14298966733947145980" + }, + { + "file": "packages/website/blog/2023-07-09-announcing-typescript-eslint-v6.md", + "hash": "3087638601852633832" + }, + { + "file": "packages/website/blog/ast-explorer-remark.png", + "hash": "16105295419701280419" + }, + { + "file": "packages/website/data/sponsors.json", + "hash": "7484424798233964361" + }, + { + "file": "packages/website/docusaurus.config.js", + "hash": "13955792200695593635", + "deps": ["npm:ts-node"] + }, + { + "file": "packages/website/docusaurusConfig.ts", + "hash": "3161853264985595385", + "deps": [ + "npm:@docusaurus/mdx-loader", + "npm:@docusaurus/plugin-content-docs", + "npm:@docusaurus/plugin-pwa", + "npm:@docusaurus/preset-classic", + "npm:@docusaurus/remark-plugin-npm2yarn", + "npm:@docusaurus/theme-common", + "npm:@docusaurus/theme-search-algolia", + "npm:@docusaurus/types", + "npm:remark-docusaurus-tabs" + ] + }, + { + "file": "packages/website/package.json", + "hash": "1274850053307545409", + "deps": [ + "npm:@mdx-js/react", + "parser", + "website-eslint", + "npm:clsx", + "npm:json-schema", + "npm:json5", + "npm:konamimojisplosion", + "npm:lz-string", + "npm:prism-react-renderer", + "npm:react", + "npm:react-dom", + "npm:remark-docusaurus-tabs", + "npm:semver", + "npm:ts-node", + "npm:@types/react-router-dom", + "eslint-plugin", + "rule-schema-to-typescript-types", + "types", + "npm:copy-webpack-plugin", + "npm:cross-fetch", + "npm:globby", + "npm:make-dir", + "npm:raw-loader", + "npm:stylelint-config-recommended", + "npm:stylelint-config-standard", + "npm:stylelint-order" + ] + }, + { + "file": "packages/website/playwright.config.ts", + "hash": "3426414816456777076", + "deps": ["npm:@playwright/test"] + }, + { + "file": "packages/website/plugins/generated-rule-docs.ts", + "hash": "1229544074186482442", + "deps": [ + "eslint-plugin", + "rule-schema-to-typescript-types", + "npm:fs", + "npm:lz-string", + "npm:mdast", + "npm:os", + "npm:path", + "npm:prettier", + "npm:unified", + "npm:unist" + ] + }, + { + "file": "packages/website/project.json", + "hash": "2629241936506995469" + }, + { + "file": "packages/website/rulesMeta.ts", + "hash": "15615357575481118938", + "deps": ["eslint-plugin"] + }, + { + "file": "packages/website/sidebars/sidebar.base.js", + "hash": "14121835464538154387" + }, + { + "file": "packages/website/sidebars/sidebar.rules.js", + "hash": "10069249183850301136", + "deps": ["npm:globby", "npm:path", "eslint-plugin"] + }, + { + "file": "packages/website/src/clientModules.js", + "hash": "105305716126315314", + "deps": [ + "npm:@docusaurus/ExecutionEnvironment", + ["npm:konamimojisplosion", "dynamic"] + ] + }, + { + "file": "packages/website/src/components/ESQueryFilter.module.css", + "hash": "16406679875091026433" + }, + { + "file": "packages/website/src/components/ESQueryFilter.tsx", + "hash": "4388435322436157580", + "deps": ["npm:esquery", "npm:react"] + }, + { + "file": "packages/website/src/components/ErrorsViewer.module.css", + "hash": "13199828174614499690" + }, + { + "file": "packages/website/src/components/ErrorsViewer.tsx", + "hash": "15081897020392724322", + "deps": [ + "npm:@docusaurus/Link", + "npm:@theme/Icon/ExternalLink", + "npm:clsx", + "npm:monaco-editor", + "npm:react" + ] + }, + { + "file": "packages/website/src/components/FinancialContributors/Sponsor.tsx", + "hash": "3572794332504066222", + "deps": ["npm:@docusaurus/Link", "npm:react"] + }, + { + "file": "packages/website/src/components/FinancialContributors/Sponsors/index.tsx", + "hash": "7017819942216546410", + "deps": ["npm:clsx", "npm:react"] + }, + { + "file": "packages/website/src/components/FinancialContributors/Sponsors/styles.module.css", + "hash": "4710834005441994453" + }, + { + "file": "packages/website/src/components/FinancialContributors/index.tsx", + "hash": "5187750717589288589", + "deps": [ + "npm:@docusaurus/Link", + "npm:@site/data/sponsors.json", + "npm:clsx", + "npm:react" + ] + }, + { + "file": "packages/website/src/components/FinancialContributors/styles.module.css", + "hash": "18303296091877703619" + }, + { + "file": "packages/website/src/components/FinancialContributors/types.ts", + "hash": "10421543015364277500" + }, + { + "file": "packages/website/src/components/OptionsSelector.tsx", + "hash": "206784737883653008", + "deps": [ + "npm:@docusaurus/theme-common", + "npm:@site/src/components/inputs/Checkbox", + "npm:@site/src/icons/copy.svg", + "npm:@theme/Icon/ExternalLink", + "npm:react" + ] + }, + { + "file": "packages/website/src/components/Playground.module.css", + "hash": "5138285502004381609" + }, + { + "file": "packages/website/src/components/Playground.tsx", + "hash": "6685931462492247541", + "deps": [ + "utils", + "npm:clsx", + "npm:esquery", + "npm:react", + "npm:typescript" + ] + }, + { + "file": "packages/website/src/components/RulesTable/index.tsx", + "hash": "12320865849161873835", + "deps": [ + "npm:@docusaurus/Link", + "npm:@docusaurus/router", + "npm:@site/rulesMeta", + "npm:@site/src/hooks/useRulesMeta", + "npm:clsx", + "npm:react" + ] + }, + { + "file": "packages/website/src/components/RulesTable/styles.module.css", + "hash": "14592942834462676317" + }, + { + "file": "packages/website/src/components/SplitPane/ConditionalSplitPane.tsx", + "hash": "57762204493749566", + "deps": [ + "npm:@docusaurus/theme-common", + "npm:clsx", + "npm:react", + "npm:react-split-pane" + ] + }, + { + "file": "packages/website/src/components/SplitPane/SplitPane.module.css", + "hash": "16323483446353963146" + }, + { + "file": "packages/website/src/components/ast/ASTViewer.module.css", + "hash": "11282484231183331396" + }, + { + "file": "packages/website/src/components/ast/ASTViewer.tsx", + "hash": "1211017313223630878", + "deps": ["npm:esquery", "npm:react"] + }, + { + "file": "packages/website/src/components/ast/DataRenderer.tsx", + "hash": "12648720899570211441", + "deps": ["npm:clsx", "npm:react"] + }, + { + "file": "packages/website/src/components/ast/HiddenItem.tsx", + "hash": "17891046631555824385", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/ast/PropertyName.tsx", + "hash": "175805932641083078", + "deps": ["npm:@docusaurus/Link", "npm:react"] + }, + { + "file": "packages/website/src/components/ast/PropertyValue.tsx", + "hash": "11560834289043244286", + "deps": ["npm:@docusaurus/Link", "npm:react"] + }, + { + "file": "packages/website/src/components/ast/selectedRange.ts", + "hash": "9188690027741434399" + }, + { + "file": "packages/website/src/components/ast/tsUtils.ts", + "hash": "3691035559331270601" + }, + { + "file": "packages/website/src/components/ast/types.ts", + "hash": "15496762267409998528" + }, + { + "file": "packages/website/src/components/ast/utils.ts", + "hash": "11162504910078202982", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/website/src/components/config/ConfigEditor.module.css", + "hash": "265648512195951305" + }, + { + "file": "packages/website/src/components/config/ConfigEditor.tsx", + "hash": "8542203307773641568", + "deps": ["npm:clsx", "npm:react"] + }, + { + "file": "packages/website/src/components/config/ConfigEslint.tsx", + "hash": "13684481108693486724", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/config/ConfigTypeScript.tsx", + "hash": "7947747357857873674", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/editor/EditorEmbed.tsx", + "hash": "7760958079503774926", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/editor/LoadedEditor.tsx", + "hash": "10045053616749029800", + "deps": [ + "npm:@docusaurus/theme-common", + "npm:monaco-editor", + "npm:react" + ] + }, + { + "file": "packages/website/src/components/editor/LoadingEditor.tsx", + "hash": "3251522136723048736", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/editor/createProvideCodeActions.ts", + "hash": "14737203304894266369", + "deps": ["npm:monaco-editor"] + }, + { + "file": "packages/website/src/components/editor/loadSandbox.ts", + "hash": "1668295261544694933", + "deps": ["npm:monaco-editor"] + }, + { + "file": "packages/website/src/components/editor/types.ts", + "hash": "7084932244643686571", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/website/src/components/editor/useSandboxServices.ts", + "hash": "3083196991050639818", + "deps": [ + "npm:@docusaurus/theme-common", + "npm:monaco-editor", + "npm:react", + "npm:semver", + "npm:../../../../../package.json" + ] + }, + { + "file": "packages/website/src/components/hooks/useFocus.ts", + "hash": "6721239866267564525", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/hooks/useHashState.ts", + "hash": "9700566472160160153", + "deps": ["npm:@docusaurus/router", "npm:lz-string", "npm:react"] + }, + { + "file": "packages/website/src/components/hooks/useResizeObserver.ts", + "hash": "14375199734376304326", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/inputs/Checkbox.tsx", + "hash": "9579760517814415406", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/inputs/CopyButton.module.css", + "hash": "14314030557562043901" + }, + { + "file": "packages/website/src/components/inputs/CopyButton.tsx", + "hash": "2576978137463825279", + "deps": [ + "npm:@site/src/icons/check.svg", + "npm:@site/src/icons/copy.svg", + "npm:clsx", + "npm:react" + ] + }, + { + "file": "packages/website/src/components/inputs/Dropdown.module.css", + "hash": "17547261569809859677" + }, + { + "file": "packages/website/src/components/inputs/Dropdown.tsx", + "hash": "8110002473389250495", + "deps": ["npm:clsx", "npm:react"] + }, + { + "file": "packages/website/src/components/inputs/Text.module.css", + "hash": "16791347072642202542" + }, + { + "file": "packages/website/src/components/inputs/Text.tsx", + "hash": "10633160263266814943", + "deps": ["npm:clsx", "npm:react"] + }, + { + "file": "packages/website/src/components/inputs/Tooltip.module.css", + "hash": "10356828276930774230" + }, + { + "file": "packages/website/src/components/inputs/Tooltip.tsx", + "hash": "9371716852350264423", + "deps": ["npm:clsx", "npm:react"] + }, + { + "file": "packages/website/src/components/layout/ActionLabel.tsx", + "hash": "16814037263443034299", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/layout/AlertBlock.tsx", + "hash": "4382139122669139982", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/layout/EditorTabs.module.css", + "hash": "10810378832480991456" + }, + { + "file": "packages/website/src/components/layout/EditorTabs.tsx", + "hash": "8081179139249007977", + "deps": ["npm:@site/src/icons/edit.svg", "npm:clsx", "npm:react"] + }, + { + "file": "packages/website/src/components/layout/Expander.module.css", + "hash": "5905552136011899163" + }, + { + "file": "packages/website/src/components/layout/Expander.tsx", + "hash": "13463884999937492902", + "deps": [ + "npm:@docusaurus/theme-common", + "npm:@site/src/icons/arrow.svg", + "npm:clsx", + "npm:react" + ] + }, + { + "file": "packages/website/src/components/layout/InputLabel.module.css", + "hash": "11575925846881401425" + }, + { + "file": "packages/website/src/components/layout/InputLabel.tsx", + "hash": "12476205785076032951", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/components/layout/Loader.module.css", + "hash": "6169508346397597210" + }, + { + "file": "packages/website/src/components/layout/Loader.tsx", + "hash": "10270940460955329985", + "deps": ["npm:clsx", "npm:react"] + }, + { + "file": "packages/website/src/components/lib/createCompilerOptions.ts", + "hash": "4021033880081065345", + "deps": ["npm:typescript"] + }, + { + "file": "packages/website/src/components/lib/createEventsBinder.ts", + "hash": "7877172031761711365" + }, + { + "file": "packages/website/src/components/lib/debounce.ts", + "hash": "10038972874183447328" + }, + { + "file": "packages/website/src/components/lib/has-own-property.ts", + "hash": "6187275813359708945" + }, + { + "file": "packages/website/src/components/lib/json.ts", + "hash": "18413872920036307987", + "deps": ["npm:json5"] + }, + { + "file": "packages/website/src/components/lib/jsonSchema.ts", + "hash": "5804144805184525532", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/website/src/components/lib/markdown.ts", + "hash": "13928035856981477687" + }, + { + "file": "packages/website/src/components/lib/parseConfig.ts", + "hash": "18069844532715526287" + }, + { + "file": "packages/website/src/components/lib/scroll-into.ts", + "hash": "14019339819504513897" + }, + { + "file": "packages/website/src/components/lib/shallowEqual.ts", + "hash": "12244596310202489268" + }, + { + "file": "packages/website/src/components/linter/bridge.ts", + "hash": "7967182890497978539", + "deps": ["npm:@site/src/vendor/typescript-vfs", "npm:typescript"] + }, + { + "file": "packages/website/src/components/linter/config.ts", + "hash": "1599156375487162434", + "deps": ["typescript-estree", "utils"] + }, + { + "file": "packages/website/src/components/linter/createLinter.ts", + "hash": "5225049737312647481", + "deps": [ + "npm:@site/src/vendor/typescript-vfs", + "utils", + "npm:typescript" + ] + }, + { + "file": "packages/website/src/components/linter/createParser.ts", + "hash": "11159676223981489869", + "deps": [ + "npm:@site/src/vendor/typescript-vfs", + "types", + "utils", + "npm:typescript" + ] + }, + { + "file": "packages/website/src/components/linter/types.ts", + "hash": "12598408016825647816", + "deps": [ + "scope-manager", + "typescript-estree", + "utils", + "npm:esquery", + "npm:typescript" + ] + }, + { + "file": "packages/website/src/components/linter/utils.ts", + "hash": "536500884588218210", + "deps": ["utils", "npm:monaco-editor"] + }, + { + "file": "packages/website/src/components/options.ts", + "hash": "13646423252829383610" + }, + { + "file": "packages/website/src/components/types.ts", + "hash": "14326840976024175513", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/website/src/css/custom.css", + "hash": "15495000571447626388" + }, + { + "file": "packages/website/src/css/prism.css", + "hash": "11331553972513452174" + }, + { + "file": "packages/website/src/globals.d.ts", + "hash": "3425464188367982275", + "deps": ["npm:esquery", "npm:typescript"] + }, + { + "file": "packages/website/src/hooks/useBool.ts", + "hash": "7499598146071692665", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/hooks/useClipboard.ts", + "hash": "3310302123877993672", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/hooks/useDebouncedToggle.ts", + "hash": "5957758746019533329", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/hooks/useHistorySelector.ts", + "hash": "11554200196071101485", + "deps": ["npm:@docusaurus/router", "npm:history", "npm:react"] + }, + { + "file": "packages/website/src/hooks/useMediaQuery.ts", + "hash": "4115166373294453682", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/hooks/useRulesMeta.ts", + "hash": "9897969605732742070", + "deps": [ + "npm:@docusaurus/useDocusaurusContext", + "npm:@site/rulesMeta" + ] + }, + { + "file": "packages/website/src/icons/add.svg", + "hash": "16703388550241716496" + }, + { + "file": "packages/website/src/icons/arrow.svg", + "hash": "8110291503132771630" + }, + { + "file": "packages/website/src/icons/check.svg", + "hash": "8675702219219947706" + }, + { + "file": "packages/website/src/icons/close.svg", + "hash": "15693761664458984177" + }, + { + "file": "packages/website/src/icons/copy.svg", + "hash": "6271113490009642462" + }, + { + "file": "packages/website/src/icons/delete.svg", + "hash": "4861602713299865889" + }, + { + "file": "packages/website/src/icons/edit.svg", + "hash": "614207681758265709" + }, + { + "file": "packages/website/src/pages/index.tsx", + "hash": "7678512203732081282", + "deps": [ + "npm:@docusaurus/Link", + "npm:@docusaurus/useBaseUrl", + "npm:@docusaurus/useDocusaurusContext", + "npm:@theme/Heading", + "npm:@theme/Layout", + "npm:clsx", + "npm:react" + ] + }, + { + "file": "packages/website/src/pages/play.tsx", + "hash": "15801248629609368870", + "deps": [ + "npm:@docusaurus/BrowserOnly", + "npm:@site/src/components/layout/Loader", + "npm:@theme/Layout", + "npm:react" + ] + }, + { + "file": "packages/website/src/pages/styles.module.css", + "hash": "4166441652717927632" + }, + { + "file": "packages/website/src/prism/language/jsonc.js", + "hash": "7130932498129826094" + }, + { + "file": "packages/website/src/theme/CodeBlock/Content/String.tsx", + "hash": "4985281729464930318", + "deps": [ + "npm:@docusaurus/theme-common", + "npm:@docusaurus/theme-common/internal", + "npm:@theme/CodeBlock/Container", + "npm:@theme/CodeBlock/Content/String", + "npm:@theme/CodeBlock/CopyButton", + "npm:@theme/CodeBlock/Line", + "npm:@theme/CodeBlock/WordWrapButton", + "npm:clsx", + "npm:prism-react-renderer", + "npm:react" + ] + }, + { + "file": "packages/website/src/theme/CodeBlock/Content/styles.module.css", + "hash": "1772228707201925445" + }, + { + "file": "packages/website/src/theme/MDXComponents/Feature.module.css", + "hash": "18287391302705561200" + }, + { + "file": "packages/website/src/theme/MDXComponents/Feature.tsx", + "hash": "12344024856315027388", + "deps": ["npm:react"] + }, + { + "file": "packages/website/src/theme/MDXComponents/RuleAttributes.module.css", + "hash": "1444991868959302133" + }, + { + "file": "packages/website/src/theme/MDXComponents/RuleAttributes.tsx", + "hash": "10850129339081151775", + "deps": [ + "npm:@docusaurus/Link", + "npm:@site/../utils/dist/ts-eslint/Rule", + "npm:@site/src/hooks/useRulesMeta", + "npm:react" + ] + }, + { + "file": "packages/website/src/theme/MDXComponents/TryInPlayground.module.css", + "hash": "11861271286990493051" + }, + { + "file": "packages/website/src/theme/MDXComponents/TryInPlayground.tsx", + "hash": "14131288425111209662", + "deps": ["npm:@docusaurus/Link", "npm:react"] + }, + { + "file": "packages/website/src/theme/MDXComponents/index.tsx", + "hash": "15454212247778318345", + "deps": ["npm:@theme-original/MDXComponents"] + }, + { + "file": "packages/website/src/theme/prism-include-languages.js", + "hash": "17613554537598291646", + "deps": ["npm:@generated/docusaurus.config"] + }, + { + "file": "packages/website/src/types.d.ts", + "hash": "16276451698622772261" + }, + { + "file": "packages/website/src/vendor/sandbox.d.ts", + "hash": "3624127968698428727", + "deps": ["npm:typescript", "npm:monaco-editor", "npm:lz-string"] + }, + { + "file": "packages/website/src/vendor/typescript-vfs.d.ts", + "hash": "16593862432585554574", + "deps": ["npm:typescript", "npm:lz-string"] + }, + { + "file": "packages/website/static/.nojekyll", + "hash": "3244421341483603138" + }, + { + "file": "packages/website/static/img/bug-report.svg", + "hash": "16937936869291925001" + }, + { + "file": "packages/website/static/img/discord.svg", + "hash": "18365330838779024568" + }, + { + "file": "packages/website/static/img/eslint.svg", + "hash": "7147310691241376160" + }, + { + "file": "packages/website/static/img/favicon/android-chrome-192x192.png", + "hash": "6941376788017559015" + }, + { + "file": "packages/website/static/img/favicon/android-chrome-512x512.png", + "hash": "9936240243246550896" + }, + { + "file": "packages/website/static/img/favicon/apple-touch-icon.png", + "hash": "13608736794938330236" + }, + { + "file": "packages/website/static/img/favicon/browserconfig.xml", + "hash": "9796106385233278471" + }, + { + "file": "packages/website/static/img/favicon/favicon-16x16.png", + "hash": "13112370330222279753" + }, + { + "file": "packages/website/static/img/favicon/favicon-32x32.png", + "hash": "14612031111119549603" + }, + { + "file": "packages/website/static/img/favicon/mstile-150x150.png", + "hash": "3630716912852111075" + }, + { + "file": "packages/website/static/img/favicon/mstile-310x310.png", + "hash": "13766248482987371132" + }, + { + "file": "packages/website/static/img/favicon/safari-pinned-tab.svg", + "hash": "1040938249048002897" + }, + { + "file": "packages/website/static/img/favicon/site.webmanifest", + "hash": "3058126134274743825" + }, + { + "file": "packages/website/static/img/favicon.ico", + "hash": "10449049109655943498" + }, + { + "file": "packages/website/static/img/github.svg", + "hash": "2834669008258796564" + }, + { + "file": "packages/website/static/img/logo-twitter-card.png", + "hash": "10361913557321767782" + }, + { + "file": "packages/website/static/img/logo.png", + "hash": "3946755649941212953" + }, + { + "file": "packages/website/static/img/logo.svg", + "hash": "6726567160943359897" + }, + { + "file": "packages/website/static/img/logo_maskable.png", + "hash": "11017269293765131222" + }, + { + "file": "packages/website/static/img/mastodon.svg", + "hash": "6325671535707981934" + }, + { + "file": "packages/website/static/img/stack-overflow.svg", + "hash": "5032544756563626935" + }, + { + "file": "packages/website/static/img/twitter.svg", + "hash": "1471989352668188310" + }, + { + "file": "packages/website/static/img/typescript.svg", + "hash": "10121675340211214308" + }, + { + "file": "packages/website/static/manifest.json", + "hash": "12211251816817670945" + }, + { + "file": "packages/website/tests/index.spec.ts", + "hash": "13728587837342409433", + "deps": ["npm:@axe-core/playwright", "npm:@playwright/test"] + }, + { + "file": "packages/website/tests/playground.spec.ts", + "hash": "11860665215714163200", + "deps": ["npm:@axe-core/playwright", "npm:@playwright/test"] + }, + { + "file": "packages/website/tests/rules.spec.ts", + "hash": "16811832778377545675", + "deps": ["npm:@axe-core/playwright", "npm:@playwright/test"] + }, + { + "file": "packages/website/tools/generate-website-dts.ts", + "hash": "4135512678782805623", + "deps": [ + "npm:node:fs/promises", + "npm:node:path", + "npm:cross-fetch", + "npm:make-dir", + "npm:prettier", + "npm:rimraf" + ] + }, + { + "file": "packages/website/tsconfig.json", + "hash": "1443352145226031878" + }, + { + "file": "packages/website/typings/esquery.d.ts", + "hash": "14814980049608857859", + "deps": ["types"] + }, + { + "file": "packages/website/typings/monaco-editor.d.ts", + "hash": "8880078286731605205", + "deps": ["npm:monaco-editor/esm/vs/editor/editor.api"] + }, + { + "file": "packages/website/typings/remark-docusaurus-tabs.d.ts", + "hash": "6458091319741336813", + "deps": ["npm:unified"] + }, + { + "file": "packages/website/typings/typescript.d.ts", + "hash": "2102888622836501860", + "deps": ["npm:typescript"] + }, + { + "file": "packages/website/webpack.plugin.js", + "hash": "15294463491717456147", + "deps": [ + "npm:webpack", + "npm:path", + "npm:copy-webpack-plugin", + ["npm:typescript/package.json", "dynamic"], + ["npm:eslint/package.json", "dynamic"], + ["eslint-plugin", "dynamic"], + ["website-eslint", "dynamic"] + ] + } + ], + "ast-spec": [ + { + "file": "packages/ast-spec/CHANGELOG.md", + "hash": "13248446978312439661" + }, + { + "file": "packages/ast-spec/LICENSE", + "hash": "7839189362606127045" + }, + { + "file": "packages/ast-spec/README.md", + "hash": "9093626918425833525" + }, + { + "file": "packages/ast-spec/api-extractor.json", + "hash": "15141776572068101121" + }, + { + "file": "packages/ast-spec/jest.config.js", + "hash": "16878647136457309863", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/ast-spec/package.json", + "hash": "5797237511256778926", + "deps": ["npm:jest-specific-snapshot", "npm:make-dir"] + }, + { + "file": "packages/ast-spec/project.json", + "hash": "1439327308029059633" + }, + { + "file": "packages/ast-spec/src/ast-node-types.ts", + "hash": "11747130515502163017" + }, + { + "file": "packages/ast-spec/src/ast-token-types.ts", + "hash": "1421312109365976417" + }, + { + "file": "packages/ast-spec/src/base/Accessibility.ts", + "hash": "13236158254854760026" + }, + { + "file": "packages/ast-spec/src/base/BaseNode.ts", + "hash": "10717925963803321885" + }, + { + "file": "packages/ast-spec/src/base/BaseToken.ts", + "hash": "9705418332382325706" + }, + { + "file": "packages/ast-spec/src/base/ClassBase.ts", + "hash": "9148768282372287287" + }, + { + "file": "packages/ast-spec/src/base/FunctionBase.ts", + "hash": "2890474567909648319" + }, + { + "file": "packages/ast-spec/src/base/LiteralBase.ts", + "hash": "17574664765004752063" + }, + { + "file": "packages/ast-spec/src/base/MethodDefinitionBase.ts", + "hash": "6531751167577492594" + }, + { + "file": "packages/ast-spec/src/base/NodeOrTokenData.ts", + "hash": "1771852876955772220" + }, + { + "file": "packages/ast-spec/src/base/OptionalRangeAndLoc.ts", + "hash": "18096694228245188009" + }, + { + "file": "packages/ast-spec/src/base/Position.ts", + "hash": "6438872594748810312" + }, + { + "file": "packages/ast-spec/src/base/PropertyDefinitionBase.ts", + "hash": "13461759327334221319" + }, + { + "file": "packages/ast-spec/src/base/Range.ts", + "hash": "1436802607946891611" + }, + { + "file": "packages/ast-spec/src/base/SourceLocation.ts", + "hash": "8451014058329486163" + }, + { + "file": "packages/ast-spec/src/base/TSFunctionSignatureBase.ts", + "hash": "696089706651983163" + }, + { + "file": "packages/ast-spec/src/base/TSHeritageBase.ts", + "hash": "17971750195183889064" + }, + { + "file": "packages/ast-spec/src/base/UnaryExpressionBase.ts", + "hash": "4935709039492764441" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/export-missing-name/fixture.ts", + "hash": "5017024599051590483" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/export-missing-name/snapshots/1-Babel-Error.shot", + "hash": "7805630325182498897" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/export-missing-name/snapshots/1-TSESTree-Error.shot", + "hash": "1970315142028186427" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/export-missing-name/snapshots/2-Alignment-Error.shot", + "hash": "2209867323830192707" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/export-missing-name/snapshots/2-Babel-Error.shot", + "hash": "7805630325182498897" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/export-missing-name/snapshots/3-Alignment-Error.shot", + "hash": "2062934098697509320" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/implements-non-identifier/fixture.ts", + "hash": "1281665749704961847" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/implements-non-identifier/snapshots/1-Babel-Error.shot", + "hash": "14601868283035119445" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/implements-non-identifier/snapshots/1-TSESTree-Error.shot", + "hash": "3612479107260443258" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/implements-non-identifier/snapshots/2-Alignment-Error.shot", + "hash": "18425507446433915027" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/implements-non-identifier/snapshots/2-Babel-Error.shot", + "hash": "14601868283035119445" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/implements-non-identifier/snapshots/3-Alignment-Error.shot", + "hash": "18425507446433915027" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-body/fixture.ts", + "hash": "3408322087750016825" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-body/snapshots/1-Babel-Error.shot", + "hash": "10233143951880253766" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-body/snapshots/1-TSESTree-Error.shot", + "hash": "13604446593704638040" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-body/snapshots/2-Alignment-Error.shot", + "hash": "3347285900522178848" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-body/snapshots/2-Babel-Error.shot", + "hash": "10233143951880253766" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-body/snapshots/3-Alignment-Error.shot", + "hash": "3347285900522178848" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-extends-type-param/fixture.ts", + "hash": "7814593389659735334" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-extends-type-param/snapshots/1-Babel-Error.shot", + "hash": "10533300394749229589" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-extends-type-param/snapshots/1-TSESTree-Error.shot", + "hash": "17453708288046107715" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-extends-type-param/snapshots/2-Alignment-Error.shot", + "hash": "17678837367188009088" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-extends-type-param/snapshots/2-Babel-Error.shot", + "hash": "10533300394749229589" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-extends-type-param/snapshots/3-Alignment-Error.shot", + "hash": "17678837367188009088" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-type-param/fixture.ts", + "hash": "9246096961630517230" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-type-param/snapshots/1-Babel-Error.shot", + "hash": "8400556285325045840" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-type-param/snapshots/1-TSESTree-Error.shot", + "hash": "2949087839350978959" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-type-param/snapshots/2-Alignment-Error.shot", + "hash": "15649923463420980792" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-type-param/snapshots/2-Babel-Error.shot", + "hash": "8400556285325045840" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/missing-type-param/snapshots/3-Alignment-Error.shot", + "hash": "15649923463420980792" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-name/fixture.ts", + "hash": "16379893260268778542" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-Babel-Error.shot", + "hash": "11106197778234732084" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-TSESTree-Error.shot", + "hash": "1666936992321425181" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Alignment-Error.shot", + "hash": "4330547724276666388" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Babel-Error.shot", + "hash": "11106197778234732084" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-name/snapshots/3-Alignment-Error.shot", + "hash": "4330547724276666388" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-type-param/fixture.ts", + "hash": "17073568858245526892" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/1-Babel-Error.shot", + "hash": "1525586082155903758" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/1-TSESTree-Error.shot", + "hash": "5336774426106871350" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/2-Alignment-Error.shot", + "hash": "13309748444711136465" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/2-Babel-Error.shot", + "hash": "1525586082155903758" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/3-Alignment-Error.shot", + "hash": "13309748444711136465" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/abstract/fixture.ts", + "hash": "6737463101347328517" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/abstract/snapshots/1-TSESTree-AST.shot", + "hash": "408709968358138644" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/abstract/snapshots/2-TSESTree-Tokens.shot", + "hash": "16828741497350931194" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/abstract/snapshots/3-Babel-AST.shot", + "hash": "3827536408511170856" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/abstract/snapshots/4-Babel-Tokens.shot", + "hash": "16539311436980746526" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/abstract/snapshots/5-AST-Alignment-AST.shot", + "hash": "15265949521031586509" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/abstract/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9101030094513076552" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/declare/fixture.ts", + "hash": "6355380322373244715" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/declare/snapshots/1-TSESTree-AST.shot", + "hash": "7971372312603692195" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "3574984671007976312" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/declare/snapshots/3-Babel-AST.shot", + "hash": "12745870974703333084" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/declare/snapshots/4-Babel-Tokens.shot", + "hash": "7651968425021566732" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "863504433265950142" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12926807148856428418" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-many/fixture.ts", + "hash": "14136249735628545248" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-many/snapshots/1-TSESTree-AST.shot", + "hash": "1872492150134704042" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "17892920074649169478" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-many/snapshots/3-Babel-AST.shot", + "hash": "4446442842857425587" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-many/snapshots/4-Babel-Tokens.shot", + "hash": "15362654776303087878" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "12567016888519598286" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15859951857302844273" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-one/fixture.ts", + "hash": "3608378030205790" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-one/snapshots/1-TSESTree-AST.shot", + "hash": "16785181047564771172" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "1191385324759429036" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-one/snapshots/3-Babel-AST.shot", + "hash": "15151583009278145984" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-one/snapshots/4-Babel-Tokens.shot", + "hash": "6946227014114087779" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "2514312279025885306" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/decorator-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9382725452414876908" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/empty/fixture.ts", + "hash": "13952239779391173979" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/empty/snapshots/1-TSESTree-AST.shot", + "hash": "13270361058160426709" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/empty/snapshots/2-TSESTree-Tokens.shot", + "hash": "3958595855074384585" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/empty/snapshots/3-Babel-AST.shot", + "hash": "10165529860678915358" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/empty/snapshots/4-Babel-Tokens.shot", + "hash": "7818340381348396648" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/empty/snapshots/5-AST-Alignment-AST.shot", + "hash": "16018227131590023600" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/empty/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "437808559080762210" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends/fixture.ts", + "hash": "6647615098725315351" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends/snapshots/1-TSESTree-AST.shot", + "hash": "12328697335512514667" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends/snapshots/2-TSESTree-Tokens.shot", + "hash": "17194070123242364012" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends/snapshots/3-Babel-AST.shot", + "hash": "8034215788807319787" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends/snapshots/4-Babel-Tokens.shot", + "hash": "373731443152330401" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends/snapshots/5-AST-Alignment-AST.shot", + "hash": "16505294461406834035" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15956424473350718075" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-literal/README.md", + "hash": "11976243909148625724" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-literal/fixture.ts", + "hash": "13146897292539585202" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-literal/snapshots/1-TSESTree-AST.shot", + "hash": "4978118505911097060" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-literal/snapshots/2-TSESTree-Tokens.shot", + "hash": "10161181095737726152" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-literal/snapshots/3-Babel-AST.shot", + "hash": "7667662644623019408" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-literal/snapshots/4-Babel-Tokens.shot", + "hash": "4805298124900636824" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-literal/snapshots/5-AST-Alignment-AST.shot", + "hash": "11478962257757015671" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-literal/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8276026519948294137" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-type-param/fixture.ts", + "hash": "8165418919580462157" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-type-param/snapshots/1-TSESTree-AST.shot", + "hash": "6795862480092301365" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-type-param/snapshots/2-TSESTree-Tokens.shot", + "hash": "3204608161906096508" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-type-param/snapshots/3-Babel-AST.shot", + "hash": "14886575083367557157" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-type-param/snapshots/4-Babel-Tokens.shot", + "hash": "15800124256913111767" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-type-param/snapshots/5-AST-Alignment-AST.shot", + "hash": "12265309752992126170" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/extends-type-param/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8833103389630213185" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-many/fixture.ts", + "hash": "13845025885514726912" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-many/snapshots/1-TSESTree-AST.shot", + "hash": "7250903937325189206" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "18219099249845489743" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-many/snapshots/3-Babel-AST.shot", + "hash": "11035223932281702161" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-many/snapshots/4-Babel-Tokens.shot", + "hash": "9005846951247899458" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "11278120246626426852" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1497652527669529944" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-one/fixture.ts", + "hash": "16658333767667422082" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-one/snapshots/1-TSESTree-AST.shot", + "hash": "4842632510837915424" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "17543240879283317158" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-one/snapshots/3-Babel-AST.shot", + "hash": "5627282789936698478" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-one/snapshots/4-Babel-Tokens.shot", + "hash": "10321786475287319002" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "7126758745636615621" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/implements-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13830893841824754814" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-param/fixture.ts", + "hash": "12044443251442710699" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-param/snapshots/1-TSESTree-AST.shot", + "hash": "6809591896435466035" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-param/snapshots/2-TSESTree-Tokens.shot", + "hash": "3037687904021363657" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-param/snapshots/3-Babel-AST.shot", + "hash": "1896107436488043485" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-param/snapshots/4-Babel-Tokens.shot", + "hash": "16104717822951522484" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-param/snapshots/5-AST-Alignment-AST.shot", + "hash": "15821909036268697614" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-param/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8211384456551120356" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-parameters-extends-type-param/fixture.ts", + "hash": "14411934207705486870" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-parameters-extends-type-param/snapshots/1-TSESTree-AST.shot", + "hash": "9166604350299840170" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-parameters-extends-type-param/snapshots/2-TSESTree-Tokens.shot", + "hash": "7272460333267050444" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-parameters-extends-type-param/snapshots/3-Babel-AST.shot", + "hash": "15022720363787058117" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-parameters-extends-type-param/snapshots/4-Babel-Tokens.shot", + "hash": "4411479487425113314" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-parameters-extends-type-param/snapshots/5-AST-Alignment-AST.shot", + "hash": "7916069549245380064" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/type-parameters-extends-type-param/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16681736236391840562" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/with-member-one/fixture.ts", + "hash": "6476561028907196630" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/with-member-one/snapshots/1-TSESTree-AST.shot", + "hash": "4760671688604596640" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/with-member-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "14879279187730734844" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/with-member-one/snapshots/3-Babel-AST.shot", + "hash": "7389062472025693195" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/with-member-one/snapshots/4-Babel-Tokens.shot", + "hash": "12186589287137715872" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/with-member-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "1946746297620920412" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/fixtures/with-member-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11261614528659036317" + }, + { + "file": "packages/ast-spec/src/declaration/ClassDeclaration/spec.ts", + "hash": "6172710204086439101" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/missing-source/fixture.ts", + "hash": "1742078235958889880" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/missing-source/snapshots/1-Babel-Error.shot", + "hash": "9187608935064402986" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/missing-source/snapshots/1-TSESTree-Error.shot", + "hash": "15061127434535563225" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/missing-source/snapshots/2-Alignment-Error.shot", + "hash": "7614260244803212916" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/missing-source/snapshots/2-Babel-Error.shot", + "hash": "9187608935064402986" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/missing-source/snapshots/3-Alignment-Error.shot", + "hash": "7614260244803212916" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/named-non-identifier/fixture.ts", + "hash": "10136974620590800298", + "deps": ["npm:foo"] + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/named-non-identifier/snapshots/1-Babel-Error.shot", + "hash": "465011401361628181" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/named-non-identifier/snapshots/1-TSESTree-Error.shot", + "hash": "13142323192517060860" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/named-non-identifier/snapshots/2-Alignment-Error.shot", + "hash": "385527078730121577" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/named-non-identifier/snapshots/2-Babel-Error.shot", + "hash": "465011401361628181" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/named-non-identifier/snapshots/3-Alignment-Error.shot", + "hash": "385527078730121577" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/non-string-source/fixture.ts", + "hash": "6046842181723695643" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/non-string-source/snapshots/1-Babel-Error.shot", + "hash": "8822267068850349670" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/non-string-source/snapshots/1-TSESTree-Error.shot", + "hash": "744682138993832983" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/non-string-source/snapshots/2-Alignment-Error.shot", + "hash": "8253062087643985437" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/non-string-source/snapshots/2-Babel-Error.shot", + "hash": "8822267068850349670" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/_error_/non-string-source/snapshots/3-Alignment-Error.shot", + "hash": "8253062087643985437" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/assertion/fixture.ts", + "hash": "3992165584643239601", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/assertion/snapshots/1-TSESTree-AST.shot", + "hash": "140291651717244732" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/assertion/snapshots/2-TSESTree-Tokens.shot", + "hash": "2680187017356198270" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/assertion/snapshots/3-Babel-AST.shot", + "hash": "4884933318944182358" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/assertion/snapshots/4-Babel-Tokens.shot", + "hash": "7740854554559735030" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/assertion/snapshots/5-AST-Alignment-AST.shot", + "hash": "10993915161200355625" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/assertion/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6441013879272780009" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/fixture.ts", + "hash": "5384087929248091302" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/snapshots/1-TSESTree-AST.shot", + "hash": "13515348481331152099" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/snapshots/1-TSESTree-Error.shot", + "hash": "15579397886896634275" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/snapshots/2-Babel-Error.shot", + "hash": "14155370030722927881" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "8003534791603842401" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/snapshots/3-Alignment-Error.shot", + "hash": "15271906936309345207" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/snapshots/3-Babel-AST.shot", + "hash": "4864884282453308410" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/snapshots/4-Babel-Tokens.shot", + "hash": "194255251626843031" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "759357364112083273" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/kind-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14606594609661396955" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/named/fixture.ts", + "hash": "5411437370317841608", + "deps": ["npm:module"] + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/named/snapshots/1-TSESTree-AST.shot", + "hash": "12115401422891403825" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/named/snapshots/2-TSESTree-Tokens.shot", + "hash": "9685378555455530245" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/named/snapshots/3-Babel-AST.shot", + "hash": "8959880385036350231" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/named/snapshots/4-Babel-Tokens.shot", + "hash": "2380941474725264703" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/named/snapshots/5-AST-Alignment-AST.shot", + "hash": "14621479843049685534" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/named/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16030577086156699530" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/fixture.ts", + "hash": "12122176995335093272" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/snapshots/1-TSESTree-AST.shot", + "hash": "3143688059906308422" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/snapshots/1-TSESTree-Error.shot", + "hash": "4139696131077705475" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/snapshots/2-Babel-Error.shot", + "hash": "10569629913692187715" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/snapshots/2-TSESTree-Tokens.shot", + "hash": "10517634814758753886" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/snapshots/3-Alignment-Error.shot", + "hash": "9271973033987292680" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/snapshots/3-Babel-AST.shot", + "hash": "14535815592535628988" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/snapshots/4-Babel-Tokens.shot", + "hash": "12864864522560770892" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/snapshots/5-AST-Alignment-AST.shot", + "hash": "2677670060036601064" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/type-kind/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17990435766638223861" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/unnamed/fixture.ts", + "hash": "11748930784271029062", + "deps": ["npm:my-module"] + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/unnamed/snapshots/1-TSESTree-AST.shot", + "hash": "13103344819897132765" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/unnamed/snapshots/2-TSESTree-Tokens.shot", + "hash": "15262257573894166108" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/unnamed/snapshots/3-Babel-AST.shot", + "hash": "641841311754872997" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/unnamed/snapshots/4-Babel-Tokens.shot", + "hash": "13796959128235576839" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/unnamed/snapshots/5-AST-Alignment-AST.shot", + "hash": "17893938139012586522" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/fixtures/unnamed/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12891047985481747081" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAllDeclaration/spec.ts", + "hash": "4067078183797117079" + }, + { + "file": "packages/ast-spec/src/declaration/ExportAndImportKind.ts", + "hash": "2795260257470790644" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/enum/fixture.ts", + "hash": "12004631017708397923" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/enum/snapshots/1-Babel-Error.shot", + "hash": "11544744003226007128" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/enum/snapshots/1-TSESTree-Error.shot", + "hash": "8649356241887480272" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/enum/snapshots/2-Alignment-Error.shot", + "hash": "6121664658196861409" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/enum/snapshots/2-Babel-Error.shot", + "hash": "11544744003226007128" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/enum/snapshots/3-Alignment-Error.shot", + "hash": "6121664658196861409" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/namespace/fixture.ts", + "hash": "4111850566733339066" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/namespace/snapshots/1-Babel-Error.shot", + "hash": "4137120309093380481" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/namespace/snapshots/1-TSESTree-Error.shot", + "hash": "892252854201051157" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/namespace/snapshots/2-Alignment-Error.shot", + "hash": "9759392026868655548" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/namespace/snapshots/2-Babel-Error.shot", + "hash": "4137120309093380481" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/namespace/snapshots/3-Alignment-Error.shot", + "hash": "9759392026868655548" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/type-alias/fixture.ts", + "hash": "17302807836476260508" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/type-alias/snapshots/1-Babel-Error.shot", + "hash": "2879899101684071397" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/type-alias/snapshots/1-TSESTree-Error.shot", + "hash": "10556450991669702793" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/type-alias/snapshots/2-Alignment-Error.shot", + "hash": "7565880493200208685" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/type-alias/snapshots/2-Babel-Error.shot", + "hash": "2879899101684071397" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/type-alias/snapshots/3-Alignment-Error.shot", + "hash": "7565880493200208685" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/variable-declaration/fixture.ts", + "hash": "17722127207506383889" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/variable-declaration/snapshots/1-Babel-Error.shot", + "hash": "8052768035482591526" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/variable-declaration/snapshots/1-TSESTree-Error.shot", + "hash": "10969705182257942023" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/variable-declaration/snapshots/2-Alignment-Error.shot", + "hash": "11477369286576691103" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/variable-declaration/snapshots/2-Babel-Error.shot", + "hash": "8052768035482591526" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/_error_/variable-declaration/snapshots/3-Alignment-Error.shot", + "hash": "11477369286576691103" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-class/fixture.ts", + "hash": "3669009153195718494" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-class/snapshots/1-TSESTree-AST.shot", + "hash": "15163802855934382801" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-class/snapshots/2-TSESTree-Tokens.shot", + "hash": "18075690332241376352" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-class/snapshots/3-Babel-AST.shot", + "hash": "1320997064545047447" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-class/snapshots/4-Babel-Tokens.shot", + "hash": "14002548010653862577" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-class/snapshots/5-AST-Alignment-AST.shot", + "hash": "6452676556626868533" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-class/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "440657834688227208" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-function/fixture.ts", + "hash": "16784532287458242182" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-function/snapshots/1-TSESTree-AST.shot", + "hash": "11632999606151810760" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "18209595618079598942" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-function/snapshots/3-Babel-AST.shot", + "hash": "1441909888688335442" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-function/snapshots/4-Babel-Tokens.shot", + "hash": "14917649296924972958" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "5167239642481445602" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/anonymous-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14464274299184631197" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/arrow-function-expression/fixture.ts", + "hash": "13765909154055208325" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/arrow-function-expression/snapshots/1-TSESTree-AST.shot", + "hash": "13254728143755494083" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/arrow-function-expression/snapshots/2-TSESTree-Tokens.shot", + "hash": "12269410255209523053" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/arrow-function-expression/snapshots/3-Babel-AST.shot", + "hash": "10090517063947232924" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/arrow-function-expression/snapshots/4-Babel-Tokens.shot", + "hash": "17969518087126480299" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/arrow-function-expression/snapshots/5-AST-Alignment-AST.shot", + "hash": "2669514926069297960" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/arrow-function-expression/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2355831154764652774" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class/fixture.ts", + "hash": "7313400232677145660" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class/snapshots/1-TSESTree-AST.shot", + "hash": "10146262841290567126" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class/snapshots/2-TSESTree-Tokens.shot", + "hash": "59226393130790028" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class/snapshots/3-Babel-AST.shot", + "hash": "9209632726423556415" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class/snapshots/4-Babel-Tokens.shot", + "hash": "9769161077246394033" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class/snapshots/5-AST-Alignment-AST.shot", + "hash": "9011038188269785372" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16671322162732222169" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class-expression/fixture.ts", + "hash": "1747535598789407665" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class-expression/snapshots/1-TSESTree-AST.shot", + "hash": "15003148145443490641" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class-expression/snapshots/2-TSESTree-Tokens.shot", + "hash": "927888552171278732" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class-expression/snapshots/3-Babel-AST.shot", + "hash": "18161349603492716679" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class-expression/snapshots/4-Babel-Tokens.shot", + "hash": "16689749327689025634" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class-expression/snapshots/5-AST-Alignment-AST.shot", + "hash": "11132110763904137172" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/class-expression/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13039106482781955970" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/function/fixture.ts", + "hash": "13290519893302742806" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/function/snapshots/1-TSESTree-AST.shot", + "hash": "13928759910917698845" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/function/snapshots/2-TSESTree-Tokens.shot", + "hash": "1763032592174033341" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/function/snapshots/3-Babel-AST.shot", + "hash": "9170076176367421599" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/function/snapshots/4-Babel-Tokens.shot", + "hash": "3163134597418834499" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/function/snapshots/5-AST-Alignment-AST.shot", + "hash": "3572879318659268625" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12713536738841593291" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/identifier/fixture.ts", + "hash": "8159327047556819887" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/identifier/snapshots/1-TSESTree-AST.shot", + "hash": "1899527849852484334" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/identifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "10374952049641721984" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/identifier/snapshots/3-Babel-AST.shot", + "hash": "14298602819774983084" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/identifier/snapshots/4-Babel-Tokens.shot", + "hash": "11071661233547720251" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/identifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "8196065060372253810" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/identifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5343479422340444626" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/interface/fixture.ts", + "hash": "1927409747948128568" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/interface/snapshots/1-TSESTree-AST.shot", + "hash": "9016422320515472025" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/interface/snapshots/2-TSESTree-Tokens.shot", + "hash": "4444390464833431460" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/interface/snapshots/3-Babel-AST.shot", + "hash": "9767505833803402548" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/interface/snapshots/4-Babel-Tokens.shot", + "hash": "16706344346542599074" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/interface/snapshots/5-AST-Alignment-AST.shot", + "hash": "6779231750501511665" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/interface/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9196268705166241311" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/literal/fixture.ts", + "hash": "7087405744169996158" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/literal/snapshots/1-TSESTree-AST.shot", + "hash": "219259095572799012" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/literal/snapshots/2-TSESTree-Tokens.shot", + "hash": "2664840567843070953" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/literal/snapshots/3-Babel-AST.shot", + "hash": "5970966765646472053" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/literal/snapshots/4-Babel-Tokens.shot", + "hash": "10119234930847517386" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/literal/snapshots/5-AST-Alignment-AST.shot", + "hash": "13638249605967002651" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/fixtures/literal/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13165543506608269215" + }, + { + "file": "packages/ast-spec/src/declaration/ExportDefaultDeclaration/spec.ts", + "hash": "14497555066935481719" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/aliased-literal/fixture.ts", + "hash": "16635657893668585680", + "deps": ["npm:a"] + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/aliased-literal/snapshots/1-Babel-Error.shot", + "hash": "6314766567340939371" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/aliased-literal/snapshots/1-TSESTree-Error.shot", + "hash": "13966081229816204344" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/aliased-literal/snapshots/2-Alignment-Error.shot", + "hash": "13620579912981628576" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/aliased-literal/snapshots/2-Babel-Error.shot", + "hash": "6314766567340939371" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/aliased-literal/snapshots/3-Alignment-Error.shot", + "hash": "13620579912981628576" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-class/fixture.ts", + "hash": "3946825823739194000" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-class/snapshots/1-Babel-Error.shot", + "hash": "17017785511804428330" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-class/snapshots/1-TSESTree-Error.shot", + "hash": "5144703215409575058" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-class/snapshots/2-Alignment-Error.shot", + "hash": "3546281766404959236" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-class/snapshots/2-Babel-Error.shot", + "hash": "17017785511804428330" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-class/snapshots/3-Alignment-Error.shot", + "hash": "8166287717276337299" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-function-expression/fixture.ts", + "hash": "9115189597959979379" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-function-expression/snapshots/1-Babel-Error.shot", + "hash": "2055193850634497560" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-function-expression/snapshots/1-TSESTree-Error.shot", + "hash": "15054049026328625621" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-function-expression/snapshots/2-Alignment-Error.shot", + "hash": "11081760078866058120" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-function-expression/snapshots/2-Babel-Error.shot", + "hash": "2055193850634497560" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/anonymous-function-expression/snapshots/3-Alignment-Error.shot", + "hash": "11081760078866058120" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/arrow-function/fixture.ts", + "hash": "8930547004836352245" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/arrow-function/snapshots/1-Babel-Error.shot", + "hash": "9275817203008135370" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/arrow-function/snapshots/1-TSESTree-Error.shot", + "hash": "7336722993925516061" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/arrow-function/snapshots/2-Alignment-Error.shot", + "hash": "1075697299695468458" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/arrow-function/snapshots/2-Babel-Error.shot", + "hash": "9275817203008135370" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/arrow-function/snapshots/3-Alignment-Error.shot", + "hash": "1075697299695468458" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/assertion/fixture.ts", + "hash": "7511829802810416766", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/assertion/snapshots/1-Babel-Error.shot", + "hash": "3510526691379807538" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/assertion/snapshots/1-TSESTree-Error.shot", + "hash": "6310508803513348308" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/assertion/snapshots/2-Alignment-Error.shot", + "hash": "7656820710991534740" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/assertion/snapshots/2-Babel-Error.shot", + "hash": "3510526691379807538" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/assertion/snapshots/3-Alignment-Error.shot", + "hash": "7656820710991534740" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/class-expression/fixture.ts", + "hash": "18223542362720347871" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/class-expression/snapshots/1-Babel-Error.shot", + "hash": "16542984705202073340" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/class-expression/snapshots/1-TSESTree-Error.shot", + "hash": "634882677251120159" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/class-expression/snapshots/2-Alignment-Error.shot", + "hash": "7191544677665465717" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/class-expression/snapshots/2-Babel-Error.shot", + "hash": "16542984705202073340" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/class-expression/snapshots/3-Alignment-Error.shot", + "hash": "7191544677665465717" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/identifier-direct/fixture.ts", + "hash": "10288550278649887800" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/identifier-direct/snapshots/1-Babel-Error.shot", + "hash": "16910558192404447579" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/identifier-direct/snapshots/1-TSESTree-Error.shot", + "hash": "7701167092207355740" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/identifier-direct/snapshots/2-Alignment-Error.shot", + "hash": "12052832133428929207" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/identifier-direct/snapshots/2-Babel-Error.shot", + "hash": "16910558192404447579" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/identifier-direct/snapshots/3-Alignment-Error.shot", + "hash": "12052832133428929207" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-braced/fixture.ts", + "hash": "2481187841732666233", + "deps": ["npm:a"] + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-braced/snapshots/1-Babel-Error.shot", + "hash": "803424034405867938" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-braced/snapshots/1-TSESTree-Error.shot", + "hash": "7971196133385921889" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-braced/snapshots/2-Alignment-Error.shot", + "hash": "2629570536660102999" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-braced/snapshots/2-Babel-Error.shot", + "hash": "803424034405867938" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-braced/snapshots/3-Alignment-Error.shot", + "hash": "2629570536660102999" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-direct/fixture.ts", + "hash": "17794917187893527266" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-direct/snapshots/1-Babel-Error.shot", + "hash": "12580092975067718807" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-direct/snapshots/1-TSESTree-Error.shot", + "hash": "4255357715099117906" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-direct/snapshots/2-Alignment-Error.shot", + "hash": "10310660021799921448" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-direct/snapshots/2-Babel-Error.shot", + "hash": "12580092975067718807" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/_error_/literal-direct/snapshots/3-Alignment-Error.shot", + "hash": "10310660021799921448" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/aliased/fixture.ts", + "hash": "17124153238476060943" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/aliased/snapshots/1-TSESTree-AST.shot", + "hash": "1068048640513556513" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/aliased/snapshots/2-TSESTree-Tokens.shot", + "hash": "13355393494603082923" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/aliased/snapshots/3-Babel-AST.shot", + "hash": "13157690724633378557" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/aliased/snapshots/4-Babel-Tokens.shot", + "hash": "13564157519305066479" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/aliased/snapshots/5-AST-Alignment-AST.shot", + "hash": "6192281299546437915" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/aliased/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6155968185392094981" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/class/fixture.ts", + "hash": "17405777220984019101" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/class/snapshots/1-TSESTree-AST.shot", + "hash": "13667544845895391464" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/class/snapshots/2-TSESTree-Tokens.shot", + "hash": "10653201995432626894" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/class/snapshots/3-Babel-AST.shot", + "hash": "14595989273424500819" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/class/snapshots/4-Babel-Tokens.shot", + "hash": "13609256449145158432" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/class/snapshots/5-AST-Alignment-AST.shot", + "hash": "16227567184474811522" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/class/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7414113786790388666" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/declare-function/fixture.ts", + "hash": "13258526882306006613" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/declare-function/snapshots/1-TSESTree-AST.shot", + "hash": "7971554667207565812" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/declare-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "14527388743153716133" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/declare-function/snapshots/3-Babel-AST.shot", + "hash": "10262743107422654939" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/declare-function/snapshots/4-Babel-Tokens.shot", + "hash": "9227734215680980409" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/declare-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "6856751165820134648" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/declare-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10869947720592000425" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/enum/fixture.ts", + "hash": "2912963159964691756" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/enum/snapshots/1-TSESTree-AST.shot", + "hash": "18006946780264377905" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/enum/snapshots/2-TSESTree-Tokens.shot", + "hash": "8574906705587405225" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/enum/snapshots/3-Babel-AST.shot", + "hash": "1759828337627382238" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/enum/snapshots/4-Babel-Tokens.shot", + "hash": "16702433605085435476" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/enum/snapshots/5-AST-Alignment-AST.shot", + "hash": "7189394523637116714" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/enum/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11093706987045716129" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/function-declaration/fixture.ts", + "hash": "600806831105413673" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/function-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "13428472909023168476" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/function-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "13914187018333996328" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/function-declaration/snapshots/3-Babel-AST.shot", + "hash": "5204528085392320467" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/function-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "5426998035860025592" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/function-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "15468323557773863899" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/function-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6761039261346188836" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-braced/fixture.ts", + "hash": "9158543037824641004" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-braced/snapshots/1-TSESTree-AST.shot", + "hash": "15950563832346063073" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-braced/snapshots/2-TSESTree-Tokens.shot", + "hash": "14329633205682133022" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-braced/snapshots/3-Babel-AST.shot", + "hash": "11930247734915479380" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-braced/snapshots/4-Babel-Tokens.shot", + "hash": "16741137146540493681" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-braced/snapshots/5-AST-Alignment-AST.shot", + "hash": "7810048284358107853" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-braced/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10739838338295970208" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-many/fixture.ts", + "hash": "6895583010491115682" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-many/snapshots/1-TSESTree-AST.shot", + "hash": "11593599510946458940" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "13245342855895322022" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-many/snapshots/3-Babel-AST.shot", + "hash": "6182189199605517140" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-many/snapshots/4-Babel-Tokens.shot", + "hash": "6003558551402108792" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "18154601447996670190" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/identifier-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17313270249331435036" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/interface/fixture.ts", + "hash": "6719973434338020225" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/interface/snapshots/1-TSESTree-AST.shot", + "hash": "8362513244191424577" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/interface/snapshots/2-TSESTree-Tokens.shot", + "hash": "6202213318405285844" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/interface/snapshots/3-Babel-AST.shot", + "hash": "15629360017611561717" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/interface/snapshots/4-Babel-Tokens.shot", + "hash": "13772758696188019012" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/interface/snapshots/5-AST-Alignment-AST.shot", + "hash": "7600793829593278233" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/interface/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4030984685206168080" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/namespace/fixture.ts", + "hash": "12956635712788235855" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/namespace/snapshots/1-Babel-AST.shot", + "hash": "6662495631930966284" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/namespace/snapshots/1-TSESTree-AST.shot", + "hash": "12366849970922284809" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/namespace/snapshots/2-Babel-Tokens.shot", + "hash": "3970536752036709494" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/namespace/snapshots/2-TSESTree-Tokens.shot", + "hash": "6540141129776514677" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/namespace/snapshots/3-Babel-AST.shot", + "hash": "4496567239334606596" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/namespace/snapshots/4-Babel-Tokens.shot", + "hash": "3837753881620211852" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/namespace/snapshots/5-AST-Alignment-AST.shot", + "hash": "1708685776390054739" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/namespace/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3870314257334116121" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/type-alias/fixture.ts", + "hash": "8804959000140047240" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/type-alias/snapshots/1-TSESTree-AST.shot", + "hash": "17676131271878217391" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/type-alias/snapshots/2-TSESTree-Tokens.shot", + "hash": "11153134482894095715" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/type-alias/snapshots/3-Babel-AST.shot", + "hash": "14538280598526618884" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/type-alias/snapshots/4-Babel-Tokens.shot", + "hash": "5741570572454778256" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/type-alias/snapshots/5-AST-Alignment-AST.shot", + "hash": "7224307252553636027" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/type-alias/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10732925045596088737" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/variable-declaration/fixture.ts", + "hash": "6725296160478957753" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/variable-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "4355943065104659994" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/variable-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "9331141849939236914" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/variable-declaration/snapshots/3-Babel-AST.shot", + "hash": "15631190121789820097" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/variable-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "7867113291004478877" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/variable-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "5914944854767688794" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/fixtures/variable-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "544021922560769963" + }, + { + "file": "packages/ast-spec/src/declaration/ExportNamedDeclaration/spec.ts", + "hash": "16683602884837743851" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-id-and-not-exported/fixture.ts", + "hash": "8519889848108114286" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-id-and-not-exported/snapshots/1-Babel-Error.shot", + "hash": "8169873157578610102" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-id-and-not-exported/snapshots/1-TSESTree-Error.shot", + "hash": "15573427288305047848" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-id-and-not-exported/snapshots/2-Alignment-Error.shot", + "hash": "17805354076517423274" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-id-and-not-exported/snapshots/2-Babel-Error.shot", + "hash": "8169873157578610102" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-id-and-not-exported/snapshots/3-Alignment-Error.shot", + "hash": "17805354076517423274" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-type-param/fixture.ts", + "hash": "8487491847716920004" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-type-param/snapshots/1-Babel-Error.shot", + "hash": "18258025750105211230" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-type-param/snapshots/1-TSESTree-Error.shot", + "hash": "16370621732927555808" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-type-param/snapshots/2-Alignment-Error.shot", + "hash": "5459618603843475302" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-type-param/snapshots/2-Babel-Error.shot", + "hash": "18258025750105211230" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/missing-type-param/snapshots/3-Alignment-Error.shot", + "hash": "5459618603843475302" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-name/fixture.ts", + "hash": "15440255659491564110" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-Babel-Error.shot", + "hash": "9012934715148960210" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-TSESTree-Error.shot", + "hash": "10835530428396574541" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Alignment-Error.shot", + "hash": "1895193572719361486" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Babel-Error.shot", + "hash": "9012934715148960210" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-name/snapshots/3-Alignment-Error.shot", + "hash": "1895193572719361486" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-type-param/fixture.ts", + "hash": "13096431088987259123" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/1-Babel-Error.shot", + "hash": "10189520736043178859" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/1-TSESTree-Error.shot", + "hash": "5024377001294032924" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/2-Alignment-Error.shot", + "hash": "189657553490084806" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/2-Babel-Error.shot", + "hash": "10189520736043178859" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/3-Alignment-Error.shot", + "hash": "189657553490084806" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/async/fixture.ts", + "hash": "2709676538647582319" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/async/snapshots/1-TSESTree-AST.shot", + "hash": "4155801692101041607" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/async/snapshots/2-TSESTree-Tokens.shot", + "hash": "2610342445246905040" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/async/snapshots/3-Babel-AST.shot", + "hash": "8215146365070691560" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/async/snapshots/4-Babel-Tokens.shot", + "hash": "12699266901530014881" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/async/snapshots/5-AST-Alignment-AST.shot", + "hash": "10796977400780711952" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/async/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17372828692757563183" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/empty/fixture.ts", + "hash": "3867688092486589068" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/empty/snapshots/1-TSESTree-AST.shot", + "hash": "4126372600331558066" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/empty/snapshots/2-TSESTree-Tokens.shot", + "hash": "12855701537419657756" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/empty/snapshots/3-Babel-AST.shot", + "hash": "5132450055045978499" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/empty/snapshots/4-Babel-Tokens.shot", + "hash": "7987142587795649938" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/empty/snapshots/5-AST-Alignment-AST.shot", + "hash": "10125262467494730484" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/empty/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17801489218575687016" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/generator/fixture.ts", + "hash": "13618393154364956551" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/generator/snapshots/1-TSESTree-AST.shot", + "hash": "7022427339550748123" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/generator/snapshots/2-TSESTree-Tokens.shot", + "hash": "3180325510961251641" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/generator/snapshots/3-Babel-AST.shot", + "hash": "4736753411827940906" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/generator/snapshots/4-Babel-Tokens.shot", + "hash": "8834239967221968015" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/generator/snapshots/5-AST-Alignment-AST.shot", + "hash": "138884279490856098" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/generator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10829055021422373091" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-many/fixture.ts", + "hash": "8183684124015229067" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-many/snapshots/1-TSESTree-AST.shot", + "hash": "2190201886036959466" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "18259829497150125663" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-many/snapshots/3-Babel-AST.shot", + "hash": "3186569493421787210" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-many/snapshots/4-Babel-Tokens.shot", + "hash": "767755927165784184" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "18330468728459194906" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10582147953100849878" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-one/fixture.ts", + "hash": "17843456776350568058" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-one/snapshots/1-TSESTree-AST.shot", + "hash": "1216741629309514136" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "10183111446760396730" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-one/snapshots/3-Babel-AST.shot", + "hash": "2665158319619671933" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-one/snapshots/4-Babel-Tokens.shot", + "hash": "8413435303862092860" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "4595317540586897022" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/param-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16780432639333944544" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/returnType/fixture.ts", + "hash": "3875721433413839818" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/returnType/snapshots/1-TSESTree-AST.shot", + "hash": "15811818077896844463" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/returnType/snapshots/2-TSESTree-Tokens.shot", + "hash": "4339601824109376037" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/returnType/snapshots/3-Babel-AST.shot", + "hash": "9391618197340274692" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/returnType/snapshots/4-Babel-Tokens.shot", + "hash": "14550267064238244694" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/returnType/snapshots/5-AST-Alignment-AST.shot", + "hash": "606658252522697431" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/returnType/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "232322120041621824" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-many/fixture.ts", + "hash": "4196596302785358092" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-many/snapshots/1-TSESTree-AST.shot", + "hash": "6184496916761689336" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "5282981828959802864" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-many/snapshots/3-Babel-AST.shot", + "hash": "4757234466871997263" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-many/snapshots/4-Babel-Tokens.shot", + "hash": "2160343971697481650" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "8733622635449403937" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9462180965928805968" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-one/fixture.ts", + "hash": "13753010670353481331" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-one/snapshots/1-TSESTree-AST.shot", + "hash": "16127830994191410534" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "5457663574915096806" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-one/snapshots/3-Babel-AST.shot", + "hash": "15709810340572171618" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-one/snapshots/4-Babel-Tokens.shot", + "hash": "4736608026255867175" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "11680972237846119194" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/fixtures/type-param-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8033796497777990273" + }, + { + "file": "packages/ast-spec/src/declaration/FunctionDeclaration/spec.ts", + "hash": "15190264966457425657" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/default-non-identifier/fixture.ts", + "hash": "17224121051303446185" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/default-non-identifier/snapshots/1-Babel-Error.shot", + "hash": "8815405747745669547" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/default-non-identifier/snapshots/1-TSESTree-Error.shot", + "hash": "13518435503438797686" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/default-non-identifier/snapshots/2-Alignment-Error.shot", + "hash": "16909754000975692582" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/default-non-identifier/snapshots/2-Babel-Error.shot", + "hash": "8815405747745669547" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/default-non-identifier/snapshots/3-Alignment-Error.shot", + "hash": "16909754000975692582" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-and-namespace/fixture.ts", + "hash": "1969985194219617127", + "deps": ["npm:a"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-and-namespace/snapshots/1-Babel-Error.shot", + "hash": "8145225451118510353" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-and-namespace/snapshots/1-TSESTree-Error.shot", + "hash": "259192556584963729" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-and-namespace/snapshots/2-Alignment-Error.shot", + "hash": "9733654502598640074" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-and-namespace/snapshots/2-Babel-Error.shot", + "hash": "8145225451118510353" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-and-namespace/snapshots/3-Alignment-Error.shot", + "hash": "9733654502598640074" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-non-identifier/fixture.ts", + "hash": "6468086823649859667", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-non-identifier/snapshots/1-Babel-Error.shot", + "hash": "120352635347028478" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-non-identifier/snapshots/1-TSESTree-Error.shot", + "hash": "11523303871823691628" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-non-identifier/snapshots/2-Alignment-Error.shot", + "hash": "17438783336232632522" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-non-identifier/snapshots/2-Babel-Error.shot", + "hash": "120352635347028478" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/named-non-identifier/snapshots/3-Alignment-Error.shot", + "hash": "17438783336232632522" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-default/fixture.ts", + "hash": "6012936854508773760", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-default/snapshots/1-Babel-Error.shot", + "hash": "3958199874281497442" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-default/snapshots/1-TSESTree-Error.shot", + "hash": "1747003297679414285" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-default/snapshots/2-Alignment-Error.shot", + "hash": "16182028790864410160" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-default/snapshots/2-Babel-Error.shot", + "hash": "3958199874281497442" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-default/snapshots/3-Alignment-Error.shot", + "hash": "16182028790864410160" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-named/fixture.ts", + "hash": "16541590383595477936", + "deps": ["npm:a"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-named/snapshots/1-Babel-Error.shot", + "hash": "6535952473961044955" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-named/snapshots/1-TSESTree-Error.shot", + "hash": "7846164213966806436" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-named/snapshots/2-Alignment-Error.shot", + "hash": "8888700809299284856" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-named/snapshots/2-Babel-Error.shot", + "hash": "6535952473961044955" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-named/snapshots/3-Alignment-Error.shot", + "hash": "8888700809299284856" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-namespace/fixture.ts", + "hash": "32784475466247398", + "deps": ["npm:a"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-namespace/snapshots/1-Babel-Error.shot", + "hash": "2001506179655937530" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-namespace/snapshots/1-TSESTree-Error.shot", + "hash": "11351202077758349619" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-namespace/snapshots/2-Alignment-Error.shot", + "hash": "3522522476972253946" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-namespace/snapshots/2-Babel-Error.shot", + "hash": "2001506179655937530" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-and-namespace/snapshots/3-Alignment-Error.shot", + "hash": "3522522476972253946" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-non-identifier/fixture.ts", + "hash": "15825612564730694675", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-non-identifier/snapshots/1-Babel-Error.shot", + "hash": "13076983769021151573" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-non-identifier/snapshots/1-TSESTree-Error.shot", + "hash": "3276643189089447063" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-non-identifier/snapshots/2-Alignment-Error.shot", + "hash": "11113589000297838607" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-non-identifier/snapshots/2-Babel-Error.shot", + "hash": "13076983769021151573" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/namespace-non-identifier/snapshots/3-Alignment-Error.shot", + "hash": "11113589000297838607" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/non-string-source/fixture.ts", + "hash": "1805407883407231017" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/non-string-source/snapshots/1-Babel-Error.shot", + "hash": "3643781117890627077" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/non-string-source/snapshots/1-TSESTree-Error.shot", + "hash": "960171727091527909" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/non-string-source/snapshots/2-Alignment-Error.shot", + "hash": "8747777842475032329" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/non-string-source/snapshots/2-Babel-Error.shot", + "hash": "3643781117890627077" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/_error_/non-string-source/snapshots/3-Alignment-Error.shot", + "hash": "8747777842475032329" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/assertion/fixture.ts", + "hash": "9576350968566882055", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/assertion/snapshots/1-TSESTree-AST.shot", + "hash": "14236536261000676122" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/assertion/snapshots/2-TSESTree-Tokens.shot", + "hash": "14716523336473726654" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/assertion/snapshots/3-Babel-AST.shot", + "hash": "10740808699555589773" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/assertion/snapshots/4-Babel-Tokens.shot", + "hash": "14019463324644359639" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/assertion/snapshots/5-AST-Alignment-AST.shot", + "hash": "16976125733582370384" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/assertion/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8829364472876431039" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default/fixture.ts", + "hash": "4218933013243569084", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default/snapshots/1-TSESTree-AST.shot", + "hash": "12665953333407156967" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default/snapshots/2-TSESTree-Tokens.shot", + "hash": "735870939748087019" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default/snapshots/3-Babel-AST.shot", + "hash": "14193902454969906227" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default/snapshots/4-Babel-Tokens.shot", + "hash": "17446213935123228083" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default/snapshots/5-AST-Alignment-AST.shot", + "hash": "10775345610151868370" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14280986993570176593" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-many/fixture.ts", + "hash": "15893567090220521813", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-many/snapshots/1-TSESTree-AST.shot", + "hash": "533303779833872992" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "10778276389954493398" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-many/snapshots/3-Babel-AST.shot", + "hash": "12658485985994448144" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-many/snapshots/4-Babel-Tokens.shot", + "hash": "8983952374470927526" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "14170810368783094504" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14897288114246224010" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-none/fixture.ts", + "hash": "6590623801729767553", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-none/snapshots/1-TSESTree-AST.shot", + "hash": "3779478334505453658" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-none/snapshots/2-TSESTree-Tokens.shot", + "hash": "15395629280156108444" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-none/snapshots/3-Babel-AST.shot", + "hash": "5905186814498325645" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-none/snapshots/4-Babel-Tokens.shot", + "hash": "861906041191423460" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-none/snapshots/5-AST-Alignment-AST.shot", + "hash": "3456520923800990940" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-none/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7171112553307069275" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-one/fixture.ts", + "hash": "13144556741596397279", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-one/snapshots/1-TSESTree-AST.shot", + "hash": "12746493083751940694" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "9252887421701581289" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-one/snapshots/3-Babel-AST.shot", + "hash": "13952871637108971382" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-one/snapshots/4-Babel-Tokens.shot", + "hash": "11434162482027944151" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "9211525280941324404" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-named-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5590037486210155633" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-namespace/fixture.ts", + "hash": "1777495767624817634", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-namespace/snapshots/1-TSESTree-AST.shot", + "hash": "7759579004379939258" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-namespace/snapshots/2-TSESTree-Tokens.shot", + "hash": "11406010858383508001" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-namespace/snapshots/3-Babel-AST.shot", + "hash": "18182385443067327637" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-namespace/snapshots/4-Babel-Tokens.shot", + "hash": "5292317743354984615" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-namespace/snapshots/5-AST-Alignment-AST.shot", + "hash": "4505901359334761948" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/default-and-namespace/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14142123950680247360" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-many/fixture.ts", + "hash": "15873869643882313425", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-many/snapshots/1-TSESTree-AST.shot", + "hash": "4041417670503625718" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "4810022367632953866" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-many/snapshots/3-Babel-AST.shot", + "hash": "1882171479129953686" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-many/snapshots/4-Babel-Tokens.shot", + "hash": "2883848589971072514" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "9975770532272709960" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15740271585960370899" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-none/fixture.ts", + "hash": "13801209518557343964", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-none/snapshots/1-TSESTree-AST.shot", + "hash": "8186170344825892859" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-none/snapshots/2-TSESTree-Tokens.shot", + "hash": "11730294830706305813" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-none/snapshots/3-Babel-AST.shot", + "hash": "2629787694741576165" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-none/snapshots/4-Babel-Tokens.shot", + "hash": "12355960512762080325" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-none/snapshots/5-AST-Alignment-AST.shot", + "hash": "7181918445063580563" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-none/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3066246414220047655" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-one/fixture.ts", + "hash": "16547392184938675193", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-one/snapshots/1-TSESTree-AST.shot", + "hash": "9136225369427121755" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "3342263260082104494" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-one/snapshots/3-Babel-AST.shot", + "hash": "5141360947320658798" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-one/snapshots/4-Babel-Tokens.shot", + "hash": "2924436641118340799" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "3954906379803843541" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/named-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8734211436925570049" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/side-effect/fixture.ts", + "hash": "6712804097847664917", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/side-effect/snapshots/1-TSESTree-AST.shot", + "hash": "10878331609387953477" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/side-effect/snapshots/2-TSESTree-Tokens.shot", + "hash": "12814683489138900520" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/side-effect/snapshots/3-Babel-AST.shot", + "hash": "17520172437234278198" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/side-effect/snapshots/4-Babel-Tokens.shot", + "hash": "1000234138698795595" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/side-effect/snapshots/5-AST-Alignment-AST.shot", + "hash": "7800526526168372239" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/fixtures/side-effect/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7682535933783253611" + }, + { + "file": "packages/ast-spec/src/declaration/ImportDeclaration/spec.ts", + "hash": "4799366670821610170" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/async/fixture.ts", + "hash": "11767428312976093427" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/async/snapshots/1-Babel-Error.shot", + "hash": "5518042011867964368" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/async/snapshots/1-TSESTree-Error.shot", + "hash": "10406334033514352972" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/async/snapshots/2-Alignment-Error.shot", + "hash": "14596447783043150063" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/async/snapshots/2-Babel-Error.shot", + "hash": "5518042011867964368" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/async/snapshots/3-Alignment-Error.shot", + "hash": "14596447783043150063" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/declare-with-body/fixture.ts", + "hash": "12924061795385955494" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/declare-with-body/snapshots/1-Babel-Error.shot", + "hash": "1785138426924575001" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/declare-with-body/snapshots/1-TSESTree-Error.shot", + "hash": "9028645700345491702" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/declare-with-body/snapshots/2-Alignment-Error.shot", + "hash": "15201579130976563560" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/declare-with-body/snapshots/2-Babel-Error.shot", + "hash": "1785138426924575001" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/declare-with-body/snapshots/3-Alignment-Error.shot", + "hash": "15201579130976563560" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-id-and-not-exported/fixture.ts", + "hash": "544026450324703782" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-id-and-not-exported/snapshots/1-Babel-Error.shot", + "hash": "2149160095902825798" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-id-and-not-exported/snapshots/1-TSESTree-Error.shot", + "hash": "17562923738478511431" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-id-and-not-exported/snapshots/2-Alignment-Error.shot", + "hash": "16940559869965083637" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-id-and-not-exported/snapshots/2-Babel-Error.shot", + "hash": "2149160095902825798" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-id-and-not-exported/snapshots/3-Alignment-Error.shot", + "hash": "16940559869965083637" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-type-param/fixture.ts", + "hash": "17537170202636336104" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-type-param/snapshots/1-Babel-Error.shot", + "hash": "3870193768877025180" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-type-param/snapshots/1-TSESTree-Error.shot", + "hash": "11282414579420521550" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-type-param/snapshots/2-Alignment-Error.shot", + "hash": "9912628058957206948" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-type-param/snapshots/2-Babel-Error.shot", + "hash": "3870193768877025180" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/missing-type-param/snapshots/3-Alignment-Error.shot", + "hash": "9912628058957206948" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-name/fixture.ts", + "hash": "609069990537752089" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-name/snapshots/1-Babel-Error.shot", + "hash": "296532265005574743" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-name/snapshots/1-TSESTree-Error.shot", + "hash": "14518024808993292208" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-name/snapshots/2-Alignment-Error.shot", + "hash": "13319167250129284332" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-name/snapshots/2-Babel-Error.shot", + "hash": "296532265005574743" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-name/snapshots/3-Alignment-Error.shot", + "hash": "13319167250129284332" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-type-param/fixture.ts", + "hash": "15674952896860081026" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-type-param/snapshots/1-Babel-Error.shot", + "hash": "14664458423939359864" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-type-param/snapshots/1-TSESTree-Error.shot", + "hash": "8443210839415899164" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-type-param/snapshots/2-Alignment-Error.shot", + "hash": "17208571435510813839" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-type-param/snapshots/2-Babel-Error.shot", + "hash": "14664458423939359864" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/_error_/non-identifier-type-param/snapshots/3-Alignment-Error.shot", + "hash": "17208571435510813839" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/empty/fixture.ts", + "hash": "13558060907369181179" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/empty/snapshots/1-TSESTree-AST.shot", + "hash": "13342792320114635476" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/empty/snapshots/2-TSESTree-Tokens.shot", + "hash": "1171711849657332384" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/empty/snapshots/3-Babel-AST.shot", + "hash": "7916198531395735744" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/empty/snapshots/4-Babel-Tokens.shot", + "hash": "7428815192148183320" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/empty/snapshots/5-AST-Alignment-AST.shot", + "hash": "8351650156079640448" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/empty/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17245970408881294706" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/generator/fixture.ts", + "hash": "11864342500870575543" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/generator/snapshots/1-TSESTree-AST.shot", + "hash": "392471775919589199" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/generator/snapshots/2-TSESTree-Tokens.shot", + "hash": "2652031161650098175" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/generator/snapshots/3-Babel-AST.shot", + "hash": "12427051834988984971" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/generator/snapshots/4-Babel-Tokens.shot", + "hash": "5106638476450567249" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/generator/snapshots/5-AST-Alignment-AST.shot", + "hash": "11967167520103934556" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/generator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3553210373973958940" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-many/fixture.ts", + "hash": "6903259295011142188" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-many/snapshots/1-TSESTree-AST.shot", + "hash": "16150029174829813469" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "16808273248395124108" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-many/snapshots/3-Babel-AST.shot", + "hash": "2422230766772489628" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-many/snapshots/4-Babel-Tokens.shot", + "hash": "17469516786638950810" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "8613658759863163597" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15694200117943670903" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-one/fixture.ts", + "hash": "14452564532500511813" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-one/snapshots/1-TSESTree-AST.shot", + "hash": "5413786804689692352" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "10399541410846920952" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-one/snapshots/3-Babel-AST.shot", + "hash": "4990054456479460698" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-one/snapshots/4-Babel-Tokens.shot", + "hash": "5444877749875685989" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "14357979855735194035" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/param-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10802512013182982325" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/returnType/fixture.ts", + "hash": "936400999361364964" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/returnType/snapshots/1-TSESTree-AST.shot", + "hash": "9390138512057172483" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/returnType/snapshots/2-TSESTree-Tokens.shot", + "hash": "13050244843638317170" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/returnType/snapshots/3-Babel-AST.shot", + "hash": "10064561675377245447" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/returnType/snapshots/4-Babel-Tokens.shot", + "hash": "7806251111264852919" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/returnType/snapshots/5-AST-Alignment-AST.shot", + "hash": "9416336848498813839" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/returnType/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9354199740955250416" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-many/fixture.ts", + "hash": "9929589933563631538" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-many/snapshots/1-TSESTree-AST.shot", + "hash": "6549494512279279448" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "15523884981536354699" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-many/snapshots/3-Babel-AST.shot", + "hash": "4549304349079988171" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-many/snapshots/4-Babel-Tokens.shot", + "hash": "8122270374567950610" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "7909594437707802504" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2001918746393513567" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-one/fixture.ts", + "hash": "11896738285158644402" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-one/snapshots/1-TSESTree-AST.shot", + "hash": "15866012202729622871" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "16154508695975766679" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-one/snapshots/3-Babel-AST.shot", + "hash": "14390600056082326521" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-one/snapshots/4-Babel-Tokens.shot", + "hash": "12419214797669337818" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "13800299445546544149" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/type-param-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5231226967564989926" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/without-declare/fixture.ts", + "hash": "8334149330120852728" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/without-declare/snapshots/1-TSESTree-AST.shot", + "hash": "11677911123455300180" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/without-declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "2031303444554127172" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/without-declare/snapshots/3-Babel-AST.shot", + "hash": "16507077537054598877" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/without-declare/snapshots/4-Babel-Tokens.shot", + "hash": "1189241852918593574" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/without-declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "7409320025634321312" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/fixtures/without-declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14048300289647765896" + }, + { + "file": "packages/ast-spec/src/declaration/TSDeclareFunction/spec.ts", + "hash": "7465084912104970890" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/decorator/fixture.ts", + "hash": "453856470082161490" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/decorator/snapshots/1-Babel-Error.shot", + "hash": "1977987721841015049" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/decorator/snapshots/1-TSESTree-Error.shot", + "hash": "656557315959178808" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/decorator/snapshots/2-Alignment-Error.shot", + "hash": "4679083637380551314" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/decorator/snapshots/2-Babel-Error.shot", + "hash": "1977987721841015049" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/decorator/snapshots/3-Alignment-Error.shot", + "hash": "904455482369886368" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-body/fixture.ts", + "hash": "13758124041378373987" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-body/snapshots/1-Babel-Error.shot", + "hash": "7659641238484089682" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-body/snapshots/1-TSESTree-Error.shot", + "hash": "5943054010692697677" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-body/snapshots/2-Alignment-Error.shot", + "hash": "17900276339537129473" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-body/snapshots/2-Babel-Error.shot", + "hash": "7659641238484089682" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-body/snapshots/3-Alignment-Error.shot", + "hash": "17900276339537129473" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-id/fixture.ts", + "hash": "6722533891894614700" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-id/snapshots/1-Babel-Error.shot", + "hash": "12174221278216576483" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-id/snapshots/1-TSESTree-Error.shot", + "hash": "2312702052844746822" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-id/snapshots/2-Alignment-Error.shot", + "hash": "4635333921105952863" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-id/snapshots/2-Babel-Error.shot", + "hash": "12174221278216576483" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/missing-id/snapshots/3-Alignment-Error.shot", + "hash": "4635333921105952863" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/non-identifier-name/fixture.ts", + "hash": "4974500665844675638" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-Babel-Error.shot", + "hash": "684950179421095315" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-TSESTree-Error.shot", + "hash": "3228061631899952030" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Alignment-Error.shot", + "hash": "6454867629054610769" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Babel-Error.shot", + "hash": "684950179421095315" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/_error_/non-identifier-name/snapshots/3-Alignment-Error.shot", + "hash": "6454867629054610769" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/const/fixture.ts", + "hash": "10279517131075355967" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/const/snapshots/1-TSESTree-AST.shot", + "hash": "6434823930608035683" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/const/snapshots/2-TSESTree-Tokens.shot", + "hash": "73595388823514283" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/const/snapshots/3-Babel-AST.shot", + "hash": "8492768680129882820" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/const/snapshots/4-Babel-Tokens.shot", + "hash": "9647696327493151948" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/const/snapshots/5-AST-Alignment-AST.shot", + "hash": "607037482629319934" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/const/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7226089742501840710" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/declare/fixture.ts", + "hash": "9454304951307900667" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/declare/snapshots/1-TSESTree-AST.shot", + "hash": "13929086922212861543" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "8217970189117901826" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/declare/snapshots/3-Babel-AST.shot", + "hash": "16322364406792079346" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/declare/snapshots/4-Babel-Tokens.shot", + "hash": "6381202560276360999" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "17605002933496583488" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "401731612064747118" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/empty/fixture.ts", + "hash": "17242187395484922474" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/empty/snapshots/1-TSESTree-AST.shot", + "hash": "9547170355186799824" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/empty/snapshots/2-TSESTree-Tokens.shot", + "hash": "4954064854427104855" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/empty/snapshots/3-Babel-AST.shot", + "hash": "4538540909737018724" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/empty/snapshots/4-Babel-Tokens.shot", + "hash": "12183663084028275077" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/empty/snapshots/5-AST-Alignment-AST.shot", + "hash": "11637331028307016770" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/empty/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4076337471684923878" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/with-member-one/fixture.ts", + "hash": "17862771599990611607" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/with-member-one/snapshots/1-TSESTree-AST.shot", + "hash": "12093425294217897898" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/with-member-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "3045058246244650875" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/with-member-one/snapshots/3-Babel-AST.shot", + "hash": "953389044814840588" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/with-member-one/snapshots/4-Babel-Tokens.shot", + "hash": "15330528907091228065" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/with-member-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "5961064533811303629" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/fixtures/with-member-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13058824823788889710" + }, + { + "file": "packages/ast-spec/src/declaration/TSEnumDeclaration/spec.ts", + "hash": "10392865534973260199" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/entity-name-invalid/fixture.ts", + "hash": "5719461930165870948" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/entity-name-invalid/snapshots/1-Babel-Error.shot", + "hash": "17279649278341493914" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/entity-name-invalid/snapshots/1-TSESTree-Error.shot", + "hash": "5160679014765958437" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/entity-name-invalid/snapshots/2-Alignment-Error.shot", + "hash": "18298626046907983525" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/entity-name-invalid/snapshots/2-Babel-Error.shot", + "hash": "17279649278341493914" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/entity-name-invalid/snapshots/3-Alignment-Error.shot", + "hash": "18298626046907983525" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/external-module-ref-non-string/fixture.ts", + "hash": "16771534197347502466" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/external-module-ref-non-string/snapshots/1-Babel-Error.shot", + "hash": "5552980147026989472" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/external-module-ref-non-string/snapshots/1-TSESTree-Error.shot", + "hash": "15994424745542590494" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/external-module-ref-non-string/snapshots/2-Alignment-Error.shot", + "hash": "7879223145720889511" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/external-module-ref-non-string/snapshots/2-Babel-Error.shot", + "hash": "5552980147026989472" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/external-module-ref-non-string/snapshots/3-Alignment-Error.shot", + "hash": "7879223145720889511" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/import-kind/fixture.ts", + "hash": "7535033948139634413" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/import-kind/snapshots/1-Babel-Error.shot", + "hash": "11124679314417518986" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/import-kind/snapshots/1-TSESTree-Error.shot", + "hash": "15250871183507071607" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/import-kind/snapshots/2-Alignment-Error.shot", + "hash": "3417097536134532353" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/import-kind/snapshots/2-Babel-Error.shot", + "hash": "11124679314417518986" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/import-kind/snapshots/3-Alignment-Error.shot", + "hash": "3417097536134532353" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-id/fixture.ts", + "hash": "7019159974779711480" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-id/snapshots/1-Babel-Error.shot", + "hash": "147245552295890872" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-id/snapshots/1-TSESTree-Error.shot", + "hash": "10976661738302327132" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-id/snapshots/2-Alignment-Error.shot", + "hash": "10820125765549785823" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-id/snapshots/2-Babel-Error.shot", + "hash": "147245552295890872" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-id/snapshots/3-Alignment-Error.shot", + "hash": "10820125765549785823" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-reference/fixture.ts", + "hash": "16194241260701612639" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-reference/snapshots/1-Babel-Error.shot", + "hash": "1947138818504477382" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-reference/snapshots/1-TSESTree-Error.shot", + "hash": "10980635534126229890" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-reference/snapshots/2-Alignment-Error.shot", + "hash": "1209383543875590934" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-reference/snapshots/2-Babel-Error.shot", + "hash": "1947138818504477382" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/_error_/missing-reference/snapshots/3-Alignment-Error.shot", + "hash": "1209383543875590934" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-many/fixture.ts", + "hash": "16093523592257154073" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-many/snapshots/1-TSESTree-AST.shot", + "hash": "1513506004659205232" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "14150637591171403434" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-many/snapshots/3-Babel-AST.shot", + "hash": "4127761720206153465" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-many/snapshots/4-Babel-Tokens.shot", + "hash": "4073388977310810725" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "313780738016216982" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13307417235070624499" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-one/fixture.ts", + "hash": "3626962804401226426" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-one/snapshots/1-TSESTree-AST.shot", + "hash": "12341419376019861828" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "8078358521884906449" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-one/snapshots/3-Babel-AST.shot", + "hash": "16695099486871652007" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-one/snapshots/4-Babel-Tokens.shot", + "hash": "11078175474663625677" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "13878770747217568774" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/entity-name-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15591100913832246615" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/external-module-ref-string/fixture.ts", + "hash": "7609669767654751996", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/external-module-ref-string/snapshots/1-TSESTree-AST.shot", + "hash": "11449929814513607954" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/external-module-ref-string/snapshots/2-TSESTree-Tokens.shot", + "hash": "11785442309929362730" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/external-module-ref-string/snapshots/3-Babel-AST.shot", + "hash": "5838691222130155625" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/external-module-ref-string/snapshots/4-Babel-Tokens.shot", + "hash": "282838178598683717" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/external-module-ref-string/snapshots/5-AST-Alignment-AST.shot", + "hash": "9486631396606509426" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/fixtures/external-module-ref-string/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4753346943257256146" + }, + { + "file": "packages/ast-spec/src/declaration/TSImportEqualsDeclaration/spec.ts", + "hash": "17536994934761526213" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/decorator/fixture.ts", + "hash": "12125970089735548543" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/decorator/snapshots/1-Babel-Error.shot", + "hash": "5025425338824193510" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/decorator/snapshots/1-TSESTree-Error.shot", + "hash": "12623630912147054082" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/decorator/snapshots/2-Alignment-Error.shot", + "hash": "14466723076797239690" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/decorator/snapshots/2-Babel-Error.shot", + "hash": "5025425338824193510" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/decorator/snapshots/3-Alignment-Error.shot", + "hash": "10479737244896644396" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-body/fixture.ts", + "hash": "16009952506297695146" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-body/snapshots/1-Babel-Error.shot", + "hash": "18180902730211007689" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-body/snapshots/1-TSESTree-Error.shot", + "hash": "14591813328631739045" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-body/snapshots/2-Alignment-Error.shot", + "hash": "5431973117884963292" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-body/snapshots/2-Babel-Error.shot", + "hash": "18180902730211007689" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-body/snapshots/3-Alignment-Error.shot", + "hash": "5431973117884963292" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-extends/fixture.ts", + "hash": "3364439512531953495" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-extends/snapshots/1-Babel-Error.shot", + "hash": "5182994905826870347" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-extends/snapshots/1-TSESTree-Error.shot", + "hash": "3245268965876960078" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-extends/snapshots/2-Alignment-Error.shot", + "hash": "2729999420467519891" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-extends/snapshots/2-Babel-Error.shot", + "hash": "5182994905826870347" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-extends/snapshots/3-Alignment-Error.shot", + "hash": "2729999420467519891" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-id/fixture.ts", + "hash": "776016423750833016" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-id/snapshots/1-Babel-Error.shot", + "hash": "11125316016418519847" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-id/snapshots/1-TSESTree-Error.shot", + "hash": "17183269129938578270" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-id/snapshots/2-Alignment-Error.shot", + "hash": "4631219469948552629" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-id/snapshots/2-Babel-Error.shot", + "hash": "11125316016418519847" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-id/snapshots/3-Alignment-Error.shot", + "hash": "4631219469948552629" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-type-param/fixture.ts", + "hash": "11603013828992972947" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-type-param/snapshots/1-Babel-Error.shot", + "hash": "7215712099499240693" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-type-param/snapshots/1-TSESTree-Error.shot", + "hash": "429627870775249134" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-type-param/snapshots/2-Alignment-Error.shot", + "hash": "7232730445964602555" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-type-param/snapshots/2-Babel-Error.shot", + "hash": "7215712099499240693" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/missing-type-param/snapshots/3-Alignment-Error.shot", + "hash": "7232730445964602555" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-extends/fixture.ts", + "hash": "3791842356920004205" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-extends/snapshots/1-Babel-Error.shot", + "hash": "6369674717955909195" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-extends/snapshots/1-TSESTree-Error.shot", + "hash": "16426163258562893912" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-extends/snapshots/2-Alignment-Error.shot", + "hash": "5033814024581744645" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-extends/snapshots/2-Babel-Error.shot", + "hash": "6369674717955909195" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-extends/snapshots/3-Alignment-Error.shot", + "hash": "5033814024581744645" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-name/fixture.ts", + "hash": "15093569529693986208" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-Babel-Error.shot", + "hash": "6382908240680379163" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-TSESTree-Error.shot", + "hash": "4813548291540833523" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Alignment-Error.shot", + "hash": "7357906158923167204" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Babel-Error.shot", + "hash": "6382908240680379163" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-name/snapshots/3-Alignment-Error.shot", + "hash": "7357906158923167204" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-type-param/fixture.ts", + "hash": "11075493950706546155" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/1-Babel-Error.shot", + "hash": "7540707399603355549" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/1-TSESTree-Error.shot", + "hash": "761784551407182498" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/2-Alignment-Error.shot", + "hash": "7824524047672983638" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/2-Babel-Error.shot", + "hash": "7540707399603355549" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/_error_/non-identifier-type-param/snapshots/3-Alignment-Error.shot", + "hash": "7824524047672983638" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/declare/fixture.ts", + "hash": "8289796213398874808" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/declare/snapshots/1-TSESTree-AST.shot", + "hash": "12369536960984486279" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "1792256922850223745" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/declare/snapshots/3-Babel-AST.shot", + "hash": "2925099333939252906" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/declare/snapshots/4-Babel-Tokens.shot", + "hash": "4290292539098393807" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "16432080897727195320" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5990303075996031230" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/empty/fixture.ts", + "hash": "7944767511201692154" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/empty/snapshots/1-TSESTree-AST.shot", + "hash": "1620742294060051408" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/empty/snapshots/2-TSESTree-Tokens.shot", + "hash": "12999511987333640985" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/empty/snapshots/3-Babel-AST.shot", + "hash": "13817362893341640506" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/empty/snapshots/4-Babel-Tokens.shot", + "hash": "7232088591226947117" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/empty/snapshots/5-AST-Alignment-AST.shot", + "hash": "7118342728247328921" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/empty/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2301051505828933563" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-many/fixture.ts", + "hash": "11970058698160229652" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-many/snapshots/1-TSESTree-AST.shot", + "hash": "12627121787958015575" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "10289498917113689204" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-many/snapshots/3-Babel-AST.shot", + "hash": "16077064515530965865" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-many/snapshots/4-Babel-Tokens.shot", + "hash": "10700926473939286206" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "6284503313742935750" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16651747061674391518" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-one/fixture.ts", + "hash": "2763198250782024732" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-one/snapshots/1-TSESTree-AST.shot", + "hash": "3612022590383233521" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "9112363015685554745" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-one/snapshots/3-Babel-AST.shot", + "hash": "13231515402304743726" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-one/snapshots/4-Babel-Tokens.shot", + "hash": "7181689704104495054" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "17741645115075793960" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/extends-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "519179472023595312" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-many/fixture.ts", + "hash": "8331538927997119054" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-many/snapshots/1-TSESTree-AST.shot", + "hash": "9695995817501562425" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "13886544207883903120" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-many/snapshots/3-Babel-AST.shot", + "hash": "4357423531628220808" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-many/snapshots/4-Babel-Tokens.shot", + "hash": "7104086559464236298" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "11699039661202945709" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9788625871472655731" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-one/fixture.ts", + "hash": "6060081324287854579" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-one/snapshots/1-TSESTree-AST.shot", + "hash": "9965071416071994131" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "10064795042589722500" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-one/snapshots/3-Babel-AST.shot", + "hash": "10381485919823432963" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-one/snapshots/4-Babel-Tokens.shot", + "hash": "12514165308808920015" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "8556528157683954544" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/type-param-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2977642387585334822" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/with-member-one/fixture.ts", + "hash": "10480869267582496449" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/with-member-one/snapshots/1-TSESTree-AST.shot", + "hash": "17129997568146668089" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/with-member-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "8407357992979854145" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/with-member-one/snapshots/3-Babel-AST.shot", + "hash": "5575521480368205281" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/with-member-one/snapshots/4-Babel-Tokens.shot", + "hash": "649345056874348340" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/with-member-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "7968775171931936340" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/fixtures/with-member-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3118037251425813958" + }, + { + "file": "packages/ast-spec/src/declaration/TSInterfaceDeclaration/spec.ts", + "hash": "7466840394755734576" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-invalid-id/fixture.ts", + "hash": "3215844937375105472" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-invalid-id/snapshots/1-Babel-Error.shot", + "hash": "4830399867050118287" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-invalid-id/snapshots/1-TSESTree-Error.shot", + "hash": "6164806565568211643" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-invalid-id/snapshots/2-Alignment-Error.shot", + "hash": "8188014566052736152" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-invalid-id/snapshots/2-Babel-Error.shot", + "hash": "4830399867050118287" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-invalid-id/snapshots/3-Alignment-Error.shot", + "hash": "8188014566052736152" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-missing-body/fixture.ts", + "hash": "6718477159941914757" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-missing-body/snapshots/1-Babel-Error.shot", + "hash": "8505242761685809497" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-missing-body/snapshots/1-TSESTree-Error.shot", + "hash": "8501565199288675548" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-missing-body/snapshots/2-Alignment-Error.shot", + "hash": "15091138425232421055" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-missing-body/snapshots/2-Babel-Error.shot", + "hash": "8505242761685809497" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/module-missing-body/snapshots/3-Alignment-Error.shot", + "hash": "15091138425232421055" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-declare-no-body/fixture.ts", + "hash": "11066864932329325145" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-declare-no-body/snapshots/1-Babel-Error.shot", + "hash": "6233444785355719753" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-declare-no-body/snapshots/1-TSESTree-Error.shot", + "hash": "5581883835859042303" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-declare-no-body/snapshots/2-Alignment-Error.shot", + "hash": "3919660310779302608" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-declare-no-body/snapshots/2-Babel-Error.shot", + "hash": "6233444785355719753" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-declare-no-body/snapshots/3-Alignment-Error.shot", + "hash": "3919660310779302608" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-id-literal/fixture.ts", + "hash": "4812289773677203906" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-id-literal/snapshots/1-Babel-Error.shot", + "hash": "12832282247574224263" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-id-literal/snapshots/1-TSESTree-Error.shot", + "hash": "3108861339861845680" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-id-literal/snapshots/2-Alignment-Error.shot", + "hash": "795934881736538903" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-id-literal/snapshots/2-Babel-Error.shot", + "hash": "12832282247574224263" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-id-literal/snapshots/3-Alignment-Error.shot", + "hash": "795934881736538903" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-invalid-id/fixture.ts", + "hash": "10407446325465433134" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-invalid-id/snapshots/1-Babel-Error.shot", + "hash": "14760091722555699899" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-invalid-id/snapshots/1-TSESTree-Error.shot", + "hash": "18354473156367033290" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-invalid-id/snapshots/2-Alignment-Error.shot", + "hash": "13582118027619674854" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-invalid-id/snapshots/2-Babel-Error.shot", + "hash": "14760091722555699899" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-invalid-id/snapshots/3-Alignment-Error.shot", + "hash": "13582118027619674854" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-no-body/fixture.ts", + "hash": "16206079642130249904" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-no-body/snapshots/1-Babel-Error.shot", + "hash": "13187945769665604169" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-no-body/snapshots/1-TSESTree-Error.shot", + "hash": "14134662391292018718" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-no-body/snapshots/2-Alignment-Error.shot", + "hash": "12866738331956060560" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-no-body/snapshots/2-Babel-Error.shot", + "hash": "13187945769665604169" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/_error_/namespace-no-body/snapshots/3-Alignment-Error.shot", + "hash": "12866738331956060560" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/global/fixture.ts", + "hash": "7414420651999123579" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/global/snapshots/1-TSESTree-AST.shot", + "hash": "17252451170072707624" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/global/snapshots/2-TSESTree-Tokens.shot", + "hash": "15628703952421049540" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/global/snapshots/3-Babel-AST.shot", + "hash": "16475410413848783770" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/global/snapshots/4-Babel-Tokens.shot", + "hash": "9923628956712387384" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/global/snapshots/5-AST-Alignment-AST.shot", + "hash": "897057487870264828" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/global/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4369750227016378094" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare/fixture.ts", + "hash": "13220210556673856901" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare/snapshots/1-TSESTree-AST.shot", + "hash": "2873244162576139403" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "3862466094057477405" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare/snapshots/3-Babel-AST.shot", + "hash": "1778477557110928689" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare/snapshots/4-Babel-Tokens.shot", + "hash": "4720299301440089995" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "8886058086299406715" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6273873856784341536" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare-no-body/fixture.ts", + "hash": "15330632410620039465" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare-no-body/snapshots/1-TSESTree-AST.shot", + "hash": "17916116964763106323" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare-no-body/snapshots/2-TSESTree-Tokens.shot", + "hash": "15226968823490084668" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare-no-body/snapshots/3-Babel-AST.shot", + "hash": "7063520339687838869" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare-no-body/snapshots/4-Babel-Tokens.shot", + "hash": "6990685566810829179" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare-no-body/snapshots/5-AST-Alignment-AST.shot", + "hash": "6775175676213519504" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-declare-no-body/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10496151863208605289" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-identifier/fixture.ts", + "hash": "11188441933960916342" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-identifier/snapshots/1-TSESTree-AST.shot", + "hash": "7651712564309161155" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-identifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "2235195951770073102" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-identifier/snapshots/3-Babel-AST.shot", + "hash": "11844814902316446288" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-identifier/snapshots/4-Babel-Tokens.shot", + "hash": "4896134461320753865" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-identifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "1572578677173783698" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-identifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14971458506409539975" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-literal/fixture.ts", + "hash": "13658919008462478243" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-literal/snapshots/1-TSESTree-AST.shot", + "hash": "13499167839969478018" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-literal/snapshots/2-TSESTree-Tokens.shot", + "hash": "15217393041270779944" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-literal/snapshots/3-Babel-AST.shot", + "hash": "5332726109172507716" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-literal/snapshots/4-Babel-Tokens.shot", + "hash": "11813572667394595357" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-literal/snapshots/5-AST-Alignment-AST.shot", + "hash": "11489222757792668586" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-literal/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1293209355632016626" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-qualified-name/fixture.ts", + "hash": "3528204716974784282" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-qualified-name/snapshots/1-TSESTree-AST.shot", + "hash": "1618767723809546624" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-qualified-name/snapshots/2-TSESTree-Tokens.shot", + "hash": "18088359272765652573" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-qualified-name/snapshots/3-Babel-AST.shot", + "hash": "4809278933165094065" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-qualified-name/snapshots/4-Babel-Tokens.shot", + "hash": "15127835310826400208" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-qualified-name/snapshots/5-AST-Alignment-AST.shot", + "hash": "3845873574114688624" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/module-id-qualified-name/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17280314963118601513" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-declare/fixture.ts", + "hash": "3837855591353009107" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-declare/snapshots/1-Babel-AST.shot", + "hash": "345410087387884321" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-declare/snapshots/1-TSESTree-AST.shot", + "hash": "3780464900027414740" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-declare/snapshots/2-Babel-Tokens.shot", + "hash": "12401629910770038021" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "5948398200027460246" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-declare/snapshots/3-Babel-AST.shot", + "hash": "2557326890915976113" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-declare/snapshots/4-Babel-Tokens.shot", + "hash": "16855179949907434290" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "4573811118942775611" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13959398074888513205" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-identifier/fixture.ts", + "hash": "17242720704003949867" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-identifier/snapshots/1-Babel-AST.shot", + "hash": "12036369425743283966" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-identifier/snapshots/1-TSESTree-AST.shot", + "hash": "2169167037095083575" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-identifier/snapshots/2-Babel-Tokens.shot", + "hash": "9888025685521585532" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-identifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "962469468282021785" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-identifier/snapshots/3-Babel-AST.shot", + "hash": "10427191600239628395" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-identifier/snapshots/4-Babel-Tokens.shot", + "hash": "10647252145099249484" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-identifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "10920686844965009762" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-identifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "18307430330313997802" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-qualified-name/fixture.ts", + "hash": "469775553275406625" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-qualified-name/snapshots/1-TSESTree-AST.shot", + "hash": "14817787232888820468" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-qualified-name/snapshots/2-TSESTree-Tokens.shot", + "hash": "14979942818868463548" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-qualified-name/snapshots/3-Babel-AST.shot", + "hash": "2557670204670296702" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-qualified-name/snapshots/4-Babel-Tokens.shot", + "hash": "12738609580471419701" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-qualified-name/snapshots/5-AST-Alignment-AST.shot", + "hash": "10373412451205221692" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-id-qualified-name/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13517665737131751254" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-once/fixture.ts", + "hash": "3831722944886684006" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-once/snapshots/1-TSESTree-AST.shot", + "hash": "17768457119535132136" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-once/snapshots/2-TSESTree-Tokens.shot", + "hash": "8650701014779613428" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-once/snapshots/3-Babel-AST.shot", + "hash": "128541554135793525" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-once/snapshots/4-Babel-Tokens.shot", + "hash": "7027153557963811579" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-once/snapshots/5-AST-Alignment-AST.shot", + "hash": "15609746547865277279" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-once/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "28163082594672365" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-twice/fixture.ts", + "hash": "413461645534042888" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-twice/snapshots/1-TSESTree-AST.shot", + "hash": "4915113060377333" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-twice/snapshots/2-TSESTree-Tokens.shot", + "hash": "16486941657453264586" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-twice/snapshots/3-Babel-AST.shot", + "hash": "16233388578458941634" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-twice/snapshots/4-Babel-Tokens.shot", + "hash": "12294972818086706578" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-twice/snapshots/5-AST-Alignment-AST.shot", + "hash": "18080637562278819187" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/fixtures/namespace-nested-twice/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15524647558708280878" + }, + { + "file": "packages/ast-spec/src/declaration/TSModuleDeclaration/spec.ts", + "hash": "12877514726915007094" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/missing-id/fixture.ts", + "hash": "1657766015978384874" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/missing-id/snapshots/1-Babel-Error.shot", + "hash": "7043261995938002988" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/missing-id/snapshots/1-TSESTree-Error.shot", + "hash": "4894425987458561069" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/missing-id/snapshots/2-Alignment-Error.shot", + "hash": "4708250930639745829" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/missing-id/snapshots/2-Babel-Error.shot", + "hash": "7043261995938002988" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/missing-id/snapshots/3-Alignment-Error.shot", + "hash": "4708250930639745829" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/non-identifier-name/fixture.ts", + "hash": "9488547100551330690" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-Babel-Error.shot", + "hash": "11498317856425272849" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-TSESTree-Error.shot", + "hash": "8380175467493081158" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Alignment-Error.shot", + "hash": "14126931377265254031" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Babel-Error.shot", + "hash": "11498317856425272849" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/_error_/non-identifier-name/snapshots/3-Alignment-Error.shot", + "hash": "14126931377265254031" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/valid/fixture.ts", + "hash": "10227386654074094656" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/valid/snapshots/1-TSESTree-AST.shot", + "hash": "8178120179794449956" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/valid/snapshots/2-TSESTree-Tokens.shot", + "hash": "14344918283288823573" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/valid/snapshots/3-Babel-AST.shot", + "hash": "13459166652532484203" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/valid/snapshots/4-Babel-Tokens.shot", + "hash": "17265403413342792230" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/valid/snapshots/5-AST-Alignment-AST.shot", + "hash": "10829157955377992013" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/fixtures/valid/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2228169114602962912" + }, + { + "file": "packages/ast-spec/src/declaration/TSNamespaceExportDeclaration/spec.ts", + "hash": "16835003258154940876" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/decorator/fixture.ts", + "hash": "2144264909274102297" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/decorator/snapshots/1-Babel-Error.shot", + "hash": "91454158587761990" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/decorator/snapshots/1-TSESTree-Error.shot", + "hash": "3743567828421548974" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/decorator/snapshots/2-Alignment-Error.shot", + "hash": "10320852803443728842" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/decorator/snapshots/2-Babel-Error.shot", + "hash": "91454158587761990" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/decorator/snapshots/3-Alignment-Error.shot", + "hash": "15393679567450992207" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/missing-type-parameter/fixture.ts", + "hash": "15051369130619320702" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/missing-type-parameter/snapshots/1-Babel-Error.shot", + "hash": "1965631075071944689" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/missing-type-parameter/snapshots/1-TSESTree-Error.shot", + "hash": "17126847753755707880" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/missing-type-parameter/snapshots/2-Alignment-Error.shot", + "hash": "30026250631882034" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/missing-type-parameter/snapshots/2-Babel-Error.shot", + "hash": "1965631075071944689" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/missing-type-parameter/snapshots/3-Alignment-Error.shot", + "hash": "30026250631882034" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-name/fixture.ts", + "hash": "14526716443567928431" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-Babel-Error.shot", + "hash": "6714122668125063189" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-name/snapshots/1-TSESTree-Error.shot", + "hash": "11504388948363159732" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Alignment-Error.shot", + "hash": "712550178453132927" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-name/snapshots/2-Babel-Error.shot", + "hash": "6714122668125063189" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-name/snapshots/3-Alignment-Error.shot", + "hash": "712550178453132927" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-type-parameter/fixture.ts", + "hash": "4483344407726099091" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-type-parameter/snapshots/1-Babel-Error.shot", + "hash": "11437766000668155001" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-type-parameter/snapshots/1-TSESTree-Error.shot", + "hash": "8310931369722323164" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-type-parameter/snapshots/2-Alignment-Error.shot", + "hash": "12990827210731008045" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-type-parameter/snapshots/2-Babel-Error.shot", + "hash": "11437766000668155001" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/_error_/non-identifier-type-parameter/snapshots/3-Alignment-Error.shot", + "hash": "12990827210731008045" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/declare/fixture.ts", + "hash": "5874673769933907239" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/declare/snapshots/1-TSESTree-AST.shot", + "hash": "1722415640495278829" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "10563195313029769650" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/declare/snapshots/3-Babel-AST.shot", + "hash": "16999845565835227675" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/declare/snapshots/4-Babel-Tokens.shot", + "hash": "9530667562616372768" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "1651750427046106248" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4305651675958916850" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-many/fixture.ts", + "hash": "18012159234935480321" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-many/snapshots/1-TSESTree-AST.shot", + "hash": "17861743003203690457" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-many/snapshots/2-TSESTree-Tokens.shot", + "hash": "102838646890031741" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-many/snapshots/3-Babel-AST.shot", + "hash": "15279638616176112730" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-many/snapshots/4-Babel-Tokens.shot", + "hash": "5996722016148180466" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-many/snapshots/5-AST-Alignment-AST.shot", + "hash": "9417442314159744412" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-many/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1770896058995987110" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-one/fixture.ts", + "hash": "5281252152976906351" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-one/snapshots/1-TSESTree-AST.shot", + "hash": "8639975971759252174" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-one/snapshots/2-TSESTree-Tokens.shot", + "hash": "924769793031904457" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-one/snapshots/3-Babel-AST.shot", + "hash": "17886143747047831432" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-one/snapshots/4-Babel-Tokens.shot", + "hash": "9974393959503954225" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-one/snapshots/5-AST-Alignment-AST.shot", + "hash": "13259497389940709206" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/type-param-one/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9806867568945441836" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/valid/fixture.ts", + "hash": "6164730695783971564" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/valid/snapshots/1-TSESTree-AST.shot", + "hash": "2076704986603388634" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/valid/snapshots/2-TSESTree-Tokens.shot", + "hash": "17588639703703285451" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/valid/snapshots/3-Babel-AST.shot", + "hash": "6185475477192423721" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/valid/snapshots/4-Babel-Tokens.shot", + "hash": "15625069681591493011" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/valid/snapshots/5-AST-Alignment-AST.shot", + "hash": "4933901272931623914" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/fixtures/valid/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2543041938059005775" + }, + { + "file": "packages/ast-spec/src/declaration/TSTypeAliasDeclaration/spec.ts", + "hash": "4010615276117281404" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/decorator/fixture.ts", + "hash": "2144264909274102297" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/decorator/snapshots/1-Babel-Error.shot", + "hash": "9160339761661034225" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/decorator/snapshots/1-TSESTree-Error.shot", + "hash": "14934672644066622446" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/decorator/snapshots/2-Alignment-Error.shot", + "hash": "11377907193140742582" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/decorator/snapshots/2-Babel-Error.shot", + "hash": "9160339761661034225" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/decorator/snapshots/3-Alignment-Error.shot", + "hash": "12737557514472267622" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-with-value/fixture.ts", + "hash": "8931937512408337822" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-with-value/snapshots/1-Babel-Error.shot", + "hash": "3701331684270047369" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-with-value/snapshots/1-TSESTree-Error.shot", + "hash": "5947109687960566361" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-with-value/snapshots/2-Alignment-Error.shot", + "hash": "17083799588896255233" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-with-value/snapshots/2-Babel-Error.shot", + "hash": "3701331684270047369" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-with-value/snapshots/3-Alignment-Error.shot", + "hash": "17083799588896255233" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-without-value/fixture.ts", + "hash": "11574367060868823571" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-without-value/snapshots/1-Babel-Error.shot", + "hash": "3742168436639442278" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-without-value/snapshots/1-TSESTree-Error.shot", + "hash": "738323067180900775" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-without-value/snapshots/2-Alignment-Error.shot", + "hash": "7718529090523793959" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-without-value/snapshots/2-Babel-Error.shot", + "hash": "3742168436639442278" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/missing-id-without-value/snapshots/3-Alignment-Error.shot", + "hash": "1555920833423140338" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/no-variables/fixture.ts", + "hash": "11574367060868823571" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/no-variables/snapshots/1-Babel-Error.shot", + "hash": "5965700691430447497" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/no-variables/snapshots/1-TSESTree-Error.shot", + "hash": "17530102241974233603" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/no-variables/snapshots/2-Alignment-Error.shot", + "hash": "9178390962292098058" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/no-variables/snapshots/2-Babel-Error.shot", + "hash": "5965700691430447497" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/_error_/no-variables/snapshots/3-Alignment-Error.shot", + "hash": "15805948474142509886" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-with-value/fixture.ts", + "hash": "8971104085467762368" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-with-value/snapshots/1-TSESTree-AST.shot", + "hash": "3009782089978263849" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-with-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "5263563330212030767" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-with-value/snapshots/3-Babel-AST.shot", + "hash": "16985459691777415448" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-with-value/snapshots/4-Babel-Tokens.shot", + "hash": "1646243854739483998" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-with-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "4543019794213787155" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-with-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15707111127300868993" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-without-value/fixture.ts", + "hash": "8971104085467762368" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-without-value/snapshots/1-TSESTree-AST.shot", + "hash": "13653318772056507697" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-without-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "6618339872469427103" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-without-value/snapshots/3-Babel-AST.shot", + "hash": "8996036641944305428" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-without-value/snapshots/4-Babel-Tokens.shot", + "hash": "13896761757769128042" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-without-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "15408250807990850422" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/const-without-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1717091264700962389" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/declare/fixture.ts", + "hash": "10174065768743074249" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/declare/snapshots/1-TSESTree-AST.shot", + "hash": "777631880663262109" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "2081232429545727146" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/declare/snapshots/3-Babel-AST.shot", + "hash": "9144092989948462787" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/declare/snapshots/4-Babel-Tokens.shot", + "hash": "9352008309504227732" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "8719908455414032396" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1114259954485159887" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-with-value/fixture.ts", + "hash": "259913516176200977" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-with-value/snapshots/1-TSESTree-AST.shot", + "hash": "3275333666590518761" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-with-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "1078048144623003017" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-with-value/snapshots/3-Babel-AST.shot", + "hash": "15350042430663937100" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-with-value/snapshots/4-Babel-Tokens.shot", + "hash": "13611028727461459661" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-with-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "3595452658187861502" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-with-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17382843478651718977" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-without-value/fixture.ts", + "hash": "14872593155335951369" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-without-value/snapshots/1-TSESTree-AST.shot", + "hash": "17199161514538160511" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-without-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "48883413478498734" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-without-value/snapshots/3-Babel-AST.shot", + "hash": "18385142311676015174" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-without-value/snapshots/4-Babel-Tokens.shot", + "hash": "7774833569087179676" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-without-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "108218111454081656" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/let-without-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10307839555256018170" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/multiple-declarations/fixture.ts", + "hash": "3615123431211321371" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/multiple-declarations/snapshots/1-TSESTree-AST.shot", + "hash": "15117046876776208455" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/multiple-declarations/snapshots/2-TSESTree-Tokens.shot", + "hash": "8239225707436170" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/multiple-declarations/snapshots/3-Babel-AST.shot", + "hash": "610534059306592816" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/multiple-declarations/snapshots/4-Babel-Tokens.shot", + "hash": "5982032695248994001" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/multiple-declarations/snapshots/5-AST-Alignment-AST.shot", + "hash": "3091535125452582771" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/multiple-declarations/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5312309068132169734" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-with-value/fixture.ts", + "hash": "4155433215944935817" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-with-value/snapshots/1-TSESTree-AST.shot", + "hash": "2399032057378717570" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-with-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "43748142598202002" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-with-value/snapshots/3-Babel-AST.shot", + "hash": "17766091194364826291" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-with-value/snapshots/4-Babel-Tokens.shot", + "hash": "3808878136612840148" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-with-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "5126701508622149118" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-with-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12584531164546261115" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-without-value/fixture.ts", + "hash": "11888584745376869758" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-without-value/snapshots/1-TSESTree-AST.shot", + "hash": "16409628475462204574" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-without-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "987350584728420406" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-without-value/snapshots/3-Babel-AST.shot", + "hash": "11547845159298001253" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-without-value/snapshots/4-Babel-Tokens.shot", + "hash": "668812109135641284" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-without-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "3309004048275098446" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/fixtures/var-without-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10655642892937920319" + }, + { + "file": "packages/ast-spec/src/declaration/VariableDeclaration/spec.ts", + "hash": "2717761425570049095" + }, + { + "file": "packages/ast-spec/src/declaration/spec.ts", + "hash": "15253991414204144003" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-accessor-with-value/fixture.ts", + "hash": "17588078566938512073" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-accessor-with-value/snapshots/1-Babel-Error.shot", + "hash": "12037381924468781339" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-accessor-with-value/snapshots/1-TSESTree-Error.shot", + "hash": "18053066139527068464" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-accessor-with-value/snapshots/2-Alignment-Error.shot", + "hash": "15422341179214756278" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-accessor-with-value/snapshots/2-Babel-Error.shot", + "hash": "12037381924468781339" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-accessor-with-value/snapshots/3-Alignment-Error.shot", + "hash": "951751431129906376" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-property-with-value/fixture.ts", + "hash": "13095606672198119652" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-property-with-value/snapshots/1-Babel-Error.shot", + "hash": "8816649738331785239" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-property-with-value/snapshots/1-TSESTree-Error.shot", + "hash": "6102121715739540234" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-property-with-value/snapshots/2-Alignment-Error.shot", + "hash": "13924804270702415764" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-property-with-value/snapshots/2-Babel-Error.shot", + "hash": "8816649738331785239" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-abstract-property-with-value/snapshots/3-Alignment-Error.shot", + "hash": "1522671476334789656" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-override-with-no-extends/fixture.ts", + "hash": "345152908713836187" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-override-with-no-extends/snapshots/1-Babel-Error.shot", + "hash": "17712416019995080466" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-override-with-no-extends/snapshots/1-TSESTree-Error.shot", + "hash": "18345426626741527340" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-override-with-no-extends/snapshots/2-Alignment-Error.shot", + "hash": "3952532186725916238" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-override-with-no-extends/snapshots/2-Babel-Error.shot", + "hash": "17712416019995080466" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/_error_/modifier-override-with-no-extends/snapshots/3-Alignment-Error.shot", + "hash": "3952532186725916238" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-complex/fixture.ts", + "hash": "5921348038011668898" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-complex/snapshots/1-TSESTree-AST.shot", + "hash": "2865158489738428333" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-complex/snapshots/2-TSESTree-Tokens.shot", + "hash": "372288691038710374" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-complex/snapshots/3-Babel-AST.shot", + "hash": "2703687526448289069" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-complex/snapshots/4-Babel-Tokens.shot", + "hash": "16602983400529108558" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-complex/snapshots/5-AST-Alignment-AST.shot", + "hash": "3565698145195167476" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-complex/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "18192930489830037247" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-number/fixture.ts", + "hash": "14923950183580613461" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-number/snapshots/1-TSESTree-AST.shot", + "hash": "8422447827119259656" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-number/snapshots/2-TSESTree-Tokens.shot", + "hash": "16006603480115748239" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-number/snapshots/3-Babel-AST.shot", + "hash": "13463791436200785137" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-number/snapshots/4-Babel-Tokens.shot", + "hash": "5140817487546567195" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-number/snapshots/5-AST-Alignment-AST.shot", + "hash": "7281527129953569671" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-number/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2770046632264290854" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-string/fixture.ts", + "hash": "12464547377936010479" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-string/snapshots/1-TSESTree-AST.shot", + "hash": "11305575948856826226" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-string/snapshots/2-TSESTree-Tokens.shot", + "hash": "4926072129560957646" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-string/snapshots/3-Babel-AST.shot", + "hash": "12881498750085581329" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-string/snapshots/4-Babel-Tokens.shot", + "hash": "1529676375642679876" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-string/snapshots/5-AST-Alignment-AST.shot", + "hash": "3284133311154739393" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-computed-string/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2742214693199979345" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-number/fixture.ts", + "hash": "13797564921460724061" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-number/snapshots/1-TSESTree-AST.shot", + "hash": "10353477133636712457" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-number/snapshots/2-TSESTree-Tokens.shot", + "hash": "8995533357229919035" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-number/snapshots/3-Babel-AST.shot", + "hash": "1459115998939261050" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-number/snapshots/4-Babel-Tokens.shot", + "hash": "3556107933220660156" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-number/snapshots/5-AST-Alignment-AST.shot", + "hash": "4402797563218768383" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-number/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9595111522909453561" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-private/fixture.ts", + "hash": "11789012267453027561" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-private/snapshots/1-TSESTree-AST.shot", + "hash": "12482425677204949081" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-private/snapshots/2-TSESTree-Tokens.shot", + "hash": "10196921127170065121" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-private/snapshots/3-Babel-AST.shot", + "hash": "7617345659103292607" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-private/snapshots/4-Babel-Tokens.shot", + "hash": "16039273237478440177" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-private/snapshots/5-AST-Alignment-AST.shot", + "hash": "7908940126606271184" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-private/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2538345308258372378" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-string/fixture.ts", + "hash": "7192483723096139055" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-string/snapshots/1-TSESTree-AST.shot", + "hash": "14068139461533143180" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-string/snapshots/2-TSESTree-Tokens.shot", + "hash": "7822338798339673763" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-string/snapshots/3-Babel-AST.shot", + "hash": "17640923174830963219" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-string/snapshots/4-Babel-Tokens.shot", + "hash": "12368828830809045344" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-string/snapshots/5-AST-Alignment-AST.shot", + "hash": "16736149613796108305" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/key-string/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4842682377241366316" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-abstract/fixture.ts", + "hash": "1098643871243270473" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-abstract/snapshots/1-TSESTree-AST.shot", + "hash": "11087043670090264779" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-abstract/snapshots/2-TSESTree-Tokens.shot", + "hash": "14924604077669629354" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-abstract/snapshots/3-Babel-AST.shot", + "hash": "1844362270459475827" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-abstract/snapshots/4-Babel-Tokens.shot", + "hash": "3086180588330386948" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-abstract/snapshots/5-AST-Alignment-AST.shot", + "hash": "10791895247942400852" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-abstract/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16401738279008997406" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-declare/fixture.ts", + "hash": "16861967251655940050" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-declare/snapshots/1-TSESTree-AST.shot", + "hash": "6515156003972648481" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "13671743102889347454" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-declare/snapshots/3-Babel-AST.shot", + "hash": "13184360430304175810" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-declare/snapshots/4-Babel-Tokens.shot", + "hash": "6801702438842879564" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "1236252081285890636" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14698439661852477439" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-override/fixture.ts", + "hash": "16687406187895353112" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-override/snapshots/1-TSESTree-AST.shot", + "hash": "2411777572461647535" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-override/snapshots/2-TSESTree-Tokens.shot", + "hash": "11782246330372927065" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-override/snapshots/3-Babel-AST.shot", + "hash": "10421803544475644243" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-override/snapshots/4-Babel-Tokens.shot", + "hash": "277019472165399502" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-override/snapshots/5-AST-Alignment-AST.shot", + "hash": "1917328358307431326" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-override/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3181620723454818159" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-private/fixture.ts", + "hash": "4249384723698903922" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-private/snapshots/1-TSESTree-AST.shot", + "hash": "825539908419774280" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-private/snapshots/2-TSESTree-Tokens.shot", + "hash": "6638220230165944862" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-private/snapshots/3-Babel-AST.shot", + "hash": "7372765450263370534" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-private/snapshots/4-Babel-Tokens.shot", + "hash": "3992380668920359210" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-private/snapshots/5-AST-Alignment-AST.shot", + "hash": "131160267467634376" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-private/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10205831232052199589" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-protected/fixture.ts", + "hash": "3065051807631098863" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-protected/snapshots/1-TSESTree-AST.shot", + "hash": "13998662013379646068" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-protected/snapshots/2-TSESTree-Tokens.shot", + "hash": "15297907004479004443" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-protected/snapshots/3-Babel-AST.shot", + "hash": "6918481431354275009" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-protected/snapshots/4-Babel-Tokens.shot", + "hash": "13921940749658805219" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-protected/snapshots/5-AST-Alignment-AST.shot", + "hash": "2817009967731197477" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-protected/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12885287928579386245" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-public/fixture.ts", + "hash": "17583481599921835691" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-public/snapshots/1-TSESTree-AST.shot", + "hash": "17318665580917276828" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-public/snapshots/2-TSESTree-Tokens.shot", + "hash": "13580773413151819917" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-public/snapshots/3-Babel-AST.shot", + "hash": "3230624039418720434" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-public/snapshots/4-Babel-Tokens.shot", + "hash": "6030465071843467302" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-public/snapshots/5-AST-Alignment-AST.shot", + "hash": "8081098418764699346" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-public/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17305567949303346441" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-readonly/fixture.ts", + "hash": "13381606127144165490" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-readonly/snapshots/1-TSESTree-AST.shot", + "hash": "8355855135703814853" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-readonly/snapshots/2-TSESTree-Tokens.shot", + "hash": "6421059988312135201" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-readonly/snapshots/3-Babel-AST.shot", + "hash": "10444612708392469807" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-readonly/snapshots/4-Babel-Tokens.shot", + "hash": "13704457468042465297" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-readonly/snapshots/5-AST-Alignment-AST.shot", + "hash": "12553968150187354809" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-readonly/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16239550916240843720" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-static/fixture.ts", + "hash": "4127086531054647176" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-static/snapshots/1-TSESTree-AST.shot", + "hash": "12656016737571947594" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-static/snapshots/2-TSESTree-Tokens.shot", + "hash": "7563345730372498470" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-static/snapshots/3-Babel-AST.shot", + "hash": "2913819204615129847" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-static/snapshots/4-Babel-Tokens.shot", + "hash": "7934660588082513934" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-static/snapshots/5-AST-Alignment-AST.shot", + "hash": "4600981623309460655" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/modifier-static/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5676305025735959580" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-no-value/fixture.ts", + "hash": "14493295210783977095" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-no-value/snapshots/1-TSESTree-AST.shot", + "hash": "2615904162251619859" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-no-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "6576721065035358266" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-no-value/snapshots/3-Babel-AST.shot", + "hash": "9474616640151894350" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-no-value/snapshots/4-Babel-Tokens.shot", + "hash": "276420524495238774" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-no-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "14417906665177087270" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-no-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15897577387145127286" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-with-value/fixture.ts", + "hash": "3399585910378333102" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-with-value/snapshots/1-TSESTree-AST.shot", + "hash": "17893649261376542723" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-with-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "10239260182884636318" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-with-value/snapshots/3-Babel-AST.shot", + "hash": "671991708191683137" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-with-value/snapshots/4-Babel-Tokens.shot", + "hash": "8665483970624055740" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-with-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "3405887063552664312" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/no-annotation-with-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17550118455918326108" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-no-value/fixture.ts", + "hash": "15893355202365471264" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-no-value/snapshots/1-TSESTree-AST.shot", + "hash": "2623525280758729266" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-no-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "13546680045591411438" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-no-value/snapshots/3-Babel-AST.shot", + "hash": "17236773093078743946" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-no-value/snapshots/4-Babel-Tokens.shot", + "hash": "5132616694192969478" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-no-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "12826743312298290733" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-no-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3560394676469848859" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-with-value/fixture.ts", + "hash": "4644581396842971505" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-with-value/snapshots/1-TSESTree-AST.shot", + "hash": "6934878633243639265" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-with-value/snapshots/2-TSESTree-Tokens.shot", + "hash": "13157905295070211177" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-with-value/snapshots/3-Babel-AST.shot", + "hash": "17343143582161451182" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-with-value/snapshots/4-Babel-Tokens.shot", + "hash": "11834297739375689341" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-with-value/snapshots/5-AST-Alignment-AST.shot", + "hash": "6323332704567028285" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/fixtures/with-annotation-with-value/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7979654138054987128" + }, + { + "file": "packages/ast-spec/src/element/AccessorProperty/spec.ts", + "hash": "3738572727421729873" + }, + { + "file": "packages/ast-spec/src/element/MethodDefinition/spec.ts", + "hash": "9218084611351139618" + }, + { + "file": "packages/ast-spec/src/element/Property/spec.ts", + "hash": "6102873530017292186" + }, + { + "file": "packages/ast-spec/src/element/PropertyDefinition/spec.ts", + "hash": "4262785806891041344" + }, + { + "file": "packages/ast-spec/src/element/SpreadElement/spec.ts", + "hash": "11987793405878046902" + }, + { + "file": "packages/ast-spec/src/element/StaticBlock/spec.ts", + "hash": "7543268396157230250" + }, + { + "file": "packages/ast-spec/src/element/TSAbstractAccessorProperty/spec.ts", + "hash": "9131888057101398065" + }, + { + "file": "packages/ast-spec/src/element/TSAbstractMethodDefinition/spec.ts", + "hash": "15078417367968947303" + }, + { + "file": "packages/ast-spec/src/element/TSAbstractPropertyDefinition/spec.ts", + "hash": "9274128068705843118" + }, + { + "file": "packages/ast-spec/src/element/TSCallSignatureDeclaration/spec.ts", + "hash": "1782184812889795424" + }, + { + "file": "packages/ast-spec/src/element/TSConstructSignatureDeclaration/spec.ts", + "hash": "3553757305359848918" + }, + { + "file": "packages/ast-spec/src/element/TSEnumMember/spec.ts", + "hash": "5895919604129784052" + }, + { + "file": "packages/ast-spec/src/element/TSIndexSignature/spec.ts", + "hash": "16162973401995589553" + }, + { + "file": "packages/ast-spec/src/element/TSMethodSignature/spec.ts", + "hash": "3249050043202314228" + }, + { + "file": "packages/ast-spec/src/element/TSPropertySignature/spec.ts", + "hash": "4275130125527963091" + }, + { + "file": "packages/ast-spec/src/element/spec.ts", + "hash": "1766224192664829826" + }, + { + "file": "packages/ast-spec/src/expression/ArrayExpression/spec.ts", + "hash": "8285162698206279106" + }, + { + "file": "packages/ast-spec/src/expression/ArrowFunctionExpression/spec.ts", + "hash": "16962498961475777010" + }, + { + "file": "packages/ast-spec/src/expression/AssignmentExpression/AssignmentOperatorToText.ts", + "hash": "6728738190891958512", + "deps": ["npm:typescript"] + }, + { + "file": "packages/ast-spec/src/expression/AssignmentExpression/spec.ts", + "hash": "7332110298838550898" + }, + { + "file": "packages/ast-spec/src/expression/AwaitExpression/spec.ts", + "hash": "5458603755582238862" + }, + { + "file": "packages/ast-spec/src/expression/BinaryExpression/BinaryOperatorToText.ts", + "hash": "5924003308565392733", + "deps": ["npm:typescript"] + }, + { + "file": "packages/ast-spec/src/expression/BinaryExpression/spec.ts", + "hash": "9770246184109068011" + }, + { + "file": "packages/ast-spec/src/expression/CallExpression/spec.ts", + "hash": "3400757339930771743" + }, + { + "file": "packages/ast-spec/src/expression/ChainExpression/spec.ts", + "hash": "12565057799305918487" + }, + { + "file": "packages/ast-spec/src/expression/ClassExpression/spec.ts", + "hash": "7476004893348440113" + }, + { + "file": "packages/ast-spec/src/expression/ConditionalExpression/spec.ts", + "hash": "8039303544070417627" + }, + { + "file": "packages/ast-spec/src/expression/FunctionExpression/spec.ts", + "hash": "16845740165316882509" + }, + { + "file": "packages/ast-spec/src/expression/Identifier/spec.ts", + "hash": "8020468090105599425" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/extra-arguments/fixture.ts", + "hash": "9617695211122399431" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/extra-arguments/snapshots/1-Babel-Error.shot", + "hash": "17775843719949114399" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/extra-arguments/snapshots/1-TSESTree-Error.shot", + "hash": "12913503535206263474" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/extra-arguments/snapshots/2-Alignment-Error.shot", + "hash": "591410969847601168" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/extra-arguments/snapshots/2-Babel-Error.shot", + "hash": "17775843719949114399" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/extra-arguments/snapshots/3-Alignment-Error.shot", + "hash": "591410969847601168" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/no-arguments/fixture.ts", + "hash": "16662089917384144617" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/no-arguments/snapshots/1-Babel-Error.shot", + "hash": "14067170883058265257" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/no-arguments/snapshots/1-TSESTree-Error.shot", + "hash": "6826918274416835096" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/no-arguments/snapshots/2-Alignment-Error.shot", + "hash": "13276201048004205933" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/no-arguments/snapshots/2-Babel-Error.shot", + "hash": "14067170883058265257" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/fixtures/_error_/no-arguments/snapshots/3-Alignment-Error.shot", + "hash": "13276201048004205933" + }, + { + "file": "packages/ast-spec/src/expression/ImportExpression/spec.ts", + "hash": "6112387680508563964" + }, + { + "file": "packages/ast-spec/src/expression/JSXElement/spec.ts", + "hash": "14199829251301904331" + }, + { + "file": "packages/ast-spec/src/expression/JSXFragment/spec.ts", + "hash": "12741185666214197178" + }, + { + "file": "packages/ast-spec/src/expression/LogicalExpression/spec.ts", + "hash": "13866393502813516182" + }, + { + "file": "packages/ast-spec/src/expression/MemberExpression/spec.ts", + "hash": "11463711708119897491" + }, + { + "file": "packages/ast-spec/src/expression/MetaProperty/spec.ts", + "hash": "15852221464744040151" + }, + { + "file": "packages/ast-spec/src/expression/NewExpression/spec.ts", + "hash": "16951838064364341030" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-getter-body/fixture.ts", + "hash": "5422946675318017832" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-getter-body/snapshots/1-Babel-Error.shot", + "hash": "16322967674567654283" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-getter-body/snapshots/1-TSESTree-Error.shot", + "hash": "10702206766526767337" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-getter-body/snapshots/2-Alignment-Error.shot", + "hash": "18333628716420563374" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-getter-body/snapshots/2-Babel-Error.shot", + "hash": "16322967674567654283" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-getter-body/snapshots/3-Alignment-Error.shot", + "hash": "13862144576395171972" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-method-body/fixture.ts", + "hash": "8981403599132883128" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-method-body/snapshots/1-Babel-Error.shot", + "hash": "17575540633078475348" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-method-body/snapshots/1-TSESTree-Error.shot", + "hash": "11475775822430269785" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-method-body/snapshots/2-Alignment-Error.shot", + "hash": "691518699372788116" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-method-body/snapshots/2-Babel-Error.shot", + "hash": "17575540633078475348" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-method-body/snapshots/3-Alignment-Error.shot", + "hash": "9442897703115218823" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-setter-body/fixture.ts", + "hash": "3918154595274456386" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-setter-body/snapshots/1-Babel-Error.shot", + "hash": "17783815367748091696" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-setter-body/snapshots/1-TSESTree-Error.shot", + "hash": "8749861777127670829" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-setter-body/snapshots/2-Alignment-Error.shot", + "hash": "6418158678541765881" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-setter-body/snapshots/2-Babel-Error.shot", + "hash": "17783815367748091696" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/fixtures/_error_/missing-setter-body/snapshots/3-Alignment-Error.shot", + "hash": "8397960770060749913" + }, + { + "file": "packages/ast-spec/src/expression/ObjectExpression/spec.ts", + "hash": "16327329067821584954" + }, + { + "file": "packages/ast-spec/src/expression/SequenceExpression/spec.ts", + "hash": "4411788272355891402" + }, + { + "file": "packages/ast-spec/src/expression/Super/spec.ts", + "hash": "4653984748049342431" + }, + { + "file": "packages/ast-spec/src/expression/TSAsExpression/spec.ts", + "hash": "5389958335767147037" + }, + { + "file": "packages/ast-spec/src/expression/TSEmptyBodyFunctionExpression/spec.ts", + "hash": "17674247054282798177" + }, + { + "file": "packages/ast-spec/src/expression/TSInstantiationExpression/spec.ts", + "hash": "10698190472196931515" + }, + { + "file": "packages/ast-spec/src/expression/TSNonNullExpression/spec.ts", + "hash": "2861584669202675794" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/array-array/fixture.ts", + "hash": "18266976013976595467" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/array-array/snapshots/1-TSESTree-AST.shot", + "hash": "571973998047618484" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/array-array/snapshots/2-TSESTree-Tokens.shot", + "hash": "18353252911187755436" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/array-array/snapshots/3-Babel-AST.shot", + "hash": "15455344411374625192" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/array-array/snapshots/4-Babel-Tokens.shot", + "hash": "18144683481263752272" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/array-array/snapshots/5-AST-Alignment-AST.shot", + "hash": "9491405674811268287" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/array-array/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13131463994316340866" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-no-parentheses/fixture.ts", + "hash": "6914528307858674809" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-no-parentheses/snapshots/1-TSESTree-AST.shot", + "hash": "18420970992228731259" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-no-parentheses/snapshots/2-TSESTree-Tokens.shot", + "hash": "11361582859341610905" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-no-parentheses/snapshots/3-Babel-AST.shot", + "hash": "1910251168841042761" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-no-parentheses/snapshots/4-Babel-Tokens.shot", + "hash": "2264435670967351782" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-no-parentheses/snapshots/5-AST-Alignment-AST.shot", + "hash": "8682416174362145839" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-no-parentheses/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6442707722705980021" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-with-parentheses/fixture.ts", + "hash": "16387397848701846517" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-with-parentheses/snapshots/1-TSESTree-AST.shot", + "hash": "16183100837875603430" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-with-parentheses/snapshots/2-TSESTree-Tokens.shot", + "hash": "10516587849633072796" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-with-parentheses/snapshots/3-Babel-AST.shot", + "hash": "18195360904605430362" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-with-parentheses/snapshots/4-Babel-Tokens.shot", + "hash": "11932600703467773973" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-with-parentheses/snapshots/5-AST-Alignment-AST.shot", + "hash": "518397220730424797" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/arrow-func-with-parentheses/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5579279903687306838" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/chained-satisfies/fixture.ts", + "hash": "14653912311754670923" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/chained-satisfies/snapshots/1-TSESTree-AST.shot", + "hash": "7981876562553243886" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/chained-satisfies/snapshots/2-TSESTree-Tokens.shot", + "hash": "12672754820790822358" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/chained-satisfies/snapshots/3-Babel-AST.shot", + "hash": "10443306510649083035" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/chained-satisfies/snapshots/4-Babel-Tokens.shot", + "hash": "10778985731559528780" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/chained-satisfies/snapshots/5-AST-Alignment-AST.shot", + "hash": "2223467622602393168" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/chained-satisfies/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1501874013008177671" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-no-parentheses/fixture.ts", + "hash": "136812282704837779" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-no-parentheses/snapshots/1-TSESTree-AST.shot", + "hash": "10753077059924904552" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-no-parentheses/snapshots/2-TSESTree-Tokens.shot", + "hash": "15734871624738261043" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-no-parentheses/snapshots/3-Babel-AST.shot", + "hash": "3325091314760663167" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-no-parentheses/snapshots/4-Babel-Tokens.shot", + "hash": "17989973823769081535" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-no-parentheses/snapshots/5-AST-Alignment-AST.shot", + "hash": "15030919045867858784" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-no-parentheses/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16931390821046939961" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-with-parentheses/fixture.ts", + "hash": "5469745530269344692" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-with-parentheses/snapshots/1-TSESTree-AST.shot", + "hash": "13830540916457390420" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-with-parentheses/snapshots/2-TSESTree-Tokens.shot", + "hash": "17247811313727538146" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-with-parentheses/snapshots/3-Babel-AST.shot", + "hash": "9428846015651233349" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-with-parentheses/snapshots/4-Babel-Tokens.shot", + "hash": "2327414344056918186" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-with-parentheses/snapshots/5-AST-Alignment-AST.shot", + "hash": "8147505222380933360" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/conditional-with-parentheses/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1841333121710149899" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-keyword/fixture.ts", + "hash": "11895222366657177712" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-keyword/snapshots/1-TSESTree-AST.shot", + "hash": "16045767117867702438" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-keyword/snapshots/2-TSESTree-Tokens.shot", + "hash": "17581071217352287432" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-keyword/snapshots/3-Babel-AST.shot", + "hash": "13819580857403709002" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-keyword/snapshots/4-Babel-Tokens.shot", + "hash": "737931421285056987" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-keyword/snapshots/5-AST-Alignment-AST.shot", + "hash": "15690239076480007125" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-keyword/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8319401974140562129" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-object-type/fixture.ts", + "hash": "11312299197837481302" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-object-type/snapshots/1-TSESTree-AST.shot", + "hash": "14671067103242128424" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-object-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "12338311721488896802" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-object-type/snapshots/3-Babel-AST.shot", + "hash": "4773371493806004501" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-object-type/snapshots/4-Babel-Tokens.shot", + "hash": "15341526253477142666" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-object-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "14520483198662307185" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-object-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2604794789618965204" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-tuple-type/fixture.ts", + "hash": "5250316491607169439" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-tuple-type/snapshots/1-TSESTree-AST.shot", + "hash": "12114888494475665170" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-tuple-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "3737315882992297791" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-tuple-type/snapshots/3-Babel-AST.shot", + "hash": "16079327344457286520" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-tuple-type/snapshots/4-Babel-Tokens.shot", + "hash": "14633216186064482235" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-tuple-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "8977895541144519276" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/identifier-tuple-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16594597694251545036" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-no-parentheses/fixture.ts", + "hash": "18007877190378745042" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-no-parentheses/snapshots/1-TSESTree-AST.shot", + "hash": "18076928456538124077" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-no-parentheses/snapshots/2-TSESTree-Tokens.shot", + "hash": "17859356981835661805" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-no-parentheses/snapshots/3-Babel-AST.shot", + "hash": "3868100812404305294" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-no-parentheses/snapshots/4-Babel-Tokens.shot", + "hash": "5517362810039633203" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-no-parentheses/snapshots/5-AST-Alignment-AST.shot", + "hash": "9108612957753732903" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-no-parentheses/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6201305183444290922" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-with-parentheses/fixture.ts", + "hash": "9178659807595045535" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-with-parentheses/snapshots/1-TSESTree-AST.shot", + "hash": "1625229198366775334" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-with-parentheses/snapshots/2-TSESTree-Tokens.shot", + "hash": "3312034353244911204" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-with-parentheses/snapshots/3-Babel-AST.shot", + "hash": "916611641546307139" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-with-parentheses/snapshots/4-Babel-Tokens.shot", + "hash": "5259238656426286096" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-with-parentheses/snapshots/5-AST-Alignment-AST.shot", + "hash": "11273850653303974520" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/logical-with-parentheses/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12688402643725836666" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-inner-parentheses/fixture.ts", + "hash": "15532502636221350914" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-inner-parentheses/snapshots/1-TSESTree-AST.shot", + "hash": "17992245062774091577" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-inner-parentheses/snapshots/2-TSESTree-Tokens.shot", + "hash": "4013882423143063554" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-inner-parentheses/snapshots/3-Babel-AST.shot", + "hash": "6142213488681984469" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-inner-parentheses/snapshots/4-Babel-Tokens.shot", + "hash": "11243138170194358791" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-inner-parentheses/snapshots/5-AST-Alignment-AST.shot", + "hash": "17441873235474280345" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-inner-parentheses/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5926453425889826750" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-outer-parentheses/fixture.ts", + "hash": "15532502636221350914" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-outer-parentheses/snapshots/1-TSESTree-AST.shot", + "hash": "15926210404926779579" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-outer-parentheses/snapshots/2-TSESTree-Tokens.shot", + "hash": "5730552127452072900" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-outer-parentheses/snapshots/3-Babel-AST.shot", + "hash": "17498222960958023933" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-outer-parentheses/snapshots/4-Babel-Tokens.shot", + "hash": "11180378410687988351" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-outer-parentheses/snapshots/5-AST-Alignment-AST.shot", + "hash": "5612996187167690514" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/fixtures/object-object-outer-parentheses/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "18106396056594152170" + }, + { + "file": "packages/ast-spec/src/expression/TSSatisfiesExpression/spec.ts", + "hash": "14835264909256417974" + }, + { + "file": "packages/ast-spec/src/expression/TSTypeAssertion/spec.ts", + "hash": "6259151667292377351" + }, + { + "file": "packages/ast-spec/src/expression/TaggedTemplateExpression/spec.ts", + "hash": "3061615092059986766" + }, + { + "file": "packages/ast-spec/src/expression/TemplateLiteral/spec.ts", + "hash": "3203889030259679424" + }, + { + "file": "packages/ast-spec/src/expression/ThisExpression/spec.ts", + "hash": "102156857581691753" + }, + { + "file": "packages/ast-spec/src/expression/UnaryExpression/spec.ts", + "hash": "8907203873257028500" + }, + { + "file": "packages/ast-spec/src/expression/UpdateExpression/spec.ts", + "hash": "12883768032762716196" + }, + { + "file": "packages/ast-spec/src/expression/YieldExpression/spec.ts", + "hash": "10607000826907427010" + }, + { + "file": "packages/ast-spec/src/expression/literal/BigIntLiteral/spec.ts", + "hash": "1162466014048172093" + }, + { + "file": "packages/ast-spec/src/expression/literal/BooleanLiteral/spec.ts", + "hash": "10459280091143049354" + }, + { + "file": "packages/ast-spec/src/expression/literal/NullLiteral/spec.ts", + "hash": "17585923574295300802" + }, + { + "file": "packages/ast-spec/src/expression/literal/NumberLiteral/spec.ts", + "hash": "13574189471253715483" + }, + { + "file": "packages/ast-spec/src/expression/literal/RegExpLiteral/spec.ts", + "hash": "6752042860346637207" + }, + { + "file": "packages/ast-spec/src/expression/literal/StringLiteral/spec.ts", + "hash": "10875433455961396716" + }, + { + "file": "packages/ast-spec/src/expression/literal/spec.ts", + "hash": "9638605341087817197" + }, + { + "file": "packages/ast-spec/src/expression/spec.ts", + "hash": "11977201787188555133" + }, + { + "file": "packages/ast-spec/src/index.ts", + "hash": "8310043182747085201" + }, + { + "file": "packages/ast-spec/src/jsx/JSXAttribute/spec.ts", + "hash": "13333641947278894465" + }, + { + "file": "packages/ast-spec/src/jsx/JSXClosingElement/spec.ts", + "hash": "862662934074838171" + }, + { + "file": "packages/ast-spec/src/jsx/JSXClosingFragment/spec.ts", + "hash": "12345456171152344320" + }, + { + "file": "packages/ast-spec/src/jsx/JSXEmptyExpression/spec.ts", + "hash": "7811603593408062244" + }, + { + "file": "packages/ast-spec/src/jsx/JSXExpressionContainer/spec.ts", + "hash": "12947125050038481144" + }, + { + "file": "packages/ast-spec/src/jsx/JSXIdentifier/spec.ts", + "hash": "13945242689772839396" + }, + { + "file": "packages/ast-spec/src/jsx/JSXMemberExpression/spec.ts", + "hash": "11915832191836032332" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component/fixture.tsx", + "hash": "2770397486870908202" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component/snapshots/1-TSESTree-AST.shot", + "hash": "17354304063949499668" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component/snapshots/2-TSESTree-Tokens.shot", + "hash": "5096951150212455823" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component/snapshots/3-Babel-AST.shot", + "hash": "15607223377980299146" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component/snapshots/4-Babel-Tokens.shot", + "hash": "2966949519613853732" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component/snapshots/5-AST-Alignment-AST.shot", + "hash": "16978670077774636395" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4988365222325720723" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component-dashed/fixture.tsx", + "hash": "5538959953275533019" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component-dashed/snapshots/1-TSESTree-AST.shot", + "hash": "8246095291393091357" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component-dashed/snapshots/2-TSESTree-Tokens.shot", + "hash": "4786144359681414509" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component-dashed/snapshots/3-Babel-AST.shot", + "hash": "836039867213374711" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component-dashed/snapshots/4-Babel-Tokens.shot", + "hash": "1319433472632576214" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component-dashed/snapshots/5-AST-Alignment-AST.shot", + "hash": "6492052751960569033" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component-dashed/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11090518469906104858" + }, + { + "file": "packages/ast-spec/src/jsx/JSXNamespacedName/spec.ts", + "hash": "9202111245074533402" + }, + { + "file": "packages/ast-spec/src/jsx/JSXOpeningElement/spec.ts", + "hash": "6348559113965306677" + }, + { + "file": "packages/ast-spec/src/jsx/JSXOpeningFragment/spec.ts", + "hash": "7429011945654039839" + }, + { + "file": "packages/ast-spec/src/jsx/JSXSpreadAttribute/spec.ts", + "hash": "7894382798525258951" + }, + { + "file": "packages/ast-spec/src/jsx/JSXSpreadChild/spec.ts", + "hash": "8784639033525700013" + }, + { + "file": "packages/ast-spec/src/jsx/JSXText/spec.ts", + "hash": "4746910475108753260" + }, + { + "file": "packages/ast-spec/src/jsx/spec.ts", + "hash": "5342282658087219935" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-instance-member/fixture.ts", + "hash": "7789633759443193167" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-instance-member/snapshots/1-TSESTree-AST.shot", + "hash": "1612217330663628614" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-instance-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "5876709580625882879" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-instance-member/snapshots/3-Babel-AST.shot", + "hash": "11030479155970330118" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-instance-member/snapshots/4-Babel-Tokens.shot", + "hash": "8763190111675026467" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-instance-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "11716651548958855954" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-instance-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7168543685464940528" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-static-member/fixture.ts", + "hash": "15419074145951150234" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-static-member/snapshots/1-TSESTree-AST.shot", + "hash": "10135528494908865080" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-static-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "339416095403811154" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-static-member/snapshots/3-Babel-AST.shot", + "hash": "6042592890934436402" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-static-member/snapshots/4-Babel-Tokens.shot", + "hash": "4927538439929390574" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-static-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "2499761090308263523" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-factory-static-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4878914206656502721" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-instance-member/fixture.ts", + "hash": "13187086546062624502" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-instance-member/snapshots/1-TSESTree-AST.shot", + "hash": "13481103815100989776" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-instance-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "188083836535961718" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-instance-member/snapshots/3-Babel-AST.shot", + "hash": "17724701644152193196" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-instance-member/snapshots/4-Babel-Tokens.shot", + "hash": "12740310035646662219" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-instance-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "12159709588940968646" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-instance-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17591246099757768811" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-static-member/fixture.ts", + "hash": "18368943799638643386" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-static-member/snapshots/1-TSESTree-AST.shot", + "hash": "3791221621863037551" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-static-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "17683005671630829389" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-static-member/snapshots/3-Babel-AST.shot", + "hash": "10776436531116430630" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-static-member/snapshots/4-Babel-Tokens.shot", + "hash": "14702237293241384831" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-static-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "13350202427769666578" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/accessor-decorators/fixtures/accessor-decorator-static-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2400597706137218617" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameter-whitespace-loc/fixture.ts", + "hash": "15367880973701480715" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameter-whitespace-loc/snapshots/1-TSESTree-AST.shot", + "hash": "11396847773092820977" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameter-whitespace-loc/snapshots/2-TSESTree-Tokens.shot", + "hash": "2451077287289133485" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameter-whitespace-loc/snapshots/3-Babel-AST.shot", + "hash": "16253151550404913283" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameter-whitespace-loc/snapshots/4-Babel-Tokens.shot", + "hash": "4712981628525979702" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameter-whitespace-loc/snapshots/5-AST-Alignment-AST.shot", + "hash": "16117350067919722052" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameter-whitespace-loc/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17040093622601489641" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameters/fixture.ts", + "hash": "17857095009576744406" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameters/snapshots/1-TSESTree-AST.shot", + "hash": "6208269621529700982" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameters/snapshots/2-TSESTree-Tokens.shot", + "hash": "5655457982542693336" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameters/snapshots/3-Babel-AST.shot", + "hash": "13144064846973444800" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameters/snapshots/4-Babel-Tokens.shot", + "hash": "5426814738386722417" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameters/snapshots/5-AST-Alignment-AST.shot", + "hash": "4070874451314529095" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/babylon-convergence/fixtures/type-parameters/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4871885517111232941" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-constructor/fixture.ts", + "hash": "2971106337804247171" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-constructor/snapshots/1-Babel-Error.shot", + "hash": "5558318072364420677" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-constructor/snapshots/1-TSESTree-Error.shot", + "hash": "5701607433342828500" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-constructor/snapshots/2-Alignment-Error.shot", + "hash": "2922862894738369605" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-constructor/snapshots/2-Babel-Error.shot", + "hash": "5558318072364420677" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-constructor/snapshots/3-Alignment-Error.shot", + "hash": "16851436446872279275" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-static-constructor/fixture.ts", + "hash": "8625149753065029906" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-static-constructor/snapshots/1-Babel-Error.shot", + "hash": "4735139135398125789" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-static-constructor/snapshots/1-TSESTree-Error.shot", + "hash": "17584082039339911957" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-static-constructor/snapshots/2-Alignment-Error.shot", + "hash": "12310763202679166205" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-static-constructor/snapshots/2-Babel-Error.shot", + "hash": "4735139135398125789" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-abstract-static-constructor/snapshots/3-Alignment-Error.shot", + "hash": "16791174445339240837" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-override-property/fixture.ts", + "hash": "566550709858702831" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-override-property/snapshots/1-Babel-Error.shot", + "hash": "18022530693769996105" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-override-property/snapshots/1-TSESTree-Error.shot", + "hash": "7228852169656976062" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-override-property/snapshots/2-Alignment-Error.shot", + "hash": "10234952394866402005" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-override-property/snapshots/2-Babel-Error.shot", + "hash": "18022530693769996105" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-class-with-override-property/snapshots/3-Alignment-Error.shot", + "hash": "1901707227404549260" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-interface/fixture.ts", + "hash": "4331462537719263026" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-interface/snapshots/1-Babel-Error.shot", + "hash": "6614261577623782068" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-interface/snapshots/1-TSESTree-Error.shot", + "hash": "13141883525074464749" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-interface/snapshots/2-Alignment-Error.shot", + "hash": "3527026525179584590" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-interface/snapshots/2-Babel-Error.shot", + "hash": "6614261577623782068" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/abstract-interface/snapshots/3-Alignment-Error.shot", + "hash": "14626520143102873354" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/await-without-async-function/fixture.ts", + "hash": "16702027143525600339" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/await-without-async-function/snapshots/1-Babel-Error.shot", + "hash": "4323006671595017620" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/await-without-async-function/snapshots/1-TSESTree-Error.shot", + "hash": "3412714453947630714" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/await-without-async-function/snapshots/2-Alignment-Error.shot", + "hash": "7070019460767813627" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/await-without-async-function/snapshots/2-Babel-Error.shot", + "hash": "4323006671595017620" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/await-without-async-function/snapshots/3-Alignment-Error.shot", + "hash": "7070019460767813627" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-private-identifier-field-with-accessibility-error/fixture.ts", + "hash": "3980363862969731470" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-private-identifier-field-with-accessibility-error/snapshots/1-Babel-Error.shot", + "hash": "17314276035825432310" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-private-identifier-field-with-accessibility-error/snapshots/1-TSESTree-Error.shot", + "hash": "11949358153396113355" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-private-identifier-field-with-accessibility-error/snapshots/2-Alignment-Error.shot", + "hash": "15342216612397813042" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-private-identifier-field-with-accessibility-error/snapshots/2-Babel-Error.shot", + "hash": "17314276035825432310" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-private-identifier-field-with-accessibility-error/snapshots/3-Alignment-Error.shot", + "hash": "15342216612397813042" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-constructor-and-type-parameters/fixture.ts", + "hash": "6832789397919160522" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-constructor-and-type-parameters/snapshots/1-Babel-Error.shot", + "hash": "11172907081851916894" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-constructor-and-type-parameters/snapshots/1-TSESTree-Error.shot", + "hash": "10498059687526562661" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-constructor-and-type-parameters/snapshots/2-Alignment-Error.shot", + "hash": "16116648103866081630" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-constructor-and-type-parameters/snapshots/2-Babel-Error.shot", + "hash": "11172907081851916894" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-constructor-and-type-parameters/snapshots/3-Alignment-Error.shot", + "hash": "16116648103866081630" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-export-parameter-properties/fixture.ts", + "hash": "17118988845697332657" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-export-parameter-properties/snapshots/1-Babel-Error.shot", + "hash": "8290662986833595604" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-export-parameter-properties/snapshots/1-TSESTree-Error.shot", + "hash": "8353401170383200000" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-export-parameter-properties/snapshots/2-Alignment-Error.shot", + "hash": "14710134532760289162" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-export-parameter-properties/snapshots/2-Babel-Error.shot", + "hash": "8290662986833595604" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-export-parameter-properties/snapshots/3-Alignment-Error.shot", + "hash": "17654377919667939677" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-implements-and-extends/fixture.ts", + "hash": "3897675943965782995" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-implements-and-extends/snapshots/1-Babel-Error.shot", + "hash": "12619082705342248566" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-implements-and-extends/snapshots/1-TSESTree-Error.shot", + "hash": "1405940955747195006" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-implements-and-extends/snapshots/2-Alignment-Error.shot", + "hash": "1182335984478353474" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-implements-and-extends/snapshots/2-Babel-Error.shot", + "hash": "12619082705342248566" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-implements-and-extends/snapshots/3-Alignment-Error.shot", + "hash": "6373564337879872608" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-static-parameter-properties/fixture.ts", + "hash": "10360058588342497767" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-static-parameter-properties/snapshots/1-Babel-Error.shot", + "hash": "12848765997310059061" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-static-parameter-properties/snapshots/1-TSESTree-Error.shot", + "hash": "9997513811139628159" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-static-parameter-properties/snapshots/2-Alignment-Error.shot", + "hash": "5963675760133107372" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-static-parameter-properties/snapshots/2-Babel-Error.shot", + "hash": "12848765997310059061" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-static-parameter-properties/snapshots/3-Alignment-Error.shot", + "hash": "18219018488132367340" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-two-methods-computed-constructor/fixture.ts", + "hash": "11972725752653326662" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-two-methods-computed-constructor/snapshots/1-Babel-Error.shot", + "hash": "4840611751306058395" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-two-methods-computed-constructor/snapshots/1-TSESTree-Error.shot", + "hash": "12661611644996938795" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-two-methods-computed-constructor/snapshots/2-Alignment-Error.shot", + "hash": "225738437063466215" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-two-methods-computed-constructor/snapshots/2-Babel-Error.shot", + "hash": "4840611751306058395" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/class-with-two-methods-computed-constructor/snapshots/3-Alignment-Error.shot", + "hash": "225738437063466215" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/const-assertions/fixture.ts", + "hash": "12279646024973044177" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/const-assertions/snapshots/1-Babel-Error.shot", + "hash": "13230673050699571340" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/const-assertions/snapshots/1-TSESTree-Error.shot", + "hash": "18342469939567653829" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/const-assertions/snapshots/2-Alignment-Error.shot", + "hash": "932116484261022069" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/const-assertions/snapshots/2-Babel-Error.shot", + "hash": "13230673050699571340" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/const-assertions/snapshots/3-Alignment-Error.shot", + "hash": "932116484261022069" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-number/fixture.ts", + "hash": "1716546393143205056" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-number/snapshots/1-Babel-Error.shot", + "hash": "7096585329002533594" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-number/snapshots/1-TSESTree-Error.shot", + "hash": "11335655341700296880" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-number/snapshots/2-Alignment-Error.shot", + "hash": "11592983930222080988" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-number/snapshots/2-Babel-Error.shot", + "hash": "7096585329002533594" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-number/snapshots/3-Alignment-Error.shot", + "hash": "11592983930222080988" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-string/fixture.ts", + "hash": "844695788164915224" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-string/snapshots/1-Babel-Error.shot", + "hash": "11291228676116017004" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-string/snapshots/1-TSESTree-Error.shot", + "hash": "104884259282091690" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-string/snapshots/2-Alignment-Error.shot", + "hash": "14094912211437494771" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-string/snapshots/2-Babel-Error.shot", + "hash": "11291228676116017004" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-string/snapshots/3-Alignment-Error.shot", + "hash": "14094912211437494771" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-var-ref/fixture.ts", + "hash": "10078112911071228578" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-var-ref/snapshots/1-Babel-Error.shot", + "hash": "10827974882015002985" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-var-ref/snapshots/1-TSESTree-Error.shot", + "hash": "8327223426524689279" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-var-ref/snapshots/2-Alignment-Error.shot", + "hash": "17017783747268755489" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-var-ref/snapshots/2-Babel-Error.shot", + "hash": "10827974882015002985" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-named-enum-computed-var-ref/snapshots/3-Alignment-Error.shot", + "hash": "17017783747268755489" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-with-import-assertions/fixture.ts", + "hash": "16654794899664101542", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-with-import-assertions/snapshots/1-Babel-Error.shot", + "hash": "4569820726719284768" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-with-import-assertions/snapshots/1-TSESTree-Error.shot", + "hash": "17254534235485935514" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-with-import-assertions/snapshots/2-Alignment-Error.shot", + "hash": "18284932410919355674" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-with-import-assertions/snapshots/2-Babel-Error.shot", + "hash": "4569820726719284768" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/export-with-import-assertions/snapshots/3-Alignment-Error.shot", + "hash": "18284932410919355674" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/import-type-error/fixture.ts", + "hash": "5344681870940854857", + "deps": ["npm:bar"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/import-type-error/snapshots/1-Babel-Error.shot", + "hash": "14732671562419881773" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/import-type-error/snapshots/1-TSESTree-Error.shot", + "hash": "17462548546923193061" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/import-type-error/snapshots/2-Alignment-Error.shot", + "hash": "1456213374338348202" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/import-type-error/snapshots/2-Babel-Error.shot", + "hash": "14732671562419881773" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/import-type-error/snapshots/3-Alignment-Error.shot", + "hash": "1456213374338348202" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/interface-with-construct-signature-with-parameter-accessibility/fixture.ts", + "hash": "7997388392546080593" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/interface-with-construct-signature-with-parameter-accessibility/snapshots/1-Babel-Error.shot", + "hash": "14363694181338520294" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/interface-with-construct-signature-with-parameter-accessibility/snapshots/1-TSESTree-Error.shot", + "hash": "671731783857084420" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/interface-with-construct-signature-with-parameter-accessibility/snapshots/2-Alignment-Error.shot", + "hash": "4529534897953203829" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/interface-with-construct-signature-with-parameter-accessibility/snapshots/2-Babel-Error.shot", + "hash": "14363694181338520294" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/interface-with-construct-signature-with-parameter-accessibility/snapshots/3-Alignment-Error.shot", + "hash": "16976738474023966216" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/new-target-in-arrow-function-body/fixture.ts", + "hash": "12154870690310805807" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/new-target-in-arrow-function-body/snapshots/1-Babel-Error.shot", + "hash": "15397498466143650619" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/new-target-in-arrow-function-body/snapshots/1-TSESTree-Error.shot", + "hash": "8994560641708189907" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/new-target-in-arrow-function-body/snapshots/2-Alignment-Error.shot", + "hash": "13025990292894851625" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/new-target-in-arrow-function-body/snapshots/2-Babel-Error.shot", + "hash": "15397498466143650619" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/new-target-in-arrow-function-body/snapshots/3-Alignment-Error.shot", + "hash": "13025990292894851625" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/var-with-definite-assignment/fixture.ts", + "hash": "4792508819120212061" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/var-with-definite-assignment/snapshots/1-Babel-Error.shot", + "hash": "5651004677409225779" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/var-with-definite-assignment/snapshots/1-TSESTree-Error.shot", + "hash": "13882481692606563755" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/var-with-definite-assignment/snapshots/2-Alignment-Error.shot", + "hash": "5681706702272952996" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/var-with-definite-assignment/snapshots/2-Babel-Error.shot", + "hash": "5651004677409225779" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/_error_/var-with-definite-assignment/snapshots/3-Alignment-Error.shot", + "hash": "5681706702272952996" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-method/fixture.ts", + "hash": "3011946940725711218" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-method/snapshots/1-TSESTree-AST.shot", + "hash": "3709222372412553104" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "8445151059678867907" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-method/snapshots/3-Babel-AST.shot", + "hash": "9734172583014086996" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-method/snapshots/4-Babel-Tokens.shot", + "hash": "17041566776811314262" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "15669600146200892638" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11672464995048623445" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-properties/fixture.ts", + "hash": "8438670707151105964" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-properties/snapshots/1-TSESTree-AST.shot", + "hash": "15218825093341381862" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "1245304484672807874" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-properties/snapshots/3-Babel-AST.shot", + "hash": "534561881197685104" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-properties/snapshots/4-Babel-Tokens.shot", + "hash": "17489995548586516930" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "1426901354129364789" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8732263288772058967" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-readonly-property/fixture.ts", + "hash": "11274006808578211202" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-readonly-property/snapshots/1-TSESTree-AST.shot", + "hash": "17060649073927060603" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-readonly-property/snapshots/2-TSESTree-Tokens.shot", + "hash": "17878353079380619484" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-readonly-property/snapshots/3-Babel-AST.shot", + "hash": "3082274996071033891" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-readonly-property/snapshots/4-Babel-Tokens.shot", + "hash": "10864609982389529763" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-readonly-property/snapshots/5-AST-Alignment-AST.shot", + "hash": "9830778085602225285" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-abstract-readonly-property/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17421001199727784007" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-declare-properties/fixture.ts", + "hash": "8973236493525074338" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-declare-properties/snapshots/1-TSESTree-AST.shot", + "hash": "13099780141881046654" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-declare-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "14742991322161515404" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-declare-properties/snapshots/3-Babel-AST.shot", + "hash": "1171239367381454189" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-declare-properties/snapshots/4-Babel-Tokens.shot", + "hash": "7752812188550585331" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-declare-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "2337595113773875719" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-declare-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "311232384784567999" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-optional-method/fixture.ts", + "hash": "4190602029916261951" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-optional-method/snapshots/1-TSESTree-AST.shot", + "hash": "7369598600546093424" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-optional-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "15501807436280697335" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-optional-method/snapshots/3-Babel-AST.shot", + "hash": "8878386734655521816" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-optional-method/snapshots/4-Babel-Tokens.shot", + "hash": "9475050157695822284" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-optional-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "13698319393660950631" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-optional-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "328598853250028549" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-override-method/fixture.ts", + "hash": "15954451204663412601" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-override-method/snapshots/1-TSESTree-AST.shot", + "hash": "14568776829321829814" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-override-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "10172834852988242757" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-override-method/snapshots/3-Babel-AST.shot", + "hash": "3059760320682954769" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-override-method/snapshots/4-Babel-Tokens.shot", + "hash": "3337482214738854281" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-override-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "13115248194290640344" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/abstract-class-with-override-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12804526471466045" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion/fixture.ts", + "hash": "9430060341522614865" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion/snapshots/1-TSESTree-AST.shot", + "hash": "11994989975252418035" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion/snapshots/2-TSESTree-Tokens.shot", + "hash": "16966035980009515851" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion/snapshots/3-Babel-AST.shot", + "hash": "1215655378393549617" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion/snapshots/4-Babel-Tokens.shot", + "hash": "4267425848474935278" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion/snapshots/5-AST-Alignment-AST.shot", + "hash": "3858741571559823632" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16001865161971485446" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion-arrow-function/fixture.ts", + "hash": "4854239501797309592" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion-arrow-function/snapshots/1-TSESTree-AST.shot", + "hash": "1302393700293321859" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion-arrow-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "12468270142039894810" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion-arrow-function/snapshots/3-Babel-AST.shot", + "hash": "11500021716907279735" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion-arrow-function/snapshots/4-Babel-Tokens.shot", + "hash": "39897544409654812" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion-arrow-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "12523718440761425630" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/angle-bracket-type-assertion-arrow-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12695573250307205732" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-optional-parameter/fixture.ts", + "hash": "1910779627255289464" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-optional-parameter/snapshots/1-TSESTree-AST.shot", + "hash": "13355453592199527100" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-optional-parameter/snapshots/2-TSESTree-Tokens.shot", + "hash": "2384670565792866392" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-optional-parameter/snapshots/3-Babel-AST.shot", + "hash": "8753838000254229608" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-optional-parameter/snapshots/4-Babel-Tokens.shot", + "hash": "3591104941331221649" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-optional-parameter/snapshots/5-AST-Alignment-AST.shot", + "hash": "4187423917757542211" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-optional-parameter/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4606384630425161285" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-type-parameters/fixture.ts", + "hash": "17310618163884538677" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-type-parameters/snapshots/1-TSESTree-AST.shot", + "hash": "12894189169359929664" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-type-parameters/snapshots/2-TSESTree-Tokens.shot", + "hash": "2765885496003820302" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-type-parameters/snapshots/3-Babel-AST.shot", + "hash": "9677329458742999636" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-type-parameters/snapshots/4-Babel-Tokens.shot", + "hash": "2976151444398124253" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-type-parameters/snapshots/5-AST-Alignment-AST.shot", + "hash": "1827727374511938345" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/arrow-function-with-type-parameters/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12203742672833451837" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-expression/fixture.ts", + "hash": "17003131198352313684" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-expression/snapshots/1-TSESTree-AST.shot", + "hash": "8221116551425381922" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-expression/snapshots/2-TSESTree-Tokens.shot", + "hash": "1723186029871453764" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-expression/snapshots/3-Babel-AST.shot", + "hash": "8528888221235684303" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-expression/snapshots/4-Babel-Tokens.shot", + "hash": "5194490770756494564" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-expression/snapshots/5-AST-Alignment-AST.shot", + "hash": "5131439106060585402" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-expression/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9114520393782908735" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-with-var-declaration/fixture.ts", + "hash": "4447236860798132792" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-with-var-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "1493732331429252988" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-with-var-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "11521994693667039006" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-with-var-declaration/snapshots/3-Babel-AST.shot", + "hash": "1794950692297803766" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-with-var-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "17333358545233523929" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-with-var-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "15284457427262933246" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/async-function-with-var-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8391310650824905715" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures/fixture.ts", + "hash": "381491424807019041" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures/snapshots/1-TSESTree-AST.shot", + "hash": "15756589966223670183" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures/snapshots/2-TSESTree-Tokens.shot", + "hash": "9662596180813473094" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures/snapshots/3-Babel-AST.shot", + "hash": "1550476923502038283" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures/snapshots/4-Babel-Tokens.shot", + "hash": "1889626505022566189" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures/snapshots/5-AST-Alignment-AST.shot", + "hash": "9571981191195743404" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12372945753617750819" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures-with-generics/fixture.ts", + "hash": "15892147238104965293" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures-with-generics/snapshots/1-TSESTree-AST.shot", + "hash": "14311790525790401512" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures-with-generics/snapshots/2-TSESTree-Tokens.shot", + "hash": "4636032449397415462" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures-with-generics/snapshots/3-Babel-AST.shot", + "hash": "9380540092079487986" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures-with-generics/snapshots/4-Babel-Tokens.shot", + "hash": "16674309891142097700" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures-with-generics/snapshots/5-AST-Alignment-AST.shot", + "hash": "6462571971187814722" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/call-signatures-with-generics/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11787323262439894499" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-expression/fixture.ts", + "hash": "3913110349112779457" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-expression/snapshots/1-TSESTree-AST.shot", + "hash": "9020141227792276825" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-expression/snapshots/2-TSESTree-Tokens.shot", + "hash": "5913454442543120943" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-expression/snapshots/3-Babel-AST.shot", + "hash": "15158793186720646300" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-expression/snapshots/4-Babel-Tokens.shot", + "hash": "15088565083473539645" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-expression/snapshots/5-AST-Alignment-AST.shot", + "hash": "2149881898824951727" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-expression/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15907552054440967362" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi/fixture.ts", + "hash": "17169550186233119832" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi/snapshots/1-TSESTree-AST.shot", + "hash": "14302629706110299177" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi/snapshots/2-TSESTree-Tokens.shot", + "hash": "8072884194599054220" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi/snapshots/3-Babel-AST.shot", + "hash": "9041073451375259301" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi/snapshots/4-Babel-Tokens.shot", + "hash": "5506399841449462765" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi/snapshots/5-AST-Alignment-AST.shot", + "hash": "3001266251383209777" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8659180916907328168" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi-assign/fixture.ts", + "hash": "8537314443859543406" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi-assign/snapshots/1-TSESTree-AST.shot", + "hash": "7240362999669742726" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi-assign/snapshots/2-TSESTree-Tokens.shot", + "hash": "13965422673132713109" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi-assign/snapshots/3-Babel-AST.shot", + "hash": "9994806916008251537" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi-assign/snapshots/4-Babel-Tokens.shot", + "hash": "13552400403430956990" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi-assign/snapshots/5-AST-Alignment-AST.shot", + "hash": "14012843856555426227" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-multi-assign/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "836729505756760390" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-operator/fixture.ts", + "hash": "954669798984185857" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-operator/snapshots/1-TSESTree-AST.shot", + "hash": "12702343961931076015" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-operator/snapshots/2-TSESTree-Tokens.shot", + "hash": "2397331219550284852" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-operator/snapshots/3-Babel-AST.shot", + "hash": "11104918837299775836" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-operator/snapshots/4-Babel-Tokens.shot", + "hash": "14598061192976399132" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-operator/snapshots/5-AST-Alignment-AST.shot", + "hash": "3824993706107593957" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-operator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9492959364812199607" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-simple/fixture.ts", + "hash": "1920290630986351960" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-simple/snapshots/1-TSESTree-AST.shot", + "hash": "17294631746590471759" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-simple/snapshots/2-TSESTree-Tokens.shot", + "hash": "15042978171373480578" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-simple/snapshots/3-Babel-AST.shot", + "hash": "2477307293067367594" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-simple/snapshots/4-Babel-Tokens.shot", + "hash": "7230211966871491524" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-simple/snapshots/5-AST-Alignment-AST.shot", + "hash": "1803686297001287972" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/cast-as-simple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14353032032353293225" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-annotation/fixture.ts", + "hash": "4961183766386537581" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-annotation/snapshots/1-TSESTree-AST.shot", + "hash": "7291408006384943240" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-annotation/snapshots/2-TSESTree-Tokens.shot", + "hash": "8437753225831949758" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-annotation/snapshots/3-Babel-AST.shot", + "hash": "14213570322397427035" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-annotation/snapshots/4-Babel-Tokens.shot", + "hash": "6991205915946861996" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-annotation/snapshots/5-AST-Alignment-AST.shot", + "hash": "3269295307502194311" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-annotation/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8957522379089657118" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-invalid-annotation/fixture.ts", + "hash": "6475956214433850819" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-invalid-annotation/snapshots/1-TSESTree-AST.shot", + "hash": "10445387697116570882" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-invalid-annotation/snapshots/2-TSESTree-Tokens.shot", + "hash": "7138855752517649851" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-invalid-annotation/snapshots/3-Babel-AST.shot", + "hash": "15826994371298751127" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-invalid-annotation/snapshots/4-Babel-Tokens.shot", + "hash": "16960066692145013284" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-invalid-annotation/snapshots/5-AST-Alignment-AST.shot", + "hash": "2675364238951461816" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/catch-clause-with-invalid-annotation/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16215590635142909952" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-abstract/fixture.ts", + "hash": "14837261786193579468" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-abstract/snapshots/1-TSESTree-AST.shot", + "hash": "15196954310443018515" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-abstract/snapshots/2-TSESTree-Tokens.shot", + "hash": "17913998959550869896" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-abstract/snapshots/3-Babel-AST.shot", + "hash": "14330978214233509584" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-abstract/snapshots/4-Babel-Tokens.shot", + "hash": "4678339369839876479" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-abstract/snapshots/5-AST-Alignment-AST.shot", + "hash": "14138200085453012050" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-abstract/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "291633259717420451" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-declare/fixture.ts", + "hash": "9683968779006354065" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-declare/snapshots/1-TSESTree-AST.shot", + "hash": "2790983329086304998" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-declare/snapshots/2-TSESTree-Tokens.shot", + "hash": "16810827419540663487" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-declare/snapshots/3-Babel-AST.shot", + "hash": "11529483121704516803" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-declare/snapshots/4-Babel-Tokens.shot", + "hash": "375997343403347385" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-declare/snapshots/5-AST-Alignment-AST.shot", + "hash": "8802324206948869089" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-multi-line-keyword-declare/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8248731772301653034" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-field-with-annotation/fixture.ts", + "hash": "3492238193096713500" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-field-with-annotation/snapshots/1-TSESTree-AST.shot", + "hash": "8835953202263659588" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-field-with-annotation/snapshots/2-TSESTree-Tokens.shot", + "hash": "17827127884241152190" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-field-with-annotation/snapshots/3-Babel-AST.shot", + "hash": "345378257214792063" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-field-with-annotation/snapshots/4-Babel-Tokens.shot", + "hash": "1760668925804094566" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-field-with-annotation/snapshots/5-AST-Alignment-AST.shot", + "hash": "16032600948070991804" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-field-with-annotation/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6301136858321886811" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-readonly-field/fixture.ts", + "hash": "17614925726653064216" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-readonly-field/snapshots/1-TSESTree-AST.shot", + "hash": "12032582585195054734" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-readonly-field/snapshots/2-TSESTree-Tokens.shot", + "hash": "3619173748144657166" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-readonly-field/snapshots/3-Babel-AST.shot", + "hash": "11883448411569469504" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-readonly-field/snapshots/4-Babel-Tokens.shot", + "hash": "10196937557342233208" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-readonly-field/snapshots/5-AST-Alignment-AST.shot", + "hash": "12576460287512657567" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-private-identifier-readonly-field/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16118959813690773555" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-static-blocks/fixture.ts", + "hash": "11878667844726119332" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-static-blocks/snapshots/1-TSESTree-AST.shot", + "hash": "2331556458675472286" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-static-blocks/snapshots/2-TSESTree-Tokens.shot", + "hash": "9688309159666172055" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-static-blocks/snapshots/3-Babel-AST.shot", + "hash": "6665782034045110333" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-static-blocks/snapshots/4-Babel-Tokens.shot", + "hash": "10327970493115364180" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-static-blocks/snapshots/5-AST-Alignment-AST.shot", + "hash": "6761050208579912889" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-static-blocks/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "775112274919667304" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-accessibility-modifiers/fixture.ts", + "hash": "12075725575771133562" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-accessibility-modifiers/snapshots/1-TSESTree-AST.shot", + "hash": "6413477180990494380" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-accessibility-modifiers/snapshots/2-TSESTree-Tokens.shot", + "hash": "13879316116274335308" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-accessibility-modifiers/snapshots/3-Babel-AST.shot", + "hash": "3101854003154573203" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-accessibility-modifiers/snapshots/4-Babel-Tokens.shot", + "hash": "8437229694008914479" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-accessibility-modifiers/snapshots/5-AST-Alignment-AST.shot", + "hash": "6205235207411294521" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-accessibility-modifiers/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1742914502778326691" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-modifier/fixture.ts", + "hash": "864004748792490811" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "218310914902993249" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "12063263412494518957" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-modifier/snapshots/3-Babel-AST.shot", + "hash": "1324097975661641014" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "12439137990909971714" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "17810959108363074465" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10059154224640658665" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-property-with-modifiers/fixture.ts", + "hash": "9727827279954995613" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-property-with-modifiers/snapshots/1-TSESTree-AST.shot", + "hash": "10902575654981238755" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-property-with-modifiers/snapshots/2-TSESTree-Tokens.shot", + "hash": "2679286589228105203" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-property-with-modifiers/snapshots/3-Babel-AST.shot", + "hash": "2524167198389451270" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-property-with-modifiers/snapshots/4-Babel-Tokens.shot", + "hash": "18188953585495639432" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-property-with-modifiers/snapshots/5-AST-Alignment-AST.shot", + "hash": "1702954914419748512" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-property-with-modifiers/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15798666785956717243" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-proptery-with-override-modifier/fixture.ts", + "hash": "10164874253278175571" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-proptery-with-override-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "8198754859253339561" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-proptery-with-override-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "1015189864214906309" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-proptery-with-override-modifier/snapshots/3-Babel-AST.shot", + "hash": "1090071935677113322" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-proptery-with-override-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "1780004423077600534" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-proptery-with-override-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "16266622618420055897" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-parameter-proptery-with-override-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17219086802587273239" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-return-type/fixture.ts", + "hash": "3057377462950216192" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-return-type/snapshots/1-TSESTree-AST.shot", + "hash": "1898992062493916280" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-return-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "16702410904097494586" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-return-type/snapshots/3-Babel-AST.shot", + "hash": "14808273425939680293" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-return-type/snapshots/4-Babel-Tokens.shot", + "hash": "17955575224214956775" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-return-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "13741936513995740319" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-constructor-and-return-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14065800839374441127" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-declare-properties/fixture.ts", + "hash": "10561360182040201449" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-declare-properties/snapshots/1-TSESTree-AST.shot", + "hash": "5973824189982816055" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-declare-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "15904318877397578565" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-declare-properties/snapshots/3-Babel-AST.shot", + "hash": "3571327774513693714" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-declare-properties/snapshots/4-Babel-Tokens.shot", + "hash": "2085697273232649242" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-declare-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "13771070034887104743" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-declare-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8903072769842145782" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-definite-assignment/fixture.ts", + "hash": "2320734458366793747" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-definite-assignment/snapshots/1-TSESTree-AST.shot", + "hash": "18061479802593696849" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-definite-assignment/snapshots/2-TSESTree-Tokens.shot", + "hash": "354231564956516274" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-definite-assignment/snapshots/3-Babel-AST.shot", + "hash": "1080339069189621914" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-definite-assignment/snapshots/4-Babel-Tokens.shot", + "hash": "15608065513230086819" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-definite-assignment/snapshots/5-AST-Alignment-AST.shot", + "hash": "3487285725419184874" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-definite-assignment/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5050395442848376374" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-and-implements/fixture.ts", + "hash": "17586846185678624074" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-and-implements/snapshots/1-TSESTree-AST.shot", + "hash": "1553082315411257045" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-and-implements/snapshots/2-TSESTree-Tokens.shot", + "hash": "16546580978423745084" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-and-implements/snapshots/3-Babel-AST.shot", + "hash": "3170354685883808350" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-and-implements/snapshots/4-Babel-Tokens.shot", + "hash": "2635322776842425223" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-and-implements/snapshots/5-AST-Alignment-AST.shot", + "hash": "6927102568029503769" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-and-implements/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8704753818258246566" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic/fixture.ts", + "hash": "7754234142601709394" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic/snapshots/1-TSESTree-AST.shot", + "hash": "11856343189874663436" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "513080898398285268" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic/snapshots/3-Babel-AST.shot", + "hash": "15884647725318491615" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic/snapshots/4-Babel-Tokens.shot", + "hash": "8237992277680581466" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "5610664721730752040" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8042892079392867045" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic-multiple/fixture.ts", + "hash": "12957026668636270646" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "15394859376459343382" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "11109061029956016075" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic-multiple/snapshots/3-Babel-AST.shot", + "hash": "432931402215725062" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "3042713310863179445" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "1678449148456246990" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-extends-generic-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9306052063136689801" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method/fixture.ts", + "hash": "14350560406386717576" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method/snapshots/1-TSESTree-AST.shot", + "hash": "18136492730765504666" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "5934493154755383012" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method/snapshots/3-Babel-AST.shot", + "hash": "1815524373170933001" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method/snapshots/4-Babel-Tokens.shot", + "hash": "18108143261513383677" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "17818951828064328144" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1253499962472881278" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method-default/fixture.ts", + "hash": "4895332252147562297" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method-default/snapshots/1-TSESTree-AST.shot", + "hash": "16937395002648072756" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method-default/snapshots/2-TSESTree-Tokens.shot", + "hash": "17410364630731258457" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method-default/snapshots/3-Babel-AST.shot", + "hash": "13207329856148843762" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method-default/snapshots/4-Babel-Tokens.shot", + "hash": "7178660317892758515" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method-default/snapshots/5-AST-Alignment-AST.shot", + "hash": "14793290517271547401" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-generic-method-default/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5944367389326221907" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements/fixture.ts", + "hash": "14819464465662434299" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements/snapshots/1-TSESTree-AST.shot", + "hash": "16230344163133935327" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements/snapshots/2-TSESTree-Tokens.shot", + "hash": "14420876696867047355" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements/snapshots/3-Babel-AST.shot", + "hash": "3775701498778143846" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements/snapshots/4-Babel-Tokens.shot", + "hash": "11400934246315904612" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements/snapshots/5-AST-Alignment-AST.shot", + "hash": "9895504948384289248" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14071726567793478025" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic/fixture.ts", + "hash": "9427352463348807380" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic/snapshots/1-TSESTree-AST.shot", + "hash": "4852622182669548012" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "18018533634390743300" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic/snapshots/3-Babel-AST.shot", + "hash": "17200604394727138698" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic/snapshots/4-Babel-Tokens.shot", + "hash": "3950467894260286362" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "12465006362211850789" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17093208583876298157" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic-multiple/fixture.ts", + "hash": "18406838939849660048" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "16624434048823016735" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "11481237342470747091" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic-multiple/snapshots/3-Babel-AST.shot", + "hash": "13230200493452327308" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "10885679553028620348" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "1060262568589252141" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-implements-generic-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10222232911375795927" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-method/fixture.ts", + "hash": "3514096788493634056" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-method/snapshots/1-TSESTree-AST.shot", + "hash": "12532403787787031788" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "9483604007352820937" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-method/snapshots/3-Babel-AST.shot", + "hash": "8264318797276937541" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-method/snapshots/4-Babel-Tokens.shot", + "hash": "7174686522679004363" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "11149446554136800919" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6775761507193438694" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin/fixture.ts", + "hash": "15139128439295477429" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin/snapshots/1-TSESTree-AST.shot", + "hash": "14296047686655924281" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin/snapshots/2-TSESTree-Tokens.shot", + "hash": "16591967710075236348" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin/snapshots/3-Babel-AST.shot", + "hash": "10068271604878716007" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin/snapshots/4-Babel-Tokens.shot", + "hash": "6184965140841177506" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin/snapshots/5-AST-Alignment-AST.shot", + "hash": "739909253244779209" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13627811000196835956" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin-reference/fixture.ts", + "hash": "9220703168641029048" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin-reference/snapshots/1-TSESTree-AST.shot", + "hash": "6748015041425949392" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin-reference/snapshots/2-TSESTree-Tokens.shot", + "hash": "7287031230746945586" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin-reference/snapshots/3-Babel-AST.shot", + "hash": "6490503125638961863" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin-reference/snapshots/4-Babel-Tokens.shot", + "hash": "15918995697261250680" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin-reference/snapshots/5-AST-Alignment-AST.shot", + "hash": "17998048688895011039" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-mixin-reference/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3391408115739355647" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-method/fixture.ts", + "hash": "8346442798935767772" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-method/snapshots/1-TSESTree-AST.shot", + "hash": "6895620747414162258" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "14255889736718770599" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-method/snapshots/3-Babel-AST.shot", + "hash": "9043994626518629532" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-method/snapshots/4-Babel-Tokens.shot", + "hash": "15351664158545688720" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "364883573020880831" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9880367523389472921" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-property/fixture.ts", + "hash": "2781782006570862404" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-property/snapshots/1-TSESTree-AST.shot", + "hash": "6554769487016679084" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-property/snapshots/2-TSESTree-Tokens.shot", + "hash": "14345970920902389609" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-property/snapshots/3-Babel-AST.shot", + "hash": "4792486027124938997" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-property/snapshots/4-Babel-Tokens.shot", + "hash": "9342858484437850932" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-property/snapshots/5-AST-Alignment-AST.shot", + "hash": "16989223457151257218" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-computed-property/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11825414252150192514" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-methods/fixture.ts", + "hash": "9971827649679951307" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-methods/snapshots/1-TSESTree-AST.shot", + "hash": "458810014812892566" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-methods/snapshots/2-TSESTree-Tokens.shot", + "hash": "5757838000468325109" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-methods/snapshots/3-Babel-AST.shot", + "hash": "13602631804470145845" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-methods/snapshots/4-Babel-Tokens.shot", + "hash": "4375893807272613601" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-methods/snapshots/5-AST-Alignment-AST.shot", + "hash": "2761315507844282325" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-methods/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11985297072206732185" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-properties/fixture.ts", + "hash": "4383940336205480309" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-properties/snapshots/1-TSESTree-AST.shot", + "hash": "2521261640464211950" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "12577977145571654917" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-properties/snapshots/3-Babel-AST.shot", + "hash": "6572745214229847817" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-properties/snapshots/4-Babel-Tokens.shot", + "hash": "16546308488610003881" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "17919760783035625565" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13748315412847895379" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-property-undefined/fixture.ts", + "hash": "15022800472949302521" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-property-undefined/snapshots/1-TSESTree-AST.shot", + "hash": "15558955652672705659" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-property-undefined/snapshots/2-TSESTree-Tokens.shot", + "hash": "593376052581930795" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-property-undefined/snapshots/3-Babel-AST.shot", + "hash": "15290186002771444558" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-property-undefined/snapshots/4-Babel-Tokens.shot", + "hash": "8181003305907409879" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-property-undefined/snapshots/5-AST-Alignment-AST.shot", + "hash": "3165725252198432050" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-optional-property-undefined/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3671567912703504788" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-method/fixture.ts", + "hash": "3624185983588397727" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-method/snapshots/1-TSESTree-AST.shot", + "hash": "5958751164219072075" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "12997571726279816277" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-method/snapshots/3-Babel-AST.shot", + "hash": "17541346245259379851" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-method/snapshots/4-Babel-Tokens.shot", + "hash": "14871101581276514548" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "1644746591651335632" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2106223799607937920" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-property/fixture.ts", + "hash": "18212914353105690572" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-property/snapshots/1-TSESTree-AST.shot", + "hash": "14558675549226368544" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-property/snapshots/2-TSESTree-Tokens.shot", + "hash": "10554080470392995084" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-property/snapshots/3-Babel-AST.shot", + "hash": "16810614588397881923" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-property/snapshots/4-Babel-Tokens.shot", + "hash": "11765931575508862101" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-property/snapshots/5-AST-Alignment-AST.shot", + "hash": "5373612354891922330" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-override-property/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17019869793501857720" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-optional-property/fixture.ts", + "hash": "10915469559816165698" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-optional-property/snapshots/1-TSESTree-AST.shot", + "hash": "13601089971859809459" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-optional-property/snapshots/2-TSESTree-Tokens.shot", + "hash": "6019585418651255294" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-optional-property/snapshots/3-Babel-AST.shot", + "hash": "11342465842626836257" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-optional-property/snapshots/4-Babel-Tokens.shot", + "hash": "6188625088445319775" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-optional-property/snapshots/5-AST-Alignment-AST.shot", + "hash": "6420363536539370648" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-optional-property/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3315955743225735740" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-parameter-properties/fixture.ts", + "hash": "10789068010172113159" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-parameter-properties/snapshots/1-TSESTree-AST.shot", + "hash": "1120649888491340923" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-parameter-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "6265912407074264322" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-parameter-properties/snapshots/3-Babel-AST.shot", + "hash": "9793138501594412932" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-parameter-properties/snapshots/4-Babel-Tokens.shot", + "hash": "15425043779173808386" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-parameter-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "9673363202919177148" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-private-parameter-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3477862235950654721" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-function/fixture.ts", + "hash": "5204670857611962976" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-function/snapshots/1-TSESTree-AST.shot", + "hash": "3345368615654268590" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "12948804233320493805" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-function/snapshots/3-Babel-AST.shot", + "hash": "17614342814500527038" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-function/snapshots/4-Babel-Tokens.shot", + "hash": "5151883425421704439" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "3003034253499946363" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7107860927034802311" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-values/fixture.ts", + "hash": "9984377368257938561" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-values/snapshots/1-TSESTree-AST.shot", + "hash": "3545898491325474227" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-values/snapshots/2-TSESTree-Tokens.shot", + "hash": "427985870824135008" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-values/snapshots/3-Babel-AST.shot", + "hash": "7556863516310566949" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-values/snapshots/4-Babel-Tokens.shot", + "hash": "794712521288035016" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-values/snapshots/5-AST-Alignment-AST.shot", + "hash": "16627063961695670508" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-property-values/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8170303000327031170" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-protected-parameter-properties/fixture.ts", + "hash": "7190609735688302887" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-protected-parameter-properties/snapshots/1-TSESTree-AST.shot", + "hash": "2892551111821194163" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-protected-parameter-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "1725601195271345990" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-protected-parameter-properties/snapshots/3-Babel-AST.shot", + "hash": "10818644744935020890" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-protected-parameter-properties/snapshots/4-Babel-Tokens.shot", + "hash": "7235551540878015954" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-protected-parameter-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "11584921186471149421" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-protected-parameter-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17935613618333308535" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-public-parameter-properties/fixture.ts", + "hash": "8013174118588375834" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-public-parameter-properties/snapshots/1-TSESTree-AST.shot", + "hash": "3080589508753732926" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-public-parameter-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "345247413663342897" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-public-parameter-properties/snapshots/3-Babel-AST.shot", + "hash": "7792942060856158869" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-public-parameter-properties/snapshots/4-Babel-Tokens.shot", + "hash": "2400828629609877158" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-public-parameter-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "10772514631702460178" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-public-parameter-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4711020749018433815" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-parameter-properties/fixture.ts", + "hash": "2135723678051325238" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-parameter-properties/snapshots/1-TSESTree-AST.shot", + "hash": "5090770988546708885" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-parameter-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "5719479353996134975" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-parameter-properties/snapshots/3-Babel-AST.shot", + "hash": "2879033246208841593" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-parameter-properties/snapshots/4-Babel-Tokens.shot", + "hash": "10255344696946654622" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-parameter-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "17031947359472162701" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-parameter-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2006960467755509239" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-property/fixture.ts", + "hash": "10758991593327215294" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-property/snapshots/1-TSESTree-AST.shot", + "hash": "536219097199671657" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-property/snapshots/2-TSESTree-Tokens.shot", + "hash": "492201829791800175" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-property/snapshots/3-Babel-AST.shot", + "hash": "8245687092898125689" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-property/snapshots/4-Babel-Tokens.shot", + "hash": "9793026886331892289" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-property/snapshots/5-AST-Alignment-AST.shot", + "hash": "10819366736084237809" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-readonly-property/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17767746221675716430" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter/fixture.ts", + "hash": "6357557629418631122" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter/snapshots/1-TSESTree-AST.shot", + "hash": "14918367276863713984" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter/snapshots/2-TSESTree-Tokens.shot", + "hash": "12590339803005395151" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter/snapshots/3-Babel-AST.shot", + "hash": "16651942146876471426" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter/snapshots/4-Babel-Tokens.shot", + "hash": "883235431527467024" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter/snapshots/5-AST-Alignment-AST.shot", + "hash": "12409366918554105591" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1606861448174886287" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-default/fixture.ts", + "hash": "1353239392510248644" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-default/snapshots/1-TSESTree-AST.shot", + "hash": "13799755600276494320" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-default/snapshots/2-TSESTree-Tokens.shot", + "hash": "10199812450687417484" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-default/snapshots/3-Babel-AST.shot", + "hash": "8099910381498280563" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-default/snapshots/4-Babel-Tokens.shot", + "hash": "7710393259610580907" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-default/snapshots/5-AST-Alignment-AST.shot", + "hash": "1774075703055476546" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-default/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17756933745651921512" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-underscore/fixture.ts", + "hash": "11412395141539271775" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-underscore/snapshots/1-TSESTree-AST.shot", + "hash": "6742640946667682825" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-underscore/snapshots/2-TSESTree-Tokens.shot", + "hash": "13218077921984403927" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-underscore/snapshots/3-Babel-AST.shot", + "hash": "14285581560732339355" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-underscore/snapshots/4-Babel-Tokens.shot", + "hash": "1850908688064365269" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-underscore/snapshots/5-AST-Alignment-AST.shot", + "hash": "5526946921158515741" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/class-with-type-parameter-underscore/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7535025656611170232" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/const-enum/fixture.ts", + "hash": "15525577511563350014" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/const-enum/snapshots/1-TSESTree-AST.shot", + "hash": "1716821161024551269" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/const-enum/snapshots/2-TSESTree-Tokens.shot", + "hash": "6446156682935972631" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/const-enum/snapshots/3-Babel-AST.shot", + "hash": "17102237160461487618" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/const-enum/snapshots/4-Babel-Tokens.shot", + "hash": "1640277198979001473" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/const-enum/snapshots/5-AST-Alignment-AST.shot", + "hash": "2708393249715112270" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/const-enum/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1637559092983714233" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-class-with-optional-method/fixture.ts", + "hash": "5880963206287702132" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-class-with-optional-method/snapshots/1-TSESTree-AST.shot", + "hash": "11470745378252071108" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-class-with-optional-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "9791268675819248089" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-class-with-optional-method/snapshots/3-Babel-AST.shot", + "hash": "16944867449541296662" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-class-with-optional-method/snapshots/4-Babel-Tokens.shot", + "hash": "7338879482940604884" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-class-with-optional-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "4980056821420159317" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-class-with-optional-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8243143951286200469" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-function/fixture.ts", + "hash": "8918427065770016461" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-function/snapshots/1-TSESTree-AST.shot", + "hash": "17006492885909601100" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "8026251825889058867" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-function/snapshots/3-Babel-AST.shot", + "hash": "2309144815332995733" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-function/snapshots/4-Babel-Tokens.shot", + "hash": "10942750670827675677" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "12729061527433074912" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/declare-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "860335135569696588" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment/fixture.ts", + "hash": "4352375607504635499" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment/snapshots/1-TSESTree-AST.shot", + "hash": "6486721973326044663" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment/snapshots/2-TSESTree-Tokens.shot", + "hash": "17016031789302652560" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment/snapshots/3-Babel-AST.shot", + "hash": "11985695121547356727" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment/snapshots/4-Babel-Tokens.shot", + "hash": "14620423639571040473" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment/snapshots/5-AST-Alignment-AST.shot", + "hash": "11101437590582782319" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12885227485931485998" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-nested/fixture.ts", + "hash": "7225726294231646126" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-nested/snapshots/1-TSESTree-AST.shot", + "hash": "1089075442823893281" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-nested/snapshots/2-TSESTree-Tokens.shot", + "hash": "16397581983961338172" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-nested/snapshots/3-Babel-AST.shot", + "hash": "10780441844199942945" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-nested/snapshots/4-Babel-Tokens.shot", + "hash": "1347934860594484928" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-nested/snapshots/5-AST-Alignment-AST.shot", + "hash": "16350993314118407068" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-nested/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8860018940095861239" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-object/fixture.ts", + "hash": "10250833827049690358" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-object/snapshots/1-TSESTree-AST.shot", + "hash": "15181997420417689474" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-object/snapshots/2-TSESTree-Tokens.shot", + "hash": "17190893217926685199" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-object/snapshots/3-Babel-AST.shot", + "hash": "125819265507474599" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-object/snapshots/4-Babel-Tokens.shot", + "hash": "7615453735269499493" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-object/snapshots/5-AST-Alignment-AST.shot", + "hash": "1424209932136396055" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-object/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9521021576246166685" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-property/fixture.ts", + "hash": "15469005793249743289" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-property/snapshots/1-TSESTree-AST.shot", + "hash": "15096507622028224454" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-property/snapshots/2-TSESTree-Tokens.shot", + "hash": "5510513693916631086" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-property/snapshots/3-Babel-AST.shot", + "hash": "13947779368133802067" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-property/snapshots/4-Babel-Tokens.shot", + "hash": "8093575111154812034" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-property/snapshots/5-AST-Alignment-AST.shot", + "hash": "16476017527324290104" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/destructuring-assignment-property/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11148765309627542680" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-module/fixture.ts", + "hash": "4811125235090642294" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-module/snapshots/1-TSESTree-AST.shot", + "hash": "14999306266900227970" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-module/snapshots/2-TSESTree-Tokens.shot", + "hash": "15615011695954644783" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-module/snapshots/3-Babel-AST.shot", + "hash": "4355294208194184432" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-module/snapshots/4-Babel-Tokens.shot", + "hash": "884657506273889266" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-module/snapshots/5-AST-Alignment-AST.shot", + "hash": "13603764840086491344" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-module/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3701598135419206628" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-namespace/fixture.ts", + "hash": "422416725917522794" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-namespace/snapshots/1-Babel-AST.shot", + "hash": "8616329286520711668" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-namespace/snapshots/1-TSESTree-AST.shot", + "hash": "3231358484380856993" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-namespace/snapshots/2-Babel-Tokens.shot", + "hash": "10803180453897863626" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-namespace/snapshots/2-TSESTree-Tokens.shot", + "hash": "12686833313297016048" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-namespace/snapshots/3-Babel-AST.shot", + "hash": "6727050667500838878" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-namespace/snapshots/4-Babel-Tokens.shot", + "hash": "6699466690251679456" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-namespace/snapshots/5-AST-Alignment-AST.shot", + "hash": "831624358962865226" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/directive-in-namespace/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "790073920466016620" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/dynamic-import-with-import-assertions/fixture.ts", + "hash": "73294195676669107" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/dynamic-import-with-import-assertions/snapshots/1-TSESTree-AST.shot", + "hash": "15739891882430129784" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/dynamic-import-with-import-assertions/snapshots/2-TSESTree-Tokens.shot", + "hash": "9006884105191449197" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/dynamic-import-with-import-assertions/snapshots/3-Babel-AST.shot", + "hash": "12621793997802448159" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/dynamic-import-with-import-assertions/snapshots/4-Babel-Tokens.shot", + "hash": "16185889268054785453" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/dynamic-import-with-import-assertions/snapshots/5-AST-Alignment-AST.shot", + "hash": "11312109145704983488" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/dynamic-import-with-import-assertions/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3623068531240389803" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-all-with-import-assertions/fixture.ts", + "hash": "6876033924615116594", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-all-with-import-assertions/snapshots/1-TSESTree-AST.shot", + "hash": "8596124328559617776" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-all-with-import-assertions/snapshots/2-TSESTree-Tokens.shot", + "hash": "10690516228758917321" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-all-with-import-assertions/snapshots/3-Babel-AST.shot", + "hash": "13191642600621455746" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-all-with-import-assertions/snapshots/4-Babel-Tokens.shot", + "hash": "17417119330766942376" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-all-with-import-assertions/snapshots/5-AST-Alignment-AST.shot", + "hash": "3253790393694070478" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-all-with-import-assertions/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10598014411414135148" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-as-namespace/fixture.ts", + "hash": "8689699173617923295" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-as-namespace/snapshots/1-TSESTree-AST.shot", + "hash": "2666955206510744459" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-as-namespace/snapshots/2-TSESTree-Tokens.shot", + "hash": "13734465319386964162" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-as-namespace/snapshots/3-Babel-AST.shot", + "hash": "15753281538375869213" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-as-namespace/snapshots/4-Babel-Tokens.shot", + "hash": "11931521002089474822" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-as-namespace/snapshots/5-AST-Alignment-AST.shot", + "hash": "18287221879477696670" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-as-namespace/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1395748921304172393" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-assignment/fixture.ts", + "hash": "6551072290673560824" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-assignment/snapshots/1-TSESTree-AST.shot", + "hash": "8197967925464799755" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-assignment/snapshots/2-TSESTree-Tokens.shot", + "hash": "13965888546407253879" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-assignment/snapshots/3-Babel-AST.shot", + "hash": "11383629780377175539" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-assignment/snapshots/4-Babel-Tokens.shot", + "hash": "742370965703449864" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-assignment/snapshots/5-AST-Alignment-AST.shot", + "hash": "10300685579986363617" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-assignment/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9164008221448182677" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-const-named-enum/fixture.ts", + "hash": "14195987585389832185" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-const-named-enum/snapshots/1-TSESTree-AST.shot", + "hash": "4230056304430782699" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-const-named-enum/snapshots/2-TSESTree-Tokens.shot", + "hash": "17513260688075558704" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-const-named-enum/snapshots/3-Babel-AST.shot", + "hash": "10814702661199182711" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-const-named-enum/snapshots/4-Babel-Tokens.shot", + "hash": "5695105578938333878" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-const-named-enum/snapshots/5-AST-Alignment-AST.shot", + "hash": "18063174200897840493" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-const-named-enum/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10203203069384541499" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-named-enum/fixture.ts", + "hash": "1559982597633136658" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-named-enum/snapshots/1-TSESTree-AST.shot", + "hash": "15062685138247857172" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-named-enum/snapshots/2-TSESTree-Tokens.shot", + "hash": "9154032147455018242" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-named-enum/snapshots/3-Babel-AST.shot", + "hash": "16347100674267717400" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-named-enum/snapshots/4-Babel-Tokens.shot", + "hash": "17590532126712498713" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-named-enum/snapshots/5-AST-Alignment-AST.shot", + "hash": "17352454497374126320" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-declare-named-enum/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4060995840564197639" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-generic/fixture.ts", + "hash": "4903495844197551968" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-generic/snapshots/1-TSESTree-AST.shot", + "hash": "9069224310236521790" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "4260211922340527751" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-generic/snapshots/3-Babel-AST.shot", + "hash": "5787372854511712349" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-generic/snapshots/4-Babel-Tokens.shot", + "hash": "15552391043225506868" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "4605011539794355026" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13011338153445051236" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-multiple-generics/fixture.ts", + "hash": "14958786619750498697" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-multiple-generics/snapshots/1-TSESTree-AST.shot", + "hash": "7702212369286060461" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-multiple-generics/snapshots/2-TSESTree-Tokens.shot", + "hash": "122889736861764697" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-multiple-generics/snapshots/3-Babel-AST.shot", + "hash": "14022398985914621419" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-multiple-generics/snapshots/4-Babel-Tokens.shot", + "hash": "5739008719097030766" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-multiple-generics/snapshots/5-AST-Alignment-AST.shot", + "hash": "266155548703065245" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-class-with-multiple-generics/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8470519075632782058" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-interface/fixture.ts", + "hash": "6292605344899991274" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-interface/snapshots/1-TSESTree-AST.shot", + "hash": "8940411791710035579" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-interface/snapshots/2-TSESTree-Tokens.shot", + "hash": "4224041442816275505" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-interface/snapshots/3-Babel-AST.shot", + "hash": "1379980529566935226" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-interface/snapshots/4-Babel-Tokens.shot", + "hash": "17646654707679352423" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-interface/snapshots/5-AST-Alignment-AST.shot", + "hash": "15526420484773570850" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-default-interface/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9722834741557539749" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-generic/fixture.ts", + "hash": "13632000464781090096" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-generic/snapshots/1-TSESTree-AST.shot", + "hash": "16774939443105824271" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "2146235309300472022" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-generic/snapshots/3-Babel-AST.shot", + "hash": "155923919067830604" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-generic/snapshots/4-Babel-Tokens.shot", + "hash": "12926392095996106172" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "631348498624346093" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2008238316806420879" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-multiple-generics/fixture.ts", + "hash": "1433549673925476593" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-multiple-generics/snapshots/1-TSESTree-AST.shot", + "hash": "13857952070704366980" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-multiple-generics/snapshots/2-TSESTree-Tokens.shot", + "hash": "11127985308457779630" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-multiple-generics/snapshots/3-Babel-AST.shot", + "hash": "8080043136012194821" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-multiple-generics/snapshots/4-Babel-Tokens.shot", + "hash": "12713767273141935213" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-multiple-generics/snapshots/5-AST-Alignment-AST.shot", + "hash": "11580300886522511070" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-class-with-multiple-generics/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5428456459324632326" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-enum/fixture.ts", + "hash": "9421107281725680777" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-enum/snapshots/1-TSESTree-AST.shot", + "hash": "15102118426535112982" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-enum/snapshots/2-TSESTree-Tokens.shot", + "hash": "13936245325449350303" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-enum/snapshots/3-Babel-AST.shot", + "hash": "9613115577315915444" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-enum/snapshots/4-Babel-Tokens.shot", + "hash": "2698978881704646286" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-enum/snapshots/5-AST-Alignment-AST.shot", + "hash": "17965744944917532985" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-named-enum/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "18363008896368547695" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-star-as-ns-from/fixture.ts", + "hash": "8588637486068297244", + "deps": ["npm:bar"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-star-as-ns-from/snapshots/1-TSESTree-AST.shot", + "hash": "2377519322583523757" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-star-as-ns-from/snapshots/2-TSESTree-Tokens.shot", + "hash": "1030505238817260691" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-star-as-ns-from/snapshots/3-Babel-AST.shot", + "hash": "17331986941488758511" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-star-as-ns-from/snapshots/4-Babel-Tokens.shot", + "hash": "14795327645030459987" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-star-as-ns-from/snapshots/5-AST-Alignment-AST.shot", + "hash": "246338349474609693" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-star-as-ns-from/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8330942954646383796" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type/fixture.ts", + "hash": "11499097012386187438" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type/snapshots/1-TSESTree-AST.shot", + "hash": "6201916686430253472" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "12083682048360902126" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type/snapshots/3-Babel-AST.shot", + "hash": "15864365367274134032" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type/snapshots/4-Babel-Tokens.shot", + "hash": "5261871029826310832" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "15240415873344348516" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11563521227288215090" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-as/fixture.ts", + "hash": "14029939753159734975" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-as/snapshots/1-TSESTree-AST.shot", + "hash": "2172630463079671876" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-as/snapshots/2-TSESTree-Tokens.shot", + "hash": "10892463017509627390" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-as/snapshots/3-Babel-AST.shot", + "hash": "2785796254582036557" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-as/snapshots/4-Babel-Tokens.shot", + "hash": "4095492291027032036" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-as/snapshots/5-AST-Alignment-AST.shot", + "hash": "9129193664094810021" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-as/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2948081284465287080" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from/fixture.ts", + "hash": "12626982575767572096", + "deps": ["npm:bar"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from/snapshots/1-TSESTree-AST.shot", + "hash": "7938643343750262428" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from/snapshots/2-TSESTree-Tokens.shot", + "hash": "15082392787195030" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from/snapshots/3-Babel-AST.shot", + "hash": "11108956165628472974" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from/snapshots/4-Babel-Tokens.shot", + "hash": "14012754571045781989" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from/snapshots/5-AST-Alignment-AST.shot", + "hash": "10039131534836398888" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17896108787200961988" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from-as/fixture.ts", + "hash": "11308245714868411665" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from-as/snapshots/1-TSESTree-AST.shot", + "hash": "3338832938259978986" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from-as/snapshots/2-TSESTree-Tokens.shot", + "hash": "6854732371363766795" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from-as/snapshots/3-Babel-AST.shot", + "hash": "17686509515723564955" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from-as/snapshots/4-Babel-Tokens.shot", + "hash": "15899810269490917836" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from-as/snapshots/5-AST-Alignment-AST.shot", + "hash": "5305624650548413438" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-from-as/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12275321770480012367" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/fixture.ts", + "hash": "10453790433463193796" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/snapshots/1-TSESTree-AST.shot", + "hash": "8176518221556769337" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/snapshots/1-TSESTree-Error.shot", + "hash": "13688821333506851164" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/snapshots/2-Babel-Error.shot", + "hash": "17047201536906233857" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/snapshots/2-TSESTree-Tokens.shot", + "hash": "13739657820717364738" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/snapshots/3-Alignment-Error.shot", + "hash": "4288740384863345738" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/snapshots/3-Babel-AST.shot", + "hash": "5818546211221343710" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/snapshots/4-Babel-Tokens.shot", + "hash": "13465115792228866132" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/snapshots/5-AST-Alignment-AST.shot", + "hash": "15798718611723148601" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/export-type-star-from/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3936979619683578184" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anonymus-with-type-parameters/fixture.ts", + "hash": "6673269639041657196" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anonymus-with-type-parameters/snapshots/1-TSESTree-AST.shot", + "hash": "7771229311560813768" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anonymus-with-type-parameters/snapshots/2-TSESTree-Tokens.shot", + "hash": "15948386503446109551" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anonymus-with-type-parameters/snapshots/3-Babel-AST.shot", + "hash": "2231685437252724754" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anonymus-with-type-parameters/snapshots/4-Babel-Tokens.shot", + "hash": "5153720947074795657" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anonymus-with-type-parameters/snapshots/5-AST-Alignment-AST.shot", + "hash": "6000372909526034454" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anonymus-with-type-parameters/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6683067255051907540" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anynomus-with-return-type/fixture.ts", + "hash": "12147203937161295351" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anynomus-with-return-type/snapshots/1-TSESTree-AST.shot", + "hash": "1673434046076899502" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anynomus-with-return-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "10555022885391176000" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anynomus-with-return-type/snapshots/3-Babel-AST.shot", + "hash": "6508677371974331403" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anynomus-with-return-type/snapshots/4-Babel-Tokens.shot", + "hash": "5565198199251963562" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anynomus-with-return-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "2037316072668955269" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-anynomus-with-return-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11441747646633662707" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-overloads/fixture.ts", + "hash": "17002988952086381072" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-overloads/snapshots/1-TSESTree-AST.shot", + "hash": "17692422545662333892" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-overloads/snapshots/2-TSESTree-Tokens.shot", + "hash": "1655008464870840969" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-overloads/snapshots/3-Babel-AST.shot", + "hash": "8284497880464012064" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-overloads/snapshots/4-Babel-Tokens.shot", + "hash": "7010071969409508673" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-overloads/snapshots/5-AST-Alignment-AST.shot", + "hash": "6751101254074542495" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-overloads/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12905433624344819860" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-await/fixture.ts", + "hash": "138587252076913903" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-await/snapshots/1-TSESTree-AST.shot", + "hash": "1197603022941330209" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-await/snapshots/2-TSESTree-Tokens.shot", + "hash": "17415977937745916293" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-await/snapshots/3-Babel-AST.shot", + "hash": "14427141006056877819" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-await/snapshots/4-Babel-Tokens.shot", + "hash": "16788786116044166352" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-await/snapshots/5-AST-Alignment-AST.shot", + "hash": "1254997828865696763" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-await/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12237166398358529698" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-with-optional-properties/fixture.ts", + "hash": "11480932238544116611" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-with-optional-properties/snapshots/1-TSESTree-AST.shot", + "hash": "9444818785647773339" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-with-optional-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "9342555777472707446" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-with-optional-properties/snapshots/3-Babel-AST.shot", + "hash": "10170009646216214586" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-with-optional-properties/snapshots/4-Babel-Tokens.shot", + "hash": "6894804813080530071" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-with-optional-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "10177296097607675318" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-with-optional-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7360442158711455333" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-without-annotation/fixture.ts", + "hash": "1199710987576503273" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-without-annotation/snapshots/1-TSESTree-AST.shot", + "hash": "16693907527064308972" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-without-annotation/snapshots/2-TSESTree-Tokens.shot", + "hash": "623031158876980036" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-without-annotation/snapshots/3-Babel-AST.shot", + "hash": "192893715313512227" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-without-annotation/snapshots/4-Babel-Tokens.shot", + "hash": "14336172014946437445" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-without-annotation/snapshots/5-AST-Alignment-AST.shot", + "hash": "7482683245994957360" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-object-type-without-annotation/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14003950407682153385" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters/fixture.ts", + "hash": "12515458865175166173" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters/snapshots/1-TSESTree-AST.shot", + "hash": "10322848335879938920" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters/snapshots/2-TSESTree-Tokens.shot", + "hash": "3189283648181354559" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters/snapshots/3-Babel-AST.shot", + "hash": "13672031014584738044" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters/snapshots/4-Babel-Tokens.shot", + "hash": "7085537132681228959" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters/snapshots/5-AST-Alignment-AST.shot", + "hash": "1057417711088611035" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10156167471416489040" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-that-have-comments/fixture.ts", + "hash": "11387375076774738782" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-that-have-comments/snapshots/1-TSESTree-AST.shot", + "hash": "17307267459987194414" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-that-have-comments/snapshots/2-TSESTree-Tokens.shot", + "hash": "17430142154538824679" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-that-have-comments/snapshots/3-Babel-AST.shot", + "hash": "8978627812684765796" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-that-have-comments/snapshots/4-Babel-Tokens.shot", + "hash": "6934404429353692746" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-that-have-comments/snapshots/5-AST-Alignment-AST.shot", + "hash": "10213955229261219293" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-that-have-comments/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12582919678080812772" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-with-constraint/fixture.ts", + "hash": "16765250652477151315" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-with-constraint/snapshots/1-TSESTree-AST.shot", + "hash": "980690462917795730" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-with-constraint/snapshots/2-TSESTree-Tokens.shot", + "hash": "2507524528590488874" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-with-constraint/snapshots/3-Babel-AST.shot", + "hash": "12252146372757519588" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-with-constraint/snapshots/4-Babel-Tokens.shot", + "hash": "701833698449425573" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-with-constraint/snapshots/5-AST-Alignment-AST.shot", + "hash": "15308821561693954721" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-type-parameters-with-constraint/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13723886139751842747" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types/fixture.ts", + "hash": "2035375003106300835" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types/snapshots/1-TSESTree-AST.shot", + "hash": "566717963168338447" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types/snapshots/2-TSESTree-Tokens.shot", + "hash": "8551332358838116304" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types/snapshots/3-Babel-AST.shot", + "hash": "1845275000398431601" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types/snapshots/4-Babel-Tokens.shot", + "hash": "16325826560324511557" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types/snapshots/5-AST-Alignment-AST.shot", + "hash": "2195532908405352160" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "355156003773587340" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types-assignation/fixture.ts", + "hash": "15883105374252690863" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types-assignation/snapshots/1-TSESTree-AST.shot", + "hash": "16844213883608400507" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types-assignation/snapshots/2-TSESTree-Tokens.shot", + "hash": "18205417058014502641" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types-assignation/snapshots/3-Babel-AST.shot", + "hash": "6235279074523638925" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types-assignation/snapshots/4-Babel-Tokens.shot", + "hash": "2789502950174769135" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types-assignation/snapshots/5-AST-Alignment-AST.shot", + "hash": "3242723083267290902" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/function-with-types-assignation/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8889472472476576234" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/global-this/fixture.ts", + "hash": "1722549000626371399" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/global-this/snapshots/1-TSESTree-AST.shot", + "hash": "14798347978804793671" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/global-this/snapshots/2-TSESTree-Tokens.shot", + "hash": "9102523285619480833" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/global-this/snapshots/3-Babel-AST.shot", + "hash": "11853812355236266065" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/global-this/snapshots/4-Babel-Tokens.shot", + "hash": "13998428497489715937" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/global-this/snapshots/5-AST-Alignment-AST.shot", + "hash": "13939899875618006117" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/global-this/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14929840303339686160" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-declaration/fixture.ts", + "hash": "18083380030025093070", + "deps": ["npm:bar"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "16633574973147130457" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "1309716385086214245" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-declaration/snapshots/3-Babel-AST.shot", + "hash": "12036320489762514869" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "15451062091631103532" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "231295894299069479" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10173265307184540769" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-type-declaration/fixture.ts", + "hash": "16332267675168959826", + "deps": ["npm:bar"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-type-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "16399997348862395322" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-type-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "3464448684271598986" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-type-declaration/snapshots/3-Babel-AST.shot", + "hash": "5971769036160442060" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-type-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "13720211440882538585" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-type-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "16001659376483077083" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-equal-type-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1614112293975417509" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-declaration/fixture.ts", + "hash": "12639380407467378917", + "deps": ["npm:bar"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "10984683294156153621" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "1069200345557675084" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-declaration/snapshots/3-Babel-AST.shot", + "hash": "13753907429584207848" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "10884513670056160526" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "16297788336434988444" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9381702356581851713" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-type-declaration/fixture.ts", + "hash": "11565517606151387637", + "deps": ["npm:bar"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-type-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "17255024682443609436" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-type-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "16739410757720350515" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-type-declaration/snapshots/3-Babel-AST.shot", + "hash": "15220059556653605627" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-type-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "2289795671415907967" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-type-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "5138110987091463039" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-export-equal-type-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15663177824061185444" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-default/fixture.ts", + "hash": "9893679352666568932", + "deps": ["npm:bar"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-default/snapshots/1-TSESTree-AST.shot", + "hash": "4080752785435355039" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-default/snapshots/2-TSESTree-Tokens.shot", + "hash": "5082326562443124827" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-default/snapshots/3-Babel-AST.shot", + "hash": "6709960072759377808" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-default/snapshots/4-Babel-Tokens.shot", + "hash": "17700437375591875674" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-default/snapshots/5-AST-Alignment-AST.shot", + "hash": "749524498895924457" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-default/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14531794250118506846" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-empty/fixture.ts", + "hash": "1763114306604284428" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-empty/snapshots/1-TSESTree-AST.shot", + "hash": "12879054472251678530" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-empty/snapshots/2-TSESTree-Tokens.shot", + "hash": "11643712175424117045" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-empty/snapshots/3-Babel-AST.shot", + "hash": "5098949823868844361" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-empty/snapshots/4-Babel-Tokens.shot", + "hash": "2491305906023059048" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-empty/snapshots/5-AST-Alignment-AST.shot", + "hash": "12324930989219605607" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-empty/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7443852633629763300" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named/fixture.ts", + "hash": "1037127763977947285", + "deps": ["npm:baz"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named/snapshots/1-TSESTree-AST.shot", + "hash": "14655072555607506171" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named/snapshots/2-TSESTree-Tokens.shot", + "hash": "10749832683017737792" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named/snapshots/3-Babel-AST.shot", + "hash": "9205956301349883567" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named/snapshots/4-Babel-Tokens.shot", + "hash": "7387921954496420772" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named/snapshots/5-AST-Alignment-AST.shot", + "hash": "16088722886773737920" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11426343738042721898" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named-as/fixture.ts", + "hash": "16125925834299287072", + "deps": ["npm:baz"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named-as/snapshots/1-TSESTree-AST.shot", + "hash": "16151970463444072788" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named-as/snapshots/2-TSESTree-Tokens.shot", + "hash": "10467200369614265479" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named-as/snapshots/3-Babel-AST.shot", + "hash": "3211286960546816168" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named-as/snapshots/4-Babel-Tokens.shot", + "hash": "15112781087736644247" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named-as/snapshots/5-AST-Alignment-AST.shot", + "hash": "5580180519776701796" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-named-as/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13389484591354511396" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-star-as-ns/fixture.ts", + "hash": "8490405232381386461" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-star-as-ns/snapshots/1-TSESTree-AST.shot", + "hash": "18394818209525743591" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-star-as-ns/snapshots/2-TSESTree-Tokens.shot", + "hash": "16244320583169843789" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-star-as-ns/snapshots/3-Babel-AST.shot", + "hash": "13143799213452327558" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-star-as-ns/snapshots/4-Babel-Tokens.shot", + "hash": "13167259373568466838" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-star-as-ns/snapshots/5-AST-Alignment-AST.shot", + "hash": "2592029691024859841" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-type-star-as-ns/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14922288531943265153" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-with-import-assertions/fixture.ts", + "hash": "1101892343303888451", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-with-import-assertions/snapshots/1-TSESTree-AST.shot", + "hash": "14033230894633961508" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-with-import-assertions/snapshots/2-TSESTree-Tokens.shot", + "hash": "1876671337264630101" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-with-import-assertions/snapshots/3-Babel-AST.shot", + "hash": "15134700697835968796" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-with-import-assertions/snapshots/4-Babel-Tokens.shot", + "hash": "5660351033460859726" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-with-import-assertions/snapshots/5-AST-Alignment-AST.shot", + "hash": "1831976156166199536" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/import-with-import-assertions/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11479949168428696041" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends/fixture.ts", + "hash": "9476991421909751718" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends/snapshots/1-TSESTree-AST.shot", + "hash": "10265082391409985160" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends/snapshots/2-TSESTree-Tokens.shot", + "hash": "8634162651538037140" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends/snapshots/3-Babel-AST.shot", + "hash": "10295148623048500108" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends/snapshots/4-Babel-Tokens.shot", + "hash": "12653626893661148856" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends/snapshots/5-AST-Alignment-AST.shot", + "hash": "8388597368800766283" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9226855263550643729" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends-multiple/fixture.ts", + "hash": "2336997189660261451" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "11960738332527319959" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "14559024448917088207" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends-multiple/snapshots/3-Babel-AST.shot", + "hash": "14132059916821445093" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "12909091987230205876" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "2361766368750059701" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-extends-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15597950931851531845" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-type-parameters/fixture.ts", + "hash": "14743209268836228451" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-type-parameters/snapshots/1-TSESTree-AST.shot", + "hash": "1666706893643799686" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-type-parameters/snapshots/2-TSESTree-Tokens.shot", + "hash": "17926240199304502592" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-type-parameters/snapshots/3-Babel-AST.shot", + "hash": "8002137337489658368" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-type-parameters/snapshots/4-Babel-Tokens.shot", + "hash": "1109214256386326424" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-type-parameters/snapshots/5-AST-Alignment-AST.shot", + "hash": "15401984286733931434" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-type-parameters/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7493473870569087181" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-all-property-types/fixture.ts", + "hash": "79233610445946314" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-all-property-types/snapshots/1-TSESTree-AST.shot", + "hash": "15622867128024592889" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-all-property-types/snapshots/2-TSESTree-Tokens.shot", + "hash": "4772716325860535149" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-all-property-types/snapshots/3-Babel-AST.shot", + "hash": "2585151544176607011" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-all-property-types/snapshots/4-Babel-Tokens.shot", + "hash": "16620539117291508813" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-all-property-types/snapshots/5-AST-Alignment-AST.shot", + "hash": "1293590118600217192" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-all-property-types/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1813267308153144893" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-member-expression/fixture.ts", + "hash": "16152003897034733858" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-member-expression/snapshots/1-TSESTree-AST.shot", + "hash": "12453831547854619318" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-member-expression/snapshots/2-TSESTree-Tokens.shot", + "hash": "13255868083797129639" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-member-expression/snapshots/3-Babel-AST.shot", + "hash": "17438506673348867829" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-member-expression/snapshots/4-Babel-Tokens.shot", + "hash": "13376574084859977064" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-member-expression/snapshots/5-AST-Alignment-AST.shot", + "hash": "10779957573765637557" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-member-expression/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4434942582736899096" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-type-parameters/fixture.ts", + "hash": "10515707701854122587" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-type-parameters/snapshots/1-TSESTree-AST.shot", + "hash": "5428632777463565082" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-type-parameters/snapshots/2-TSESTree-Tokens.shot", + "hash": "6401025856475937250" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-type-parameters/snapshots/3-Babel-AST.shot", + "hash": "1921701947943562134" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-type-parameters/snapshots/4-Babel-Tokens.shot", + "hash": "17227260409804237939" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-type-parameters/snapshots/5-AST-Alignment-AST.shot", + "hash": "13809491148807524217" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-extends-type-parameters/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13072511684763482130" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-generic/fixture.ts", + "hash": "959131227919527433" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-generic/snapshots/1-TSESTree-AST.shot", + "hash": "9039421239807629729" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "702938464654718007" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-generic/snapshots/3-Babel-AST.shot", + "hash": "5314971300383842051" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-generic/snapshots/4-Babel-Tokens.shot", + "hash": "9295741377984960014" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "1211754236197369075" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8988240466874695206" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-jsdoc/fixture.ts", + "hash": "15167450411959341290" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-jsdoc/snapshots/1-TSESTree-AST.shot", + "hash": "329204886555396094" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-jsdoc/snapshots/2-TSESTree-Tokens.shot", + "hash": "15786056863394812088" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-jsdoc/snapshots/3-Babel-AST.shot", + "hash": "9811723974645135233" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-jsdoc/snapshots/4-Babel-Tokens.shot", + "hash": "6073233382604461963" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-jsdoc/snapshots/5-AST-Alignment-AST.shot", + "hash": "2243035006915374268" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-jsdoc/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14259966555868214402" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-method/fixture.ts", + "hash": "10573535792909837285" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-method/snapshots/1-TSESTree-AST.shot", + "hash": "13535519238233422828" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "10267175624742912903" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-method/snapshots/3-Babel-AST.shot", + "hash": "9979731877944636790" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-method/snapshots/4-Babel-Tokens.shot", + "hash": "73849497185765437" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "12634857708080707561" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "296263839457775954" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-optional-properties/fixture.ts", + "hash": "10617114471942705959" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-optional-properties/snapshots/1-TSESTree-AST.shot", + "hash": "9985360891432819114" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-optional-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "12046301136955386490" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-optional-properties/snapshots/3-Babel-AST.shot", + "hash": "4814458009897762240" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-optional-properties/snapshots/4-Babel-Tokens.shot", + "hash": "13747578846570404684" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-optional-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "3477862551145738878" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-with-optional-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13772378285148395365" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-without-type-annotation/fixture.ts", + "hash": "16193219303239677981" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-without-type-annotation/snapshots/1-TSESTree-AST.shot", + "hash": "184384595198534528" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-without-type-annotation/snapshots/2-TSESTree-Tokens.shot", + "hash": "16831209614434685450" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-without-type-annotation/snapshots/3-Babel-AST.shot", + "hash": "14361220112157787776" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-without-type-annotation/snapshots/4-Babel-Tokens.shot", + "hash": "14859011598058833822" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-without-type-annotation/snapshots/5-AST-Alignment-AST.shot", + "hash": "15743092440081574755" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/interface-without-type-annotation/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15546156297134389275" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/intrinsic-keyword/fixture.ts", + "hash": "1562639008636547352" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/intrinsic-keyword/snapshots/1-TSESTree-AST.shot", + "hash": "6716845894368182472" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/intrinsic-keyword/snapshots/2-TSESTree-Tokens.shot", + "hash": "5674253440764742542" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/intrinsic-keyword/snapshots/3-Babel-AST.shot", + "hash": "17659375102056398542" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/intrinsic-keyword/snapshots/4-Babel-Tokens.shot", + "hash": "7944329324892875723" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/intrinsic-keyword/snapshots/5-AST-Alignment-AST.shot", + "hash": "10218572412484636797" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/intrinsic-keyword/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5726558057726031354" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyof-operator/fixture.ts", + "hash": "11594379996587623178" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyof-operator/snapshots/1-TSESTree-AST.shot", + "hash": "432199332373461871" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyof-operator/snapshots/2-TSESTree-Tokens.shot", + "hash": "2300246423366678362" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyof-operator/snapshots/3-Babel-AST.shot", + "hash": "1658748833295730314" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyof-operator/snapshots/4-Babel-Tokens.shot", + "hash": "11077927746412008491" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyof-operator/snapshots/5-AST-Alignment-AST.shot", + "hash": "4506352078715099438" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyof-operator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5494819962089005858" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyword-variables/fixture.ts", + "hash": "1608199572256574490", + "deps": ["npm:fake-module"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyword-variables/snapshots/1-TSESTree-AST.shot", + "hash": "11807748869346482507" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyword-variables/snapshots/2-TSESTree-Tokens.shot", + "hash": "960811725347294139" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyword-variables/snapshots/3-Babel-AST.shot", + "hash": "13646788825555091075" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyword-variables/snapshots/4-Babel-Tokens.shot", + "hash": "15748353655990550128" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyword-variables/snapshots/5-AST-Alignment-AST.shot", + "hash": "17871406395737125944" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/keyword-variables/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4426918503922776339" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nested-type-arguments/fixture.ts", + "hash": "1506833327714377416" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nested-type-arguments/snapshots/1-TSESTree-AST.shot", + "hash": "11777919616905046895" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nested-type-arguments/snapshots/2-TSESTree-Tokens.shot", + "hash": "17366379420741375761" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nested-type-arguments/snapshots/3-Babel-AST.shot", + "hash": "3586565516820024442" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nested-type-arguments/snapshots/4-Babel-Tokens.shot", + "hash": "6911311492018152760" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nested-type-arguments/snapshots/5-AST-Alignment-AST.shot", + "hash": "15058719753266865616" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nested-type-arguments/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12746368361007020982" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/never-type-param/fixture.ts", + "hash": "12931787034629668884" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/never-type-param/snapshots/1-TSESTree-AST.shot", + "hash": "8640532125409516451" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/never-type-param/snapshots/2-TSESTree-Tokens.shot", + "hash": "2669178428933624733" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/never-type-param/snapshots/3-Babel-AST.shot", + "hash": "7727720692529647497" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/never-type-param/snapshots/4-Babel-Tokens.shot", + "hash": "10756343585115525232" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/never-type-param/snapshots/5-AST-Alignment-AST.shot", + "hash": "9069844036375689064" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/never-type-param/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17321361975928147302" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/non-null-assertion-operator/fixture.ts", + "hash": "66876344058120538" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/non-null-assertion-operator/snapshots/1-TSESTree-AST.shot", + "hash": "8035555966336075236" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/non-null-assertion-operator/snapshots/2-TSESTree-Tokens.shot", + "hash": "6472443309745746511" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/non-null-assertion-operator/snapshots/3-Babel-AST.shot", + "hash": "16112369326093275034" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/non-null-assertion-operator/snapshots/4-Babel-Tokens.shot", + "hash": "8342969352547260259" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/non-null-assertion-operator/snapshots/5-AST-Alignment-AST.shot", + "hash": "2853283611685826614" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/non-null-assertion-operator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "467369755807187037" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/null-and-undefined-type-annotations/fixture.ts", + "hash": "4799532272690226167" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/null-and-undefined-type-annotations/snapshots/1-TSESTree-AST.shot", + "hash": "3925214549761986154" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/null-and-undefined-type-annotations/snapshots/2-TSESTree-Tokens.shot", + "hash": "13785553813679354608" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/null-and-undefined-type-annotations/snapshots/3-Babel-AST.shot", + "hash": "10804798303397312417" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/null-and-undefined-type-annotations/snapshots/4-Babel-Tokens.shot", + "hash": "8229746343536335157" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/null-and-undefined-type-annotations/snapshots/5-AST-Alignment-AST.shot", + "hash": "3690359212057754651" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/null-and-undefined-type-annotations/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "27824521702934157" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nullish-coalescing/fixture.ts", + "hash": "9817649559639229538" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nullish-coalescing/snapshots/1-TSESTree-AST.shot", + "hash": "1346095559352994988" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nullish-coalescing/snapshots/2-TSESTree-Tokens.shot", + "hash": "4021556468380059858" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nullish-coalescing/snapshots/3-Babel-AST.shot", + "hash": "18191180983419585628" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nullish-coalescing/snapshots/4-Babel-Tokens.shot", + "hash": "721403934376309902" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nullish-coalescing/snapshots/5-AST-Alignment-AST.shot", + "hash": "2316838018996508830" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/nullish-coalescing/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11866639906270434816" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-escaped-properties/fixture.ts", + "hash": "11915308427305380159" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-escaped-properties/snapshots/1-TSESTree-AST.shot", + "hash": "5494537882268163654" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-escaped-properties/snapshots/2-TSESTree-Tokens.shot", + "hash": "3121291267229171568" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-escaped-properties/snapshots/3-Babel-AST.shot", + "hash": "10317579702629051485" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-escaped-properties/snapshots/4-Babel-Tokens.shot", + "hash": "10413039199255904514" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-escaped-properties/snapshots/5-AST-Alignment-AST.shot", + "hash": "2706624536479860697" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-escaped-properties/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4107527584728266137" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-typed-methods/fixture.ts", + "hash": "11740631312450066604" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-typed-methods/snapshots/1-TSESTree-AST.shot", + "hash": "12588284869224971339" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-typed-methods/snapshots/2-TSESTree-Tokens.shot", + "hash": "3105421219404140917" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-typed-methods/snapshots/3-Babel-AST.shot", + "hash": "4107179382030382329" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-typed-methods/snapshots/4-Babel-Tokens.shot", + "hash": "15206587127083737123" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-typed-methods/snapshots/5-AST-Alignment-AST.shot", + "hash": "13128016638959135493" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/object-with-typed-methods/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9296365634483756073" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain/fixture.ts", + "hash": "1423827241637092317" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain/snapshots/1-TSESTree-AST.shot", + "hash": "5777745201310869171" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain/snapshots/2-TSESTree-Tokens.shot", + "hash": "16917355810871233659" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain/snapshots/3-Babel-AST.shot", + "hash": "400240709562870348" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain/snapshots/4-Babel-Tokens.shot", + "hash": "10920511788318714850" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain/snapshots/5-AST-Alignment-AST.shot", + "hash": "4922193283975564911" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "18289682913197950067" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call/fixture.ts", + "hash": "18235936206637249701" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call/snapshots/1-TSESTree-AST.shot", + "hash": "13948049908020669467" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call/snapshots/2-TSESTree-Tokens.shot", + "hash": "15019224417252453907" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call/snapshots/3-Babel-AST.shot", + "hash": "5751272881296377526" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call/snapshots/4-Babel-Tokens.shot", + "hash": "7698340980243959722" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call/snapshots/5-AST-Alignment-AST.shot", + "hash": "14060583799446663644" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12930715509660643207" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-non-null-assertion/fixture.ts", + "hash": "1388306949369540117" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-non-null-assertion/snapshots/1-TSESTree-AST.shot", + "hash": "6446610881642909127" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-non-null-assertion/snapshots/2-TSESTree-Tokens.shot", + "hash": "4124937560847418299" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-non-null-assertion/snapshots/3-Babel-AST.shot", + "hash": "1327365243576524389" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-non-null-assertion/snapshots/4-Babel-Tokens.shot", + "hash": "7591013019744899" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-non-null-assertion/snapshots/5-AST-Alignment-AST.shot", + "hash": "2775915799359135803" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-non-null-assertion/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15315719925187103551" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-parens/fixture.ts", + "hash": "8669903155868185754" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-parens/snapshots/1-TSESTree-AST.shot", + "hash": "12919778972791555547" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-parens/snapshots/2-TSESTree-Tokens.shot", + "hash": "5507380555937821018" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-parens/snapshots/3-Babel-AST.shot", + "hash": "1722447701903695942" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-parens/snapshots/4-Babel-Tokens.shot", + "hash": "18211974625675240651" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-parens/snapshots/5-AST-Alignment-AST.shot", + "hash": "15731894295113880173" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-call-with-parens/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "651551548179697721" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access/fixture.ts", + "hash": "16575955750914659890" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access/snapshots/1-TSESTree-AST.shot", + "hash": "11305662269933684586" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access/snapshots/2-TSESTree-Tokens.shot", + "hash": "6460952173470060065" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access/snapshots/3-Babel-AST.shot", + "hash": "2141969399201076288" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access/snapshots/4-Babel-Tokens.shot", + "hash": "9022834099693267828" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access/snapshots/5-AST-Alignment-AST.shot", + "hash": "15647399644731093130" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8909509512696650357" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-non-null-assertion/fixture.ts", + "hash": "10761065088466281065" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-non-null-assertion/snapshots/1-TSESTree-AST.shot", + "hash": "18344390911148603629" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-non-null-assertion/snapshots/2-TSESTree-Tokens.shot", + "hash": "10635042374934638156" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-non-null-assertion/snapshots/3-Babel-AST.shot", + "hash": "12232418620550722784" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-non-null-assertion/snapshots/4-Babel-Tokens.shot", + "hash": "12846000257464472041" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-non-null-assertion/snapshots/5-AST-Alignment-AST.shot", + "hash": "6238756860569792059" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-non-null-assertion/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6610376721205139237" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-parens/fixture.ts", + "hash": "11344155086479922993" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-parens/snapshots/1-TSESTree-AST.shot", + "hash": "2619714998295144034" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-parens/snapshots/2-TSESTree-Tokens.shot", + "hash": "4763881006916129727" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-parens/snapshots/3-Babel-AST.shot", + "hash": "8839564462167828264" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-parens/snapshots/4-Babel-Tokens.shot", + "hash": "16383459589502540738" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-parens/snapshots/5-AST-Alignment-AST.shot", + "hash": "1685308003374246296" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-element-access-with-parens/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "412887268276014522" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-non-null-assertion/fixture.ts", + "hash": "4346501526928050946" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-non-null-assertion/snapshots/1-TSESTree-AST.shot", + "hash": "16369482849722073064" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-non-null-assertion/snapshots/2-TSESTree-Tokens.shot", + "hash": "15870858178597668460" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-non-null-assertion/snapshots/3-Babel-AST.shot", + "hash": "9017954465949874802" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-non-null-assertion/snapshots/4-Babel-Tokens.shot", + "hash": "10073357262738797067" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-non-null-assertion/snapshots/5-AST-Alignment-AST.shot", + "hash": "3410354414658596442" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-non-null-assertion/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13938319288284690654" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-parens/fixture.ts", + "hash": "6320715387732744245" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-parens/snapshots/1-TSESTree-AST.shot", + "hash": "519439805433770626" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-parens/snapshots/2-TSESTree-Tokens.shot", + "hash": "8570158533129777096" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-parens/snapshots/3-Babel-AST.shot", + "hash": "1887319764976393055" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-parens/snapshots/4-Babel-Tokens.shot", + "hash": "12143640368063087140" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-parens/snapshots/5-AST-Alignment-AST.shot", + "hash": "4981386973273829480" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/optional-chain-with-parens/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15410693892721697488" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/parenthesized-use-strict/fixture.ts", + "hash": "16034941104572350820" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/parenthesized-use-strict/snapshots/1-TSESTree-AST.shot", + "hash": "15624126826011504892" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/parenthesized-use-strict/snapshots/2-TSESTree-Tokens.shot", + "hash": "10490674298567113039" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/parenthesized-use-strict/snapshots/3-Babel-AST.shot", + "hash": "4142126860619162179" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/parenthesized-use-strict/snapshots/4-Babel-Tokens.shot", + "hash": "6549247749971001198" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/parenthesized-use-strict/snapshots/5-AST-Alignment-AST.shot", + "hash": "17366635329770085717" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/parenthesized-use-strict/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11430444072448134523" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/private-fields-in-in/fixture.ts", + "hash": "7846826383917102989" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/private-fields-in-in/snapshots/1-TSESTree-AST.shot", + "hash": "7176316300009625049" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/private-fields-in-in/snapshots/2-TSESTree-Tokens.shot", + "hash": "6102300211011330150" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/private-fields-in-in/snapshots/3-Babel-AST.shot", + "hash": "7377660856695934274" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/private-fields-in-in/snapshots/4-Babel-Tokens.shot", + "hash": "12175609752535076039" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/private-fields-in-in/snapshots/5-AST-Alignment-AST.shot", + "hash": "921666070422002153" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/private-fields-in-in/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16116770987398494272" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-arrays/fixture.ts", + "hash": "15583141308470951003" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-arrays/snapshots/1-TSESTree-AST.shot", + "hash": "6151150524136833003" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-arrays/snapshots/2-TSESTree-Tokens.shot", + "hash": "6345370960338360213" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-arrays/snapshots/3-Babel-AST.shot", + "hash": "12403646282521872680" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-arrays/snapshots/4-Babel-Tokens.shot", + "hash": "1195892479525661124" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-arrays/snapshots/5-AST-Alignment-AST.shot", + "hash": "4041234337433997355" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-arrays/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7757947744993858719" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-tuples/fixture.ts", + "hash": "1531532278363942853" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-tuples/snapshots/1-TSESTree-AST.shot", + "hash": "17418853332833092521" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-tuples/snapshots/2-TSESTree-Tokens.shot", + "hash": "6268582007991597344" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-tuples/snapshots/3-Babel-AST.shot", + "hash": "5492494754313592587" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-tuples/snapshots/4-Babel-Tokens.shot", + "hash": "1090855654185893752" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-tuples/snapshots/5-AST-Alignment-AST.shot", + "hash": "4487627081200453668" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/readonly-tuples/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10106891291870616546" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-and-and/fixture.ts", + "hash": "13101688802115149629" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-and-and/snapshots/1-TSESTree-AST.shot", + "hash": "16361231684637389360" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-and-and/snapshots/2-TSESTree-Tokens.shot", + "hash": "8477953013117546830" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-and-and/snapshots/3-Babel-AST.shot", + "hash": "10719570481774194010" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-and-and/snapshots/4-Babel-Tokens.shot", + "hash": "18066873598498419694" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-and-and/snapshots/5-AST-Alignment-AST.shot", + "hash": "12752109807950718019" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-and-and/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13937247734340412883" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-or-or/fixture.ts", + "hash": "4546326855588560787" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-or-or/snapshots/1-TSESTree-AST.shot", + "hash": "15744891908324421848" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-or-or/snapshots/2-TSESTree-Tokens.shot", + "hash": "13719971744161658553" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-or-or/snapshots/3-Babel-AST.shot", + "hash": "3557375964241076050" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-or-or/snapshots/4-Babel-Tokens.shot", + "hash": "338596872792660032" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-or-or/snapshots/5-AST-Alignment-AST.shot", + "hash": "4634520629711963326" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-or-or/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13946722717475082500" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-question-question/fixture.ts", + "hash": "2465396402706685532" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-question-question/snapshots/1-TSESTree-AST.shot", + "hash": "12026656193954726105" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-question-question/snapshots/2-TSESTree-Tokens.shot", + "hash": "8717106651274900936" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-question-question/snapshots/3-Babel-AST.shot", + "hash": "1920943257578020379" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-question-question/snapshots/4-Babel-Tokens.shot", + "hash": "8601687871688435893" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-question-question/snapshots/5-AST-Alignment-AST.shot", + "hash": "12215896941238571331" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/short-circuiting-assignment-question-question/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13409174247201509858" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/symbol-type-param/fixture.ts", + "hash": "2771508857130415053" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/symbol-type-param/snapshots/1-TSESTree-AST.shot", + "hash": "18082824715191044407" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/symbol-type-param/snapshots/2-TSESTree-Tokens.shot", + "hash": "4779246763732565624" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/symbol-type-param/snapshots/3-Babel-AST.shot", + "hash": "7490380409730038486" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/symbol-type-param/snapshots/4-Babel-Tokens.shot", + "hash": "1894005834199549256" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/symbol-type-param/snapshots/5-AST-Alignment-AST.shot", + "hash": "6582827291323496084" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/symbol-type-param/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4524446383629088589" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration/fixture.ts", + "hash": "8741460133960979197" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "8810315180652105308" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "16126183340115711684" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration/snapshots/3-Babel-AST.shot", + "hash": "5065351474651757850" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "7412331113225275216" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "7887623600466589097" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4493084764181657318" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export/fixture.ts", + "hash": "9567105036250634226" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export/snapshots/1-TSESTree-AST.shot", + "hash": "9821596949077824675" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export/snapshots/2-TSESTree-Tokens.shot", + "hash": "2993088780664136382" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export/snapshots/3-Babel-AST.shot", + "hash": "7988996021120709169" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export/snapshots/4-Babel-Tokens.shot", + "hash": "10167306202726478745" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export/snapshots/5-AST-Alignment-AST.shot", + "hash": "4646236523707670515" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16932718452950247100" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-function-type/fixture.ts", + "hash": "6472963469355071187" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-function-type/snapshots/1-TSESTree-AST.shot", + "hash": "11143306426309965553" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-function-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "11450099981195872229" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-function-type/snapshots/3-Babel-AST.shot", + "hash": "8932830858351014409" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-function-type/snapshots/4-Babel-Tokens.shot", + "hash": "8294403441116831389" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-function-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "8235082898516824066" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-function-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12212077588832366355" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-object-type/fixture.ts", + "hash": "15621044049878405921" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-object-type/snapshots/1-TSESTree-AST.shot", + "hash": "8527277883878022109" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-object-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "14004784046738881175" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-object-type/snapshots/3-Babel-AST.shot", + "hash": "16701492145991444735" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-object-type/snapshots/4-Babel-Tokens.shot", + "hash": "10866263048595472468" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-object-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "3272049566995402111" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-export-object-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6857124775873358711" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-with-constrained-type-parameter/fixture.ts", + "hash": "16939541682491641318" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-with-constrained-type-parameter/snapshots/1-TSESTree-AST.shot", + "hash": "12512638071693786501" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-with-constrained-type-parameter/snapshots/2-TSESTree-Tokens.shot", + "hash": "1325012118442393214" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-with-constrained-type-parameter/snapshots/3-Babel-AST.shot", + "hash": "9807255727892433913" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-with-constrained-type-parameter/snapshots/4-Babel-Tokens.shot", + "hash": "10557245719920748209" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-with-constrained-type-parameter/snapshots/5-AST-Alignment-AST.shot", + "hash": "13413038074163759683" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-declaration-with-constrained-type-parameter/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4626144558596658271" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-object-without-annotation/fixture.ts", + "hash": "8371916395434156690" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-object-without-annotation/snapshots/1-TSESTree-AST.shot", + "hash": "4717137381840423065" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-object-without-annotation/snapshots/2-TSESTree-Tokens.shot", + "hash": "12094267139154696985" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-object-without-annotation/snapshots/3-Babel-AST.shot", + "hash": "5040319588921038359" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-object-without-annotation/snapshots/4-Babel-Tokens.shot", + "hash": "15590202938027403402" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-object-without-annotation/snapshots/5-AST-Alignment-AST.shot", + "hash": "17571514887676494320" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-alias-object-without-annotation/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8631578706716795231" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-arrow-function/fixture.ts", + "hash": "10241872619642509618" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-arrow-function/snapshots/1-TSESTree-AST.shot", + "hash": "322515794975371569" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-arrow-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "1724516170308061410" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-arrow-function/snapshots/3-Babel-AST.shot", + "hash": "12958397434541806628" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-arrow-function/snapshots/4-Babel-Tokens.shot", + "hash": "18061268547225981620" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-arrow-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "4730522595648517662" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-arrow-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9279508876142403007" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-function/fixture.ts", + "hash": "13436498203768721018" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-function/snapshots/1-TSESTree-AST.shot", + "hash": "3577158809518042668" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "5691193057776843695" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-function/snapshots/3-Babel-AST.shot", + "hash": "16751371078760819797" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-function/snapshots/4-Babel-Tokens.shot", + "hash": "8523534846571411709" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "997593254537349675" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7439232105158353398" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-interface/fixture.ts", + "hash": "11052079942476922068" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-interface/snapshots/1-TSESTree-AST.shot", + "hash": "8345386639302659238" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-interface/snapshots/2-TSESTree-Tokens.shot", + "hash": "7444346557934064892" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-interface/snapshots/3-Babel-AST.shot", + "hash": "12411554254141616691" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-interface/snapshots/4-Babel-Tokens.shot", + "hash": "2446438714387840840" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-interface/snapshots/5-AST-Alignment-AST.shot", + "hash": "9447097350758452016" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-interface/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12873252761977910018" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-method/fixture.ts", + "hash": "2680100516581695920" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-method/snapshots/1-TSESTree-AST.shot", + "hash": "3965012800770671349" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "7179357802768727658" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-method/snapshots/3-Babel-AST.shot", + "hash": "4752111453606987992" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-method/snapshots/4-Babel-Tokens.shot", + "hash": "15737816663253181869" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "14395776814192398765" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-in-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5908604053340194749" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-arrow-function/fixture.ts", + "hash": "4590673558488443525" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-arrow-function/snapshots/1-TSESTree-AST.shot", + "hash": "17577686124408453353" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-arrow-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "3181289884696781294" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-arrow-function/snapshots/3-Babel-AST.shot", + "hash": "7197630453344163276" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-arrow-function/snapshots/4-Babel-Tokens.shot", + "hash": "17918743429932579714" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-arrow-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "5760921293572243137" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-arrow-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10412468664006261151" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-function/fixture.ts", + "hash": "421265187102263095" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-function/snapshots/1-TSESTree-AST.shot", + "hash": "16089488943916466563" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "7022868332281438447" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-function/snapshots/3-Babel-AST.shot", + "hash": "17142440052717703923" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-function/snapshots/4-Babel-Tokens.shot", + "hash": "6125920192022018674" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "2797047712640922330" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7397382594708190242" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-interface/fixture.ts", + "hash": "17307517896929494201" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-interface/snapshots/1-TSESTree-AST.shot", + "hash": "14076331555633751326" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-interface/snapshots/2-TSESTree-Tokens.shot", + "hash": "9575354938276252538" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-interface/snapshots/3-Babel-AST.shot", + "hash": "13389435787778959660" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-interface/snapshots/4-Babel-Tokens.shot", + "hash": "15821308424702480828" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-interface/snapshots/5-AST-Alignment-AST.shot", + "hash": "13373878732077769449" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-interface/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2526153402613016523" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-method/fixture.ts", + "hash": "10665912460944367151" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-method/snapshots/1-TSESTree-AST.shot", + "hash": "8887394440461944051" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "6159127316695469243" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-method/snapshots/3-Babel-AST.shot", + "hash": "4224153351244956149" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-method/snapshots/4-Babel-Tokens.shot", + "hash": "5090795273586502657" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "9280964356078723354" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-assertion-with-guard-in-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7434937337818026301" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-arrow-function/fixture.ts", + "hash": "464483462077761179" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-arrow-function/snapshots/1-TSESTree-AST.shot", + "hash": "17518016938099733718" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-arrow-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "15003430783570103884" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-arrow-function/snapshots/3-Babel-AST.shot", + "hash": "11174805272091048520" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-arrow-function/snapshots/4-Babel-Tokens.shot", + "hash": "3058180708409145606" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-arrow-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "18189112374499047417" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-arrow-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2875236378244628124" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-function/fixture.ts", + "hash": "13889940397975558225" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-function/snapshots/1-TSESTree-AST.shot", + "hash": "8791177763716422796" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "8217268337026456029" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-function/snapshots/3-Babel-AST.shot", + "hash": "14820453826649222272" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-function/snapshots/4-Babel-Tokens.shot", + "hash": "12162882753223494765" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "1402995440951394459" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15912696439481013501" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-interface/fixture.ts", + "hash": "11531479381275722474" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-interface/snapshots/1-TSESTree-AST.shot", + "hash": "15193957743467752087" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-interface/snapshots/2-TSESTree-Tokens.shot", + "hash": "3412323966525362425" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-interface/snapshots/3-Babel-AST.shot", + "hash": "935010586997854884" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-interface/snapshots/4-Babel-Tokens.shot", + "hash": "125859028144931086" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-interface/snapshots/5-AST-Alignment-AST.shot", + "hash": "6383142644598965672" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-interface/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3208739353482478690" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-method/fixture.ts", + "hash": "8558189397849523407" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-method/snapshots/1-TSESTree-AST.shot", + "hash": "8281446220883175026" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-method/snapshots/2-TSESTree-Tokens.shot", + "hash": "12764311935280140132" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-method/snapshots/3-Babel-AST.shot", + "hash": "7287791381115263267" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-method/snapshots/4-Babel-Tokens.shot", + "hash": "18129994399735518780" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-method/snapshots/5-AST-Alignment-AST.shot", + "hash": "13735850500273355911" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-guard-in-method/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16755388226279016511" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type/fixture.ts", + "hash": "8574641913616946571", + "deps": [ + ["npm:A", "dynamic"], + ["npm:B", "dynamic"] + ] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type/snapshots/1-TSESTree-AST.shot", + "hash": "15982778321286684464" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "11598044594487901069" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type/snapshots/3-Babel-AST.shot", + "hash": "15854000212694648051" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type/snapshots/4-Babel-Tokens.shot", + "hash": "4433122737365876055" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "2133688335491693613" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1485195327589995042" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type-with-type-parameters-in-type-reference/fixture.ts", + "hash": "6662855328595814610", + "deps": ["npm:"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type-with-type-parameters-in-type-reference/snapshots/1-TSESTree-AST.shot", + "hash": "15063884859631971869" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type-with-type-parameters-in-type-reference/snapshots/2-TSESTree-Tokens.shot", + "hash": "16633954157246918113" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type-with-type-parameters-in-type-reference/snapshots/3-Babel-AST.shot", + "hash": "17211328507529669766" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type-with-type-parameters-in-type-reference/snapshots/4-Babel-Tokens.shot", + "hash": "17820260978401776323" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type-with-type-parameters-in-type-reference/snapshots/5-AST-Alignment-AST.shot", + "hash": "3167809907012249482" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-import-type-with-type-parameters-in-type-reference/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9498903866890318759" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-export-specifiers/fixture.ts", + "hash": "7151022905427431961", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-export-specifiers/snapshots/1-TSESTree-AST.shot", + "hash": "14975798011786567649" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-export-specifiers/snapshots/2-TSESTree-Tokens.shot", + "hash": "8318732988367853913" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-export-specifiers/snapshots/3-Babel-AST.shot", + "hash": "3184301710189977521" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-export-specifiers/snapshots/4-Babel-Tokens.shot", + "hash": "15660060069662997292" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-export-specifiers/snapshots/5-AST-Alignment-AST.shot", + "hash": "17876691554660303495" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-export-specifiers/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15075309585430910995" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-import-specifiers/fixture.ts", + "hash": "5905109500119221741", + "deps": ["npm:mod"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-import-specifiers/snapshots/1-TSESTree-AST.shot", + "hash": "7847058004549001140" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-import-specifiers/snapshots/2-TSESTree-Tokens.shot", + "hash": "18207024707623299676" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-import-specifiers/snapshots/3-Babel-AST.shot", + "hash": "11712416557871962793" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-import-specifiers/snapshots/4-Babel-Tokens.shot", + "hash": "1502480152506173879" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-import-specifiers/snapshots/5-AST-Alignment-AST.shot", + "hash": "12554173898901257614" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-only-import-specifiers/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13248140805041181571" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments/fixture.ts", + "hash": "13099663288925806186" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments/snapshots/1-TSESTree-AST.shot", + "hash": "18051763909345776662" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments/snapshots/2-TSESTree-Tokens.shot", + "hash": "2714539135631494160" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments/snapshots/3-Babel-AST.shot", + "hash": "7802975648045998275" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments/snapshots/4-Babel-Tokens.shot", + "hash": "5103115307538653540" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments/snapshots/5-AST-Alignment-AST.shot", + "hash": "3236359415931927062" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4319923618961848333" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments-heritage/fixture.ts", + "hash": "14695207919320080416" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments-heritage/snapshots/1-TSESTree-AST.shot", + "hash": "12187677491460930524" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments-heritage/snapshots/2-TSESTree-Tokens.shot", + "hash": "3462749607624050914" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments-heritage/snapshots/3-Babel-AST.shot", + "hash": "9975527553180451934" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments-heritage/snapshots/4-Babel-Tokens.shot", + "hash": "15699344804889949499" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments-heritage/snapshots/5-AST-Alignment-AST.shot", + "hash": "8101166314017382781" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-parameters-comments-heritage/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16275453137522054456" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-reference-comments/fixture.ts", + "hash": "17105776544764542003" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-reference-comments/snapshots/1-TSESTree-AST.shot", + "hash": "961669468282726965" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-reference-comments/snapshots/2-TSESTree-Tokens.shot", + "hash": "12705444738004241440" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-reference-comments/snapshots/3-Babel-AST.shot", + "hash": "88257295842690019" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-reference-comments/snapshots/4-Babel-Tokens.shot", + "hash": "882282877907533102" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-reference-comments/snapshots/5-AST-Alignment-AST.shot", + "hash": "1421644503688291726" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/type-reference-comments/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7383657378386217824" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-bigint/fixture.ts", + "hash": "9716346221289424730" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-bigint/snapshots/1-TSESTree-AST.shot", + "hash": "15654043875887300566" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-bigint/snapshots/2-TSESTree-Tokens.shot", + "hash": "1916012276137138417" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-bigint/snapshots/3-Babel-AST.shot", + "hash": "10578905346306986416" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-bigint/snapshots/4-Babel-Tokens.shot", + "hash": "1936301915158746620" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-bigint/snapshots/5-AST-Alignment-AST.shot", + "hash": "17004582189283827870" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-bigint/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14195907875366339852" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-boolean/fixture.ts", + "hash": "2437470991574005004" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-boolean/snapshots/1-TSESTree-AST.shot", + "hash": "3252036277771207161" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-boolean/snapshots/2-TSESTree-Tokens.shot", + "hash": "15432344806952312351" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-boolean/snapshots/3-Babel-AST.shot", + "hash": "3215025023724101463" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-boolean/snapshots/4-Babel-Tokens.shot", + "hash": "12906244714822228602" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-boolean/snapshots/5-AST-Alignment-AST.shot", + "hash": "12709281884384455603" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-boolean/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3998329994243811005" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-false/fixture.ts", + "hash": "17639295221231736449" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-false/snapshots/1-TSESTree-AST.shot", + "hash": "6349964295386401669" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-false/snapshots/2-TSESTree-Tokens.shot", + "hash": "6900174432747821655" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-false/snapshots/3-Babel-AST.shot", + "hash": "15022177370786609775" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-false/snapshots/4-Babel-Tokens.shot", + "hash": "12213241446384402425" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-false/snapshots/5-AST-Alignment-AST.shot", + "hash": "1585960934920020100" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-false/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14767331736494796000" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-never/fixture.ts", + "hash": "13100970643025921430" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-never/snapshots/1-TSESTree-AST.shot", + "hash": "13874320184358626651" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-never/snapshots/2-TSESTree-Tokens.shot", + "hash": "2151962284614154469" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-never/snapshots/3-Babel-AST.shot", + "hash": "16082427095745383832" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-never/snapshots/4-Babel-Tokens.shot", + "hash": "13668611514597431549" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-never/snapshots/5-AST-Alignment-AST.shot", + "hash": "14901355739020516194" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-never/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10872253859765488761" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-null/fixture.ts", + "hash": "6949955004471062504" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-null/snapshots/1-TSESTree-AST.shot", + "hash": "11038709475677570461" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-null/snapshots/2-TSESTree-Tokens.shot", + "hash": "3508679007566583524" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-null/snapshots/3-Babel-AST.shot", + "hash": "2188408862087071875" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-null/snapshots/4-Babel-Tokens.shot", + "hash": "16567506773205182747" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-null/snapshots/5-AST-Alignment-AST.shot", + "hash": "16489832958238942394" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-null/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5633011274106537356" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-number/fixture.ts", + "hash": "4652619294907876277" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-number/snapshots/1-TSESTree-AST.shot", + "hash": "2156365932153266968" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-number/snapshots/2-TSESTree-Tokens.shot", + "hash": "6562304578889084366" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-number/snapshots/3-Babel-AST.shot", + "hash": "2662794189482997241" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-number/snapshots/4-Babel-Tokens.shot", + "hash": "4497482666609369249" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-number/snapshots/5-AST-Alignment-AST.shot", + "hash": "8376478682091952204" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-number/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15287630206530572273" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-object/fixture.ts", + "hash": "18375559617928637075" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-object/snapshots/1-TSESTree-AST.shot", + "hash": "1823070737619279971" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-object/snapshots/2-TSESTree-Tokens.shot", + "hash": "12599085984647909339" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-object/snapshots/3-Babel-AST.shot", + "hash": "6877394886682862359" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-object/snapshots/4-Babel-Tokens.shot", + "hash": "11977810332504518160" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-object/snapshots/5-AST-Alignment-AST.shot", + "hash": "7355985039224287634" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-object/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9022085935860198641" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-string/fixture.ts", + "hash": "17951851661479826392" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-string/snapshots/1-TSESTree-AST.shot", + "hash": "9207139079387498871" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-string/snapshots/2-TSESTree-Tokens.shot", + "hash": "6861822998427640990" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-string/snapshots/3-Babel-AST.shot", + "hash": "838618134397743706" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-string/snapshots/4-Babel-Tokens.shot", + "hash": "6913214060287613132" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-string/snapshots/5-AST-Alignment-AST.shot", + "hash": "13958030665897366266" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-string/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17539790788442407030" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-symbol/fixture.ts", + "hash": "16400975622751936023" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-symbol/snapshots/1-TSESTree-AST.shot", + "hash": "15113351993467947086" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-symbol/snapshots/2-TSESTree-Tokens.shot", + "hash": "10547588576894728538" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-symbol/snapshots/3-Babel-AST.shot", + "hash": "17772086363431545003" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-symbol/snapshots/4-Babel-Tokens.shot", + "hash": "4949757197242744922" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-symbol/snapshots/5-AST-Alignment-AST.shot", + "hash": "16279569722274597359" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-symbol/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2757607147933404668" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-true/fixture.ts", + "hash": "3880963293775956807" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-true/snapshots/1-TSESTree-AST.shot", + "hash": "12618114909160945764" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-true/snapshots/2-TSESTree-Tokens.shot", + "hash": "15369510404557343930" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-true/snapshots/3-Babel-AST.shot", + "hash": "1751638045323967888" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-true/snapshots/4-Babel-Tokens.shot", + "hash": "5384201489922447033" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-true/snapshots/5-AST-Alignment-AST.shot", + "hash": "16828484838799462364" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-true/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16127473580050922633" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-undefined/fixture.ts", + "hash": "17682507795748620498" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-undefined/snapshots/1-TSESTree-AST.shot", + "hash": "6999219618415032299" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-undefined/snapshots/2-TSESTree-Tokens.shot", + "hash": "792294817694374366" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-undefined/snapshots/3-Babel-AST.shot", + "hash": "12889919241546517454" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-undefined/snapshots/4-Babel-Tokens.shot", + "hash": "7422141364049019853" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-undefined/snapshots/5-AST-Alignment-AST.shot", + "hash": "14394204536621746274" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-undefined/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9453509422188488611" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-unknown/fixture.ts", + "hash": "1336699534759910428" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-unknown/snapshots/1-TSESTree-AST.shot", + "hash": "1896913200066567979" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-unknown/snapshots/2-TSESTree-Tokens.shot", + "hash": "5486513172137002782" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-unknown/snapshots/3-Babel-AST.shot", + "hash": "15311415146943576026" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-unknown/snapshots/4-Babel-Tokens.shot", + "hash": "15123819294313419310" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-unknown/snapshots/5-AST-Alignment-AST.shot", + "hash": "4569311568771339301" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-unknown/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7863320057755840286" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-void/fixture.ts", + "hash": "91705838495518772" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-void/snapshots/1-TSESTree-AST.shot", + "hash": "1258636146603916848" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-void/snapshots/2-TSESTree-Tokens.shot", + "hash": "7791280106920800250" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-void/snapshots/3-Babel-AST.shot", + "hash": "14395557568565272936" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-void/snapshots/4-Babel-Tokens.shot", + "hash": "6675733592089706462" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-void/snapshots/5-AST-Alignment-AST.shot", + "hash": "17826455981737348643" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-keyword-void/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14088613469493977434" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-method-signature/fixture.ts", + "hash": "4701598517295389856" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-method-signature/snapshots/1-TSESTree-AST.shot", + "hash": "11682038695801527729" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-method-signature/snapshots/2-TSESTree-Tokens.shot", + "hash": "10300991068299330319" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-method-signature/snapshots/3-Babel-AST.shot", + "hash": "9194609135775818287" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-method-signature/snapshots/4-Babel-Tokens.shot", + "hash": "9406262388508141551" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-method-signature/snapshots/5-AST-Alignment-AST.shot", + "hash": "3549846806438524915" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-method-signature/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4130848598248304773" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-this/fixture.ts", + "hash": "6102800617788717335" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-this/snapshots/1-TSESTree-AST.shot", + "hash": "2217458953925048082" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-this/snapshots/2-TSESTree-Tokens.shot", + "hash": "13046760167191690527" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-this/snapshots/3-Babel-AST.shot", + "hash": "2571533214205659092" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-this/snapshots/4-Babel-Tokens.shot", + "hash": "8594951536054069321" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-this/snapshots/5-AST-Alignment-AST.shot", + "hash": "12604263986362128320" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/typed-this/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3359313811981651996" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/union-intersection/fixture.ts", + "hash": "4714903279040224477" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/union-intersection/snapshots/1-TSESTree-AST.shot", + "hash": "11602251213536936452" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/union-intersection/snapshots/2-TSESTree-Tokens.shot", + "hash": "9754244395885333450" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/union-intersection/snapshots/3-Babel-AST.shot", + "hash": "11006950516285458593" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/union-intersection/snapshots/4-Babel-Tokens.shot", + "hash": "9102014720480718901" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/union-intersection/snapshots/5-AST-Alignment-AST.shot", + "hash": "7874463447366170388" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/union-intersection/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6328108994528399433" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unique-symbol/fixture.ts", + "hash": "4390507943131063172" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unique-symbol/snapshots/1-TSESTree-AST.shot", + "hash": "12193416167944912652" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unique-symbol/snapshots/2-TSESTree-Tokens.shot", + "hash": "10013199524416475491" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unique-symbol/snapshots/3-Babel-AST.shot", + "hash": "1657247058333704379" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unique-symbol/snapshots/4-Babel-Tokens.shot", + "hash": "8964409807771637936" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unique-symbol/snapshots/5-AST-Alignment-AST.shot", + "hash": "10874419510057115022" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unique-symbol/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8704792041823987983" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unknown-type-annotation/fixture.ts", + "hash": "10537036284634690298" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unknown-type-annotation/snapshots/1-TSESTree-AST.shot", + "hash": "11032068659200745524" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unknown-type-annotation/snapshots/2-TSESTree-Tokens.shot", + "hash": "3864280447676013262" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unknown-type-annotation/snapshots/3-Babel-AST.shot", + "hash": "4739363910955850712" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unknown-type-annotation/snapshots/4-Babel-Tokens.shot", + "hash": "659784235908674293" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unknown-type-annotation/snapshots/5-AST-Alignment-AST.shot", + "hash": "16942083296057215726" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/unknown-type-annotation/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16253302394786208546" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-dotted-type/fixture.ts", + "hash": "7241399746010992539" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-dotted-type/snapshots/1-TSESTree-AST.shot", + "hash": "10984128237330487823" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-dotted-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "3679887445918930966" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-dotted-type/snapshots/3-Babel-AST.shot", + "hash": "13339393954372613255" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-dotted-type/snapshots/4-Babel-Tokens.shot", + "hash": "128601921659936146" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-dotted-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "2970432559833058184" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-dotted-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14694735765047811803" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-type/fixture.ts", + "hash": "8793007118292308395" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-type/snapshots/1-TSESTree-AST.shot", + "hash": "8703668413377927746" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "8059375845600138303" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-type/snapshots/3-Babel-AST.shot", + "hash": "13163512886272913214" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-type/snapshots/4-Babel-Tokens.shot", + "hash": "15135466124670032209" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "14090074216267191217" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/var-with-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8186867627381346899" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/variable-declaration-type-annotation-spacing/fixture.ts", + "hash": "5303025902968475061" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/variable-declaration-type-annotation-spacing/snapshots/1-TSESTree-AST.shot", + "hash": "3933281374241174670" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/variable-declaration-type-annotation-spacing/snapshots/2-TSESTree-Tokens.shot", + "hash": "12234007154115319840" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/variable-declaration-type-annotation-spacing/snapshots/3-Babel-AST.shot", + "hash": "13164265030270763923" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/variable-declaration-type-annotation-spacing/snapshots/4-Babel-Tokens.shot", + "hash": "3802063280928457210" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/variable-declaration-type-annotation-spacing/snapshots/5-AST-Alignment-AST.shot", + "hash": "5748913140729838077" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/basics/fixtures/variable-declaration-type-annotation-spacing/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4027855540750574346" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator/fixture.ts", + "hash": "11228698437761678648" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator/snapshots/1-TSESTree-AST.shot", + "hash": "10263794042247736917" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator/snapshots/2-TSESTree-Tokens.shot", + "hash": "1813637507869821612" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator/snapshots/3-Babel-AST.shot", + "hash": "3292508263025397870" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator/snapshots/4-Babel-Tokens.shot", + "hash": "3588694952145234111" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator/snapshots/5-AST-Alignment-AST.shot", + "hash": "4693025321305000005" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14125630325455102384" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator-factory/fixture.ts", + "hash": "1572576742114067397" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator-factory/snapshots/1-TSESTree-AST.shot", + "hash": "3364674613865626522" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator-factory/snapshots/2-TSESTree-Tokens.shot", + "hash": "1960623491796363264" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator-factory/snapshots/3-Babel-AST.shot", + "hash": "9588032222761613402" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator-factory/snapshots/4-Babel-Tokens.shot", + "hash": "11113838274389406864" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator-factory/snapshots/5-AST-Alignment-AST.shot", + "hash": "11164527301666819384" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-decorator-factory/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2576985687709690629" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-parameter-property/fixture.ts", + "hash": "16639929821297346804" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-parameter-property/snapshots/1-TSESTree-AST.shot", + "hash": "434017003487119038" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-parameter-property/snapshots/2-TSESTree-Tokens.shot", + "hash": "15641389240096608517" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-parameter-property/snapshots/3-Babel-AST.shot", + "hash": "14362479815209047205" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-parameter-property/snapshots/4-Babel-Tokens.shot", + "hash": "12501749273253820792" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-parameter-property/snapshots/5-AST-Alignment-AST.shot", + "hash": "1131372241672880735" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/class-parameter-property/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6126564139924064209" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-default-class-decorator/fixture.ts", + "hash": "391660792738464981" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-default-class-decorator/snapshots/1-TSESTree-AST.shot", + "hash": "4435109391286716700" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-default-class-decorator/snapshots/2-TSESTree-Tokens.shot", + "hash": "17564804527033784041" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-default-class-decorator/snapshots/3-Babel-AST.shot", + "hash": "625136669257142802" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-default-class-decorator/snapshots/4-Babel-Tokens.shot", + "hash": "16700764895640264374" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-default-class-decorator/snapshots/5-AST-Alignment-AST.shot", + "hash": "17228779924083148745" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-default-class-decorator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4598025275052664531" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-named-class-decorator/fixture.ts", + "hash": "6974314389864630363" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-named-class-decorator/snapshots/1-TSESTree-AST.shot", + "hash": "8179161949185563009" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-named-class-decorator/snapshots/2-TSESTree-Tokens.shot", + "hash": "5539404171277660068" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-named-class-decorator/snapshots/3-Babel-AST.shot", + "hash": "13565947511909249422" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-named-class-decorator/snapshots/4-Babel-Tokens.shot", + "hash": "14650487064518799937" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-named-class-decorator/snapshots/5-AST-Alignment-AST.shot", + "hash": "12495580307747959884" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/class-decorators/fixtures/export-named-class-decorator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14787141441076556509" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/comments/fixtures/type-assertion-regression-test/fixture.ts", + "hash": "16862900801977955175" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/comments/fixtures/type-assertion-regression-test/snapshots/1-TSESTree-AST.shot", + "hash": "17690483639347478152" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/comments/fixtures/type-assertion-regression-test/snapshots/2-TSESTree-Tokens.shot", + "hash": "3686854333191278975" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/comments/fixtures/type-assertion-regression-test/snapshots/3-Babel-AST.shot", + "hash": "8533016906052053704" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/comments/fixtures/type-assertion-regression-test/snapshots/4-Babel-Tokens.shot", + "hash": "9206085914798616329" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/comments/fixtures/type-assertion-regression-test/snapshots/5-AST-Alignment-AST.shot", + "hash": "7401324564770433978" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/comments/fixtures/type-assertion-regression-test/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17284597142051431031" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/abstract-class/fixture.ts", + "hash": "14312934712108674120" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/abstract-class/snapshots/1-TSESTree-AST.shot", + "hash": "17903585804075681637" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/abstract-class/snapshots/2-TSESTree-Tokens.shot", + "hash": "9022932957531075271" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/abstract-class/snapshots/3-Babel-AST.shot", + "hash": "4779736889242468602" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/abstract-class/snapshots/4-Babel-Tokens.shot", + "hash": "3871925086200305785" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/abstract-class/snapshots/5-AST-Alignment-AST.shot", + "hash": "15827367760827821555" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/abstract-class/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15805035121090911195" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/class/fixture.ts", + "hash": "8342315802459967813" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/class/snapshots/1-TSESTree-AST.shot", + "hash": "6706032798337047397" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/class/snapshots/2-TSESTree-Tokens.shot", + "hash": "11763687605229360665" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/class/snapshots/3-Babel-AST.shot", + "hash": "17269825186628890634" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/class/snapshots/4-Babel-Tokens.shot", + "hash": "3592351781655157636" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/class/snapshots/5-AST-Alignment-AST.shot", + "hash": "1901207912629638504" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/class/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5315161646368320782" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/enum/fixture.ts", + "hash": "2943239611688561683" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/enum/snapshots/1-TSESTree-AST.shot", + "hash": "9016422400859672319" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/enum/snapshots/2-TSESTree-Tokens.shot", + "hash": "16119064211167181021" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/enum/snapshots/3-Babel-AST.shot", + "hash": "8265884057759940969" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/enum/snapshots/4-Babel-Tokens.shot", + "hash": "9290124965908671531" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/enum/snapshots/5-AST-Alignment-AST.shot", + "hash": "1991371888995957487" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/enum/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11987871879983843587" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/function/fixture.ts", + "hash": "12212444269446005902" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/function/snapshots/1-TSESTree-AST.shot", + "hash": "2890595912288307771" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/function/snapshots/2-TSESTree-Tokens.shot", + "hash": "14100651433937093524" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/function/snapshots/3-Babel-AST.shot", + "hash": "11954139249439462997" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/function/snapshots/4-Babel-Tokens.shot", + "hash": "16451064406079474158" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/function/snapshots/5-AST-Alignment-AST.shot", + "hash": "17646749949616209339" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14648610606888283016" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/interface/fixture.ts", + "hash": "13023501382963269285" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/interface/snapshots/1-TSESTree-AST.shot", + "hash": "6478833159551021079" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/interface/snapshots/2-TSESTree-Tokens.shot", + "hash": "16924234289885954111" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/interface/snapshots/3-Babel-AST.shot", + "hash": "3036966180632555100" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/interface/snapshots/4-Babel-Tokens.shot", + "hash": "2191604117158262997" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/interface/snapshots/5-AST-Alignment-AST.shot", + "hash": "12942835333640294106" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/interface/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13341694663955492648" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/module/fixture.ts", + "hash": "9140831854774148899" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/module/snapshots/1-TSESTree-AST.shot", + "hash": "2107458669735818620" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/module/snapshots/2-TSESTree-Tokens.shot", + "hash": "6595666380217464630" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/module/snapshots/3-Babel-AST.shot", + "hash": "2945241644228333978" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/module/snapshots/4-Babel-Tokens.shot", + "hash": "10188950354917585056" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/module/snapshots/5-AST-Alignment-AST.shot", + "hash": "15992130363608879385" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/module/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1887921052864092548" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/namespace/fixture.ts", + "hash": "15664484348368336330" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/namespace/snapshots/1-Babel-AST.shot", + "hash": "2087376317962376271" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/namespace/snapshots/1-TSESTree-AST.shot", + "hash": "15787976216085518088" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/namespace/snapshots/2-Babel-Tokens.shot", + "hash": "9227091071810944778" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/namespace/snapshots/2-TSESTree-Tokens.shot", + "hash": "16877455013875881841" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/namespace/snapshots/3-Babel-AST.shot", + "hash": "3860916567658992424" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/namespace/snapshots/4-Babel-Tokens.shot", + "hash": "852088272550547349" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/namespace/snapshots/5-AST-Alignment-AST.shot", + "hash": "5424067488891354152" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/namespace/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7297467864035120393" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/type-alias/fixture.ts", + "hash": "3204368997463308912" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/type-alias/snapshots/1-TSESTree-AST.shot", + "hash": "6026356715748116522" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/type-alias/snapshots/2-TSESTree-Tokens.shot", + "hash": "9995176110228935313" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/type-alias/snapshots/3-Babel-AST.shot", + "hash": "12385927513829627616" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/type-alias/snapshots/4-Babel-Tokens.shot", + "hash": "15730511257940769651" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/type-alias/snapshots/5-AST-Alignment-AST.shot", + "hash": "15260934007589063310" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/type-alias/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12265108588769008695" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/variable/fixture.ts", + "hash": "1110122179264912762" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/variable/snapshots/1-TSESTree-AST.shot", + "hash": "4635553364439245581" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/variable/snapshots/2-TSESTree-Tokens.shot", + "hash": "3300539935103822755" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/variable/snapshots/3-Babel-AST.shot", + "hash": "3779381531017397410" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/variable/snapshots/4-Babel-Tokens.shot", + "hash": "7098235569558515375" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/variable/snapshots/5-AST-Alignment-AST.shot", + "hash": "611688257600563982" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/declare/fixtures/variable/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "831442327994885845" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends/fixture.ts", + "hash": "9310838700948483585" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends/snapshots/1-Babel-Error.shot", + "hash": "6068411895329698978" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends/snapshots/1-TSESTree-Error.shot", + "hash": "10976433842926296809" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends/snapshots/2-Alignment-Error.shot", + "hash": "18127092767518879391" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends/snapshots/2-Babel-Error.shot", + "hash": "6068411895329698978" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends/snapshots/3-Alignment-Error.shot", + "hash": "946786657891002010" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends-implements/fixture.ts", + "hash": "16586342916612580357" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends-implements/snapshots/1-Babel-Error.shot", + "hash": "3114521429534865367" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends-implements/snapshots/1-TSESTree-Error.shot", + "hash": "14591620611504018745" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends-implements/snapshots/2-Alignment-Error.shot", + "hash": "10891457572293893678" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends-implements/snapshots/2-Babel-Error.shot", + "hash": "3114521429534865367" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-empty-extends-implements/snapshots/3-Alignment-Error.shot", + "hash": "4416979410951406752" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-extends-empty-implements/fixture.ts", + "hash": "9070095162299985850" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-extends-empty-implements/snapshots/1-Babel-Error.shot", + "hash": "9587226574252366062" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-extends-empty-implements/snapshots/1-TSESTree-Error.shot", + "hash": "17099489266297868971" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-extends-empty-implements/snapshots/2-Alignment-Error.shot", + "hash": "205116129346320051" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-extends-empty-implements/snapshots/2-Babel-Error.shot", + "hash": "9587226574252366062" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-extends-empty-implements/snapshots/3-Alignment-Error.shot", + "hash": "12284307948176886846" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-multiple-implements/fixture.ts", + "hash": "3912538438249902916" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-multiple-implements/snapshots/1-Babel-Error.shot", + "hash": "14858236433474639649" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-multiple-implements/snapshots/1-TSESTree-Error.shot", + "hash": "13632745619568193475" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-multiple-implements/snapshots/2-Alignment-Error.shot", + "hash": "932914182921898925" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-multiple-implements/snapshots/2-Babel-Error.shot", + "hash": "14858236433474639649" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/class-multiple-implements/snapshots/3-Alignment-Error.shot", + "hash": "11820468827929333966" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-enum-declaration/fixture.ts", + "hash": "52172610425941963" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-enum-declaration/snapshots/1-Babel-Error.shot", + "hash": "7512508036382947113" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-enum-declaration/snapshots/1-TSESTree-Error.shot", + "hash": "4736096083239318300" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-enum-declaration/snapshots/2-Alignment-Error.shot", + "hash": "13992179981975411004" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-enum-declaration/snapshots/2-Babel-Error.shot", + "hash": "7512508036382947113" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-enum-declaration/snapshots/3-Alignment-Error.shot", + "hash": "14631797159381494606" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-function/fixture.ts", + "hash": "10189871444428885506" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-function/snapshots/1-Babel-Error.shot", + "hash": "12516634482515468331" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-function/snapshots/1-TSESTree-Error.shot", + "hash": "9500409732043624403" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-function/snapshots/2-Alignment-Error.shot", + "hash": "16240857817074871931" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-function/snapshots/2-Babel-Error.shot", + "hash": "12516634482515468331" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-function/snapshots/3-Alignment-Error.shot", + "hash": "428249745009667267" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-interface-declaration/fixture.ts", + "hash": "7496971687904373588" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-interface-declaration/snapshots/1-Babel-Error.shot", + "hash": "2199643571864047068" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-interface-declaration/snapshots/1-TSESTree-Error.shot", + "hash": "6442986907950421046" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-interface-declaration/snapshots/2-Alignment-Error.shot", + "hash": "5984011462241684340" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-interface-declaration/snapshots/2-Babel-Error.shot", + "hash": "2199643571864047068" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-interface-declaration/snapshots/3-Alignment-Error.shot", + "hash": "14221094330691090277" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-variable/fixture.ts", + "hash": "1807157154077181980" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-variable/snapshots/1-Babel-Error.shot", + "hash": "1245918022124920968" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-variable/snapshots/1-TSESTree-Error.shot", + "hash": "3976075375248524003" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-variable/snapshots/2-Alignment-Error.shot", + "hash": "14645256988533838257" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-variable/snapshots/2-Babel-Error.shot", + "hash": "1245918022124920968" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/decorator-on-variable/snapshots/3-Alignment-Error.shot", + "hash": "8679268106557110795" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments/fixture.ts", + "hash": "8617573271815602964" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments/snapshots/1-Babel-Error.shot", + "hash": "3460204049234054799" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments/snapshots/1-TSESTree-Error.shot", + "hash": "6325629401320073865" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments/snapshots/2-Alignment-Error.shot", + "hash": "4059418183494898152" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments/snapshots/2-Babel-Error.shot", + "hash": "3460204049234054799" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments/snapshots/3-Alignment-Error.shot", + "hash": "4059418183494898152" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-call-expression/fixture.ts", + "hash": "5566972521711818596" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-call-expression/snapshots/1-Babel-Error.shot", + "hash": "9365300185580617902" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-call-expression/snapshots/1-TSESTree-Error.shot", + "hash": "4959614133025923979" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-call-expression/snapshots/2-Alignment-Error.shot", + "hash": "11745333217181214658" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-call-expression/snapshots/2-Babel-Error.shot", + "hash": "9365300185580617902" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-call-expression/snapshots/3-Alignment-Error.shot", + "hash": "11745333217181214658" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-new-expression/fixture.ts", + "hash": "1521380990230290121" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-new-expression/snapshots/1-Babel-Error.shot", + "hash": "11977101656510787212" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-new-expression/snapshots/1-TSESTree-Error.shot", + "hash": "14594691665620094170" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-new-expression/snapshots/2-Alignment-Error.shot", + "hash": "5883577454619231153" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-new-expression/snapshots/2-Babel-Error.shot", + "hash": "11977101656510787212" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-arguments-in-new-expression/snapshots/3-Alignment-Error.shot", + "hash": "5883577454619231153" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters/fixture.ts", + "hash": "9896058036882501239" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters/snapshots/1-Babel-Error.shot", + "hash": "13342999936625213294" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters/snapshots/1-TSESTree-Error.shot", + "hash": "9777474102828153105" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters/snapshots/2-Alignment-Error.shot", + "hash": "18319462639513614196" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters/snapshots/2-Babel-Error.shot", + "hash": "13342999936625213294" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters/snapshots/3-Alignment-Error.shot", + "hash": "18319462639513614196" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-arrow-function/fixture.ts", + "hash": "9896058036882501239" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-arrow-function/snapshots/1-Babel-Error.shot", + "hash": "17356807049040588330" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-arrow-function/snapshots/1-TSESTree-Error.shot", + "hash": "5093214961867063714" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-arrow-function/snapshots/2-Alignment-Error.shot", + "hash": "2035456979090833129" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-arrow-function/snapshots/2-Babel-Error.shot", + "hash": "17356807049040588330" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-arrow-function/snapshots/3-Alignment-Error.shot", + "hash": "2035456979090833129" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-constructor/fixture.ts", + "hash": "16163129502754064942" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-constructor/snapshots/1-Babel-Error.shot", + "hash": "7863818563108212168" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-constructor/snapshots/1-TSESTree-Error.shot", + "hash": "7533799339111216670" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-constructor/snapshots/2-Alignment-Error.shot", + "hash": "6435771054148936616" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-constructor/snapshots/2-Babel-Error.shot", + "hash": "7863818563108212168" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-constructor/snapshots/3-Alignment-Error.shot", + "hash": "6435771054148936616" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-function-expression/fixture.ts", + "hash": "10062566841284416254" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-function-expression/snapshots/1-Babel-Error.shot", + "hash": "16932699182375538638" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-function-expression/snapshots/1-TSESTree-Error.shot", + "hash": "8224710898132917313" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-function-expression/snapshots/2-Alignment-Error.shot", + "hash": "2698714320272496334" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-function-expression/snapshots/2-Babel-Error.shot", + "hash": "16932699182375538638" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-function-expression/snapshots/3-Alignment-Error.shot", + "hash": "2698714320272496334" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method/fixture.ts", + "hash": "13633622305863801931" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method/snapshots/1-Babel-Error.shot", + "hash": "17658244325006071817" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method/snapshots/1-TSESTree-Error.shot", + "hash": "13526978248982116406" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method/snapshots/2-Alignment-Error.shot", + "hash": "14748910405487825791" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method/snapshots/2-Babel-Error.shot", + "hash": "17658244325006071817" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method/snapshots/3-Alignment-Error.shot", + "hash": "14748910405487825791" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method-signature/fixture.ts", + "hash": "243656591825403015" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method-signature/snapshots/1-Babel-Error.shot", + "hash": "15478328833681418147" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method-signature/snapshots/1-TSESTree-Error.shot", + "hash": "12462607042983910035" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method-signature/snapshots/2-Alignment-Error.shot", + "hash": "7350838654006178066" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method-signature/snapshots/2-Babel-Error.shot", + "hash": "15478328833681418147" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/empty-type-parameters-in-method-signature/snapshots/3-Alignment-Error.shot", + "hash": "7350838654006178066" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/enum-with-keywords/fixture.ts", + "hash": "5018690977402889543" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/enum-with-keywords/snapshots/1-Babel-Error.shot", + "hash": "3789437655062311672" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/enum-with-keywords/snapshots/1-TSESTree-Error.shot", + "hash": "12730406029701911858" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/enum-with-keywords/snapshots/2-Alignment-Error.shot", + "hash": "15664127570179642660" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/enum-with-keywords/snapshots/2-Babel-Error.shot", + "hash": "3789437655062311672" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/enum-with-keywords/snapshots/3-Alignment-Error.shot", + "hash": "13924198192894412284" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/index-signature-parameters/fixture.ts", + "hash": "1961942565648265932" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/index-signature-parameters/snapshots/1-Babel-Error.shot", + "hash": "6867893563012510412" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/index-signature-parameters/snapshots/1-TSESTree-Error.shot", + "hash": "17188217625519308701" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/index-signature-parameters/snapshots/2-Alignment-Error.shot", + "hash": "151003423852064029" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/index-signature-parameters/snapshots/2-Babel-Error.shot", + "hash": "6867893563012510412" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/index-signature-parameters/snapshots/3-Alignment-Error.shot", + "hash": "151003423852064029" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-empty-extends/fixture.ts", + "hash": "16770104359336478809" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-empty-extends/snapshots/1-Babel-Error.shot", + "hash": "15446178156720865897" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-empty-extends/snapshots/1-TSESTree-Error.shot", + "hash": "17243672701314732255" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-empty-extends/snapshots/2-Alignment-Error.shot", + "hash": "8578707696457033101" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-empty-extends/snapshots/2-Babel-Error.shot", + "hash": "15446178156720865897" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-empty-extends/snapshots/3-Alignment-Error.shot", + "hash": "8578707696457033101" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-implements/fixture.ts", + "hash": "2849505164472362939" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-implements/snapshots/1-Babel-Error.shot", + "hash": "5139179426764763756" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-implements/snapshots/1-TSESTree-Error.shot", + "hash": "18309789199203734411" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-implements/snapshots/2-Alignment-Error.shot", + "hash": "1241751133871975538" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-implements/snapshots/2-Babel-Error.shot", + "hash": "5139179426764763756" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-implements/snapshots/3-Alignment-Error.shot", + "hash": "10447348165038640037" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-export/fixture.ts", + "hash": "2556564605866052944" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-export/snapshots/1-Babel-Error.shot", + "hash": "16619467089662514557" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-export/snapshots/1-TSESTree-Error.shot", + "hash": "9693188941452934523" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-export/snapshots/2-Alignment-Error.shot", + "hash": "6669705514756280776" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-export/snapshots/2-Babel-Error.shot", + "hash": "16619467089662514557" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-export/snapshots/3-Alignment-Error.shot", + "hash": "8998800449173485367" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-private/fixture.ts", + "hash": "2036338813605641298" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-private/snapshots/1-Babel-Error.shot", + "hash": "2869560456667460266" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-private/snapshots/1-TSESTree-Error.shot", + "hash": "12644398864320690718" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-private/snapshots/2-Alignment-Error.shot", + "hash": "8163181426978282721" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-private/snapshots/2-Babel-Error.shot", + "hash": "2869560456667460266" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-private/snapshots/3-Alignment-Error.shot", + "hash": "1630763015880506316" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-protected/fixture.ts", + "hash": "5686253433577830132" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-protected/snapshots/1-Babel-Error.shot", + "hash": "17959787908389079018" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-protected/snapshots/1-TSESTree-Error.shot", + "hash": "6463383052992778620" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-protected/snapshots/2-Alignment-Error.shot", + "hash": "7087054754453465064" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-protected/snapshots/2-Babel-Error.shot", + "hash": "17959787908389079018" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-protected/snapshots/3-Alignment-Error.shot", + "hash": "529651893077152432" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-public/fixture.ts", + "hash": "3253867524877639432" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-public/snapshots/1-Babel-Error.shot", + "hash": "2280525460329483181" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-public/snapshots/1-TSESTree-Error.shot", + "hash": "16341041936535955583" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-public/snapshots/2-Alignment-Error.shot", + "hash": "4576716093302716132" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-public/snapshots/2-Babel-Error.shot", + "hash": "2280525460329483181" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-public/snapshots/3-Alignment-Error.shot", + "hash": "4445737798011522340" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-static/fixture.ts", + "hash": "1947787278198280124" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-static/snapshots/1-Babel-Error.shot", + "hash": "5011630652196445786" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-static/snapshots/1-TSESTree-Error.shot", + "hash": "11618449730257357541" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-static/snapshots/2-Alignment-Error.shot", + "hash": "10118982835883864001" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-static/snapshots/2-Babel-Error.shot", + "hash": "5011630652196445786" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-index-signature-static/snapshots/3-Alignment-Error.shot", + "hash": "123209875081908413" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-export/fixture.ts", + "hash": "16540177406578210849" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-export/snapshots/1-Babel-Error.shot", + "hash": "13030694134130717133" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-export/snapshots/1-TSESTree-Error.shot", + "hash": "16007415455277161662" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-export/snapshots/2-Alignment-Error.shot", + "hash": "9541536887517956664" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-export/snapshots/2-Babel-Error.shot", + "hash": "13030694134130717133" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-export/snapshots/3-Alignment-Error.shot", + "hash": "7252271556244993596" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-private/fixture.ts", + "hash": "4293107896249142915" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-private/snapshots/1-Babel-Error.shot", + "hash": "970894097299622442" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-private/snapshots/1-TSESTree-Error.shot", + "hash": "13293871089236075344" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-private/snapshots/2-Alignment-Error.shot", + "hash": "8265123392081187023" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-private/snapshots/2-Babel-Error.shot", + "hash": "970894097299622442" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-private/snapshots/3-Alignment-Error.shot", + "hash": "3853636014437666449" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-protected/fixture.ts", + "hash": "16357032062948385301" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-protected/snapshots/1-Babel-Error.shot", + "hash": "7607920844753756510" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-protected/snapshots/1-TSESTree-Error.shot", + "hash": "11113005118980528002" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-protected/snapshots/2-Alignment-Error.shot", + "hash": "5743458011149643877" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-protected/snapshots/2-Babel-Error.shot", + "hash": "7607920844753756510" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-protected/snapshots/3-Alignment-Error.shot", + "hash": "8956993730823513380" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-public/fixture.ts", + "hash": "17454578385016379806" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-public/snapshots/1-Babel-Error.shot", + "hash": "1690751357599318982" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-public/snapshots/1-TSESTree-Error.shot", + "hash": "5478466568086416050" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-public/snapshots/2-Alignment-Error.shot", + "hash": "14786107053820958876" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-public/snapshots/2-Babel-Error.shot", + "hash": "1690751357599318982" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-public/snapshots/3-Alignment-Error.shot", + "hash": "11980288080713144192" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-readonly/fixture.ts", + "hash": "9049005146858643998" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-readonly/snapshots/1-Babel-Error.shot", + "hash": "13987612398726903843" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-readonly/snapshots/1-TSESTree-Error.shot", + "hash": "7560176547425756335" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-readonly/snapshots/2-Alignment-Error.shot", + "hash": "12125655611645259698" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-readonly/snapshots/2-Babel-Error.shot", + "hash": "13987612398726903843" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-readonly/snapshots/3-Alignment-Error.shot", + "hash": "12389374003736798078" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-static/fixture.ts", + "hash": "1953830016384058259" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-static/snapshots/1-Babel-Error.shot", + "hash": "5838448620847208454" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-static/snapshots/1-TSESTree-Error.shot", + "hash": "16625899829046691081" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-static/snapshots/2-Alignment-Error.shot", + "hash": "14093117132148268035" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-static/snapshots/2-Babel-Error.shot", + "hash": "5838448620847208454" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-method-static/snapshots/3-Alignment-Error.shot", + "hash": "4447243806130798299" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-multiple-extends/fixture.ts", + "hash": "5135862584943708498" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-multiple-extends/snapshots/1-Babel-Error.shot", + "hash": "12510539796768753673" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-multiple-extends/snapshots/1-TSESTree-Error.shot", + "hash": "15071950222177900239" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-multiple-extends/snapshots/2-Alignment-Error.shot", + "hash": "16274243128106343174" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-multiple-extends/snapshots/2-Babel-Error.shot", + "hash": "12510539796768753673" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-multiple-extends/snapshots/3-Alignment-Error.shot", + "hash": "16274243128106343174" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-export/fixture.ts", + "hash": "6749275691006219933" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-export/snapshots/1-Babel-Error.shot", + "hash": "1821356316684837981" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-export/snapshots/1-TSESTree-Error.shot", + "hash": "9587902666145740578" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-export/snapshots/2-Alignment-Error.shot", + "hash": "1666268361078388401" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-export/snapshots/2-Babel-Error.shot", + "hash": "1821356316684837981" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-export/snapshots/3-Alignment-Error.shot", + "hash": "16533419571169571448" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-private/fixture.ts", + "hash": "7290725938212762280" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-private/snapshots/1-Babel-Error.shot", + "hash": "16160081475407565788" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-private/snapshots/1-TSESTree-Error.shot", + "hash": "11596780467121115757" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-private/snapshots/2-Alignment-Error.shot", + "hash": "13835330104515059839" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-private/snapshots/2-Babel-Error.shot", + "hash": "16160081475407565788" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-private/snapshots/3-Alignment-Error.shot", + "hash": "15500240023428593960" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-protected/fixture.ts", + "hash": "13758341306989326134" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-protected/snapshots/1-Babel-Error.shot", + "hash": "5465779735066050529" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-protected/snapshots/1-TSESTree-Error.shot", + "hash": "14848123500165971061" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-protected/snapshots/2-Alignment-Error.shot", + "hash": "8537160610419017103" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-protected/snapshots/2-Babel-Error.shot", + "hash": "5465779735066050529" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-protected/snapshots/3-Alignment-Error.shot", + "hash": "14383535852535692885" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-public/fixture.ts", + "hash": "5100560971844679439" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-public/snapshots/1-Babel-Error.shot", + "hash": "18132464446461770241" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-public/snapshots/1-TSESTree-Error.shot", + "hash": "8206813396451360459" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-public/snapshots/2-Alignment-Error.shot", + "hash": "3419622491571295535" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-public/snapshots/2-Babel-Error.shot", + "hash": "18132464446461770241" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-public/snapshots/3-Alignment-Error.shot", + "hash": "16405875596537073541" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-static/fixture.ts", + "hash": "8620990706992812873" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-static/snapshots/1-Babel-Error.shot", + "hash": "13580341003005627920" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-static/snapshots/1-TSESTree-Error.shot", + "hash": "2686967922331397512" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-static/snapshots/2-Alignment-Error.shot", + "hash": "17785559073468259389" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-static/snapshots/2-Babel-Error.shot", + "hash": "13580341003005627920" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-static/snapshots/3-Alignment-Error.shot", + "hash": "759468275971776161" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-with-default-value/fixture.ts", + "hash": "4472419272551202817" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-with-default-value/snapshots/1-Babel-Error.shot", + "hash": "18421921539455068164" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-with-default-value/snapshots/1-TSESTree-Error.shot", + "hash": "11414895254455808917" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-with-default-value/snapshots/2-Alignment-Error.shot", + "hash": "504693584878690612" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-with-default-value/snapshots/2-Babel-Error.shot", + "hash": "18421921539455068164" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-property-with-default-value/snapshots/3-Alignment-Error.shot", + "hash": "15692252255608568116" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-no-body/fixture.ts", + "hash": "2867111632835118376" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-no-body/snapshots/1-Babel-Error.shot", + "hash": "6331625501796641347" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-no-body/snapshots/1-TSESTree-Error.shot", + "hash": "1500800581982430500" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-no-body/snapshots/2-Alignment-Error.shot", + "hash": "12500395162568139736" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-no-body/snapshots/2-Babel-Error.shot", + "hash": "6331625501796641347" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-no-body/snapshots/3-Alignment-Error.shot", + "hash": "12500395162568139736" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-optional-index-signature/fixture.ts", + "hash": "3864174937172606093" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-optional-index-signature/snapshots/1-Babel-Error.shot", + "hash": "841718074846833527" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-optional-index-signature/snapshots/1-TSESTree-Error.shot", + "hash": "4309061710432833482" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-optional-index-signature/snapshots/2-Alignment-Error.shot", + "hash": "12129374305879727992" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-optional-index-signature/snapshots/2-Babel-Error.shot", + "hash": "841718074846833527" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/interface-with-optional-index-signature/snapshots/3-Alignment-Error.shot", + "hash": "12129374305879727992" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-assertion-not-allowed/fixture.ts", + "hash": "9233065859784035136" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-assertion-not-allowed/snapshots/1-Babel-Error.shot", + "hash": "13861408547053330502" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-assertion-not-allowed/snapshots/1-TSESTree-Error.shot", + "hash": "15898899440037177022" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-assertion-not-allowed/snapshots/2-Alignment-Error.shot", + "hash": "769052598643815262" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-assertion-not-allowed/snapshots/2-Babel-Error.shot", + "hash": "13861408547053330502" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-assertion-not-allowed/snapshots/3-Alignment-Error.shot", + "hash": "9221046724387712947" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-optional-not-allowed/fixture.ts", + "hash": "11790725618758819289" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-optional-not-allowed/snapshots/1-Babel-Error.shot", + "hash": "1705959100917202743" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-optional-not-allowed/snapshots/1-TSESTree-Error.shot", + "hash": "15831915511551496580" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-optional-not-allowed/snapshots/2-Alignment-Error.shot", + "hash": "3206467924478514812" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-optional-not-allowed/snapshots/2-Babel-Error.shot", + "hash": "1705959100917202743" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/object-optional-not-allowed/snapshots/3-Alignment-Error.shot", + "hash": "371975004495141556" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/solo-const/fixture.ts", + "hash": "5357612195598009693" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/solo-const/snapshots/1-Babel-Error.shot", + "hash": "9901910354106084489" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/solo-const/snapshots/1-TSESTree-Error.shot", + "hash": "17384206870645854755" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/solo-const/snapshots/2-Alignment-Error.shot", + "hash": "16555579801370555870" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/solo-const/snapshots/2-Babel-Error.shot", + "hash": "9901910354106084489" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/errorRecovery/fixtures/_error_/solo-const/snapshots/3-Alignment-Error.shot", + "hash": "9586141871236396404" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/_error_/instantiation-expression/fixture.ts", + "hash": "6178034154108602345" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/_error_/instantiation-expression/snapshots/1-Babel-Error.shot", + "hash": "12812651976349896481" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/_error_/instantiation-expression/snapshots/1-TSESTree-Error.shot", + "hash": "11049767670992073775" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/_error_/instantiation-expression/snapshots/2-Alignment-Error.shot", + "hash": "11630260357466421001" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/_error_/instantiation-expression/snapshots/2-Babel-Error.shot", + "hash": "12812651976349896481" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/_error_/instantiation-expression/snapshots/3-Alignment-Error.shot", + "hash": "11630260357466421001" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/call-expression-type-arguments/fixture.ts", + "hash": "17845772218712195108" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/call-expression-type-arguments/snapshots/1-TSESTree-AST.shot", + "hash": "1746337746645194754" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/call-expression-type-arguments/snapshots/2-TSESTree-Tokens.shot", + "hash": "1374090199757354993" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/call-expression-type-arguments/snapshots/3-Babel-AST.shot", + "hash": "16490542973391347375" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/call-expression-type-arguments/snapshots/4-Babel-Tokens.shot", + "hash": "4502969063730788944" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/call-expression-type-arguments/snapshots/5-AST-Alignment-AST.shot", + "hash": "9454846385900542265" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/call-expression-type-arguments/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17624325491999660220" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/new-expression-type-arguments/fixture.ts", + "hash": "14819054087086019146" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/new-expression-type-arguments/snapshots/1-TSESTree-AST.shot", + "hash": "4302202474604131739" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/new-expression-type-arguments/snapshots/2-TSESTree-Tokens.shot", + "hash": "16684521136344790464" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/new-expression-type-arguments/snapshots/3-Babel-AST.shot", + "hash": "6782493392087886689" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/new-expression-type-arguments/snapshots/4-Babel-Tokens.shot", + "hash": "1705009503907304480" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/new-expression-type-arguments/snapshots/5-AST-Alignment-AST.shot", + "hash": "5372626250419736138" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/new-expression-type-arguments/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16883215496508451603" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/optional-call-expression-type-arguments/fixture.ts", + "hash": "1919375547668762753" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/optional-call-expression-type-arguments/snapshots/1-TSESTree-AST.shot", + "hash": "11931473465826207281" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/optional-call-expression-type-arguments/snapshots/2-TSESTree-Tokens.shot", + "hash": "10916080254312193584" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/optional-call-expression-type-arguments/snapshots/3-Babel-AST.shot", + "hash": "13880179578029626707" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/optional-call-expression-type-arguments/snapshots/4-Babel-Tokens.shot", + "hash": "11492817892872607339" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/optional-call-expression-type-arguments/snapshots/5-AST-Alignment-AST.shot", + "hash": "10375907531011131989" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/optional-call-expression-type-arguments/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13510767251847353794" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/tagged-template-expression-type-arguments/fixture.ts", + "hash": "15440727614261768977" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/tagged-template-expression-type-arguments/snapshots/1-TSESTree-AST.shot", + "hash": "17228218323786984344" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/tagged-template-expression-type-arguments/snapshots/2-TSESTree-Tokens.shot", + "hash": "6832434846356058499" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/tagged-template-expression-type-arguments/snapshots/3-Babel-AST.shot", + "hash": "6474502495433226592" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/tagged-template-expression-type-arguments/snapshots/4-Babel-Tokens.shot", + "hash": "17846525345223667559" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/tagged-template-expression-type-arguments/snapshots/5-AST-Alignment-AST.shot", + "hash": "16628929720567954107" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/expressions/fixtures/tagged-template-expression-type-arguments/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5879483713467742720" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-instance-member/fixture.ts", + "hash": "9740547193628267685" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-instance-member/snapshots/1-TSESTree-AST.shot", + "hash": "4442173536727917887" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-instance-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "11571359064079110281" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-instance-member/snapshots/3-Babel-AST.shot", + "hash": "12928179928071920810" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-instance-member/snapshots/4-Babel-Tokens.shot", + "hash": "2489885871359064540" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-instance-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "10767792089139376394" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-instance-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13462511467299158532" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-static-member/fixture.ts", + "hash": "3371107473668759974" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-static-member/snapshots/1-TSESTree-AST.shot", + "hash": "1634688585115418910" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-static-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "12151305182926275544" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-static-member/snapshots/3-Babel-AST.shot", + "hash": "271767717692061394" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-static-member/snapshots/4-Babel-Tokens.shot", + "hash": "15025394378971226365" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-static-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "11774679518559557682" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-factory-static-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "600077260578075382" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-instance-member/fixture.ts", + "hash": "16706887846005205423" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-instance-member/snapshots/1-TSESTree-AST.shot", + "hash": "17581405926104102402" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-instance-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "9673712664094310254" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-instance-member/snapshots/3-Babel-AST.shot", + "hash": "10389129859173622198" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-instance-member/snapshots/4-Babel-Tokens.shot", + "hash": "16344471525994568708" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-instance-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "6702427051640501729" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-instance-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9488005740764514803" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-static-member/fixture.ts", + "hash": "7601629244190530165" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-static-member/snapshots/1-TSESTree-AST.shot", + "hash": "16417393339038133764" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-static-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "16016928111480081648" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-static-member/snapshots/3-Babel-AST.shot", + "hash": "5929923832793879193" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-static-member/snapshots/4-Babel-Tokens.shot", + "hash": "5890151966661415434" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-static-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "4465728268887401134" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/method-decorators/fixtures/method-decorator-static-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8873220160117136670" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/ambient-module-declaration-with-import/fixture.ts", + "hash": "1047265866899610639", + "deps": ["npm:fs"] + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/ambient-module-declaration-with-import/snapshots/1-TSESTree-AST.shot", + "hash": "14037460990417029346" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/ambient-module-declaration-with-import/snapshots/2-TSESTree-Tokens.shot", + "hash": "14591563542923419333" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/ambient-module-declaration-with-import/snapshots/3-Babel-AST.shot", + "hash": "5213008346677199332" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/ambient-module-declaration-with-import/snapshots/4-Babel-Tokens.shot", + "hash": "8461523434944942081" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/ambient-module-declaration-with-import/snapshots/5-AST-Alignment-AST.shot", + "hash": "8863869278466799365" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/ambient-module-declaration-with-import/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9911890900570368852" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/declare-namespace-with-exported-function/fixture.ts", + "hash": "11545665107385593465" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/declare-namespace-with-exported-function/snapshots/1-Babel-AST.shot", + "hash": "5829267608213172559" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/declare-namespace-with-exported-function/snapshots/1-TSESTree-AST.shot", + "hash": "15740370452081426795" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/declare-namespace-with-exported-function/snapshots/2-Babel-Tokens.shot", + "hash": "9149308189027323795" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/declare-namespace-with-exported-function/snapshots/2-TSESTree-Tokens.shot", + "hash": "12927167336873704458" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/declare-namespace-with-exported-function/snapshots/3-Babel-AST.shot", + "hash": "2749761455456671695" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/declare-namespace-with-exported-function/snapshots/4-Babel-Tokens.shot", + "hash": "8110764021681954681" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/declare-namespace-with-exported-function/snapshots/5-AST-Alignment-AST.shot", + "hash": "1181941529294152472" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/declare-namespace-with-exported-function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14696468405704207848" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/global-module-declaration/fixture.ts", + "hash": "3794037451696464126" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/global-module-declaration/snapshots/1-Babel-AST.shot", + "hash": "4249195820764652627" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/global-module-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "2818670184391872417" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/global-module-declaration/snapshots/2-Babel-Tokens.shot", + "hash": "14345545015659353316" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/global-module-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "6104741151223964978" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/global-module-declaration/snapshots/3-Babel-AST.shot", + "hash": "1358993271200012885" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/global-module-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "16027174346149961570" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/global-module-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "8073645186107105233" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/global-module-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3167340367981122477" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/module-with-default-exports/fixture.ts", + "hash": "14516860950026039061" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/module-with-default-exports/snapshots/1-TSESTree-AST.shot", + "hash": "1305412930397740711" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/module-with-default-exports/snapshots/2-TSESTree-Tokens.shot", + "hash": "13978024754256935014" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/module-with-default-exports/snapshots/3-Babel-AST.shot", + "hash": "12468296380003967395" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/module-with-default-exports/snapshots/4-Babel-Tokens.shot", + "hash": "15742051741709348942" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/module-with-default-exports/snapshots/5-AST-Alignment-AST.shot", + "hash": "12084514345520027318" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/module-with-default-exports/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "72597890819676369" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/nested-internal-module/fixture.ts", + "hash": "1640236234173673287" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/nested-internal-module/snapshots/1-TSESTree-AST.shot", + "hash": "2187820039517563025" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/nested-internal-module/snapshots/2-TSESTree-Tokens.shot", + "hash": "1310937015443839072" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/nested-internal-module/snapshots/3-Babel-AST.shot", + "hash": "16113466022450088972" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/nested-internal-module/snapshots/4-Babel-Tokens.shot", + "hash": "5095382171856667540" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/nested-internal-module/snapshots/5-AST-Alignment-AST.shot", + "hash": "5764779083547939596" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/nested-internal-module/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1051569472512848014" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/shorthand-ambient-module-declaration/fixture.ts", + "hash": "18403230134787213699" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/shorthand-ambient-module-declaration/snapshots/1-TSESTree-AST.shot", + "hash": "9479984243148783937" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/shorthand-ambient-module-declaration/snapshots/2-TSESTree-Tokens.shot", + "hash": "5716050743887638072" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/shorthand-ambient-module-declaration/snapshots/3-Babel-AST.shot", + "hash": "1713922831843363275" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/shorthand-ambient-module-declaration/snapshots/4-Babel-Tokens.shot", + "hash": "7151115670531637914" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/shorthand-ambient-module-declaration/snapshots/5-AST-Alignment-AST.shot", + "hash": "7874668033830888177" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/namespaces-and-modules/fixtures/shorthand-ambient-module-declaration/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14213597845003610410" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-array-pattern-decorator/fixture.ts", + "hash": "8249294199019218500" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-array-pattern-decorator/snapshots/1-Babel-Error.shot", + "hash": "10075180941619670140" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-array-pattern-decorator/snapshots/1-TSESTree-Error.shot", + "hash": "13004558250209688165" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-array-pattern-decorator/snapshots/2-Alignment-Error.shot", + "hash": "14570932067927441423" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-array-pattern-decorator/snapshots/2-Babel-Error.shot", + "hash": "10075180941619670140" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-array-pattern-decorator/snapshots/3-Alignment-Error.shot", + "hash": "14570932067927441423" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-rest-element-decorator/fixture.ts", + "hash": "9443034953686272057" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-rest-element-decorator/snapshots/1-Babel-Error.shot", + "hash": "6070923548992172051" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-rest-element-decorator/snapshots/1-TSESTree-Error.shot", + "hash": "6841331236845345633" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-rest-element-decorator/snapshots/2-Alignment-Error.shot", + "hash": "1194879327385813842" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-rest-element-decorator/snapshots/2-Babel-Error.shot", + "hash": "6070923548992172051" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/_error_/parameter-rest-element-decorator/snapshots/3-Alignment-Error.shot", + "hash": "1194879327385813842" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-constructor/fixture.ts", + "hash": "12473951690216649612" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-constructor/snapshots/1-TSESTree-AST.shot", + "hash": "437596646001459825" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-constructor/snapshots/2-TSESTree-Tokens.shot", + "hash": "12605444440004092544" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-constructor/snapshots/3-Babel-AST.shot", + "hash": "10951641876264633113" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-constructor/snapshots/4-Babel-Tokens.shot", + "hash": "17794740189601000293" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-constructor/snapshots/5-AST-Alignment-AST.shot", + "hash": "8747007778706703121" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-constructor/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10948232971844723259" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-instance-member/fixture.ts", + "hash": "578396952845663531" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-instance-member/snapshots/1-TSESTree-AST.shot", + "hash": "16363699887692384663" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-instance-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "17179242292653108283" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-instance-member/snapshots/3-Babel-AST.shot", + "hash": "14409102639054167272" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-instance-member/snapshots/4-Babel-Tokens.shot", + "hash": "15644289729823151277" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-instance-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "15093052960100267823" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-instance-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17604390591413657612" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-static-member/fixture.ts", + "hash": "2645251194872976490" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-static-member/snapshots/1-TSESTree-AST.shot", + "hash": "9004655160059423283" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-static-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "2385271437947354678" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-static-member/snapshots/3-Babel-AST.shot", + "hash": "11939204685137870579" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-static-member/snapshots/4-Babel-Tokens.shot", + "hash": "9679022431786189085" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-static-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "9991991075235822832" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-decorator-static-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8352328266920130161" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-instance-member/fixture.ts", + "hash": "9446971864267386716" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-instance-member/snapshots/1-TSESTree-AST.shot", + "hash": "3501401284696279129" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-instance-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "5933954221881928455" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-instance-member/snapshots/3-Babel-AST.shot", + "hash": "16884848347633289308" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-instance-member/snapshots/4-Babel-Tokens.shot", + "hash": "12635072190551851845" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-instance-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "16904603550434602401" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-instance-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "796887948540576840" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-static-member/fixture.ts", + "hash": "9003335340817931637" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-static-member/snapshots/1-TSESTree-AST.shot", + "hash": "4754661961783991796" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-static-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "14136441120683712439" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-static-member/snapshots/3-Babel-AST.shot", + "hash": "11946310643624098196" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-static-member/snapshots/4-Babel-Tokens.shot", + "hash": "13612898866807341350" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-static-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "13466500376134939094" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-decorator-static-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14963385731155068478" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-object-pattern-decorator/fixture.ts", + "hash": "8368533104576343170" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-object-pattern-decorator/snapshots/1-TSESTree-AST.shot", + "hash": "12186163064308598512" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-object-pattern-decorator/snapshots/2-TSESTree-Tokens.shot", + "hash": "16163247246246165645" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-object-pattern-decorator/snapshots/3-Babel-AST.shot", + "hash": "16174015109115174486" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-object-pattern-decorator/snapshots/4-Babel-Tokens.shot", + "hash": "13233731769464736596" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-object-pattern-decorator/snapshots/5-AST-Alignment-AST.shot", + "hash": "9633315240864463637" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/parameter-decorators/fixtures/parameter-object-pattern-decorator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7270849268629913305" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-instance-member/fixture.ts", + "hash": "7380837585583985623" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-instance-member/snapshots/1-TSESTree-AST.shot", + "hash": "344442269450299815" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-instance-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "18185506215514650947" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-instance-member/snapshots/3-Babel-AST.shot", + "hash": "3279363621418825410" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-instance-member/snapshots/4-Babel-Tokens.shot", + "hash": "24237088287544162" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-instance-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "13520911525483407280" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-instance-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4940827593997814254" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-static-member/fixture.ts", + "hash": "12903507885142097393" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-static-member/snapshots/1-TSESTree-AST.shot", + "hash": "1107303553092098078" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-static-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "10730816352757143574" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-static-member/snapshots/3-Babel-AST.shot", + "hash": "5859406563276616909" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-static-member/snapshots/4-Babel-Tokens.shot", + "hash": "7769017241113376678" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-static-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "3101913603240241590" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-factory-static-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16319288408646393610" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-instance-member/fixture.ts", + "hash": "2752019202076227260" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-instance-member/snapshots/1-TSESTree-AST.shot", + "hash": "5899480731318455653" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-instance-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "2841833183819445105" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-instance-member/snapshots/3-Babel-AST.shot", + "hash": "5818312294996295741" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-instance-member/snapshots/4-Babel-Tokens.shot", + "hash": "5339634736286025801" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-instance-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "3868398910653244017" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-instance-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7953057646340365315" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-static-member/fixture.ts", + "hash": "6167107554489138420" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-static-member/snapshots/1-TSESTree-AST.shot", + "hash": "9777403539246266387" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-static-member/snapshots/2-TSESTree-Tokens.shot", + "hash": "6823087410643353736" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-static-member/snapshots/3-Babel-AST.shot", + "hash": "11383861920899043560" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-static-member/snapshots/4-Babel-Tokens.shot", + "hash": "14722809699323297090" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-static-member/snapshots/5-AST-Alignment-AST.shot", + "hash": "17103050006357643830" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/property-decorators/fixtures/property-decorator-static-member/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5957871974649169842" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/array-type/fixture.ts", + "hash": "13980557618300461421" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/array-type/snapshots/1-TSESTree-AST.shot", + "hash": "1975004323627421893" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/array-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "9748415172011550978" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/array-type/snapshots/3-Babel-AST.shot", + "hash": "11609004041068254806" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/array-type/snapshots/4-Babel-Tokens.shot", + "hash": "5490493676222353326" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/array-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "3477270360330701265" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/array-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15936097697253748329" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional/fixture.ts", + "hash": "310995916220967818" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional/snapshots/1-TSESTree-AST.shot", + "hash": "2477219662607764351" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional/snapshots/2-TSESTree-Tokens.shot", + "hash": "7579052361142319533" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional/snapshots/3-Babel-AST.shot", + "hash": "130998727448921708" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional/snapshots/4-Babel-Tokens.shot", + "hash": "8081388182279832441" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional/snapshots/5-AST-Alignment-AST.shot", + "hash": "15401240111580418044" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8496747738339469805" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer/fixture.ts", + "hash": "17846455002163018363" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer/snapshots/1-TSESTree-AST.shot", + "hash": "705680877765842920" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer/snapshots/2-TSESTree-Tokens.shot", + "hash": "9511007505877160638" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer/snapshots/3-Babel-AST.shot", + "hash": "2430587549349814692" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer/snapshots/4-Babel-Tokens.shot", + "hash": "9955758440085690464" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer/snapshots/5-AST-Alignment-AST.shot", + "hash": "524585685956193508" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5543451350190125534" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-nested/fixture.ts", + "hash": "7719254977414909212" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-nested/snapshots/1-TSESTree-AST.shot", + "hash": "14735826457535532453" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-nested/snapshots/2-TSESTree-Tokens.shot", + "hash": "8172230387876315585" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-nested/snapshots/3-Babel-AST.shot", + "hash": "15033991380534150912" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-nested/snapshots/4-Babel-Tokens.shot", + "hash": "384545609851151163" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-nested/snapshots/5-AST-Alignment-AST.shot", + "hash": "10125755069664016497" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-nested/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6092837180180841536" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-simple/fixture.ts", + "hash": "357395708846152150" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-simple/snapshots/1-TSESTree-AST.shot", + "hash": "2863406285759820529" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-simple/snapshots/2-TSESTree-Tokens.shot", + "hash": "13451533583201192465" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-simple/snapshots/3-Babel-AST.shot", + "hash": "193501765522595170" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-simple/snapshots/4-Babel-Tokens.shot", + "hash": "6114805973958940593" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-simple/snapshots/5-AST-Alignment-AST.shot", + "hash": "13840315036252078617" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-simple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3531835428926717018" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-with-constraint/fixture.ts", + "hash": "17256636332118503626" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-with-constraint/snapshots/1-TSESTree-AST.shot", + "hash": "11097007261084861781" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-with-constraint/snapshots/2-TSESTree-Tokens.shot", + "hash": "3912429952621173212" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-with-constraint/snapshots/3-Babel-AST.shot", + "hash": "8742625954545481234" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-with-constraint/snapshots/4-Babel-Tokens.shot", + "hash": "5445285624866890582" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-with-constraint/snapshots/5-AST-Alignment-AST.shot", + "hash": "16041094188456960469" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-infer-with-constraint/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "501943025628670793" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-with-null/fixture.ts", + "hash": "7176274879775847922" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-with-null/snapshots/1-TSESTree-AST.shot", + "hash": "13016954153978600508" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-with-null/snapshots/2-TSESTree-Tokens.shot", + "hash": "18385788326317843564" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-with-null/snapshots/3-Babel-AST.shot", + "hash": "12612439181056198514" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-with-null/snapshots/4-Babel-Tokens.shot", + "hash": "16492968013823120960" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-with-null/snapshots/5-AST-Alignment-AST.shot", + "hash": "3236029506629781972" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/conditional-with-null/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "564786311546284592" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor/fixture.ts", + "hash": "16161030895041819782" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor/snapshots/1-TSESTree-AST.shot", + "hash": "9778141998914021449" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor/snapshots/2-TSESTree-Tokens.shot", + "hash": "2310807177172177603" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor/snapshots/3-Babel-AST.shot", + "hash": "13224836123929783043" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor/snapshots/4-Babel-Tokens.shot", + "hash": "926699636684541739" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor/snapshots/5-AST-Alignment-AST.shot", + "hash": "11337926547687986197" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5384211206618369267" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-abstract/fixture.ts", + "hash": "18025597345088084959" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-abstract/snapshots/1-TSESTree-AST.shot", + "hash": "5031259949825287122" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-abstract/snapshots/2-TSESTree-Tokens.shot", + "hash": "17758781974617817377" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-abstract/snapshots/3-Babel-AST.shot", + "hash": "711851246644816120" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-abstract/snapshots/4-Babel-Tokens.shot", + "hash": "5025679039317328276" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-abstract/snapshots/5-AST-Alignment-AST.shot", + "hash": "2591711046601026877" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-abstract/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10556249340792640357" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-empty/fixture.ts", + "hash": "5554423858782824104" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-empty/snapshots/1-TSESTree-AST.shot", + "hash": "6374564837538203462" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-empty/snapshots/2-TSESTree-Tokens.shot", + "hash": "270115079820436326" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-empty/snapshots/3-Babel-AST.shot", + "hash": "2382513636705088183" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-empty/snapshots/4-Babel-Tokens.shot", + "hash": "11458097701023102805" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-empty/snapshots/5-AST-Alignment-AST.shot", + "hash": "5300875313685996078" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-empty/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15113669737725890939" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-generic/fixture.ts", + "hash": "796292804099804494" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-generic/snapshots/1-TSESTree-AST.shot", + "hash": "12481490562162330412" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "4161863620822829390" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-generic/snapshots/3-Babel-AST.shot", + "hash": "10174164118651789279" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-generic/snapshots/4-Babel-Tokens.shot", + "hash": "6822638633330368808" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "6153487747050808262" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17168291725838949235" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-in-generic/fixture.ts", + "hash": "2092054503961830634" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-in-generic/snapshots/1-TSESTree-AST.shot", + "hash": "9304414717052086388" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-in-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "12575355662929351507" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-in-generic/snapshots/3-Babel-AST.shot", + "hash": "7826915986910503349" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-in-generic/snapshots/4-Babel-Tokens.shot", + "hash": "4723811546098224399" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-in-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "15909065130396304415" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-in-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7465963468770337906" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-with-rest/fixture.ts", + "hash": "8366180798899762842" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-with-rest/snapshots/1-TSESTree-AST.shot", + "hash": "7338481190510672759" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-with-rest/snapshots/2-TSESTree-Tokens.shot", + "hash": "5022351346631527254" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-with-rest/snapshots/3-Babel-AST.shot", + "hash": "7971347347785359516" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-with-rest/snapshots/4-Babel-Tokens.shot", + "hash": "13589711477980522772" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-with-rest/snapshots/5-AST-Alignment-AST.shot", + "hash": "11124354062009147787" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/constructor-with-rest/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17918743553734430791" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function/fixture.ts", + "hash": "1845036758051769971" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function/snapshots/1-TSESTree-AST.shot", + "hash": "8509190507772746264" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function/snapshots/2-TSESTree-Tokens.shot", + "hash": "7132646817678960424" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function/snapshots/3-Babel-AST.shot", + "hash": "1193750400274586743" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function/snapshots/4-Babel-Tokens.shot", + "hash": "5965039456606514502" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function/snapshots/5-AST-Alignment-AST.shot", + "hash": "12559887219559970504" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15626885742790409244" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-generic/fixture.ts", + "hash": "12783569260452520856" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-generic/snapshots/1-TSESTree-AST.shot", + "hash": "7385459713055054866" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "2565173656672088961" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-generic/snapshots/3-Babel-AST.shot", + "hash": "2604669329074722579" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-generic/snapshots/4-Babel-Tokens.shot", + "hash": "9532536851275753522" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "1738272145449184111" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14561873898624476945" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-in-generic/fixture.ts", + "hash": "13408770460877039302" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-in-generic/snapshots/1-TSESTree-AST.shot", + "hash": "18154506160436618732" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-in-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "10023321123259166748" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-in-generic/snapshots/3-Babel-AST.shot", + "hash": "15229635910600457707" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-in-generic/snapshots/4-Babel-Tokens.shot", + "hash": "13091151268761822833" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-in-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "14104445331866777571" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-in-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5216330830830844617" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-array-destruction/fixture.ts", + "hash": "8230248695315358579" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-array-destruction/snapshots/1-TSESTree-AST.shot", + "hash": "4789505972133070326" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-array-destruction/snapshots/2-TSESTree-Tokens.shot", + "hash": "3048210633165988518" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-array-destruction/snapshots/3-Babel-AST.shot", + "hash": "5005196463430637264" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-array-destruction/snapshots/4-Babel-Tokens.shot", + "hash": "7115213303578876366" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-array-destruction/snapshots/5-AST-Alignment-AST.shot", + "hash": "246335255369539204" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-array-destruction/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10470367480584828679" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-object-destruction/fixture.ts", + "hash": "12869611220593169823" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-object-destruction/snapshots/1-TSESTree-AST.shot", + "hash": "15353004464065990735" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-object-destruction/snapshots/2-TSESTree-Tokens.shot", + "hash": "10776690943226622109" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-object-destruction/snapshots/3-Babel-AST.shot", + "hash": "9247235781348475103" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-object-destruction/snapshots/4-Babel-Tokens.shot", + "hash": "12277302092833273857" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-object-destruction/snapshots/5-AST-Alignment-AST.shot", + "hash": "10456390763006236792" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-object-destruction/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11787400856470963441" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-rest/fixture.ts", + "hash": "12357984920524109864" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-rest/snapshots/1-TSESTree-AST.shot", + "hash": "2717532645575393472" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-rest/snapshots/2-TSESTree-Tokens.shot", + "hash": "8181399606988690220" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-rest/snapshots/3-Babel-AST.shot", + "hash": "12769077927985570242" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-rest/snapshots/4-Babel-Tokens.shot", + "hash": "2719696751673114614" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-rest/snapshots/5-AST-Alignment-AST.shot", + "hash": "11788887814425585130" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-rest/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7297045645159090272" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-this/fixture.ts", + "hash": "12513490187950944267" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-this/snapshots/1-TSESTree-AST.shot", + "hash": "18081977625567023527" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-this/snapshots/2-TSESTree-Tokens.shot", + "hash": "995965837515302385" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-this/snapshots/3-Babel-AST.shot", + "hash": "5123017361752296827" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-this/snapshots/4-Babel-Tokens.shot", + "hash": "13594680981602958591" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-this/snapshots/5-AST-Alignment-AST.shot", + "hash": "13069316893906684167" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/function-with-this/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11620094250946544201" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature/fixture.ts", + "hash": "60258403234970678" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature/snapshots/1-TSESTree-AST.shot", + "hash": "14737938467461433104" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature/snapshots/2-TSESTree-Tokens.shot", + "hash": "14586591261766098059" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature/snapshots/3-Babel-AST.shot", + "hash": "11298460184887850124" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature/snapshots/4-Babel-Tokens.shot", + "hash": "9585054286017334424" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature/snapshots/5-AST-Alignment-AST.shot", + "hash": "1513626645161871212" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2767235347863032038" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-readonly/fixture.ts", + "hash": "14320816856240980796" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-readonly/snapshots/1-TSESTree-AST.shot", + "hash": "4756433391051881594" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-readonly/snapshots/2-TSESTree-Tokens.shot", + "hash": "1831978946481367758" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-readonly/snapshots/3-Babel-AST.shot", + "hash": "3471965801396264960" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-readonly/snapshots/4-Babel-Tokens.shot", + "hash": "6173811632937437390" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-readonly/snapshots/5-AST-Alignment-AST.shot", + "hash": "15088453712937682292" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-readonly/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10374110755256394729" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-without-type/fixture.ts", + "hash": "10255986828935697952" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-without-type/snapshots/1-TSESTree-AST.shot", + "hash": "6548098948383067985" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-without-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "10019127525827432109" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-without-type/snapshots/3-Babel-AST.shot", + "hash": "2347251707144847575" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-without-type/snapshots/4-Babel-Tokens.shot", + "hash": "15728845019368141514" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-without-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "257252497278665048" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/index-signature-without-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12307044795562916983" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/indexed/fixture.ts", + "hash": "8655516564867240980" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/indexed/snapshots/1-TSESTree-AST.shot", + "hash": "14946914692241523296" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/indexed/snapshots/2-TSESTree-Tokens.shot", + "hash": "9044670262305713287" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/indexed/snapshots/3-Babel-AST.shot", + "hash": "4086301731502773063" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/indexed/snapshots/4-Babel-Tokens.shot", + "hash": "5332334765168902439" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/indexed/snapshots/5-AST-Alignment-AST.shot", + "hash": "11650210091890891982" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/indexed/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16429804342392639064" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/interface-with-accessors/fixture.ts", + "hash": "1279862076432784298" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/interface-with-accessors/snapshots/1-TSESTree-AST.shot", + "hash": "4626486705916476425" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/interface-with-accessors/snapshots/2-TSESTree-Tokens.shot", + "hash": "8648103841058600049" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/interface-with-accessors/snapshots/3-Babel-AST.shot", + "hash": "1867343724675743357" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/interface-with-accessors/snapshots/4-Babel-Tokens.shot", + "hash": "13521424902089341230" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/interface-with-accessors/snapshots/5-AST-Alignment-AST.shot", + "hash": "14374536347473715138" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/interface-with-accessors/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16588696177336999888" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/intersection-type/fixture.ts", + "hash": "879353245436924129" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/intersection-type/snapshots/1-TSESTree-AST.shot", + "hash": "15910200422283127686" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/intersection-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "12639390379558398514" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/intersection-type/snapshots/3-Babel-AST.shot", + "hash": "13619243492488730082" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/intersection-type/snapshots/4-Babel-Tokens.shot", + "hash": "3362772868509122039" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/intersection-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "17325980318011263413" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/intersection-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7041173998755193482" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number/fixture.ts", + "hash": "42654277533259735" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number/snapshots/1-TSESTree-AST.shot", + "hash": "14178861151475304058" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number/snapshots/2-TSESTree-Tokens.shot", + "hash": "9179123031750236417" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number/snapshots/3-Babel-AST.shot", + "hash": "15660040873855770868" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number/snapshots/4-Babel-Tokens.shot", + "hash": "15337050701082110909" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number/snapshots/5-AST-Alignment-AST.shot", + "hash": "13528022979280066709" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12881571224650523971" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number-negative/fixture.ts", + "hash": "5959195323463114743" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number-negative/snapshots/1-TSESTree-AST.shot", + "hash": "9536036992245082053" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number-negative/snapshots/2-TSESTree-Tokens.shot", + "hash": "18443198788087308809" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number-negative/snapshots/3-Babel-AST.shot", + "hash": "4686619165728950181" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number-negative/snapshots/4-Babel-Tokens.shot", + "hash": "6349594266503554239" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number-negative/snapshots/5-AST-Alignment-AST.shot", + "hash": "12782712892347295990" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-number-negative/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5304217742107361898" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-string/fixture.ts", + "hash": "9487767761745270984" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-string/snapshots/1-TSESTree-AST.shot", + "hash": "13683457679938058516" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-string/snapshots/2-TSESTree-Tokens.shot", + "hash": "6512114035151647501" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-string/snapshots/3-Babel-AST.shot", + "hash": "4749703132213374058" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-string/snapshots/4-Babel-Tokens.shot", + "hash": "17431581010085544281" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-string/snapshots/5-AST-Alignment-AST.shot", + "hash": "15260660458328922558" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/literal-string/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6344763409443293772" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped/fixture.ts", + "hash": "7496164410217572834" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped/snapshots/1-TSESTree-AST.shot", + "hash": "8735795156711658484" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped/snapshots/2-TSESTree-Tokens.shot", + "hash": "13045764535494250422" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped/snapshots/3-Babel-AST.shot", + "hash": "227602797256218368" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped/snapshots/4-Babel-Tokens.shot", + "hash": "8663920959928637690" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped/snapshots/5-AST-Alignment-AST.shot", + "hash": "16848963557400482924" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15081599099016382745" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-named-type/fixture.ts", + "hash": "1980417132551615656" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-named-type/snapshots/1-TSESTree-AST.shot", + "hash": "13713968825780939709" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-named-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "12631815746691180736" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-named-type/snapshots/3-Babel-AST.shot", + "hash": "8257398462184777703" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-named-type/snapshots/4-Babel-Tokens.shot", + "hash": "2139555091981825510" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-named-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "10867629324032752290" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-named-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "6302966544337554267" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly/fixture.ts", + "hash": "5335158065060050274" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly/snapshots/1-TSESTree-AST.shot", + "hash": "10633637212710095225" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly/snapshots/2-TSESTree-Tokens.shot", + "hash": "8289053204906355447" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly/snapshots/3-Babel-AST.shot", + "hash": "16885712892363020073" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly/snapshots/4-Babel-Tokens.shot", + "hash": "4002728669546278246" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly/snapshots/5-AST-Alignment-AST.shot", + "hash": "2116138483785513316" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14124818715895978000" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-minus/fixture.ts", + "hash": "10724795010496774670" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-minus/snapshots/1-TSESTree-AST.shot", + "hash": "2363704068009680366" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-minus/snapshots/2-TSESTree-Tokens.shot", + "hash": "15670438225467287357" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-minus/snapshots/3-Babel-AST.shot", + "hash": "15791345853632226053" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-minus/snapshots/4-Babel-Tokens.shot", + "hash": "17307479601011062186" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-minus/snapshots/5-AST-Alignment-AST.shot", + "hash": "7156878737433228445" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-minus/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8116778461370522917" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-plus/fixture.ts", + "hash": "7954130475013786580" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-plus/snapshots/1-TSESTree-AST.shot", + "hash": "17348644251567365137" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-plus/snapshots/2-TSESTree-Tokens.shot", + "hash": "2487134201888914943" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-plus/snapshots/3-Babel-AST.shot", + "hash": "5565559987892004553" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-plus/snapshots/4-Babel-Tokens.shot", + "hash": "13377746776734104592" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-plus/snapshots/5-AST-Alignment-AST.shot", + "hash": "11392440047512000875" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-readonly-plus/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "15243758929894505262" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-untypped/fixture.ts", + "hash": "6922030920086240257" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-untypped/snapshots/1-TSESTree-AST.shot", + "hash": "621650667107835666" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-untypped/snapshots/2-TSESTree-Tokens.shot", + "hash": "11777799484252216734" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-untypped/snapshots/3-Babel-AST.shot", + "hash": "8255184069317141784" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-untypped/snapshots/4-Babel-Tokens.shot", + "hash": "13451188608667577055" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-untypped/snapshots/5-AST-Alignment-AST.shot", + "hash": "8266877988613665362" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/mapped-untypped/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14625928173676470018" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/nested-types/fixture.ts", + "hash": "6409751156598196431" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/nested-types/snapshots/1-TSESTree-AST.shot", + "hash": "7189393539642999272" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/nested-types/snapshots/2-TSESTree-Tokens.shot", + "hash": "13424193643608533225" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/nested-types/snapshots/3-Babel-AST.shot", + "hash": "1287841382524797020" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/nested-types/snapshots/4-Babel-Tokens.shot", + "hash": "11756444025592787052" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/nested-types/snapshots/5-AST-Alignment-AST.shot", + "hash": "15959300348321186368" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/nested-types/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7673999631014601975" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/object-literal-type-with-accessors/fixture.ts", + "hash": "16767106144991061925" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/object-literal-type-with-accessors/snapshots/1-TSESTree-AST.shot", + "hash": "902025748165174018" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/object-literal-type-with-accessors/snapshots/2-TSESTree-Tokens.shot", + "hash": "7622304038696677208" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/object-literal-type-with-accessors/snapshots/3-Babel-AST.shot", + "hash": "12228782493942583969" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/object-literal-type-with-accessors/snapshots/4-Babel-Tokens.shot", + "hash": "1381206210047334423" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/object-literal-type-with-accessors/snapshots/5-AST-Alignment-AST.shot", + "hash": "15568431356779565107" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/object-literal-type-with-accessors/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10817126250579248731" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in/fixture.ts", + "hash": "11729032350998431272" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in/snapshots/1-TSESTree-AST.shot", + "hash": "17889164754539209605" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in/snapshots/2-TSESTree-Tokens.shot", + "hash": "4481912560765164508" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in/snapshots/3-Babel-AST.shot", + "hash": "10645203033616630258" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in/snapshots/4-Babel-Tokens.shot", + "hash": "3099116587070584659" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in/snapshots/5-AST-Alignment-AST.shot", + "hash": "13644513382437041629" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11450573530408859921" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-and-out/fixture.ts", + "hash": "2990846445073983163" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-and-out/snapshots/1-TSESTree-AST.shot", + "hash": "14766782400218471418" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-and-out/snapshots/2-TSESTree-Tokens.shot", + "hash": "5146777564669750239" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-and-out/snapshots/3-Babel-AST.shot", + "hash": "2112989114616329730" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-and-out/snapshots/4-Babel-Tokens.shot", + "hash": "16456486512513372646" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-and-out/snapshots/5-AST-Alignment-AST.shot", + "hash": "10202313921487890737" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-and-out/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9409455280813937405" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-out/fixture.ts", + "hash": "17047333884490591029" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-out/snapshots/1-TSESTree-AST.shot", + "hash": "6052801515433373270" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-out/snapshots/2-TSESTree-Tokens.shot", + "hash": "3047790846587232057" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-out/snapshots/3-Babel-AST.shot", + "hash": "5462061104327366600" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-out/snapshots/4-Babel-Tokens.shot", + "hash": "11984139286136260724" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-out/snapshots/5-AST-Alignment-AST.shot", + "hash": "14925620793184013013" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-in-out/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16331083877100218124" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-out/fixture.ts", + "hash": "16513569187950021605" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-out/snapshots/1-TSESTree-AST.shot", + "hash": "16077128084212710434" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-out/snapshots/2-TSESTree-Tokens.shot", + "hash": "3504055014212879548" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-out/snapshots/3-Babel-AST.shot", + "hash": "17857004697465139042" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-out/snapshots/4-Babel-Tokens.shot", + "hash": "2831519606456950817" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-out/snapshots/5-AST-Alignment-AST.shot", + "hash": "18181404006233899056" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/optional-variance-out/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16227261309603474407" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/parenthesized-type/fixture.ts", + "hash": "17777817556702845473" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/parenthesized-type/snapshots/1-TSESTree-AST.shot", + "hash": "17708055199716565641" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/parenthesized-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "11722402669873834417" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/parenthesized-type/snapshots/3-Babel-AST.shot", + "hash": "8670757729219680190" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/parenthesized-type/snapshots/4-Babel-Tokens.shot", + "hash": "8300116490819729987" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/parenthesized-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "9610309793223207260" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/parenthesized-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1424161488808749684" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference/fixture.ts", + "hash": "5671103817684563092" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference/snapshots/1-TSESTree-AST.shot", + "hash": "463986409658565122" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference/snapshots/2-TSESTree-Tokens.shot", + "hash": "5804216868171278452" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference/snapshots/3-Babel-AST.shot", + "hash": "12568211904567378556" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference/snapshots/4-Babel-Tokens.shot", + "hash": "9517310036464342114" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference/snapshots/5-AST-Alignment-AST.shot", + "hash": "6184329336952147216" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2999213381884931425" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic/fixture.ts", + "hash": "996967093781437107" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic/snapshots/1-TSESTree-AST.shot", + "hash": "15751844343535245129" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic/snapshots/2-TSESTree-Tokens.shot", + "hash": "11833788867957086879" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic/snapshots/3-Babel-AST.shot", + "hash": "2212299254659825046" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic/snapshots/4-Babel-Tokens.shot", + "hash": "10550729511285842975" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic/snapshots/5-AST-Alignment-AST.shot", + "hash": "9684906579692059413" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17455251282079749160" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic-nested/fixture.ts", + "hash": "165768906513179629" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic-nested/snapshots/1-TSESTree-AST.shot", + "hash": "2966670269074675126" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic-nested/snapshots/2-TSESTree-Tokens.shot", + "hash": "16297052538209267595" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic-nested/snapshots/3-Babel-AST.shot", + "hash": "13729812076021049494" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic-nested/snapshots/4-Babel-Tokens.shot", + "hash": "15201369184064158823" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic-nested/snapshots/5-AST-Alignment-AST.shot", + "hash": "4043735665682536009" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/reference-generic-nested/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10793195462160303148" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-1/fixture.ts", + "hash": "2452031525126845777" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-1/snapshots/1-TSESTree-AST.shot", + "hash": "16553688640782247081" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-1/snapshots/2-TSESTree-Tokens.shot", + "hash": "2920408013383077861" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-1/snapshots/3-Babel-AST.shot", + "hash": "13119818935431076352" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-1/snapshots/4-Babel-Tokens.shot", + "hash": "18045710288356619777" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-1/snapshots/5-AST-Alignment-AST.shot", + "hash": "5756964792266918819" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-1/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7945406502965135613" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-2/fixture.ts", + "hash": "14946808687354078853" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-2/snapshots/1-TSESTree-AST.shot", + "hash": "6982657908465696572" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-2/snapshots/2-TSESTree-Tokens.shot", + "hash": "3781532673248277630" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-2/snapshots/3-Babel-AST.shot", + "hash": "18227106753022808446" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-2/snapshots/4-Babel-Tokens.shot", + "hash": "14426451531133862251" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-2/snapshots/5-AST-Alignment-AST.shot", + "hash": "11102141745190329035" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-2/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11428663683939270167" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-3/fixture.ts", + "hash": "5453744561367229872" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-3/snapshots/1-TSESTree-AST.shot", + "hash": "17722646381547654147" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-3/snapshots/2-TSESTree-Tokens.shot", + "hash": "13714829163168921396" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-3/snapshots/3-Babel-AST.shot", + "hash": "11831629406725906098" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-3/snapshots/4-Babel-Tokens.shot", + "hash": "15610520204451759433" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-3/snapshots/5-AST-Alignment-AST.shot", + "hash": "13108642523313390785" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-3/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8684459640434684658" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-4/fixture.ts", + "hash": "8994331020477896748" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-4/snapshots/1-TSESTree-AST.shot", + "hash": "16302583195205613585" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-4/snapshots/2-TSESTree-Tokens.shot", + "hash": "1873710035418188706" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-4/snapshots/3-Babel-AST.shot", + "hash": "1336099362740316130" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-4/snapshots/4-Babel-Tokens.shot", + "hash": "14531845217507406584" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-4/snapshots/5-AST-Alignment-AST.shot", + "hash": "8315099892045396763" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/template-literal-type-4/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9755859492279619654" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type/fixture.ts", + "hash": "6565289087882900691" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type/snapshots/1-TSESTree-AST.shot", + "hash": "2546776256580031547" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "10587939502166790245" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type/snapshots/3-Babel-AST.shot", + "hash": "11383748778215574936" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type/snapshots/4-Babel-Tokens.shot", + "hash": "1361039686109611459" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "7642737589264819091" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16644093563234731052" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type-expanded/fixture.ts", + "hash": "4440975560416489526" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type-expanded/snapshots/1-TSESTree-AST.shot", + "hash": "7173755063504525003" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type-expanded/snapshots/2-TSESTree-Tokens.shot", + "hash": "12768720738817555345" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type-expanded/snapshots/3-Babel-AST.shot", + "hash": "11734069394762028283" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type-expanded/snapshots/4-Babel-Tokens.shot", + "hash": "861667371539099742" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type-expanded/snapshots/5-AST-Alignment-AST.shot", + "hash": "2669872481185241548" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/this-type-expanded/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2885204967179210351" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple/fixture.ts", + "hash": "4779347182018324313" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple/snapshots/1-TSESTree-AST.shot", + "hash": "18039648196775599652" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple/snapshots/2-TSESTree-Tokens.shot", + "hash": "11710260023228662478" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple/snapshots/3-Babel-AST.shot", + "hash": "9015881499249761172" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple/snapshots/4-Babel-Tokens.shot", + "hash": "8406924630803681122" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple/snapshots/5-AST-Alignment-AST.shot", + "hash": "14972252355332065636" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "11545224200032182468" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-empty/fixture.ts", + "hash": "9148003882752999015" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-empty/snapshots/1-TSESTree-AST.shot", + "hash": "2176928673877306398" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-empty/snapshots/2-TSESTree-Tokens.shot", + "hash": "640668208858934883" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-empty/snapshots/3-Babel-AST.shot", + "hash": "9829846322474395487" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-empty/snapshots/4-Babel-Tokens.shot", + "hash": "7704655502033203421" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-empty/snapshots/5-AST-Alignment-AST.shot", + "hash": "4558946357344047618" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-empty/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3102301233210461167" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named/fixture.ts", + "hash": "11343550326544528685" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named/snapshots/1-TSESTree-AST.shot", + "hash": "17617228338383611143" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named/snapshots/2-TSESTree-Tokens.shot", + "hash": "6622121740914677017" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named/snapshots/3-Babel-AST.shot", + "hash": "14998734870527377497" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named/snapshots/4-Babel-Tokens.shot", + "hash": "16004503143053423909" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named/snapshots/5-AST-Alignment-AST.shot", + "hash": "2754626863259194083" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5025436616728676433" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-optional/fixture.ts", + "hash": "11129332825392534540" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-optional/snapshots/1-TSESTree-AST.shot", + "hash": "14416681720024822573" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-optional/snapshots/2-TSESTree-Tokens.shot", + "hash": "14500357583141939299" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-optional/snapshots/3-Babel-AST.shot", + "hash": "3571577632411125500" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-optional/snapshots/4-Babel-Tokens.shot", + "hash": "17124157522809645843" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-optional/snapshots/5-AST-Alignment-AST.shot", + "hash": "17541148542836640150" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-optional/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8976474428807250703" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-rest/fixture.ts", + "hash": "2063260490573036661" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-rest/snapshots/1-TSESTree-AST.shot", + "hash": "1650460786564658800" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-rest/snapshots/2-TSESTree-Tokens.shot", + "hash": "13206099908067192550" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-rest/snapshots/3-Babel-AST.shot", + "hash": "2931872460308673281" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-rest/snapshots/4-Babel-Tokens.shot", + "hash": "100771439508164228" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-rest/snapshots/5-AST-Alignment-AST.shot", + "hash": "3859928613683320703" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-rest/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2093112319147191719" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-type/fixture.ts", + "hash": "9340170758059573764" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-type/snapshots/1-TSESTree-AST.shot", + "hash": "4940100975247264200" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "16315066566599449867" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-type/snapshots/3-Babel-AST.shot", + "hash": "4476979978991668236" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-type/snapshots/4-Babel-Tokens.shot", + "hash": "3349223439379556866" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "11957614868873922468" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-named-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4769912457763235438" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-optional/fixture.ts", + "hash": "5306253667790634003" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-optional/snapshots/1-TSESTree-AST.shot", + "hash": "1001240252290262556" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-optional/snapshots/2-TSESTree-Tokens.shot", + "hash": "13041872993472330432" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-optional/snapshots/3-Babel-AST.shot", + "hash": "3993367552144540254" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-optional/snapshots/4-Babel-Tokens.shot", + "hash": "4264442826705990566" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-optional/snapshots/5-AST-Alignment-AST.shot", + "hash": "8268763399549487035" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-optional/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10078707400309555213" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-rest/fixture.ts", + "hash": "2013302667094200320" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-rest/snapshots/1-TSESTree-AST.shot", + "hash": "8023791135400682892" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-rest/snapshots/2-TSESTree-Tokens.shot", + "hash": "5610646159059256187" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-rest/snapshots/3-Babel-AST.shot", + "hash": "13282498257498703152" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-rest/snapshots/4-Babel-Tokens.shot", + "hash": "16366854361663899346" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-rest/snapshots/5-AST-Alignment-AST.shot", + "hash": "18352384541145462311" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-rest/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8890930202997710370" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-type/fixture.ts", + "hash": "14063969974185134147" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-type/snapshots/1-TSESTree-AST.shot", + "hash": "15286677253346282010" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "258418165547297013" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-type/snapshots/3-Babel-AST.shot", + "hash": "2100095317581037469" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-type/snapshots/4-Babel-Tokens.shot", + "hash": "13759580159244874529" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "9565853862852553941" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/tuple-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8680401128642572365" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-literal/fixture.ts", + "hash": "2726647982804307344" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-literal/snapshots/1-TSESTree-AST.shot", + "hash": "11224293214187819988" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-literal/snapshots/2-TSESTree-Tokens.shot", + "hash": "17734722243242054450" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-literal/snapshots/3-Babel-AST.shot", + "hash": "5832409752376084539" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-literal/snapshots/4-Babel-Tokens.shot", + "hash": "18070767389012873306" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-literal/snapshots/5-AST-Alignment-AST.shot", + "hash": "8342428855793778995" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-literal/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9171663964165813524" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-operator/fixture.ts", + "hash": "1160185924389286936" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-operator/snapshots/1-TSESTree-AST.shot", + "hash": "6319446476813663327" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-operator/snapshots/2-TSESTree-Tokens.shot", + "hash": "9996439919393869512" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-operator/snapshots/3-Babel-AST.shot", + "hash": "6240392319033774060" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-operator/snapshots/4-Babel-Tokens.shot", + "hash": "16033439827981739459" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-operator/snapshots/5-AST-Alignment-AST.shot", + "hash": "17568313391072562653" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/type-operator/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17093198966576272083" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof/fixture.ts", + "hash": "17880776450566703619" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof/snapshots/1-TSESTree-AST.shot", + "hash": "15036593235588131532" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof/snapshots/2-TSESTree-Tokens.shot", + "hash": "908365364771196321" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof/snapshots/3-Babel-AST.shot", + "hash": "6909070617518564687" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof/snapshots/4-Babel-Tokens.shot", + "hash": "8825730676350286239" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof/snapshots/5-AST-Alignment-AST.shot", + "hash": "6995742585042988781" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1411158716512669669" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-this/fixture.ts", + "hash": "8718345458537214093" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-this/snapshots/1-TSESTree-AST.shot", + "hash": "629422816814197086" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-this/snapshots/2-TSESTree-Tokens.shot", + "hash": "12480337680796732792" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-this/snapshots/3-Babel-AST.shot", + "hash": "1519127711394509434" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-this/snapshots/4-Babel-Tokens.shot", + "hash": "18051044631928245406" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-this/snapshots/5-AST-Alignment-AST.shot", + "hash": "1339875676174746693" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-this/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4144136224782056100" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-with-type-parameters/fixture.ts", + "hash": "2788297271291031695" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-with-type-parameters/snapshots/1-TSESTree-AST.shot", + "hash": "3787915239768085491" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-with-type-parameters/snapshots/2-TSESTree-Tokens.shot", + "hash": "4032889929520726925" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-with-type-parameters/snapshots/3-Babel-AST.shot", + "hash": "17991359566861943252" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-with-type-parameters/snapshots/4-Babel-Tokens.shot", + "hash": "5875814306816971354" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-with-type-parameters/snapshots/5-AST-Alignment-AST.shot", + "hash": "1845095151364690389" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/typeof-with-type-parameters/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16085538477204242230" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-intersection/fixture.ts", + "hash": "16123954499058864911" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-intersection/snapshots/1-TSESTree-AST.shot", + "hash": "15232381492106021722" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-intersection/snapshots/2-TSESTree-Tokens.shot", + "hash": "10896643201453259312" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-intersection/snapshots/3-Babel-AST.shot", + "hash": "13162841113461766453" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-intersection/snapshots/4-Babel-Tokens.shot", + "hash": "11994085848348715971" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-intersection/snapshots/5-AST-Alignment-AST.shot", + "hash": "1293740275599596952" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-intersection/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16648364533674775451" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-type/fixture.ts", + "hash": "3308831738873261893" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-type/snapshots/1-TSESTree-AST.shot", + "hash": "9503832808204362861" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-type/snapshots/2-TSESTree-Tokens.shot", + "hash": "526101212451141258" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-type/snapshots/3-Babel-AST.shot", + "hash": "13688671307462055398" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-type/snapshots/4-Babel-Tokens.shot", + "hash": "17226768619332905964" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-type/snapshots/5-AST-Alignment-AST.shot", + "hash": "6701151479388919224" + }, + { + "file": "packages/ast-spec/src/legacy-fixtures/types/fixtures/union-type/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12587033117115322182" + }, + { + "file": "packages/ast-spec/src/parameter/ArrayPattern/spec.ts", + "hash": "4634208102744129600" + }, + { + "file": "packages/ast-spec/src/parameter/AssignmentPattern/spec.ts", + "hash": "16060898512362922027" + }, + { + "file": "packages/ast-spec/src/parameter/ObjectPattern/spec.ts", + "hash": "6147736105026840045" + }, + { + "file": "packages/ast-spec/src/parameter/RestElement/spec.ts", + "hash": "15533775802179086985" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-function-parameter/fixture.ts", + "hash": "4899318549207628904" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-function-parameter/snapshots/1-Babel-Error.shot", + "hash": "8479412218176483927" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-function-parameter/snapshots/1-TSESTree-Error.shot", + "hash": "10289696377778394906" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-function-parameter/snapshots/2-Alignment-Error.shot", + "hash": "13139771381142322987" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-function-parameter/snapshots/2-Babel-Error.shot", + "hash": "8479412218176483927" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-function-parameter/snapshots/3-Alignment-Error.shot", + "hash": "10750314996433363780" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-method-parameter/fixture.ts", + "hash": "4057634656925474888" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-method-parameter/snapshots/1-Babel-Error.shot", + "hash": "7249781494179965352" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-method-parameter/snapshots/1-TSESTree-Error.shot", + "hash": "17718937718646756402" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-method-parameter/snapshots/2-Alignment-Error.shot", + "hash": "17134622322252169680" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-method-parameter/snapshots/2-Babel-Error.shot", + "hash": "7249781494179965352" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/fixtures/_error_/override-method-parameter/snapshots/3-Alignment-Error.shot", + "hash": "14603132336715257046" + }, + { + "file": "packages/ast-spec/src/parameter/TSParameterProperty/spec.ts", + "hash": "10299901190225324281" + }, + { + "file": "packages/ast-spec/src/parameter/spec.ts", + "hash": "12013490313376112628" + }, + { + "file": "packages/ast-spec/src/special/CatchClause/spec.ts", + "hash": "2096827800922440120" + }, + { + "file": "packages/ast-spec/src/special/ClassBody/spec.ts", + "hash": "9083644157921703088" + }, + { + "file": "packages/ast-spec/src/special/Decorator/spec.ts", + "hash": "12890198845052884367" + }, + { + "file": "packages/ast-spec/src/special/EmptyStatement/spec.ts", + "hash": "12295795345840951405" + }, + { + "file": "packages/ast-spec/src/special/ExportSpecifier/spec.ts", + "hash": "936233640340501330" + }, + { + "file": "packages/ast-spec/src/special/ImportAttribute/spec.ts", + "hash": "10301486363101128160" + }, + { + "file": "packages/ast-spec/src/special/ImportDefaultSpecifier/spec.ts", + "hash": "2256878249341078675" + }, + { + "file": "packages/ast-spec/src/special/ImportNamespaceSpecifier/spec.ts", + "hash": "13238082264601545090" + }, + { + "file": "packages/ast-spec/src/special/ImportSpecifier/spec.ts", + "hash": "15638647481609328436" + }, + { + "file": "packages/ast-spec/src/special/PrivateIdentifier/spec.ts", + "hash": "2393233908758248293" + }, + { + "file": "packages/ast-spec/src/special/Program/spec.ts", + "hash": "14615533562055414057" + }, + { + "file": "packages/ast-spec/src/special/SwitchCase/spec.ts", + "hash": "4914139888131888743" + }, + { + "file": "packages/ast-spec/src/special/TSClassImplements/spec.ts", + "hash": "9272146847515491748" + }, + { + "file": "packages/ast-spec/src/special/TSExternalModuleReference/spec.ts", + "hash": "11137469043499432009" + }, + { + "file": "packages/ast-spec/src/special/TSInterfaceBody/spec.ts", + "hash": "3273852305381482399" + }, + { + "file": "packages/ast-spec/src/special/TSInterfaceHeritage/spec.ts", + "hash": "879821909656048588" + }, + { + "file": "packages/ast-spec/src/special/TSModuleBlock/spec.ts", + "hash": "4071520131172963189" + }, + { + "file": "packages/ast-spec/src/special/TSTypeAnnotation/spec.ts", + "hash": "1858876920741898571" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier/fixture.ts", + "hash": "8728691824490997470" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "12406799555654698542" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "1761189768834369120" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier/snapshots/3-Babel-AST.shot", + "hash": "12136019656114299393" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "12325814356474305842" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "1742308752246173419" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "16175755697615458267" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier-extends/fixture.ts", + "hash": "11484823193081458060" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier-extends/snapshots/1-TSESTree-AST.shot", + "hash": "16766929934288406052" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier-extends/snapshots/2-TSESTree-Tokens.shot", + "hash": "2547223569835073728" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier-extends/snapshots/3-Babel-AST.shot", + "hash": "5213884166520311127" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier-extends/snapshots/4-Babel-Tokens.shot", + "hash": "5541412980990130328" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier-extends/snapshots/5-AST-Alignment-AST.shot", + "hash": "3565080082042900027" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/arrow-const-modifier-extends/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "7418493576213452709" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-in-modifier/fixture.ts", + "hash": "11765196122038052973" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-in-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "12992100381070688003" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-in-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "3079911328553030670" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-in-modifier/snapshots/3-Babel-AST.shot", + "hash": "5544171315854965889" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-in-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "11669994562887017500" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-in-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "14197625887857843673" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-in-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14829833478827543249" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier/fixture.ts", + "hash": "5470114573975092888" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "15730274563567276265" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "6543205208916185431" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier/snapshots/3-Babel-AST.shot", + "hash": "4516696949070591285" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "410966614898948979" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "6721159092944678088" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "17945139301920594378" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-extends/fixture.ts", + "hash": "15486844895231006362" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-extends/snapshots/1-TSESTree-AST.shot", + "hash": "5895866612259225011" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-extends/snapshots/2-TSESTree-Tokens.shot", + "hash": "10697985708884828811" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-extends/snapshots/3-Babel-AST.shot", + "hash": "16356208319835586220" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-extends/snapshots/4-Babel-Tokens.shot", + "hash": "2537509365436125050" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-extends/snapshots/5-AST-Alignment-AST.shot", + "hash": "1541677213304827059" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-extends/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3796144981409852100" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-multiple/fixture.ts", + "hash": "16943113969271812705" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "10581245209654784355" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "10834089687258518786" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-multiple/snapshots/3-Babel-AST.shot", + "hash": "953986781763423967" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "16800326039725410503" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "11826169201385781484" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-const-modifier-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14342963106303955440" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-in-const-modifier/fixture.ts", + "hash": "17544090818833755958" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-in-const-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "16821087934071955314" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-in-const-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "2231750169761241040" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-in-const-modifier/snapshots/3-Babel-AST.shot", + "hash": "3073957118580693409" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-in-const-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "15957995619724895777" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-in-const-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "7523450666029978148" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-decl-in-const-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "3610483869977040458" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-in-modifier/fixture.ts", + "hash": "16555649698825789459" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-in-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "8160708296376470220" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-in-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "7103993300916104639" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-in-modifier/snapshots/3-Babel-AST.shot", + "hash": "18277852261952869627" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-in-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "8705322066355347450" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-in-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "16422183276803416403" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-in-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "12289576027754761939" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier/fixture.ts", + "hash": "15932994080562068762" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "14743135852842923818" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "9365837360135916165" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier/snapshots/3-Babel-AST.shot", + "hash": "12110212574855355614" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "5007819051653678555" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "2960291218096461663" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13765293344257234008" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-extends/fixture.ts", + "hash": "17655077058030606116" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-extends/snapshots/1-TSESTree-AST.shot", + "hash": "1298199584242642942" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-extends/snapshots/2-TSESTree-Tokens.shot", + "hash": "15447179532970328133" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-extends/snapshots/3-Babel-AST.shot", + "hash": "11651419866799212860" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-extends/snapshots/4-Babel-Tokens.shot", + "hash": "5049706218383260537" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-extends/snapshots/5-AST-Alignment-AST.shot", + "hash": "12312881054343248295" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-extends/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "9938370849880917411" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-multiple/fixture.ts", + "hash": "5449337987117187818" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "15661688857085963366" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "4451178466506994993" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-multiple/snapshots/3-Babel-AST.shot", + "hash": "11016617662084979997" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "2065627632867686969" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "9547445484513663225" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-const-modifier-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "13332366007138463608" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-in-const-modifier/fixture.ts", + "hash": "10302625024960275884" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-in-const-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "1598725510970122054" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-in-const-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "17915774872527727411" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-in-const-modifier/snapshots/3-Babel-AST.shot", + "hash": "18010760423836113955" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-in-const-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "7538663254848395534" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-in-const-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "6313607077236847476" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/class-expr-in-const-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10274844556864429597" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/declare-func-const-modifier/fixture.ts", + "hash": "15160061667417584964" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/declare-func-const-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "3177448424076109103" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/declare-func-const-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "2448447453025139032" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/declare-func-const-modifier/snapshots/3-Babel-AST.shot", + "hash": "13403474701092196881" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/declare-func-const-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "1602140714251680385" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/declare-func-const-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "11197988310344467521" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/declare-func-const-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8880029460121457042" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier/fixture.ts", + "hash": "16135893387707587133" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "1424991254183653441" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "14192040270535486170" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier/snapshots/3-Babel-AST.shot", + "hash": "8238111073118706350" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "1299886814814383439" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "3448016731024931232" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14244762509143590212" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-extends/fixture.ts", + "hash": "4410679854364952978" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-extends/snapshots/1-TSESTree-AST.shot", + "hash": "2414806334581291640" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-extends/snapshots/2-TSESTree-Tokens.shot", + "hash": "5400176725913835759" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-extends/snapshots/3-Babel-AST.shot", + "hash": "10229469557958988003" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-extends/snapshots/4-Babel-Tokens.shot", + "hash": "11586057092152600713" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-extends/snapshots/5-AST-Alignment-AST.shot", + "hash": "3553578107894742657" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-extends/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "1078875015270229746" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-multiple/fixture.ts", + "hash": "14694204870439110968" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "14135271672199663435" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "4177096295352687387" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-multiple/snapshots/3-Babel-AST.shot", + "hash": "14860532064025986552" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "7363423188111450132" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "10437412330436196400" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-decl-const-modifier-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "8099827492599088670" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier/fixture.ts", + "hash": "12403245454322985671" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "7810208195692537319" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "16244358276864815142" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier/snapshots/3-Babel-AST.shot", + "hash": "7590447895707302900" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "3847797554763366871" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "14487086339527511565" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5399259955286299488" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-extends/fixture.ts", + "hash": "1706440787337127819" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-extends/snapshots/1-TSESTree-AST.shot", + "hash": "14212725180788675485" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-extends/snapshots/2-TSESTree-Tokens.shot", + "hash": "8237630556165672688" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-extends/snapshots/3-Babel-AST.shot", + "hash": "6876634575643369765" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-extends/snapshots/4-Babel-Tokens.shot", + "hash": "14585483304544061703" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-extends/snapshots/5-AST-Alignment-AST.shot", + "hash": "11595399697377214474" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-extends/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "10006456446444554661" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-multiple/fixture.ts", + "hash": "12283521883328063421" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "3442248425229810954" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "14778683833137464117" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-multiple/snapshots/3-Babel-AST.shot", + "hash": "3609961426886346521" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "17733347525814347160" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "8387121558326526813" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/func-expr-const-modifier-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "2280973372110599547" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-in-modifier-multiple/fixture.ts", + "hash": "9594743242339862392" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-in-modifier-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "10778784835768197953" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-in-modifier-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "12218483267187502613" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-in-modifier-multiple/snapshots/3-Babel-AST.shot", + "hash": "5759364926781939459" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-in-modifier-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "5073439419005563284" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-in-modifier-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "7502056103985154055" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-in-modifier-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "5091453193211959131" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier/fixture.ts", + "hash": "3157573833769374390" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier/snapshots/1-TSESTree-AST.shot", + "hash": "2011251230053066699" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier/snapshots/2-TSESTree-Tokens.shot", + "hash": "3174430539509846779" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier/snapshots/3-Babel-AST.shot", + "hash": "9228386306616180478" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier/snapshots/4-Babel-Tokens.shot", + "hash": "1547633764408224611" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier/snapshots/5-AST-Alignment-AST.shot", + "hash": "14217052546586119039" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14978524244203434912" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-extends/fixture.ts", + "hash": "1884771735848021120" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-extends/snapshots/1-TSESTree-AST.shot", + "hash": "6250665036800172152" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-extends/snapshots/2-TSESTree-Tokens.shot", + "hash": "13246187076836222099" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-extends/snapshots/3-Babel-AST.shot", + "hash": "11803260422152112854" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-extends/snapshots/4-Babel-Tokens.shot", + "hash": "83368218370871764" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-extends/snapshots/5-AST-Alignment-AST.shot", + "hash": "14553891690710788956" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-extends/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "18069929714284316864" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-multiple/fixture.ts", + "hash": "1648127969975250061" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "4452987118712843340" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "3102761393879124875" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-multiple/snapshots/3-Babel-AST.shot", + "hash": "10103192221525709709" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "9312913952574542854" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "4103422167507492174" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-const-modifier-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "4363712608975391831" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-in-const-modifier-multiple/fixture.ts", + "hash": "411321779468607866" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-in-const-modifier-multiple/snapshots/1-TSESTree-AST.shot", + "hash": "14997985745166674079" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-in-const-modifier-multiple/snapshots/2-TSESTree-Tokens.shot", + "hash": "12443767575052936902" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-in-const-modifier-multiple/snapshots/3-Babel-AST.shot", + "hash": "5407967883076661552" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-in-const-modifier-multiple/snapshots/4-Babel-Tokens.shot", + "hash": "4320381785475639136" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-in-const-modifier-multiple/snapshots/5-AST-Alignment-AST.shot", + "hash": "37734530290099879" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/interface-in-const-modifier-multiple/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "14294988653733282080" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/method-const-modifiers/fixture.ts", + "hash": "16155453848438322766" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/method-const-modifiers/snapshots/1-TSESTree-AST.shot", + "hash": "14214973309652055528" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/method-const-modifiers/snapshots/2-TSESTree-Tokens.shot", + "hash": "17012885870966493187" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/method-const-modifiers/snapshots/3-Babel-AST.shot", + "hash": "4759185944441360748" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/method-const-modifiers/snapshots/4-Babel-Tokens.shot", + "hash": "9559009527018626149" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/method-const-modifiers/snapshots/5-AST-Alignment-AST.shot", + "hash": "14391416853402230955" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/fixtures/method-const-modifiers/snapshots/6-AST-Alignment-Tokens.shot", + "hash": "18034471977843174212" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameter/spec.ts", + "hash": "9359195876590782892" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameterDeclaration/spec.ts", + "hash": "862025469053195460" + }, + { + "file": "packages/ast-spec/src/special/TSTypeParameterInstantiation/spec.ts", + "hash": "9034379113123646636" + }, + { + "file": "packages/ast-spec/src/special/TemplateElement/spec.ts", + "hash": "5919508383244457533" + }, + { + "file": "packages/ast-spec/src/special/VariableDeclarator/spec.ts", + "hash": "13261668323874384467" + }, + { + "file": "packages/ast-spec/src/special/spec.ts", + "hash": "16176239214649231492" + }, + { + "file": "packages/ast-spec/src/statement/BlockStatement/spec.ts", + "hash": "9035452042121977397" + }, + { + "file": "packages/ast-spec/src/statement/BreakStatement/spec.ts", + "hash": "1894717665971481931" + }, + { + "file": "packages/ast-spec/src/statement/ContinueStatement/spec.ts", + "hash": "16402753868220767218" + }, + { + "file": "packages/ast-spec/src/statement/DebuggerStatement/spec.ts", + "hash": "17453379855063743203" + }, + { + "file": "packages/ast-spec/src/statement/DoWhileStatement/spec.ts", + "hash": "12673255932892981758" + }, + { + "file": "packages/ast-spec/src/statement/ExpressionStatement/spec.ts", + "hash": "1723411918070636393" + }, + { + "file": "packages/ast-spec/src/statement/ForInStatement/spec.ts", + "hash": "6292732045648339780" + }, + { + "file": "packages/ast-spec/src/statement/ForOfStatement/spec.ts", + "hash": "7067276272013892482" + }, + { + "file": "packages/ast-spec/src/statement/ForStatement/spec.ts", + "hash": "9062043306100372357" + }, + { + "file": "packages/ast-spec/src/statement/IfStatement/spec.ts", + "hash": "6315747766081007801" + }, + { + "file": "packages/ast-spec/src/statement/LabeledStatement/spec.ts", + "hash": "6799508837567728354" + }, + { + "file": "packages/ast-spec/src/statement/ReturnStatement/spec.ts", + "hash": "14514866578880981717" + }, + { + "file": "packages/ast-spec/src/statement/SwitchStatement/spec.ts", + "hash": "18215943727284141150" + }, + { + "file": "packages/ast-spec/src/statement/TSExportAssignment/spec.ts", + "hash": "9640723050480491816" + }, + { + "file": "packages/ast-spec/src/statement/ThrowStatement/fixtures/_error_/missing-argument/fixture.ts", + "hash": "4143174080401144672" + }, + { + "file": "packages/ast-spec/src/statement/ThrowStatement/fixtures/_error_/missing-argument/snapshots/1-Babel-Error.shot", + "hash": "11664079455242171660" + }, + { + "file": "packages/ast-spec/src/statement/ThrowStatement/fixtures/_error_/missing-argument/snapshots/1-TSESTree-Error.shot", + "hash": "10108503976850312880" + }, + { + "file": "packages/ast-spec/src/statement/ThrowStatement/fixtures/_error_/missing-argument/snapshots/2-Alignment-Error.shot", + "hash": "16773896467919095604" + }, + { + "file": "packages/ast-spec/src/statement/ThrowStatement/fixtures/_error_/missing-argument/snapshots/2-Babel-Error.shot", + "hash": "11664079455242171660" + }, + { + "file": "packages/ast-spec/src/statement/ThrowStatement/fixtures/_error_/missing-argument/snapshots/3-Alignment-Error.shot", + "hash": "10122899507202778306" + }, + { + "file": "packages/ast-spec/src/statement/ThrowStatement/spec.ts", + "hash": "18286343737120778244" + }, + { + "file": "packages/ast-spec/src/statement/TryStatement/spec.ts", + "hash": "620057224400690205" + }, + { + "file": "packages/ast-spec/src/statement/WhileStatement/spec.ts", + "hash": "10303102316904956446" + }, + { + "file": "packages/ast-spec/src/statement/WithStatement/spec.ts", + "hash": "1233816521443398223" + }, + { + "file": "packages/ast-spec/src/statement/spec.ts", + "hash": "2871076446277035147" + }, + { + "file": "packages/ast-spec/src/token/BlockComment/spec.ts", + "hash": "630044776676837112" + }, + { + "file": "packages/ast-spec/src/token/BooleanToken/spec.ts", + "hash": "17726881621777440286" + }, + { + "file": "packages/ast-spec/src/token/IdentifierToken/spec.ts", + "hash": "14047625979538171241" + }, + { + "file": "packages/ast-spec/src/token/JSXIdentifierToken/spec.ts", + "hash": "14481150561626650049" + }, + { + "file": "packages/ast-spec/src/token/JSXTextToken/spec.ts", + "hash": "15528203206898286559" + }, + { + "file": "packages/ast-spec/src/token/KeywordToken/spec.ts", + "hash": "1137722624763947614" + }, + { + "file": "packages/ast-spec/src/token/LineComment/spec.ts", + "hash": "961584872128003764" + }, + { + "file": "packages/ast-spec/src/token/NullToken/spec.ts", + "hash": "8838164655103896572" + }, + { + "file": "packages/ast-spec/src/token/NumericToken/spec.ts", + "hash": "4597285958886463402" + }, + { + "file": "packages/ast-spec/src/token/PunctuatorToken/PunctuatorTokenToText.ts", + "hash": "12753450556790232716", + "deps": ["npm:typescript"] + }, + { + "file": "packages/ast-spec/src/token/PunctuatorToken/spec.ts", + "hash": "4474291797762216708" + }, + { + "file": "packages/ast-spec/src/token/RegularExpressionToken/spec.ts", + "hash": "15330104759530913856" + }, + { + "file": "packages/ast-spec/src/token/StringToken/spec.ts", + "hash": "14127126893723402658" + }, + { + "file": "packages/ast-spec/src/token/TemplateToken/spec.ts", + "hash": "7249205074294433168" + }, + { + "file": "packages/ast-spec/src/token/spec.ts", + "hash": "17535090621402352673" + }, + { + "file": "packages/ast-spec/src/type/TSAbstractKeyword/spec.ts", + "hash": "14584632058651001592" + }, + { + "file": "packages/ast-spec/src/type/TSAnyKeyword/spec.ts", + "hash": "17067052541148102773" + }, + { + "file": "packages/ast-spec/src/type/TSArrayType/spec.ts", + "hash": "10048058942855794177" + }, + { + "file": "packages/ast-spec/src/type/TSAsyncKeyword/spec.ts", + "hash": "7258540912147428603" + }, + { + "file": "packages/ast-spec/src/type/TSBigIntKeyword/spec.ts", + "hash": "5767539660940217011" + }, + { + "file": "packages/ast-spec/src/type/TSBooleanKeyword/spec.ts", + "hash": "7437090669866873677" + }, + { + "file": "packages/ast-spec/src/type/TSConditionalType/spec.ts", + "hash": "17777245128507582352" + }, + { + "file": "packages/ast-spec/src/type/TSConstructorType/spec.ts", + "hash": "18160487344298159749" + }, + { + "file": "packages/ast-spec/src/type/TSDeclareKeyword/spec.ts", + "hash": "1772338179604098654" + }, + { + "file": "packages/ast-spec/src/type/TSExportKeyword/spec.ts", + "hash": "16042939306201249272" + }, + { + "file": "packages/ast-spec/src/type/TSFunctionType/spec.ts", + "hash": "2772885043791547360" + }, + { + "file": "packages/ast-spec/src/type/TSImportType/spec.ts", + "hash": "16316852378364502482" + }, + { + "file": "packages/ast-spec/src/type/TSIndexedAccessType/spec.ts", + "hash": "14634868319093944316" + }, + { + "file": "packages/ast-spec/src/type/TSInferType/spec.ts", + "hash": "3022657369607094640" + }, + { + "file": "packages/ast-spec/src/type/TSIntersectionType/spec.ts", + "hash": "10937359642609845498" + }, + { + "file": "packages/ast-spec/src/type/TSIntrinsicKeyword/spec.ts", + "hash": "15437324190657019438" + }, + { + "file": "packages/ast-spec/src/type/TSLiteralType/spec.ts", + "hash": "15752391780566140097" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/looks-like-mapped-type-but-with-members/fixture.ts", + "hash": "1604811846418947902" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/looks-like-mapped-type-but-with-members/snapshots/1-Babel-Error.shot", + "hash": "7627318686006284726" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/looks-like-mapped-type-but-with-members/snapshots/1-TSESTree-Error.shot", + "hash": "14844437010439461068" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/looks-like-mapped-type-but-with-members/snapshots/2-Alignment-Error.shot", + "hash": "10474923483160739153" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/looks-like-mapped-type-but-with-members/snapshots/2-Babel-Error.shot", + "hash": "7627318686006284726" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/looks-like-mapped-type-but-with-members/snapshots/3-Alignment-Error.shot", + "hash": "10474923483160739153" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/with-member/fixture.ts", + "hash": "1143309465782120193" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/with-member/snapshots/1-Babel-Error.shot", + "hash": "6823932122800195441" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/with-member/snapshots/1-TSESTree-Error.shot", + "hash": "6164491301086906563" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/with-member/snapshots/2-Alignment-Error.shot", + "hash": "1282464903279951723" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/with-member/snapshots/2-Babel-Error.shot", + "hash": "6823932122800195441" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/fixtures/_error_/with-member/snapshots/3-Alignment-Error.shot", + "hash": "14471411908522916935" + }, + { + "file": "packages/ast-spec/src/type/TSMappedType/spec.ts", + "hash": "11042602909906982806" + }, + { + "file": "packages/ast-spec/src/type/TSNamedTupleMember/spec.ts", + "hash": "5616464164688660314" + }, + { + "file": "packages/ast-spec/src/type/TSNeverKeyword/spec.ts", + "hash": "4674928191395135970" + }, + { + "file": "packages/ast-spec/src/type/TSNullKeyword/spec.ts", + "hash": "9613178814939951312" + }, + { + "file": "packages/ast-spec/src/type/TSNumberKeyword/spec.ts", + "hash": "7156603326833218783" + }, + { + "file": "packages/ast-spec/src/type/TSObjectKeyword/spec.ts", + "hash": "18234100876706327089" + }, + { + "file": "packages/ast-spec/src/type/TSOptionalType/spec.ts", + "hash": "10721579309379084061" + }, + { + "file": "packages/ast-spec/src/type/TSPrivateKeyword/spec.ts", + "hash": "10399869487489343290" + }, + { + "file": "packages/ast-spec/src/type/TSProtectedKeyword/spec.ts", + "hash": "13163308295243942527" + }, + { + "file": "packages/ast-spec/src/type/TSPublicKeyword/spec.ts", + "hash": "15859962298252046919" + }, + { + "file": "packages/ast-spec/src/type/TSQualifiedName/spec.ts", + "hash": "10322877247635973401" + }, + { + "file": "packages/ast-spec/src/type/TSReadonlyKeyword/spec.ts", + "hash": "1277935035221494756" + }, + { + "file": "packages/ast-spec/src/type/TSRestType/spec.ts", + "hash": "4608987263187356987" + }, + { + "file": "packages/ast-spec/src/type/TSStaticKeyword/spec.ts", + "hash": "4472851477710411903" + }, + { + "file": "packages/ast-spec/src/type/TSStringKeyword/spec.ts", + "hash": "9264147728046890064" + }, + { + "file": "packages/ast-spec/src/type/TSSymbolKeyword/spec.ts", + "hash": "12498606727184861646" + }, + { + "file": "packages/ast-spec/src/type/TSTemplateLiteralType/spec.ts", + "hash": "2900214148499193776" + }, + { + "file": "packages/ast-spec/src/type/TSThisType/spec.ts", + "hash": "680723748092403448" + }, + { + "file": "packages/ast-spec/src/type/TSTupleType/spec.ts", + "hash": "722971829686371685" + }, + { + "file": "packages/ast-spec/src/type/TSTypeLiteral/spec.ts", + "hash": "3968054241015618289" + }, + { + "file": "packages/ast-spec/src/type/TSTypeOperator/spec.ts", + "hash": "2929189227047364115" + }, + { + "file": "packages/ast-spec/src/type/TSTypePredicate/spec.ts", + "hash": "3256000513043828501" + }, + { + "file": "packages/ast-spec/src/type/TSTypeQuery/spec.ts", + "hash": "12526616061107947273" + }, + { + "file": "packages/ast-spec/src/type/TSTypeReference/spec.ts", + "hash": "12506683022261451864" + }, + { + "file": "packages/ast-spec/src/type/TSUndefinedKeyword/spec.ts", + "hash": "16257763951304560872" + }, + { + "file": "packages/ast-spec/src/type/TSUnionType/spec.ts", + "hash": "3211816869142703326" + }, + { + "file": "packages/ast-spec/src/type/TSUnknownKeyword/spec.ts", + "hash": "5320918937682576261" + }, + { + "file": "packages/ast-spec/src/type/TSVoidKeyword/spec.ts", + "hash": "1804959506498345064" + }, + { + "file": "packages/ast-spec/src/type/spec.ts", + "hash": "3928118239458100600" + }, + { + "file": "packages/ast-spec/src/unions/BindingName.ts", + "hash": "15869915882354243407" + }, + { + "file": "packages/ast-spec/src/unions/BindingPattern.ts", + "hash": "8447814543441684387" + }, + { + "file": "packages/ast-spec/src/unions/CallExpressionArgument.ts", + "hash": "9679102582233943591" + }, + { + "file": "packages/ast-spec/src/unions/ChainElement.ts", + "hash": "3973869034802897761" + }, + { + "file": "packages/ast-spec/src/unions/ClassElement.ts", + "hash": "9025411882273917803" + }, + { + "file": "packages/ast-spec/src/unions/Comment.ts", + "hash": "8063018019425940928" + }, + { + "file": "packages/ast-spec/src/unions/DeclarationStatement.ts", + "hash": "8043830606315063279" + }, + { + "file": "packages/ast-spec/src/unions/DestructuringPattern.ts", + "hash": "12682196629017976784" + }, + { + "file": "packages/ast-spec/src/unions/EntityName.ts", + "hash": "10576114219583588649" + }, + { + "file": "packages/ast-spec/src/unions/ExportDeclaration.ts", + "hash": "6745884677472669428" + }, + { + "file": "packages/ast-spec/src/unions/Expression.ts", + "hash": "15482725396350466649" + }, + { + "file": "packages/ast-spec/src/unions/ForInitialiser.ts", + "hash": "7555258231238056630" + }, + { + "file": "packages/ast-spec/src/unions/FunctionLike.ts", + "hash": "2032319165782315166" + }, + { + "file": "packages/ast-spec/src/unions/ImportClause.ts", + "hash": "1480866242671478383" + }, + { + "file": "packages/ast-spec/src/unions/IterationStatement.ts", + "hash": "9934390934072394547" + }, + { + "file": "packages/ast-spec/src/unions/JSXChild.ts", + "hash": "3277880201434093042" + }, + { + "file": "packages/ast-spec/src/unions/JSXExpression.ts", + "hash": "9853318954885494400" + }, + { + "file": "packages/ast-spec/src/unions/JSXTagNameExpression.ts", + "hash": "158844072664995848" + }, + { + "file": "packages/ast-spec/src/unions/LeftHandSideExpression.ts", + "hash": "7375335867027036263" + }, + { + "file": "packages/ast-spec/src/unions/Literal.ts", + "hash": "10799136998537939286" + }, + { + "file": "packages/ast-spec/src/unions/LiteralExpression.ts", + "hash": "16815025057604099145" + }, + { + "file": "packages/ast-spec/src/unions/Node.ts", + "hash": "14525785585228809251" + }, + { + "file": "packages/ast-spec/src/unions/ObjectLiteralElement.ts", + "hash": "3234068111948358570" + }, + { + "file": "packages/ast-spec/src/unions/Parameter.ts", + "hash": "1785758671811074251" + }, + { + "file": "packages/ast-spec/src/unions/PrimaryExpression.ts", + "hash": "10647160722515390717" + }, + { + "file": "packages/ast-spec/src/unions/PropertyName.ts", + "hash": "13368702169482147290" + }, + { + "file": "packages/ast-spec/src/unions/Statement.ts", + "hash": "12163349636502811443" + }, + { + "file": "packages/ast-spec/src/unions/TSUnaryExpression.ts", + "hash": "10226867988358337504" + }, + { + "file": "packages/ast-spec/src/unions/Token.ts", + "hash": "17133260380189790292" + }, + { + "file": "packages/ast-spec/src/unions/TypeElement.ts", + "hash": "17754884485292929607" + }, + { + "file": "packages/ast-spec/src/unions/TypeNode.ts", + "hash": "1937939907890584016" + }, + { + "file": "packages/ast-spec/src/utils.ts", + "hash": "4021115113191370149" + }, + { + "file": "packages/ast-spec/tests/AssignmentOperatorToText.type-test.ts", + "hash": "4965313470154474948", + "deps": ["npm:typescript"] + }, + { + "file": "packages/ast-spec/tests/BinaryOperatorToText.type-test.ts", + "hash": "8319183939535734255", + "deps": ["npm:typescript"] + }, + { + "file": "packages/ast-spec/tests/PunctuatorTokenToText.type-test.ts", + "hash": "14700319271454380333", + "deps": ["npm:typescript"] + }, + { + "file": "packages/ast-spec/tests/ast-node-types.type-test.ts", + "hash": "1288578868177765029" + }, + { + "file": "packages/ast-spec/tests/fixtures-with-differences-ast.shot", + "hash": "16040074945993368692" + }, + { + "file": "packages/ast-spec/tests/fixtures-with-differences-errors.shot", + "hash": "1983162372372938743" + }, + { + "file": "packages/ast-spec/tests/fixtures-with-differences-tokens.shot", + "hash": "3635286059300363001" + }, + { + "file": "packages/ast-spec/tests/fixtures-without-babel-support.shot", + "hash": "13402745853634604351" + }, + { + "file": "packages/ast-spec/tests/fixtures.test.ts", + "hash": "7907084565473852947", + "deps": ["npm:fs", "npm:glob", "npm:make-dir", "npm:path"] + }, + { + "file": "packages/ast-spec/tests/util/parsers/babel.ts", + "hash": "497973407898037020", + "deps": ["npm:@babel/core", "npm:@babel/eslint-parser"] + }, + { + "file": "packages/ast-spec/tests/util/parsers/parser-types.ts", + "hash": "4046276134699161828" + }, + { + "file": "packages/ast-spec/tests/util/parsers/typescript-estree.ts", + "hash": "13104717363374072951" + }, + { + "file": "packages/ast-spec/tests/util/serialize-error.ts", + "hash": "3676845349844377149", + "deps": ["npm:@babel/code-frame"] + }, + { + "file": "packages/ast-spec/tests/util/serializers/Node.ts", + "hash": "8755915036258650668", + "deps": ["npm:pretty-format"] + }, + { + "file": "packages/ast-spec/tests/util/serializers/index.ts", + "hash": "9034991589670381185" + }, + { + "file": "packages/ast-spec/tests/util/serializers/string.ts", + "hash": "16836895756930318825", + "deps": ["npm:pretty-format"] + }, + { + "file": "packages/ast-spec/tests/util/setupJest.ts", + "hash": "13361026518552343430", + "deps": ["npm:jest-specific-snapshot"] + }, + { + "file": "packages/ast-spec/tests/util/snapshot-diff.ts", + "hash": "3359220508643836463", + "deps": ["npm:jest-diff", "npm:pretty-format"] + }, + { + "file": "packages/ast-spec/tsconfig.build.json", + "hash": "1507844445985267449" + }, + { + "file": "packages/ast-spec/tsconfig.json", + "hash": "12836663854057620890" + }, + { + "file": "packages/ast-spec/typings/babel-eslint-parser.d.ts", + "hash": "12744726570190764179", + "deps": ["npm:@babel/core", "npm:@babel/parser"] + }, + { + "file": "packages/ast-spec/typings/global.d.ts", + "hash": "5939213273500981874" + } + ], + "eslint-plugin": [ + { + "file": "packages/eslint-plugin/CHANGELOG.md", + "hash": "11338523963154706582" + }, + { + "file": "packages/eslint-plugin/LICENSE", + "hash": "7839189362606127045" + }, + { + "file": "packages/eslint-plugin/README.md", + "hash": "7388463691186263016" + }, + { + "file": "packages/eslint-plugin/ROADMAP.md", + "hash": "10239738607440458534" + }, + { + "file": "packages/eslint-plugin/TSLINT_RULE_ALTERNATIVES.md", + "hash": "17029382485188133971" + }, + { + "file": "packages/eslint-plugin/docs/rules/README.md", + "hash": "17913218778672303962" + }, + { + "file": "packages/eslint-plugin/docs/rules/TEMPLATE.md", + "hash": "13513951695574399670" + }, + { + "file": "packages/eslint-plugin/docs/rules/adjacent-overload-signatures.md", + "hash": "6286099178792361879" + }, + { + "file": "packages/eslint-plugin/docs/rules/array-type.md", + "hash": "9952128934426153363" + }, + { + "file": "packages/eslint-plugin/docs/rules/await-thenable.md", + "hash": "6743259845406449955" + }, + { + "file": "packages/eslint-plugin/docs/rules/ban-ts-comment.md", + "hash": "8461412535578646144" + }, + { + "file": "packages/eslint-plugin/docs/rules/ban-tslint-comment.md", + "hash": "10453825478318989154" + }, + { + "file": "packages/eslint-plugin/docs/rules/ban-types.md", + "hash": "4107831626650411179" + }, + { + "file": "packages/eslint-plugin/docs/rules/block-spacing.md", + "hash": "18390451456701134258" + }, + { + "file": "packages/eslint-plugin/docs/rules/brace-style.md", + "hash": "3419723339743828342" + }, + { + "file": "packages/eslint-plugin/docs/rules/camelcase.md", + "hash": "17890203804517124026" + }, + { + "file": "packages/eslint-plugin/docs/rules/class-literal-property-style.md", + "hash": "7524366086143903083" + }, + { + "file": "packages/eslint-plugin/docs/rules/class-methods-use-this.md", + "hash": "14927431982634936023" + }, + { + "file": "packages/eslint-plugin/docs/rules/comma-dangle.md", + "hash": "15076757402988105576" + }, + { + "file": "packages/eslint-plugin/docs/rules/comma-spacing.md", + "hash": "77099665287497933" + }, + { + "file": "packages/eslint-plugin/docs/rules/consistent-generic-constructors.md", + "hash": "11055742170681305465" + }, + { + "file": "packages/eslint-plugin/docs/rules/consistent-indexed-object-style.md", + "hash": "5012257132906808208" + }, + { + "file": "packages/eslint-plugin/docs/rules/consistent-type-assertions.md", + "hash": "4838025539442886521" + }, + { + "file": "packages/eslint-plugin/docs/rules/consistent-type-definitions.md", + "hash": "13990867296820538682" + }, + { + "file": "packages/eslint-plugin/docs/rules/consistent-type-exports.md", + "hash": "3150382875154758298" + }, + { + "file": "packages/eslint-plugin/docs/rules/consistent-type-imports.md", + "hash": "5131182807457509989" + }, + { + "file": "packages/eslint-plugin/docs/rules/default-param-last.md", + "hash": "16188571582590575777" + }, + { + "file": "packages/eslint-plugin/docs/rules/dot-notation.md", + "hash": "14451683759577988536" + }, + { + "file": "packages/eslint-plugin/docs/rules/explicit-function-return-type.md", + "hash": "8977614992609526482" + }, + { + "file": "packages/eslint-plugin/docs/rules/explicit-member-accessibility.md", + "hash": "5998709206091311010" + }, + { + "file": "packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md", + "hash": "554268852155799103" + }, + { + "file": "packages/eslint-plugin/docs/rules/func-call-spacing.md", + "hash": "12888349555106812478" + }, + { + "file": "packages/eslint-plugin/docs/rules/indent.md", + "hash": "8462174347474106592" + }, + { + "file": "packages/eslint-plugin/docs/rules/init-declarations.md", + "hash": "13545666494340724979" + }, + { + "file": "packages/eslint-plugin/docs/rules/key-spacing.md", + "hash": "17402553164530628947" + }, + { + "file": "packages/eslint-plugin/docs/rules/keyword-spacing.md", + "hash": "8614720470333979140" + }, + { + "file": "packages/eslint-plugin/docs/rules/lines-around-comment.md", + "hash": "3331086188531005095" + }, + { + "file": "packages/eslint-plugin/docs/rules/lines-between-class-members.md", + "hash": "4209153962709849834" + }, + { + "file": "packages/eslint-plugin/docs/rules/member-delimiter-style.md", + "hash": "16002718915327096213" + }, + { + "file": "packages/eslint-plugin/docs/rules/member-ordering.md", + "hash": "3431282756258534371" + }, + { + "file": "packages/eslint-plugin/docs/rules/method-signature-style.md", + "hash": "11387400168239354340" + }, + { + "file": "packages/eslint-plugin/docs/rules/naming-convention.md", + "hash": "17616661251488596947" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-array-constructor.md", + "hash": "7628467107606113899" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-base-to-string.md", + "hash": "5275421258945943963" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-confusing-non-null-assertion.md", + "hash": "3482316276491272389" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-confusing-void-expression.md", + "hash": "2971040040671058992" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-dupe-class-members.md", + "hash": "14043505226839264261" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md", + "hash": "3144900053661284420" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-duplicate-imports.md", + "hash": "8693118354777930229" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md", + "hash": "10250379857402821425" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-dynamic-delete.md", + "hash": "5270669161596873819" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-empty-function.md", + "hash": "8611724880521576496" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-empty-interface.md", + "hash": "4818707517571847880" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-explicit-any.md", + "hash": "4341068579398593264" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-extra-non-null-assertion.md", + "hash": "15118632932879358395" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-extra-parens.md", + "hash": "18391492175084741218" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-extra-semi.md", + "hash": "16156306042574792846" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-extraneous-class.md", + "hash": "1093188208547265914" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-floating-promises.md", + "hash": "14442664690135076571" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-for-in-array.md", + "hash": "7002272980986583025" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-implied-eval.md", + "hash": "14246898450562740699" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-import-type-side-effects.md", + "hash": "17287500162673935079" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-inferrable-types.md", + "hash": "626350236560124288" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-invalid-this.md", + "hash": "4092900213953217127" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-invalid-void-type.md", + "hash": "10626335813676540331" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-loop-func.md", + "hash": "16268964138354191997" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-loss-of-precision.md", + "hash": "13786596995141826729" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-magic-numbers.md", + "hash": "2242456252022660766" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-meaningless-void-operator.md", + "hash": "2656822461664044330" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-misused-new.md", + "hash": "6536138335206006767" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-misused-promises.md", + "hash": "1939337707606343750" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-mixed-enums.md", + "hash": "15402983941741244955" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-namespace.md", + "hash": "8145353553402087905" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md", + "hash": "1515362768218814528" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md", + "hash": "554624504395537942" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-non-null-assertion.md", + "hash": "17345501040944700860" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-redeclare.md", + "hash": "7836152397471787006" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-redundant-type-constituents.md", + "hash": "9245804606748378552" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-require-imports.md", + "hash": "8960671816003093814" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-restricted-imports.md", + "hash": "12324023549049234903" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-shadow.md", + "hash": "7107916012871246953" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-this-alias.md", + "hash": "8962204988641439240" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-throw-literal.md", + "hash": "15479902002661581713" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-type-alias.md", + "hash": "9207212666329911538" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md", + "hash": "6059902974116482720" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unnecessary-condition.md", + "hash": "7537110479271005016" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unnecessary-qualifier.md", + "hash": "9138006759051763769" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md", + "hash": "16939295576255364654" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unnecessary-type-assertion.md", + "hash": "13485421972543112570" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unnecessary-type-constraint.md", + "hash": "5617225017215780497" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unsafe-argument.md", + "hash": "11330356323575354662" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unsafe-assignment.md", + "hash": "13924895145233153716" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unsafe-call.md", + "hash": "11473885371237750479" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md", + "hash": "5095460757606169216" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unsafe-enum-comparison.md", + "hash": "14925248175801709019" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unsafe-member-access.md", + "hash": "11255527574267644991" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unsafe-return.md", + "hash": "1657488617263147455" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unused-expressions.md", + "hash": "15278002782889901046" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-unused-vars.md", + "hash": "1555511330878674601" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-use-before-define.md", + "hash": "6517441481287265630" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-useless-constructor.md", + "hash": "2995897295399826210" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-useless-empty-export.md", + "hash": "6867807248407411082" + }, + { + "file": "packages/eslint-plugin/docs/rules/no-var-requires.md", + "hash": "8008276016110148477" + }, + { + "file": "packages/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md", + "hash": "5107154825412465049" + }, + { + "file": "packages/eslint-plugin/docs/rules/object-curly-spacing.md", + "hash": "11158946069789623139" + }, + { + "file": "packages/eslint-plugin/docs/rules/padding-line-between-statements.md", + "hash": "6969694390165315533" + }, + { + "file": "packages/eslint-plugin/docs/rules/parameter-properties.md", + "hash": "524818057536601044" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-as-const.md", + "hash": "4496966186277888992" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-enum-initializers.md", + "hash": "8163734089114175873" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-for-of.md", + "hash": "7725020781227928300" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-function-type.md", + "hash": "12577041241334381387" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-includes.md", + "hash": "13252107799811591740" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-literal-enum-member.md", + "hash": "12808149262242157294" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-namespace-keyword.md", + "hash": "9498115921343045917" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-nullish-coalescing.md", + "hash": "9266268825504383919" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-optional-chain.md", + "hash": "6853802178113747539" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md", + "hash": "13616237115051123322" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-readonly.md", + "hash": "6930614479970607011" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md", + "hash": "6446779544231190163" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-regexp-exec.md", + "hash": "3989396812257517728" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-return-this-type.md", + "hash": "18332704568603410348" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md", + "hash": "690734793598492887" + }, + { + "file": "packages/eslint-plugin/docs/rules/prefer-ts-expect-error.md", + "hash": "10983851293767316641" + }, + { + "file": "packages/eslint-plugin/docs/rules/promise-function-async.md", + "hash": "2220726264316144324" + }, + { + "file": "packages/eslint-plugin/docs/rules/quotes.md", + "hash": "12065750212218147937" + }, + { + "file": "packages/eslint-plugin/docs/rules/require-array-sort-compare.md", + "hash": "17057535759034358320" + }, + { + "file": "packages/eslint-plugin/docs/rules/require-await.md", + "hash": "9415644758891114908" + }, + { + "file": "packages/eslint-plugin/docs/rules/restrict-plus-operands.md", + "hash": "14166605313731606516" + }, + { + "file": "packages/eslint-plugin/docs/rules/restrict-template-expressions.md", + "hash": "16106450840284496269" + }, + { + "file": "packages/eslint-plugin/docs/rules/return-await.md", + "hash": "18368443367340789375" + }, + { + "file": "packages/eslint-plugin/docs/rules/semi.md", + "hash": "8051541174357684800" + }, + { + "file": "packages/eslint-plugin/docs/rules/sort-type-constituents.md", + "hash": "11934947421710970279" + }, + { + "file": "packages/eslint-plugin/docs/rules/space-before-blocks.md", + "hash": "4914324665554117013" + }, + { + "file": "packages/eslint-plugin/docs/rules/space-before-function-paren.md", + "hash": "2455934670972712815" + }, + { + "file": "packages/eslint-plugin/docs/rules/space-infix-ops.md", + "hash": "17723734400018181667" + }, + { + "file": "packages/eslint-plugin/docs/rules/strict-boolean-expressions.md", + "hash": "11846709637664487380" + }, + { + "file": "packages/eslint-plugin/docs/rules/switch-exhaustiveness-check.md", + "hash": "11549702812487073810" + }, + { + "file": "packages/eslint-plugin/docs/rules/triple-slash-reference.md", + "hash": "2100362263712344099" + }, + { + "file": "packages/eslint-plugin/docs/rules/type-annotation-spacing.md", + "hash": "3770290381769556804" + }, + { + "file": "packages/eslint-plugin/docs/rules/typedef.md", + "hash": "8795871222759530104" + }, + { + "file": "packages/eslint-plugin/docs/rules/unbound-method.md", + "hash": "368028437768393625" + }, + { + "file": "packages/eslint-plugin/docs/rules/unified-signatures.md", + "hash": "16378159212894910000" + }, + { + "file": "packages/eslint-plugin/index.d.ts", + "hash": "5476863085285935134", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/jest.config.js", + "hash": "18083063484728550629", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/eslint-plugin/package.json", + "hash": "11299345495768229108", + "deps": [ + "scope-manager", + "type-utils", + "utils", + "visitor-keys", + "npm:debug", + "npm:graphemer", + "npm:ignore", + "npm:natural-compare", + "npm:semver", + "npm:@types/prettier", + "rule-schema-to-typescript-types", + "rule-tester", + "npm:ajv", + "npm:chalk", + "npm:cross-fetch", + "npm:jest-specific-snapshot", + "npm:json-schema", + "npm:markdown-table", + "npm:marked", + "npm:title-case", + "parser" + ] + }, + { + "file": "packages/eslint-plugin/project.json", + "hash": "6342084777508421790" + }, + { + "file": "packages/eslint-plugin/rules.d.ts", + "hash": "6314742875370263764", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/configs/all.ts", + "hash": "7911811049887949346" + }, + { + "file": "packages/eslint-plugin/src/configs/base.ts", + "hash": "5785401229011614228" + }, + { + "file": "packages/eslint-plugin/src/configs/disable-type-checked.ts", + "hash": "14461382295745129295" + }, + { + "file": "packages/eslint-plugin/src/configs/eslint-recommended.ts", + "hash": "8382844370550393182" + }, + { + "file": "packages/eslint-plugin/src/configs/recommended-type-checked.ts", + "hash": "3583629824329010585" + }, + { + "file": "packages/eslint-plugin/src/configs/recommended.ts", + "hash": "18320482167126627390" + }, + { + "file": "packages/eslint-plugin/src/configs/strict-type-checked.ts", + "hash": "6957207391067399842" + }, + { + "file": "packages/eslint-plugin/src/configs/strict.ts", + "hash": "4824656984803043210" + }, + { + "file": "packages/eslint-plugin/src/configs/stylistic-type-checked.ts", + "hash": "15435408709032583434" + }, + { + "file": "packages/eslint-plugin/src/configs/stylistic.ts", + "hash": "6934377730775813222" + }, + { + "file": "packages/eslint-plugin/src/index.ts", + "hash": "2142287965182566712" + }, + { + "file": "packages/eslint-plugin/src/rules/adjacent-overload-signatures.ts", + "hash": "15897746165522955954", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/array-type.ts", + "hash": "1168457095752997604", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/await-thenable.ts", + "hash": "12357732512350648310", + "deps": ["npm:ts-api-utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/ban-ts-comment.ts", + "hash": "15011367791165795347", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/ban-tslint-comment.ts", + "hash": "1275007674177201021", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/ban-types.ts", + "hash": "10506068704715633457", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/block-spacing.ts", + "hash": "6617604780869312367", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/brace-style.ts", + "hash": "3581167566739770749", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/class-literal-property-style.ts", + "hash": "14093459810385517798", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/class-methods-use-this.ts", + "hash": "16015885798219735434", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/comma-dangle.ts", + "hash": "14347400407334802820", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/comma-spacing.ts", + "hash": "1777666738500544884", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/consistent-generic-constructors.ts", + "hash": "11297574750314833081", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/consistent-indexed-object-style.ts", + "hash": "3285955495645942962", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/consistent-type-assertions.ts", + "hash": "2442754003814743908", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/consistent-type-definitions.ts", + "hash": "18365245014167706966", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/consistent-type-exports.ts", + "hash": "9879029482659297659", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/consistent-type-imports.ts", + "hash": "13517683016619341371", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/default-param-last.ts", + "hash": "757514520093438123", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/dot-notation.ts", + "hash": "9819501823739524287", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/enum-utils/shared.ts", + "hash": "16077533230135192450", + "deps": ["npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/explicit-function-return-type.ts", + "hash": "4929632973665523609", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/explicit-member-accessibility.ts", + "hash": "2160101938430247016", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/explicit-module-boundary-types.ts", + "hash": "16941093795610292499", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/func-call-spacing.ts", + "hash": "14517147838837230646", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/indent.ts", + "hash": "5364688124369635081", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/index.ts", + "hash": "16725913910830123291" + }, + { + "file": "packages/eslint-plugin/src/rules/init-declarations.ts", + "hash": "11785858729444400432", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/key-spacing.ts", + "hash": "3837088626490188158", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/keyword-spacing.ts", + "hash": "14495673060310568601", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/lines-around-comment.ts", + "hash": "600316914581313011", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/lines-between-class-members.ts", + "hash": "14550960328813385598", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/member-delimiter-style.ts", + "hash": "3238682908157890221", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/member-ordering.ts", + "hash": "16127411024685607292", + "deps": ["utils", "npm:natural-compare"] + }, + { + "file": "packages/eslint-plugin/src/rules/method-signature-style.ts", + "hash": "1538719702279523900", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/naming-convention-utils/enums.ts", + "hash": "5332610255367681686" + }, + { + "file": "packages/eslint-plugin/src/rules/naming-convention-utils/format.ts", + "hash": "16899703907678080903" + }, + { + "file": "packages/eslint-plugin/src/rules/naming-convention-utils/index.ts", + "hash": "3233111390754811014" + }, + { + "file": "packages/eslint-plugin/src/rules/naming-convention-utils/parse-options.ts", + "hash": "1020097694433177535" + }, + { + "file": "packages/eslint-plugin/src/rules/naming-convention-utils/schema.ts", + "hash": "17363238695864514031", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/naming-convention-utils/shared.ts", + "hash": "15858980299885166455" + }, + { + "file": "packages/eslint-plugin/src/rules/naming-convention-utils/types.ts", + "hash": "257016582110046672", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/naming-convention-utils/validator.ts", + "hash": "3411649052993342717", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/naming-convention.ts", + "hash": "11163996475139459760", + "deps": ["scope-manager", "utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-array-constructor.ts", + "hash": "5862925565054222693", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-base-to-string.ts", + "hash": "3491277328133398588", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-confusing-non-null-assertion.ts", + "hash": "6298062719543446361", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-confusing-void-expression.ts", + "hash": "10064960682153200595", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-dupe-class-members.ts", + "hash": "2497548231157360397", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-duplicate-enum-values.ts", + "hash": "9128180508903752565", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-duplicate-type-constituents.ts", + "hash": "1047559745853968546", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-dynamic-delete.ts", + "hash": "15489374247555581487", + "deps": ["utils", "npm:ts-api-utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-empty-function.ts", + "hash": "5037990587623438861", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-empty-interface.ts", + "hash": "14293543044139924263", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-explicit-any.ts", + "hash": "11133404285677618503", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-extra-non-null-assertion.ts", + "hash": "16389056904790231241", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-extra-parens.ts", + "hash": "16731340319825866677", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-extra-semi.ts", + "hash": "18180231244987847163" + }, + { + "file": "packages/eslint-plugin/src/rules/no-extraneous-class.ts", + "hash": "4960548506733314322", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-floating-promises.ts", + "hash": "14332858514453278162", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-for-in-array.ts", + "hash": "5600906060560818154", + "deps": ["npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-implied-eval.ts", + "hash": "3378729493825112189", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-import-type-side-effects.ts", + "hash": "14290030944778956689", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-inferrable-types.ts", + "hash": "1198254417586429818", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-invalid-this.ts", + "hash": "13100302559172999154", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-invalid-void-type.ts", + "hash": "3297852418381590011", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-loop-func.ts", + "hash": "15629731232117001563", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-loss-of-precision.ts", + "hash": "15835483264735763025", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-magic-numbers.ts", + "hash": "16735748190077719179", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-meaningless-void-operator.ts", + "hash": "16538869699842258217", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-misused-new.ts", + "hash": "7965274242236427417", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-misused-promises.ts", + "hash": "6316434776362751103", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-mixed-enums.ts", + "hash": "5256255987532429014", + "deps": [ + "scope-manager", + "utils", + "npm:ts-api-utils", + "npm:typescript" + ] + }, + { + "file": "packages/eslint-plugin/src/rules/no-namespace.ts", + "hash": "13734812089818165948", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-non-null-asserted-nullish-coalescing.ts", + "hash": "11960053017931753235", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-non-null-asserted-optional-chain.ts", + "hash": "5730683820134188890", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-non-null-assertion.ts", + "hash": "6018337925896961238", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-redeclare.ts", + "hash": "12241504052020753096", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-redundant-type-constituents.ts", + "hash": "2581500213644478410", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-require-imports.ts", + "hash": "18116252507088539560", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-restricted-imports.ts", + "hash": "9706956866826013536", + "deps": [ + "utils", + "npm:eslint/lib/rules/no-restricted-imports", + "npm:ignore" + ] + }, + { + "file": "packages/eslint-plugin/src/rules/no-shadow.ts", + "hash": "5464883271397641091", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-this-alias.ts", + "hash": "3063202150195919476", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-throw-literal.ts", + "hash": "14393115077137018277", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-type-alias.ts", + "hash": "10439917087265409497", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unnecessary-boolean-literal-compare.ts", + "hash": "2254384207022044215", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unnecessary-condition.ts", + "hash": "14357832801489723729", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unnecessary-qualifier.ts", + "hash": "8431193609428457784", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unnecessary-type-arguments.ts", + "hash": "16893211553532137199", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unnecessary-type-assertion.ts", + "hash": "9229247171564890434", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unnecessary-type-constraint.ts", + "hash": "4528135499077099478", + "deps": ["utils", "npm:path", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unsafe-argument.ts", + "hash": "9407462935652751626", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unsafe-assignment.ts", + "hash": "13554740260935723217", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unsafe-call.ts", + "hash": "11851441965879700039", + "deps": ["utils", "npm:ts-api-utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unsafe-declaration-merging.ts", + "hash": "17150932053680897630", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unsafe-enum-comparison.ts", + "hash": "3232122421305319055", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unsafe-member-access.ts", + "hash": "18053792232795463064", + "deps": ["utils", "npm:ts-api-utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unsafe-return.ts", + "hash": "1991718419530234934", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unused-expressions.ts", + "hash": "13657496052314736680", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-unused-vars.ts", + "hash": "13044428991276538699", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-use-before-define.ts", + "hash": "16129419843524067955", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-useless-constructor.ts", + "hash": "15070107066957383162", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-useless-empty-export.ts", + "hash": "5215708046247037127", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/no-var-requires.ts", + "hash": "22520623026068506", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/non-nullable-type-assertion-style.ts", + "hash": "9835639451558163120", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/object-curly-spacing.ts", + "hash": "17663169795522949122", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/padding-line-between-statements.ts", + "hash": "8503211669947933963", + "deps": ["utils", ["npm:multiline-block-like", "dynamic"]] + }, + { + "file": "packages/eslint-plugin/src/rules/parameter-properties.ts", + "hash": "865371194667100945", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-as-const.ts", + "hash": "5618273725049941404", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-enum-initializers.ts", + "hash": "6164565726962333287", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-for-of.ts", + "hash": "12864549606477845425", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-function-type.ts", + "hash": "8038288306699872441", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-includes.ts", + "hash": "2665747325305096351", + "deps": ["npm:@eslint-community/regexpp", "utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-literal-enum-member.ts", + "hash": "229581269623547706", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-namespace-keyword.ts", + "hash": "17080561256370164199", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-nullish-coalescing.ts", + "hash": "10416635278676015651", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.ts", + "hash": "13257585426717279662" + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-optional-chain-utils/analyzeChain.ts", + "hash": "12606707447489133005", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-optional-chain-utils/compareNodes.ts", + "hash": "12412726084947681836", + "deps": ["utils", "visitor-keys"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-optional-chain-utils/gatherLogicalOperands.ts", + "hash": "14658641742646198290", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-optional-chain.ts", + "hash": "16628977537164558062", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-readonly-parameter-types.ts", + "hash": "5630055273046833149", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-readonly.ts", + "hash": "13236226102968596200", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-reduce-type-parameter.ts", + "hash": "15660384926061411503", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-regexp-exec.ts", + "hash": "13954135383635659403", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-return-this-type.ts", + "hash": "4674868115144797075", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-string-starts-ends-with.ts", + "hash": "9894760782770180935", + "deps": ["npm:@eslint-community/regexpp", "utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/prefer-ts-expect-error.ts", + "hash": "460935528235933037", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/promise-function-async.ts", + "hash": "6242464499895393253", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/quotes.ts", + "hash": "5387869276638358943", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/require-array-sort-compare.ts", + "hash": "6572355590729081207", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/require-await.ts", + "hash": "12605245731651250606", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/restrict-plus-operands.ts", + "hash": "12881823249483420343", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/restrict-template-expressions.ts", + "hash": "8214221962946948452", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/return-await.ts", + "hash": "11124023165623008108", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/semi.ts", + "hash": "1964637464254508310", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/sort-type-constituents.ts", + "hash": "12055729780835295857", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/space-before-blocks.ts", + "hash": "11542936972261505547", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/space-before-function-paren.ts", + "hash": "16029614006683565963", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/space-infix-ops.ts", + "hash": "5995650360335754959", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/strict-boolean-expressions.ts", + "hash": "18127487766470417459", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/switch-exhaustiveness-check.ts", + "hash": "15467656360633490707", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/triple-slash-reference.ts", + "hash": "12947798085684371628", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/type-annotation-spacing.ts", + "hash": "5133737861344420473", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/typedef.ts", + "hash": "12371983757893185446", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/rules/unbound-method.ts", + "hash": "8438243588943286084", + "deps": ["utils", "npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/rules/unified-signatures.ts", + "hash": "6657366944391108902", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/astUtils.ts", + "hash": "4712286952245176371", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/util/collectUnusedVariables.ts", + "hash": "11789735250767375469", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin/src/util/createRule.ts", + "hash": "2221619228513518936", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/escapeRegExp.ts", + "hash": "11642863729333471001" + }, + { + "file": "packages/eslint-plugin/src/util/explicitReturnTypeUtils.ts", + "hash": "14317203664038978253", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/getESLintCoreRule.ts", + "hash": "18058224087276863140", + "deps": [ + "utils", + "npm:eslint/package.json", + "npm:semver", + "npm:eslint/use-at-your-own-risk", + ["npm:eslint/lib/rules/arrow-parens", "dynamic"], + ["npm:eslint/lib/rules/block-spacing", "dynamic"], + ["npm:eslint/lib/rules/brace-style", "dynamic"], + ["npm:eslint/lib/rules/comma-dangle", "dynamic"], + ["npm:eslint/lib/rules/dot-notation", "dynamic"], + ["npm:eslint/lib/rules/indent", "dynamic"], + ["npm:eslint/lib/rules/init-declarations", "dynamic"], + ["npm:eslint/lib/rules/key-spacing", "dynamic"], + ["npm:eslint/lib/rules/keyword-spacing", "dynamic"], + ["npm:eslint/lib/rules/lines-around-comment", "dynamic"], + ["npm:eslint/lib/rules/lines-between-class-members", "dynamic"], + ["npm:eslint/lib/rules/no-dupe-args", "dynamic"], + ["npm:eslint/lib/rules/no-dupe-class-members", "dynamic"], + ["npm:eslint/lib/rules/no-empty-function", "dynamic"], + ["npm:eslint/lib/rules/no-extra-parens", "dynamic"], + ["npm:eslint/lib/rules/no-extra-semi", "dynamic"], + ["npm:eslint/lib/rules/no-implicit-globals", "dynamic"], + ["npm:eslint/lib/rules/no-invalid-this", "dynamic"], + ["npm:eslint/lib/rules/no-loop-func", "dynamic"], + ["npm:eslint/lib/rules/no-loss-of-precision", "dynamic"], + ["npm:eslint/lib/rules/no-magic-numbers", "dynamic"], + ["npm:eslint/lib/rules/no-restricted-imports", "dynamic"], + ["npm:eslint/lib/rules/no-undef", "dynamic"], + ["npm:eslint/lib/rules/no-unused-expressions", "dynamic"], + ["npm:eslint/lib/rules/no-useless-constructor", "dynamic"], + ["npm:eslint/lib/rules/no-restricted-globals", "dynamic"], + ["npm:eslint/lib/rules/object-curly-spacing", "dynamic"], + ["npm:eslint/lib/rules/prefer-const", "dynamic"], + ["npm:eslint/lib/rules/quotes", "dynamic"], + ["npm:eslint/lib/rules/semi", "dynamic"], + ["npm:eslint/lib/rules/space-before-blocks", "dynamic"], + ["npm:eslint/lib/rules/space-infix-ops", "dynamic"], + ["npm:eslint/lib/rules/strict", "dynamic"] + ] + }, + { + "file": "packages/eslint-plugin/src/util/getFunctionHeadLoc.ts", + "hash": "468978323526362418", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/getOperatorPrecedence.ts", + "hash": "10675257534588895997", + "deps": ["utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/util/getStaticStringValue.ts", + "hash": "16950969511716920760", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/getStringLength.ts", + "hash": "11906957202955330012", + "deps": ["npm:graphemer"] + }, + { + "file": "packages/eslint-plugin/src/util/getThisExpression.ts", + "hash": "15487635563766725208", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/getWrappingFixer.ts", + "hash": "3142002785571756116", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/index.ts", + "hash": "18092533541060253334", + "deps": ["utils", "type-utils"] + }, + { + "file": "packages/eslint-plugin/src/util/isNodeEqual.ts", + "hash": "10724671240871519271", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/isNullLiteral.ts", + "hash": "3979955284757262588", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/isUndefinedIdentifier.ts", + "hash": "6640131607926203444", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/src/util/misc.ts", + "hash": "9024217496678311413", + "deps": ["type-utils", "utils", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin/src/util/objectIterators.ts", + "hash": "3177993518857469000" + }, + { + "file": "packages/eslint-plugin/tests/RuleTester.ts", + "hash": "17091581529641589164", + "deps": ["rule-tester", "npm:path"] + }, + { + "file": "packages/eslint-plugin/tests/areOptionsValid.test.ts", + "hash": "14099032866290010021" + }, + { + "file": "packages/eslint-plugin/tests/areOptionsValid.ts", + "hash": "2634990648617097082", + "deps": ["utils", "npm:ajv", "npm:json-schema"] + }, + { + "file": "packages/eslint-plugin/tests/configs.test.ts", + "hash": "3874530421046227457", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/tests/docs.test.ts", + "hash": "5650272239139672824", + "deps": ["npm:fs", "npm:marked", "npm:path", "npm:title-case"] + }, + { + "file": "packages/eslint-plugin/tests/eslint-rules/arrow-parens.test.ts", + "hash": "9111816062649362326", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/eslint-rules/no-dupe-args.test.ts", + "hash": "15216268517438344973", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/eslint-rules/no-implicit-globals.test.ts", + "hash": "12673493934269034829", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/eslint-rules/no-restricted-globals.test.ts", + "hash": "4040354705043545024", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/eslint-rules/no-undef.test.ts", + "hash": "3296313073300038279", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/eslint-rules/prefer-const.test.ts", + "hash": "17472209610275133952", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/eslint-rules/strict.test.ts", + "hash": "7880663766125107076", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/fixtures/class.ts", + "hash": "3034817576950591944" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/consistent-type-exports.ts", + "hash": "12758624597773988823" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/file.ts", + "hash": "3244421341483603138" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/foo.ts", + "hash": "12543694533344582441" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/indent/indent-invalid-fixture-1.js", + "hash": "3655381796956686394" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/indent/indent-valid-fixture-1.js", + "hash": "11301810934831372329" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/mixed-enums-decl.ts", + "hash": "5534667460623651996" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/react.tsx", + "hash": "3244421341483603138" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/tsconfig-withmeta.json", + "hash": "5414691158227617401" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/tsconfig.json", + "hash": "7871530416034166618" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/tsconfig.noImplicitThis.json", + "hash": "1348460778324252556" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/tsconfig.noUncheckedIndexedAccess.json", + "hash": "14260851424135397914" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/unstrict/file.ts", + "hash": "3244421341483603138" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/unstrict/react.tsx", + "hash": "3244421341483603138" + }, + { + "file": "packages/eslint-plugin/tests/fixtures/unstrict/tsconfig.json", + "hash": "9513048038108282114" + }, + { + "file": "packages/eslint-plugin/tests/index.test.ts", + "hash": "6722031626054425290", + "deps": ["npm:fs", "npm:path"] + }, + { + "file": "packages/eslint-plugin/tests/rules/adjacent-overload-signatures.test.ts", + "hash": "3068189590685847013", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/array-type.test.ts", + "hash": "18967645402631995", + "deps": ["parser", "rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/await-thenable.test.ts", + "hash": "13808222935760591740", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/ban-ts-comment.test.ts", + "hash": "8073771823052026315", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/ban-tslint-comment.test.ts", + "hash": "4069017714939352247", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/ban-types.test.ts", + "hash": "7153828928383243086", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/block-spacing.test.ts", + "hash": "3629905202899710371", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/brace-style.test.ts", + "hash": "10856521418749852617", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/class-literal-property-style.test.ts", + "hash": "5316780892961857172", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/class-methods-use-this/class-methods-use-this-core.test.ts", + "hash": "4744006967384094391", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/class-methods-use-this/class-methods-use-this.test.ts", + "hash": "4660333139127332105", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/comma-dangle.test.ts", + "hash": "18139269155499719896", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/comma-spacing.test.ts", + "hash": "3205075015867906100", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/consistent-generic-constructors.test.ts", + "hash": "873008635039909076", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/consistent-indexed-object-style.test.ts", + "hash": "11698262286778494065", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/consistent-type-assertions.test.ts", + "hash": "14394872934401913714", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/consistent-type-definitions.test.ts", + "hash": "4945475658938334195", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/consistent-type-exports.test.ts", + "hash": "7538528029619016478", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/consistent-type-imports.test.ts", + "hash": "6000805544805187956", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/default-param-last.test.ts", + "hash": "16066618998802904356", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/dot-notation.test.ts", + "hash": "2273543966253377164", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/explicit-function-return-type.test.ts", + "hash": "17428745859733151294", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/explicit-member-accessibility.test.ts", + "hash": "8480449124639841234", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/explicit-module-boundary-types.test.ts", + "hash": "2597798596053788586", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/func-call-spacing.test.ts", + "hash": "9606708729284541748", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/indent/indent.test.ts", + "hash": "8820310475696268740", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/indent/utils.ts", + "hash": "7754630194016825230", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/index.test.ts", + "hash": "14318277981178966017", + "deps": ["npm:fs"] + }, + { + "file": "packages/eslint-plugin/tests/rules/init-declarations.test.ts", + "hash": "15377600053771770191", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/key-spacing.test.ts", + "hash": "2293746598882825738", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/keyword-spacing.test.ts", + "hash": "16033910831263634618", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/lines-around-comment.test.ts", + "hash": "5425883249412779314", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/lines-between-class-members.test.ts", + "hash": "14840243470876621496", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/member-delimiter-style.test.ts", + "hash": "3054327494967402677", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/member-ordering/member-ordering-alphabetically-case-insensitive-order.test.ts", + "hash": "4392952217415576598", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/member-ordering/member-ordering-alphabetically-order.test.ts", + "hash": "58920124359426366", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/member-ordering/member-ordering-natural-case-insensitive-order.test.ts", + "hash": "9376027960228976708", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/member-ordering/member-ordering-natural-order.test.ts", + "hash": "743969553690454118", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/member-ordering/member-ordering-optionalMembers.test.ts", + "hash": "14154966176115497256", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/member-ordering.test.ts", + "hash": "14680211100326012569", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/method-signature-style.test.ts", + "hash": "14025316607603876335", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/accessor.test.ts", + "hash": "9593572016035701200" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/class.test.ts", + "hash": "13190022744587444563" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/createTestCases.ts", + "hash": "8138343642140640040", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/default.test.ts", + "hash": "9064039482697150150" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/enum.test.ts", + "hash": "10372415404892428506" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/enumMember.test.ts", + "hash": "5244551334166156824" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/function.test.ts", + "hash": "5894156034101644444" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/interface.test.ts", + "hash": "1242336125209810163" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/method.test.ts", + "hash": "17874613795112681211" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/parameter.test.ts", + "hash": "137767423747164069" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/parameterProperty.test.ts", + "hash": "3504355577196981276" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/property.test.ts", + "hash": "625989268847282255" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/typeAlias.test.ts", + "hash": "318964988801547610" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/typeParameter.test.ts", + "hash": "9767885376234853172" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/cases/variable.test.ts", + "hash": "1911543279091378159" + }, + { + "file": "packages/eslint-plugin/tests/rules/naming-convention/naming-convention.test.ts", + "hash": "605373525625503158", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-array-constructor.test.ts", + "hash": "15871743635098072909", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-base-to-string.test.ts", + "hash": "1238876264668127475", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-confusing-non-null-assertion.test.ts", + "hash": "1355007319200563831", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-confusing-void-expression.test.ts", + "hash": "17971119919992881211", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-dupe-class-members.test.ts", + "hash": "2424650047182144074", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-duplicate-enum-values.test.ts", + "hash": "14727850123039367811", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-duplicate-type-constituents.test.ts", + "hash": "4728351276400892504", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-dynamic-delete.test.ts", + "hash": "12890661913238778043", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-empty-function.test.ts", + "hash": "14684052776500745711", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-empty-interface.test.ts", + "hash": "431532284359931253", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-explicit-any.test.ts", + "hash": "11401924593556970519", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-extra-non-null-assertion.test.ts", + "hash": "15107399946503423736", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-extra-parens.test.ts", + "hash": "11280667371641527487", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-extra-semi.test.ts", + "hash": "9999271269371272600", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-extraneous-class.test.ts", + "hash": "8458035194031022546", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-floating-promises.test.ts", + "hash": "4411134371790834593", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-for-in-array.test.ts", + "hash": "11954213478408157256", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-implied-eval.test.ts", + "hash": "15239025555971644257", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-import-type-side-effects.test.ts", + "hash": "5214955718838604577", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-inferrable-types.test.ts", + "hash": "4701027926111608975", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-invalid-this.test.ts", + "hash": "14781338998092271063", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-invalid-void-type.test.ts", + "hash": "14558420409293522747", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-loop-func.test.ts", + "hash": "9653590465345428367", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-loss-of-precision.test.ts", + "hash": "16852541963564298267", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-magic-numbers.test.ts", + "hash": "6987925936079144456", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-meaningless-void-operator.test.ts", + "hash": "13217525156311368138", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-misused-new.test.ts", + "hash": "3879656661810680289", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-misused-promises.test.ts", + "hash": "2891405758624473220", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-mixed-enums.test.ts", + "hash": "13843754407760607182", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-namespace.test.ts", + "hash": "14646944747435128648", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-non-null-asserted-nullish-coalescing.test.ts", + "hash": "6300454154320374680", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-non-null-asserted-optional-chain.test.ts", + "hash": "6770116163405082945", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-non-null-assertion.test.ts", + "hash": "3570958299100267551", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-redeclare.test.ts", + "hash": "3439701793156227690", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-redundant-type-constituents.test.ts", + "hash": "16594817463695834663", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-require-imports.test.ts", + "hash": "273531554929818486", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-restricted-imports.test.ts", + "hash": "117745019861629423", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-shadow/no-shadow-eslint.test.ts", + "hash": "11107974905580879453", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-shadow/no-shadow.test.ts", + "hash": "11957142740207729969", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-this-alias.test.ts", + "hash": "16930327640093137243", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-throw-literal.test.ts", + "hash": "11091825648893502375", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-type-alias.test.ts", + "hash": "5285249668137853098", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unnecessary-boolean-literal-compare.test.ts", + "hash": "14818104887668763377", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unnecessary-condition.test.ts", + "hash": "7682177699615828015", + "deps": ["rule-tester", "utils", "npm:path"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unnecessary-qualifier.test.ts", + "hash": "6541673399470337652", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unnecessary-type-arguments.test.ts", + "hash": "12046394955481536313", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unnecessary-type-assertion.test.ts", + "hash": "4042321407567479467", + "deps": ["rule-tester", "npm:path"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unnecessary-type-constraint.test.ts", + "hash": "15749825367811388988", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unsafe-argument.test.ts", + "hash": "13587787513792038140", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unsafe-assignment.test.ts", + "hash": "9753158610389819895", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unsafe-call.test.ts", + "hash": "9749884849882977776", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unsafe-declaration-merging.test.ts", + "hash": "5950403442840766536", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unsafe-enum-comparison.test.ts", + "hash": "2336836363459012340", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unsafe-member-access.test.ts", + "hash": "6950004615517349754", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unsafe-return.test.ts", + "hash": "10872139157078614465", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unused-expressions.test.ts", + "hash": "13666482755710066796", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unused-vars/no-unused-vars-eslint.test.ts", + "hash": "17917591362795047449", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-unused-vars/no-unused-vars.test.ts", + "hash": "11179478769267569636", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-use-before-define.test.ts", + "hash": "11935865722055955372", + "deps": ["rule-tester", "utils", "npm:espree"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-useless-constructor.test.ts", + "hash": "1609949608724275284", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-useless-empty-export.test.ts", + "hash": "4593906260195787833", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/no-var-requires.test.ts", + "hash": "7733056963467164953", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/non-nullable-type-assertion-style.test.ts", + "hash": "14004598873225024091", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/object-curly-spacing.test.ts", + "hash": "11200753137771804518", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/padding-line-between-statements.test.ts", + "hash": "14595826171090352348", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/parameter-properties.test.ts", + "hash": "15319663595065644725", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-as-const.test.ts", + "hash": "4308291617976341585", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-enum-initializers.test.ts", + "hash": "3612617642033111398", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-for-of.test.ts", + "hash": "15691830013390086640", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-function-type.test.ts", + "hash": "6931096579541299230", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-includes.test.ts", + "hash": "12000479273373545047", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-literal-enum-member.test.ts", + "hash": "4533269218209990581", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-namespace-keyword.test.ts", + "hash": "5970718213019072655", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-nullish-coalescing.test.ts", + "hash": "16428456750467247391", + "deps": ["rule-tester", "utils", "npm:path"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-optional-chain/base-cases.ts", + "hash": "11251269214286517447", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-optional-chain/prefer-optional-chain.test.ts", + "hash": "12531981899036484243", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-readonly-parameter-types.test.ts", + "hash": "13071927609016972183", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-readonly.test.ts", + "hash": "7778228971364061778", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-reduce-type-parameter.test.ts", + "hash": "18016877340071172887", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-regexp-exec.test.ts", + "hash": "5034690090539899774", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-return-this-type.test.ts", + "hash": "10707211960625767438", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-string-starts-ends-with.test.ts", + "hash": "16156936926340997887", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/prefer-ts-expect-error.test.ts", + "hash": "16642907245919358007", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/promise-function-async.test.ts", + "hash": "7338275986553602094", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/quotes.test.ts", + "hash": "16388976034965050547", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/require-array-sort-compare.test.ts", + "hash": "6285669016203399030", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/require-await.test.ts", + "hash": "3302750385801450603", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/restrict-plus-operands.test.ts", + "hash": "6981159130408486778", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/restrict-template-expressions.test.ts", + "hash": "15466884012020100408", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/return-await.test.ts", + "hash": "6388795630769705012", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/semi.test.ts", + "hash": "17078699736375005079", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/sort-type-constituents.test.ts", + "hash": "6670856037605583806", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/space-before-blocks.test.ts", + "hash": "7171723653482642217", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/space-before-function-paren.test.ts", + "hash": "12715938683054256590", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/space-infix-ops.test.ts", + "hash": "16334457638629725200", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/strict-boolean-expressions.test.ts", + "hash": "7164019517567645907", + "deps": ["rule-tester", "npm:path"] + }, + { + "file": "packages/eslint-plugin/tests/rules/switch-exhaustiveness-check.test.ts", + "hash": "17049938412885758672", + "deps": ["rule-tester", "npm:path"] + }, + { + "file": "packages/eslint-plugin/tests/rules/triple-slash-reference.test.ts", + "hash": "4061007412257445705", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/type-annotation-spacing.test.ts", + "hash": "5026071520954123200", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/typedef.test.ts", + "hash": "6019024503299563973", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/rules/unbound-method.test.ts", + "hash": "10466124027820110082", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/rules/unified-signatures.test.ts", + "hash": "7221561392167888106", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/adjacent-overload-signatures.shot", + "hash": "8722789669332044198" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/array-type.shot", + "hash": "9444323653756994682" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/await-thenable.shot", + "hash": "15102495376960892833" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/ban-ts-comment.shot", + "hash": "17301372058700075520" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/ban-tslint-comment.shot", + "hash": "13580549079176801463" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/ban-types.shot", + "hash": "2164884068223146073" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/block-spacing.shot", + "hash": "15047235437976773083" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/brace-style.shot", + "hash": "17617634112712236437" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/class-literal-property-style.shot", + "hash": "9179930093013307113" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/class-methods-use-this.shot", + "hash": "2658396958066692434" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/comma-dangle.shot", + "hash": "6467934577861527844" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/comma-spacing.shot", + "hash": "6052673162456253458" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/consistent-generic-constructors.shot", + "hash": "4198214924073558810" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/consistent-indexed-object-style.shot", + "hash": "9779130294445447896" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/consistent-type-assertions.shot", + "hash": "14907902048377883320" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/consistent-type-definitions.shot", + "hash": "3538110355412036008" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/consistent-type-exports.shot", + "hash": "40387679702010513" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/consistent-type-imports.shot", + "hash": "15459123059089796933" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/default-param-last.shot", + "hash": "8514382706366871738" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/dot-notation.shot", + "hash": "17692133054836505247" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/explicit-function-return-type.shot", + "hash": "16451689345263589958" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/explicit-member-accessibility.shot", + "hash": "16596172134679773709" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/explicit-module-boundary-types.shot", + "hash": "14936462939257605488" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/func-call-spacing.shot", + "hash": "14587240220922316913" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/init-declarations.shot", + "hash": "11524718802693229197" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/key-spacing.shot", + "hash": "3418751344001387134" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/keyword-spacing.shot", + "hash": "14791184984875565393" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/lines-around-comment.shot", + "hash": "13270069217849297885" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/lines-between-class-members.shot", + "hash": "7670825022067951231" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/member-delimiter-style.shot", + "hash": "5661499088472353328" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/member-ordering.shot", + "hash": "13299829806913792323" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/method-signature-style.shot", + "hash": "566247256721077437" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/naming-convention.shot", + "hash": "7797249285914779455" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-array-constructor.shot", + "hash": "7490909613567563324" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-base-to-string.shot", + "hash": "530286497813224023" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-confusing-non-null-assertion.shot", + "hash": "4651466827875481698" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-confusing-void-expression.shot", + "hash": "10688211961712946967" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-dupe-class-members.shot", + "hash": "7505226289047517495" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-duplicate-enum-values.shot", + "hash": "16322213959242251949" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-duplicate-type-constituents.shot", + "hash": "247010805232595277" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-dynamic-delete.shot", + "hash": "18221239931052246555" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-empty-function.shot", + "hash": "11672430898211167398" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-empty-interface.shot", + "hash": "17340516942098573877" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-explicit-any.shot", + "hash": "3077793540239960515" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-extra-non-null-assertion.shot", + "hash": "4662021767369951601" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-extra-parens.shot", + "hash": "13353222728907704127" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-extra-semi.shot", + "hash": "8589050933217658776" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-extraneous-class.shot", + "hash": "5828347670039598240" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-floating-promises.shot", + "hash": "14671955562035707964" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-for-in-array.shot", + "hash": "17141339134379888690" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-implied-eval.shot", + "hash": "6974671152006101667" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-import-type-side-effects.shot", + "hash": "15466501843651382798" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-inferrable-types.shot", + "hash": "16649660756084515011" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-invalid-this.shot", + "hash": "16008336976045610806" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-invalid-void-type.shot", + "hash": "591288828220001802" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-loop-func.shot", + "hash": "15535297936027772646" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-loss-of-precision.shot", + "hash": "6041513778891543323" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-magic-numbers.shot", + "hash": "12730041391563784390" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-meaningless-void-operator.shot", + "hash": "8478357062667609719" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-misused-new.shot", + "hash": "16672400546716975514" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-misused-promises.shot", + "hash": "10968660016687209693" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-mixed-enums.shot", + "hash": "10541980292192221760" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-namespace.shot", + "hash": "15027432843837176633" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-non-null-asserted-nullish-coalescing.shot", + "hash": "6983544518324085617" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-non-null-asserted-optional-chain.shot", + "hash": "899686061707668965" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-non-null-assertion.shot", + "hash": "274025400097667678" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-redeclare.shot", + "hash": "5160080301554980079" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-redundant-type-constituents.shot", + "hash": "11254811212692936534" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-require-imports.shot", + "hash": "11376722955841966911" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-restricted-imports.shot", + "hash": "14221929242348415386" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-shadow.shot", + "hash": "615334806643291118" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-this-alias.shot", + "hash": "4308826915609546783" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-throw-literal.shot", + "hash": "679099565332859591" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-type-alias.shot", + "hash": "1154406012737521817" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unnecessary-boolean-literal-compare.shot", + "hash": "3577702593592747421" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unnecessary-condition.shot", + "hash": "11976040638988395936" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unnecessary-qualifier.shot", + "hash": "13307916609260502778" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unnecessary-type-arguments.shot", + "hash": "9304437859409546047" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unnecessary-type-assertion.shot", + "hash": "548240043791388208" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unnecessary-type-constraint.shot", + "hash": "793305405201358780" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unsafe-argument.shot", + "hash": "8236213065220724360" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unsafe-assignment.shot", + "hash": "16825716191619593159" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unsafe-call.shot", + "hash": "9173534507432832226" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unsafe-declaration-merging.shot", + "hash": "13273334430306132786" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unsafe-enum-comparison.shot", + "hash": "2592828990598938691" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unsafe-member-access.shot", + "hash": "11315765645380920507" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unsafe-return.shot", + "hash": "17450792500894909899" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unused-expressions.shot", + "hash": "4846618881138134572" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-unused-vars.shot", + "hash": "221488466166748280" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-use-before-define.shot", + "hash": "1751719095712043498" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-useless-constructor.shot", + "hash": "9868978303018600212" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-useless-empty-export.shot", + "hash": "14212323366587166966" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/no-var-requires.shot", + "hash": "4591416036328075696" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/non-nullable-type-assertion-style.shot", + "hash": "17246684270786167907" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/object-curly-spacing.shot", + "hash": "3769491629968535245" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/padding-line-between-statements.shot", + "hash": "1257633410744622243" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/parameter-properties.shot", + "hash": "13160693969051684224" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-as-const.shot", + "hash": "11598977352672378989" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-enum-initializers.shot", + "hash": "9968698139100951567" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-for-of.shot", + "hash": "11404497176180774536" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-function-type.shot", + "hash": "6840991984879317493" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-includes.shot", + "hash": "17877043982663291718" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-literal-enum-member.shot", + "hash": "12866267973768414085" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-namespace-keyword.shot", + "hash": "7436424048811152630" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-nullish-coalescing.shot", + "hash": "6295110737721948126" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-optional-chain.shot", + "hash": "5076125142325370953" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-readonly-parameter-types.shot", + "hash": "735000602190765198" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-readonly.shot", + "hash": "9122257633999388727" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-reduce-type-parameter.shot", + "hash": "17032360495098592268" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-regexp-exec.shot", + "hash": "17386372561034092788" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-return-this-type.shot", + "hash": "11102433942023777538" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-string-starts-ends-with.shot", + "hash": "10126610706328412589" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/prefer-ts-expect-error.shot", + "hash": "4631854518384314021" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/promise-function-async.shot", + "hash": "9400418031949378580" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/quotes.shot", + "hash": "10741775533677033033" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/require-array-sort-compare.shot", + "hash": "2717725594373200993" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/require-await.shot", + "hash": "9604151360124562040" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/restrict-plus-operands.shot", + "hash": "16137126746310278697" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/restrict-template-expressions.shot", + "hash": "9151456572696332865" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/return-await.shot", + "hash": "2672272655065665115" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/semi.shot", + "hash": "12427008497017415181" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/sort-type-constituents.shot", + "hash": "993758166401498700" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/space-before-blocks.shot", + "hash": "7275152628133637884" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/space-before-function-paren.shot", + "hash": "15963736218185386163" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/space-infix-ops.shot", + "hash": "15215605507633569522" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/strict-boolean-expressions.shot", + "hash": "13400195653265826325" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/switch-exhaustiveness-check.shot", + "hash": "12070353277420502416" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/triple-slash-reference.shot", + "hash": "12684099135652282741" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/type-annotation-spacing.shot", + "hash": "14935957690440917171" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/typedef.shot", + "hash": "5983936964950217760" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/unbound-method.shot", + "hash": "10387152644274616906" + }, + { + "file": "packages/eslint-plugin/tests/schema-snapshots/unified-signatures.shot", + "hash": "4124478209537358165" + }, + { + "file": "packages/eslint-plugin/tests/schemas.test.ts", + "hash": "7297545083768546683", + "deps": [ + "npm:jest-specific-snapshot", + "npm:node:fs", + "npm:node:path", + "rule-schema-to-typescript-types", + "npm:prettier" + ] + }, + { + "file": "packages/eslint-plugin/tests/util/getWrappingFixer.test.ts", + "hash": "15494838330871635613", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/util/isNodeEqual.test.ts", + "hash": "18011160430071741863", + "deps": ["rule-tester", "utils"] + }, + { + "file": "packages/eslint-plugin/tests/util/misc.test.ts", + "hash": "7907495923073977931" + }, + { + "file": "packages/eslint-plugin/tests/util.test.ts", + "hash": "11949761371900140229" + }, + { + "file": "packages/eslint-plugin/tools/generate-breaking-changes.mts", + "hash": "9422387657934071027", + "deps": ["npm:cross-fetch", "npm:markdown-table"] + }, + { + "file": "packages/eslint-plugin/tools/generate-configs.ts", + "hash": "3964170617347382210", + "deps": ["utils", "npm:fs", "npm:path", "npm:prettier", "npm:url"] + }, + { + "file": "packages/eslint-plugin/tsconfig.build.json", + "hash": "585204426950686949" + }, + { + "file": "packages/eslint-plugin/tsconfig.json", + "hash": "4736425596069371156" + }, + { + "file": "packages/eslint-plugin/typings/eslint-rules.d.ts", + "hash": "11300884551415778877", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin/typings/node.d.ts", + "hash": "16159030967045524072" + }, + { + "file": "packages/eslint-plugin/typings/typescript.d.ts", + "hash": "16997381582179229992", + "deps": ["npm:typescript"] + } + ], + "integration-tests": [ + { + "file": "packages/integration-tests/CHANGELOG.md", + "hash": "14600089472674256816" + }, + { + "file": "packages/integration-tests/README.md", + "hash": "4960296058298614088" + }, + { + "file": "packages/integration-tests/fixtures/eslint-v7/.eslintrc.js", + "hash": "7661271767810193305" + }, + { + "file": "packages/integration-tests/fixtures/eslint-v7/index.ts", + "hash": "7455287296524896542" + }, + { + "file": "packages/integration-tests/fixtures/eslint-v7/package.json", + "hash": "7277067981750549455" + }, + { + "file": "packages/integration-tests/fixtures/eslint-v7/tsconfig.json", + "hash": "13085161575016801" + }, + { + "file": "packages/integration-tests/fixtures/markdown/.eslintrc.js", + "hash": "2299384343152315416" + }, + { + "file": "packages/integration-tests/fixtures/markdown/Doc.md", + "hash": "5198963322763821758" + }, + { + "file": "packages/integration-tests/fixtures/markdown/package.json", + "hash": "18212764920371072250" + }, + { + "file": "packages/integration-tests/fixtures/markdown/tsconfig.json", + "hash": "2653736441624702740" + }, + { + "file": "packages/integration-tests/fixtures/recommended-does-not-require-program/.eslintrc.js", + "hash": "12576033850900809639" + }, + { + "file": "packages/integration-tests/fixtures/recommended-does-not-require-program/index.ts", + "hash": "12924413810076517292" + }, + { + "file": "packages/integration-tests/fixtures/recommended-does-not-require-program/package.json", + "hash": "11898217159435303806" + }, + { + "file": "packages/integration-tests/fixtures/typescript-and-tslint-plugins-together/.eslintrc.js", + "hash": "5626236664206159505" + }, + { + "file": "packages/integration-tests/fixtures/typescript-and-tslint-plugins-together/index.ts", + "hash": "12083839324559823690" + }, + { + "file": "packages/integration-tests/fixtures/typescript-and-tslint-plugins-together/package.json", + "hash": "4979636076103898653" + }, + { + "file": "packages/integration-tests/fixtures/typescript-and-tslint-plugins-together/tsconfig.json", + "hash": "13085161575016801" + }, + { + "file": "packages/integration-tests/fixtures/vue-jsx/.eslintrc.js", + "hash": "17577888644367825332" + }, + { + "file": "packages/integration-tests/fixtures/vue-jsx/Jsx.vue", + "hash": "8800234446944471907" + }, + { + "file": "packages/integration-tests/fixtures/vue-jsx/package.json", + "hash": "14484042423213255212" + }, + { + "file": "packages/integration-tests/fixtures/vue-jsx/tsconfig.json", + "hash": "2424014699269714643" + }, + { + "file": "packages/integration-tests/fixtures/vue-sfc/.eslintrc.js", + "hash": "1916601174959443277" + }, + { + "file": "packages/integration-tests/fixtures/vue-sfc/Hello.vue", + "hash": "4788548843506280622" + }, + { + "file": "packages/integration-tests/fixtures/vue-sfc/Utility.vue", + "hash": "14820501136264967974" + }, + { + "file": "packages/integration-tests/fixtures/vue-sfc/World.vue", + "hash": "13052783130840199098" + }, + { + "file": "packages/integration-tests/fixtures/vue-sfc/package.json", + "hash": "14484042423213255212" + }, + { + "file": "packages/integration-tests/fixtures/vue-sfc/tsconfig.json", + "hash": "2424014699269714643" + }, + { + "file": "packages/integration-tests/jest.config.js", + "hash": "1579289613171750100", + "deps": ["npm:ts-node", "npm:../../jest.config.base.js"] + }, + { + "file": "packages/integration-tests/package.json", + "hash": "9992705214910888287", + "deps": ["npm:ncp", "npm:tmp"] + }, + { + "file": "packages/integration-tests/project.json", + "hash": "971975776307813792" + }, + { + "file": "packages/integration-tests/tests/__snapshots__/eslint-v7.test.ts.snap", + "hash": "1842538499885013509" + }, + { + "file": "packages/integration-tests/tests/__snapshots__/markdown.test.ts.snap", + "hash": "16329581324601570785" + }, + { + "file": "packages/integration-tests/tests/__snapshots__/recommended-does-not-require-program.test.ts.snap", + "hash": "15831592158593748281" + }, + { + "file": "packages/integration-tests/tests/__snapshots__/typescript-and-tslint-plugins-together.test.ts.snap", + "hash": "16234862433947663636" + }, + { + "file": "packages/integration-tests/tests/__snapshots__/vue-jsx.test.ts.snap", + "hash": "16480929102358324377" + }, + { + "file": "packages/integration-tests/tests/__snapshots__/vue-sfc.test.ts.snap", + "hash": "13276882863088387407" + }, + { + "file": "packages/integration-tests/tests/eslint-v7.test.ts", + "hash": "12165772414940122507" + }, + { + "file": "packages/integration-tests/tests/markdown.test.ts", + "hash": "15476241229348479018" + }, + { + "file": "packages/integration-tests/tests/recommended-does-not-require-program.test.ts", + "hash": "12165772414940122507" + }, + { + "file": "packages/integration-tests/tests/typescript-and-tslint-plugins-together.test.ts", + "hash": "12165772414940122507" + }, + { + "file": "packages/integration-tests/tests/vue-jsx.test.ts", + "hash": "15499524696147686108" + }, + { + "file": "packages/integration-tests/tests/vue-sfc.test.ts", + "hash": "15499524696147686108" + }, + { + "file": "packages/integration-tests/tools/integration-test-base.ts", + "hash": "17682468168503331117", + "deps": [ + "npm:child_process", + "npm:fs", + "npm:ncp", + "npm:path", + "npm:tmp", + "npm:util", + "npm:../../../package.json" + ] + }, + { + "file": "packages/integration-tests/tools/pack-packages.ts", + "hash": "11207774701473819737", + "deps": ["npm:child_process", "npm:fs", "npm:path", "npm:tmp"] + }, + { + "file": "packages/integration-tests/tsconfig.build.json", + "hash": "11785535503523888164" + }, + { + "file": "packages/integration-tests/tsconfig.json", + "hash": "9435499140408642685" + }, + { + "file": "packages/integration-tests/typings/global.d.ts", + "hash": "13473002117572858132" + } + ], + "utils": [ + { + "file": "packages/utils/CHANGELOG.md", + "hash": "9197966401723107460" + }, + { + "file": "packages/utils/LICENSE", + "hash": "7839189362606127045" + }, + { + "file": "packages/utils/README.md", + "hash": "13459935983136059642" + }, + { + "file": "packages/utils/jest.config.js", + "hash": "5004466771274142581", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/utils/package.json", + "hash": "1623539225271397401", + "deps": [ + "npm:@eslint-community/eslint-utils", + "scope-manager", + "types", + "typescript-estree", + "npm:semver", + "parser" + ] + }, + { + "file": "packages/utils/project.json", + "hash": "14246477342167403775" + }, + { + "file": "packages/utils/src/ast-utils/eslint-utils/PatternMatcher.ts", + "hash": "16848173000808830628", + "deps": ["npm:@eslint-community/eslint-utils"] + }, + { + "file": "packages/utils/src/ast-utils/eslint-utils/ReferenceTracker.ts", + "hash": "15759839719546388732", + "deps": ["npm:@eslint-community/eslint-utils"] + }, + { + "file": "packages/utils/src/ast-utils/eslint-utils/astUtilities.ts", + "hash": "1393308916291994446", + "deps": ["npm:@eslint-community/eslint-utils"] + }, + { + "file": "packages/utils/src/ast-utils/eslint-utils/index.ts", + "hash": "14549867472821690655" + }, + { + "file": "packages/utils/src/ast-utils/eslint-utils/predicates.ts", + "hash": "13279112002470902891", + "deps": ["npm:@eslint-community/eslint-utils"] + }, + { + "file": "packages/utils/src/ast-utils/eslint-utils/scopeAnalysis.ts", + "hash": "3412948390294351527", + "deps": ["npm:@eslint-community/eslint-utils"] + }, + { + "file": "packages/utils/src/ast-utils/helpers.ts", + "hash": "8386253594301050085" + }, + { + "file": "packages/utils/src/ast-utils/index.ts", + "hash": "15644622686338923961" + }, + { + "file": "packages/utils/src/ast-utils/misc.ts", + "hash": "2892186182792522004" + }, + { + "file": "packages/utils/src/ast-utils/predicates.ts", + "hash": "11840571283705194107" + }, + { + "file": "packages/utils/src/eslint-utils/InferTypesFromRule.ts", + "hash": "12487674544292909373" + }, + { + "file": "packages/utils/src/eslint-utils/RuleCreator.ts", + "hash": "17827251965166945874" + }, + { + "file": "packages/utils/src/eslint-utils/applyDefault.ts", + "hash": "5107019750733206535" + }, + { + "file": "packages/utils/src/eslint-utils/deepMerge.ts", + "hash": "9995838169209079027" + }, + { + "file": "packages/utils/src/eslint-utils/getParserServices.ts", + "hash": "6692024906344784905" + }, + { + "file": "packages/utils/src/eslint-utils/index.ts", + "hash": "12508394206532722343" + }, + { + "file": "packages/utils/src/eslint-utils/nullThrows.ts", + "hash": "11499714133032195193" + }, + { + "file": "packages/utils/src/index.ts", + "hash": "11856414212615802788" + }, + { + "file": "packages/utils/src/json-schema.ts", + "hash": "2322548075866249796" + }, + { + "file": "packages/utils/src/ts-eslint/AST.ts", + "hash": "14534078188411317210" + }, + { + "file": "packages/utils/src/ts-eslint/CLIEngine.ts", + "hash": "9428150415627725591", + "deps": ["npm:eslint"] + }, + { + "file": "packages/utils/src/ts-eslint/ESLint.ts", + "hash": "5863006578646161259", + "deps": ["npm:eslint"] + }, + { + "file": "packages/utils/src/ts-eslint/Linter.ts", + "hash": "4633708709625534723", + "deps": ["npm:eslint"] + }, + { + "file": "packages/utils/src/ts-eslint/ParserOptions.ts", + "hash": "11898905298693798747", + "deps": ["types"] + }, + { + "file": "packages/utils/src/ts-eslint/Rule.ts", + "hash": "7294458312147098224" + }, + { + "file": "packages/utils/src/ts-eslint/RuleTester.ts", + "hash": "5826572726444653642", + "deps": ["npm:eslint"] + }, + { + "file": "packages/utils/src/ts-eslint/Scope.ts", + "hash": "9594223794702581347", + "deps": ["scope-manager"] + }, + { + "file": "packages/utils/src/ts-eslint/SourceCode.ts", + "hash": "6938624351223716039", + "deps": ["npm:eslint"] + }, + { + "file": "packages/utils/src/ts-eslint/index.ts", + "hash": "13603203100974109550" + }, + { + "file": "packages/utils/src/ts-estree.ts", + "hash": "14611968048610904311", + "deps": ["types", "typescript-estree"] + }, + { + "file": "packages/utils/src/ts-utils/index.ts", + "hash": "2589479871038437307" + }, + { + "file": "packages/utils/src/ts-utils/isArray.ts", + "hash": "2680509069793450529" + }, + { + "file": "packages/utils/tests/eslint-utils/RuleCreator.test.ts", + "hash": "8340787326693402764" + }, + { + "file": "packages/utils/tests/eslint-utils/applyDefault.test.ts", + "hash": "3114410819892229231" + }, + { + "file": "packages/utils/tests/eslint-utils/deepMerge.test.ts", + "hash": "11428313835202274227" + }, + { + "file": "packages/utils/tests/eslint-utils/nullThrows.test.ts", + "hash": "9457617902358167800" + }, + { + "file": "packages/utils/tsconfig.build.json", + "hash": "6115657275383111075" + }, + { + "file": "packages/utils/tsconfig.json", + "hash": "12093698485137922969" + }, + { + "file": "packages/utils/typings/eslint-community-eslint-utils.d.ts", + "hash": "12942797497419394487" + }, + { + "file": "packages/utils/typings/eslint.d.ts", + "hash": "2032770407540829589" + } + ], + "rule-schema-to-typescript-types": [ + { + "file": "packages/rule-schema-to-typescript-types/CHANGELOG.md", + "hash": "13641648404375046892" + }, + { + "file": "packages/rule-schema-to-typescript-types/README.md", + "hash": "6389763633610892175" + }, + { + "file": "packages/rule-schema-to-typescript-types/jest.config.js", + "hash": "7732977765129427371", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/rule-schema-to-typescript-types/package.json", + "hash": "13673468348226154683", + "deps": ["type-utils", "utils", "npm:natural-compare"] + }, + { + "file": "packages/rule-schema-to-typescript-types/project.json", + "hash": "4834546001899516214" + }, + { + "file": "packages/rule-schema-to-typescript-types/src/errors.ts", + "hash": "11546875952378341793" + }, + { + "file": "packages/rule-schema-to-typescript-types/src/generateArrayType.ts", + "hash": "16660629848373314968", + "deps": ["utils"] + }, + { + "file": "packages/rule-schema-to-typescript-types/src/generateObjectType.ts", + "hash": "18040245051206545743", + "deps": ["type-utils", "utils"] + }, + { + "file": "packages/rule-schema-to-typescript-types/src/generateType.ts", + "hash": "8971146914184837107", + "deps": ["utils"] + }, + { + "file": "packages/rule-schema-to-typescript-types/src/generateUnionType.ts", + "hash": "6556530974205653511", + "deps": ["utils"] + }, + { + "file": "packages/rule-schema-to-typescript-types/src/getCommentLines.ts", + "hash": "15101778494183482591", + "deps": ["utils"] + }, + { + "file": "packages/rule-schema-to-typescript-types/src/index.ts", + "hash": "4575796950390183035", + "deps": ["utils", "npm:path", "npm:prettier"] + }, + { + "file": "packages/rule-schema-to-typescript-types/src/optimizeAST.ts", + "hash": "17917229661527838073" + }, + { + "file": "packages/rule-schema-to-typescript-types/src/printAST.ts", + "hash": "17074752008630814640", + "deps": ["npm:natural-compare"] + }, + { + "file": "packages/rule-schema-to-typescript-types/src/types.ts", + "hash": "9971192995365466734" + }, + { + "file": "packages/rule-schema-to-typescript-types/tsconfig.build.json", + "hash": "4823153275379211186" + }, + { + "file": "packages/rule-schema-to-typescript-types/tsconfig.json", + "hash": "12799553526542580771" + } + ], + "repo-tools": [ + { + "file": "packages/repo-tools/CHANGELOG.md", + "hash": "1329804497624580112" + }, + { + "file": "packages/repo-tools/README.md", + "hash": "1247539588261142593" + }, + { + "file": "packages/repo-tools/jest.config.js", + "hash": "9499511526949229547", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/repo-tools/package.json", + "hash": "10585977733111585271", + "deps": ["npm:cross-fetch", "npm:execa", "npm:tmp"] + }, + { + "file": "packages/repo-tools/project.json", + "hash": "6787380794862826077" + }, + { + "file": "packages/repo-tools/src/generate-contributors.ts", + "hash": "766960017517075333", + "deps": ["npm:cross-fetch", "npm:fs", "npm:path"] + }, + { + "file": "packages/repo-tools/src/generate-sponsors.ts", + "hash": "7850757563792386125", + "deps": ["npm:cross-fetch", "npm:fs", "npm:path", "npm:prettier"] + }, + { + "file": "packages/repo-tools/src/postinstall.mts", + "hash": "5744662919983158668", + "deps": ["npm:execa", "npm:path", "npm:url"] + }, + { + "file": "packages/repo-tools/tsconfig.build.json", + "hash": "4823153275379211186" + }, + { + "file": "packages/repo-tools/tsconfig.json", + "hash": "12799553526542580771" + } + ], + "rule-tester": [ + { + "file": "packages/rule-tester/CHANGELOG.md", + "hash": "4235000216757274374" + }, + { + "file": "packages/rule-tester/LICENSE", + "hash": "8349623603192890124" + }, + { + "file": "packages/rule-tester/README.md", + "hash": "7276841824696732662" + }, + { + "file": "packages/rule-tester/jest.config.js", + "hash": "5004466771274142581", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/rule-tester/package.json", + "hash": "888990102803901761", + "deps": [ + "typescript-estree", + "utils", + "npm:ajv", + "npm:lodash.merge", + "npm:semver", + "parser", + "npm:source-map-support" + ] + }, + { + "file": "packages/rule-tester/project.json", + "hash": "1668433665978333739" + }, + { + "file": "packages/rule-tester/src/RuleTester.ts", + "hash": "98646890091615858", + "deps": [ + "npm:node:assert", + "npm:node:path", + "npm:node:util", + "parser", + "utils", + "npm:eslint", + "npm:lodash.merge" + ] + }, + { + "file": "packages/rule-tester/src/TestFramework.ts", + "hash": "4272680781178922225" + }, + { + "file": "packages/rule-tester/src/index.ts", + "hash": "2475761755379618973" + }, + { + "file": "packages/rule-tester/src/noFormat.ts", + "hash": "7123667753532280975" + }, + { + "file": "packages/rule-tester/src/types/DependencyConstraint.ts", + "hash": "16026932413266954351", + "deps": ["npm:semver"] + }, + { + "file": "packages/rule-tester/src/types/InvalidTestCase.ts", + "hash": "10305495188386595940", + "deps": ["utils"] + }, + { + "file": "packages/rule-tester/src/types/RuleTesterConfig.ts", + "hash": "17878444819459868885", + "deps": ["utils"] + }, + { + "file": "packages/rule-tester/src/types/ValidTestCase.ts", + "hash": "11750596242606943501", + "deps": ["utils"] + }, + { + "file": "packages/rule-tester/src/types/index.ts", + "hash": "8511244888859266283" + }, + { + "file": "packages/rule-tester/src/utils/SourceCodeFixer.ts", + "hash": "2733697085403895269", + "deps": ["utils"] + }, + { + "file": "packages/rule-tester/src/utils/ajv.ts", + "hash": "2857429676782207418", + "deps": ["npm:ajv"] + }, + { + "file": "packages/rule-tester/src/utils/cloneDeeplyExcludesParent.ts", + "hash": "2826162091237418669" + }, + { + "file": "packages/rule-tester/src/utils/config-schema.ts", + "hash": "10416070556783635599", + "deps": ["utils"] + }, + { + "file": "packages/rule-tester/src/utils/config-validator.ts", + "hash": "14096827854438560166", + "deps": [ + "npm:node:util", + "npm:@eslint/eslintrc", + "utils", + "npm:ajv", + "npm:eslint/use-at-your-own-risk" + ] + }, + { + "file": "packages/rule-tester/src/utils/dependencyConstraints.ts", + "hash": "1628570722900671774", + "deps": ["npm:semver"] + }, + { + "file": "packages/rule-tester/src/utils/deprecation-warnings.ts", + "hash": "391838544143521720", + "deps": ["npm:node:path"] + }, + { + "file": "packages/rule-tester/src/utils/freezeDeeply.ts", + "hash": "4243724757878539367" + }, + { + "file": "packages/rule-tester/src/utils/getRuleOptionsSchema.ts", + "hash": "9031753346066040308", + "deps": ["utils"] + }, + { + "file": "packages/rule-tester/src/utils/hasOwnProperty.ts", + "hash": "17245885955600294108" + }, + { + "file": "packages/rule-tester/src/utils/interpolate.ts", + "hash": "9696398049522920531", + "deps": ["utils"] + }, + { + "file": "packages/rule-tester/src/utils/isReadonlyArray.ts", + "hash": "1760519437954677981" + }, + { + "file": "packages/rule-tester/src/utils/validationHelpers.ts", + "hash": "15817966552469121940", + "deps": ["typescript-estree", "utils"] + }, + { + "file": "packages/rule-tester/tests/RuleTester.test.ts", + "hash": "2891714564425860527", + "deps": ["parser", "typescript-estree", "utils"] + }, + { + "file": "packages/rule-tester/tests/eslint-base/eslint-base.test.js", + "hash": "9224609457006527597", + "deps": [ + "npm:sinon", + "npm:events", + "npm:chai", + "npm:assert", + "npm:espree", + ["npm:esprima", "dynamic"], + ["npm:espree", "dynamic"], + ["parser", "dynamic"] + ] + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/empty-program-parser.js", + "hash": "5462220136175198684" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/enhanced-parser.js", + "hash": "15594072830543963664", + "deps": ["npm:espree"] + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/enhanced-parser2.js", + "hash": "10459232344825770555", + "deps": ["npm:assert", "npm:eslint-visitor-keys"] + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/fixes-one-problem.js", + "hash": "9360376561974568975" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/messageId.js", + "hash": "13836552412601589275" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/modify-ast-at-first.js", + "hash": "14337282906537043221" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/modify-ast-at-last.js", + "hash": "14081137389012818885" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/modify-ast.js", + "hash": "4626203429373133526" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/no-eval.js", + "hash": "14237446464570556499" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/no-invalid-args.js", + "hash": "8288249673472726591" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/no-invalid-schema.js", + "hash": "6186143838077556623" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/no-schema-violation.js", + "hash": "17992358969504264080" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/no-test-filename", + "hash": "4466661815109109783" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/no-test-global.js", + "hash": "18880243338931544" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/no-test-settings.js", + "hash": "10852382148900160851" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/no-var.js", + "hash": "2241878867156988081" + }, + { + "file": "packages/rule-tester/tests/eslint-base/fixtures/suggestions.js", + "hash": "6524023521229546226" + }, + { + "file": "packages/rule-tester/tsconfig.build.json", + "hash": "17726300828081779894" + }, + { + "file": "packages/rule-tester/tsconfig.json", + "hash": "16856679834487381879" + }, + { + "file": "packages/rule-tester/typings/eslint.d.ts", + "hash": "3559018093830828169", + "deps": ["utils"] + } + ], + "eslint-plugin-tslint": [ + { + "file": "packages/eslint-plugin-tslint/CHANGELOG.md", + "hash": "7882353548234002820" + }, + { + "file": "packages/eslint-plugin-tslint/LICENSE", + "hash": "7839189362606127045" + }, + { + "file": "packages/eslint-plugin-tslint/README.md", + "hash": "3824309805499317404" + }, + { + "file": "packages/eslint-plugin-tslint/jest.config.js", + "hash": "5004466771274142581", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/eslint-plugin-tslint/package.json", + "hash": "5596135746760664135", + "deps": ["utils", "parser", "npm:tslint"] + }, + { + "file": "packages/eslint-plugin-tslint/project.json", + "hash": "1339980119672172592" + }, + { + "file": "packages/eslint-plugin-tslint/src/custom-linter.ts", + "hash": "14505406617308545205", + "deps": ["npm:tslint", "npm:typescript"] + }, + { + "file": "packages/eslint-plugin-tslint/src/index.ts", + "hash": "10819987279206152231" + }, + { + "file": "packages/eslint-plugin-tslint/src/rules/config.ts", + "hash": "3009365057039137889", + "deps": ["utils", "npm:path", "npm:tslint"] + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/fixture-project/1.ts", + "hash": "7539381471411650291" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/fixture-project/2.ts", + "hash": "1200602180626569228" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/fixture-project/3.ts", + "hash": "7507672435725531136" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/fixture-project/4.ts", + "hash": "16303452752230024502" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/fixture-project/5.ts", + "hash": "16339564525459779566" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/fixture-project/6.ts", + "hash": "15843064376150958475" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/fixture-project/tsconfig.json", + "hash": "15753941481085060538" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/test-project/extra.ts", + "hash": "15843064376150958475" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/test-project/file-spec.ts", + "hash": "3921989015952862599" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/test-project/file.ts", + "hash": "13884560686937927847" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/test-project/source.ts", + "hash": "18334370039346806741" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/test-project/tsconfig-files.json", + "hash": "14091998186769641869" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/test-project/tsconfig.json", + "hash": "2148986232740436654" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/test-project/tslint.json", + "hash": "6014383634860621635" + }, + { + "file": "packages/eslint-plugin-tslint/tests/fixtures/test-tslint-rules-directory/alwaysFailRule.js", + "hash": "4022768237482370888", + "deps": ["npm:tslint"] + }, + { + "file": "packages/eslint-plugin-tslint/tests/index.spec.ts", + "hash": "14524194759097694888", + "deps": [ + "parser", + "utils", + "npm:fs", + "npm:path", + ["npm:tslint", "dynamic"] + ] + }, + { + "file": "packages/eslint-plugin-tslint/tsconfig.build.json", + "hash": "1021592907522787322" + }, + { + "file": "packages/eslint-plugin-tslint/tsconfig.json", + "hash": "11926513159047808322" + } + ], + "scope-manager": [ + { + "file": "packages/scope-manager/CHANGELOG.md", + "hash": "15148223320561092570" + }, + { + "file": "packages/scope-manager/LICENSE", + "hash": "7839189362606127045" + }, + { + "file": "packages/scope-manager/README.md", + "hash": "16988231931829919418" + }, + { + "file": "packages/scope-manager/jest.config.js", + "hash": "3655684523577166075", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/scope-manager/package.json", + "hash": "4427769291314479417", + "deps": [ + "types", + "visitor-keys", + "npm:@types/glob", + "typescript-estree", + "npm:jest-specific-snapshot", + "npm:make-dir" + ] + }, + { + "file": "packages/scope-manager/project.json", + "hash": "11841701192337347881" + }, + { + "file": "packages/scope-manager/src/ID.ts", + "hash": "11299950738307763034" + }, + { + "file": "packages/scope-manager/src/ScopeManager.ts", + "hash": "6026621334966241231", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/analyze.ts", + "hash": "8820259331831990149", + "deps": ["types", "visitor-keys"] + }, + { + "file": "packages/scope-manager/src/assert.ts", + "hash": "12209355432989865480" + }, + { + "file": "packages/scope-manager/src/definition/CatchClauseDefinition.ts", + "hash": "7853942385066617263", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/ClassNameDefinition.ts", + "hash": "12019264217765884042", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/Definition.ts", + "hash": "15663273657448647191" + }, + { + "file": "packages/scope-manager/src/definition/DefinitionBase.ts", + "hash": "5390607966348762075", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/DefinitionType.ts", + "hash": "3659947689463149005" + }, + { + "file": "packages/scope-manager/src/definition/FunctionNameDefinition.ts", + "hash": "3810338222827167338", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/ImplicitGlobalVariableDefinition.ts", + "hash": "9385388873452352246", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/ImportBindingDefinition.ts", + "hash": "6472138903149454544", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/ParameterDefinition.ts", + "hash": "16665181454955413328", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/TSEnumMemberDefinition.ts", + "hash": "4782999481040962998", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/TSEnumNameDefinition.ts", + "hash": "4168467902386781358", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/TSModuleNameDefinition.ts", + "hash": "5422481670461686283", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/TypeDefinition.ts", + "hash": "16055566652017558933", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/VariableDefinition.ts", + "hash": "10898765138718031551", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/definition/index.ts", + "hash": "17584069964496858668" + }, + { + "file": "packages/scope-manager/src/index.ts", + "hash": "11536964669701529802" + }, + { + "file": "packages/scope-manager/src/lib/base-config.ts", + "hash": "9216911218985883874" + }, + { + "file": "packages/scope-manager/src/lib/decorators.legacy.ts", + "hash": "4457664112039820410" + }, + { + "file": "packages/scope-manager/src/lib/decorators.ts", + "hash": "14473662489518622857" + }, + { + "file": "packages/scope-manager/src/lib/dom.iterable.ts", + "hash": "7348535351936997864" + }, + { + "file": "packages/scope-manager/src/lib/dom.ts", + "hash": "8789751054034130437" + }, + { + "file": "packages/scope-manager/src/lib/es2015.collection.ts", + "hash": "16447420628460728938" + }, + { + "file": "packages/scope-manager/src/lib/es2015.core.ts", + "hash": "6061762482035026729" + }, + { + "file": "packages/scope-manager/src/lib/es2015.generator.ts", + "hash": "10422735538425084119" + }, + { + "file": "packages/scope-manager/src/lib/es2015.iterable.ts", + "hash": "2521820033450558466" + }, + { + "file": "packages/scope-manager/src/lib/es2015.promise.ts", + "hash": "16934237264695907957" + }, + { + "file": "packages/scope-manager/src/lib/es2015.proxy.ts", + "hash": "3426710519696013403" + }, + { + "file": "packages/scope-manager/src/lib/es2015.reflect.ts", + "hash": "16435498969901522838" + }, + { + "file": "packages/scope-manager/src/lib/es2015.symbol.ts", + "hash": "2327776519674334729" + }, + { + "file": "packages/scope-manager/src/lib/es2015.symbol.wellknown.ts", + "hash": "5670854764850364195" + }, + { + "file": "packages/scope-manager/src/lib/es2015.ts", + "hash": "3865522942407034958" + }, + { + "file": "packages/scope-manager/src/lib/es2016.array.include.ts", + "hash": "5703548289011443211" + }, + { + "file": "packages/scope-manager/src/lib/es2016.full.ts", + "hash": "17243014827271844248" + }, + { + "file": "packages/scope-manager/src/lib/es2016.ts", + "hash": "8172228014258108785" + }, + { + "file": "packages/scope-manager/src/lib/es2017.full.ts", + "hash": "6449144023595341423" + }, + { + "file": "packages/scope-manager/src/lib/es2017.intl.ts", + "hash": "3239135680412045195" + }, + { + "file": "packages/scope-manager/src/lib/es2017.object.ts", + "hash": "6563215753922076568" + }, + { + "file": "packages/scope-manager/src/lib/es2017.sharedmemory.ts", + "hash": "9210191117310593730" + }, + { + "file": "packages/scope-manager/src/lib/es2017.string.ts", + "hash": "3081617499736793769" + }, + { + "file": "packages/scope-manager/src/lib/es2017.ts", + "hash": "4887588883213234295" + }, + { + "file": "packages/scope-manager/src/lib/es2017.typedarrays.ts", + "hash": "17934067790068153184" + }, + { + "file": "packages/scope-manager/src/lib/es2018.asyncgenerator.ts", + "hash": "11332462451662150444" + }, + { + "file": "packages/scope-manager/src/lib/es2018.asynciterable.ts", + "hash": "13535196102982122016" + }, + { + "file": "packages/scope-manager/src/lib/es2018.full.ts", + "hash": "6696131144496624915" + }, + { + "file": "packages/scope-manager/src/lib/es2018.intl.ts", + "hash": "18345221617103212621" + }, + { + "file": "packages/scope-manager/src/lib/es2018.promise.ts", + "hash": "11331740761470404934" + }, + { + "file": "packages/scope-manager/src/lib/es2018.regexp.ts", + "hash": "11140522893089811375" + }, + { + "file": "packages/scope-manager/src/lib/es2018.ts", + "hash": "10343773433243433133" + }, + { + "file": "packages/scope-manager/src/lib/es2019.array.ts", + "hash": "7464931027644015893" + }, + { + "file": "packages/scope-manager/src/lib/es2019.full.ts", + "hash": "14143056745217534160" + }, + { + "file": "packages/scope-manager/src/lib/es2019.intl.ts", + "hash": "6011143221593395876" + }, + { + "file": "packages/scope-manager/src/lib/es2019.object.ts", + "hash": "5785867687400967339" + }, + { + "file": "packages/scope-manager/src/lib/es2019.string.ts", + "hash": "4643788483426404427" + }, + { + "file": "packages/scope-manager/src/lib/es2019.symbol.ts", + "hash": "2808793997092771265" + }, + { + "file": "packages/scope-manager/src/lib/es2019.ts", + "hash": "5728860220286467839" + }, + { + "file": "packages/scope-manager/src/lib/es2020.bigint.ts", + "hash": "13482605483324901620" + }, + { + "file": "packages/scope-manager/src/lib/es2020.date.ts", + "hash": "4604591320973561259" + }, + { + "file": "packages/scope-manager/src/lib/es2020.full.ts", + "hash": "8788381796152627325" + }, + { + "file": "packages/scope-manager/src/lib/es2020.intl.ts", + "hash": "9913967545784580737" + }, + { + "file": "packages/scope-manager/src/lib/es2020.number.ts", + "hash": "4610978117593933592" + }, + { + "file": "packages/scope-manager/src/lib/es2020.promise.ts", + "hash": "11855601558535800040" + }, + { + "file": "packages/scope-manager/src/lib/es2020.sharedmemory.ts", + "hash": "1654032045926898967" + }, + { + "file": "packages/scope-manager/src/lib/es2020.string.ts", + "hash": "16794229976767004977" + }, + { + "file": "packages/scope-manager/src/lib/es2020.symbol.wellknown.ts", + "hash": "13410418769730343530" + }, + { + "file": "packages/scope-manager/src/lib/es2020.ts", + "hash": "7855500906656770586" + }, + { + "file": "packages/scope-manager/src/lib/es2021.full.ts", + "hash": "7864924451592322263" + }, + { + "file": "packages/scope-manager/src/lib/es2021.intl.ts", + "hash": "15983292884229441014" + }, + { + "file": "packages/scope-manager/src/lib/es2021.promise.ts", + "hash": "7876022294446507758" + }, + { + "file": "packages/scope-manager/src/lib/es2021.string.ts", + "hash": "5847495584349007722" + }, + { + "file": "packages/scope-manager/src/lib/es2021.ts", + "hash": "3526131848405583618" + }, + { + "file": "packages/scope-manager/src/lib/es2021.weakref.ts", + "hash": "3151113502872100242" + }, + { + "file": "packages/scope-manager/src/lib/es2022.array.ts", + "hash": "4856588887249982244" + }, + { + "file": "packages/scope-manager/src/lib/es2022.error.ts", + "hash": "3129482722913759429" + }, + { + "file": "packages/scope-manager/src/lib/es2022.full.ts", + "hash": "13266863089863443939" + }, + { + "file": "packages/scope-manager/src/lib/es2022.intl.ts", + "hash": "3265720014771724785" + }, + { + "file": "packages/scope-manager/src/lib/es2022.object.ts", + "hash": "4665263445926798244" + }, + { + "file": "packages/scope-manager/src/lib/es2022.regexp.ts", + "hash": "13908940020309345949" + }, + { + "file": "packages/scope-manager/src/lib/es2022.sharedmemory.ts", + "hash": "2612864683362788900" + }, + { + "file": "packages/scope-manager/src/lib/es2022.string.ts", + "hash": "18231343956858039216" + }, + { + "file": "packages/scope-manager/src/lib/es2022.ts", + "hash": "4765614710111587144" + }, + { + "file": "packages/scope-manager/src/lib/es2023.array.ts", + "hash": "528923105326431644" + }, + { + "file": "packages/scope-manager/src/lib/es2023.full.ts", + "hash": "4709930945590719086" + }, + { + "file": "packages/scope-manager/src/lib/es2023.ts", + "hash": "3894869569778514309" + }, + { + "file": "packages/scope-manager/src/lib/es5.ts", + "hash": "6022908022845695697" + }, + { + "file": "packages/scope-manager/src/lib/es6.ts", + "hash": "1726884801223653794" + }, + { + "file": "packages/scope-manager/src/lib/es7.ts", + "hash": "14680997665965343055" + }, + { + "file": "packages/scope-manager/src/lib/esnext.array.ts", + "hash": "6802098099485225903" + }, + { + "file": "packages/scope-manager/src/lib/esnext.asynciterable.ts", + "hash": "4675514280199110669" + }, + { + "file": "packages/scope-manager/src/lib/esnext.bigint.ts", + "hash": "1188090558058129531" + }, + { + "file": "packages/scope-manager/src/lib/esnext.full.ts", + "hash": "10990419405500775628" + }, + { + "file": "packages/scope-manager/src/lib/esnext.intl.ts", + "hash": "4173974297598066669" + }, + { + "file": "packages/scope-manager/src/lib/esnext.promise.ts", + "hash": "18014838092322462531" + }, + { + "file": "packages/scope-manager/src/lib/esnext.string.ts", + "hash": "8644737434191376573" + }, + { + "file": "packages/scope-manager/src/lib/esnext.symbol.ts", + "hash": "1263875406295610599" + }, + { + "file": "packages/scope-manager/src/lib/esnext.ts", + "hash": "2982159056139534670" + }, + { + "file": "packages/scope-manager/src/lib/esnext.weakref.ts", + "hash": "14224573034410782061" + }, + { + "file": "packages/scope-manager/src/lib/index.ts", + "hash": "3004135022200527974" + }, + { + "file": "packages/scope-manager/src/lib/lib.ts", + "hash": "61288368470238813" + }, + { + "file": "packages/scope-manager/src/lib/scripthost.ts", + "hash": "4545523877396951789" + }, + { + "file": "packages/scope-manager/src/lib/webworker.importscripts.ts", + "hash": "2270641843813537230" + }, + { + "file": "packages/scope-manager/src/lib/webworker.iterable.ts", + "hash": "10437290283494757046" + }, + { + "file": "packages/scope-manager/src/lib/webworker.ts", + "hash": "10450104445412610770" + }, + { + "file": "packages/scope-manager/src/referencer/ClassVisitor.ts", + "hash": "8939695837287942569", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/referencer/ExportVisitor.ts", + "hash": "14246637997071553730", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/referencer/ImportVisitor.ts", + "hash": "18357467985931259662", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/referencer/PatternVisitor.ts", + "hash": "10632097632231521082", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/referencer/Reference.ts", + "hash": "136674090444887674", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/referencer/Referencer.ts", + "hash": "11514248902967968562", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/referencer/TypeVisitor.ts", + "hash": "5327033338009198015", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/referencer/Visitor.ts", + "hash": "10984393715679951688", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/referencer/VisitorBase.ts", + "hash": "7658956203449332174", + "deps": ["types", "visitor-keys"] + }, + { + "file": "packages/scope-manager/src/referencer/index.ts", + "hash": "3384539481959595985" + }, + { + "file": "packages/scope-manager/src/scope/BlockScope.ts", + "hash": "6226315300066427085", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/CatchScope.ts", + "hash": "2640886030378378316", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/ClassFieldInitializerScope.ts", + "hash": "8728655035207350544", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/ClassScope.ts", + "hash": "16939855734461427471", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/ClassStaticBlockScope.ts", + "hash": "16251072964476411805", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/ConditionalTypeScope.ts", + "hash": "4075784012077066980", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/ForScope.ts", + "hash": "10006571125186540390", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/FunctionExpressionNameScope.ts", + "hash": "8376893776811257493", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/FunctionScope.ts", + "hash": "8087393161282135884", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/FunctionTypeScope.ts", + "hash": "9664682919876032923", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/GlobalScope.ts", + "hash": "14575400719868839072", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/MappedTypeScope.ts", + "hash": "909355485243876430", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/ModuleScope.ts", + "hash": "10846709080306310353", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/Scope.ts", + "hash": "8358334864592328033" + }, + { + "file": "packages/scope-manager/src/scope/ScopeBase.ts", + "hash": "1826666102258336837", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/ScopeType.ts", + "hash": "12024708313023636075" + }, + { + "file": "packages/scope-manager/src/scope/SwitchScope.ts", + "hash": "6262040029427355938", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/TSEnumScope.ts", + "hash": "4590116170398489450", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/TSModuleScope.ts", + "hash": "14381372556251590082", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/TypeScope.ts", + "hash": "2079148558297649761", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/WithScope.ts", + "hash": "14659967409483370114", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/scope/index.ts", + "hash": "3171863966448322054" + }, + { + "file": "packages/scope-manager/src/variable/ESLintScopeVariable.ts", + "hash": "1277940202940564716", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/variable/ImplicitLibVariable.ts", + "hash": "9398180431086935433" + }, + { + "file": "packages/scope-manager/src/variable/Variable.ts", + "hash": "472926253094691573" + }, + { + "file": "packages/scope-manager/src/variable/VariableBase.ts", + "hash": "9843706471262162694", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/src/variable/index.ts", + "hash": "5945915433557209147" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/README.md", + "hash": "15331176555144957913" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/arguments.test.ts", + "hash": "15001605393301920071" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/catch-scope.test.ts", + "hash": "6491098185800297318" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/child-visitor-keys.test.ts", + "hash": "16544509083001166999", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/class-fields.test.ts", + "hash": "9379854176596785381" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-arrow-function-expression.test.ts", + "hash": "3301038057797761426", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-block-scope.test.ts", + "hash": "213470313266958868" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-catch.test.ts", + "hash": "5456430229265644544", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-class.test.ts", + "hash": "15617753744609531175", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-default-parameters.test.ts", + "hash": "16225166161569302687" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-destructuring-assignments.test.ts", + "hash": "12812217910001292487" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-export.test.ts", + "hash": "14329892948157175127" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-import.test.ts", + "hash": "296484210156079391" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-iteration-scope.test.ts", + "hash": "1670488141221856059" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-new-target.test.ts", + "hash": "7997573313022694564", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-object.test.ts", + "hash": "12187883327872284059", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-rest-args.test.ts", + "hash": "5593737073654938578", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-super.test.ts", + "hash": "14759544857963047024" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-switch.test.ts", + "hash": "14745766726898285661", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/es6-template-literal.test.ts", + "hash": "712603514908835905", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/function-expression-name.test.ts", + "hash": "16447354097416735583" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/get-declared-variables.test.ts", + "hash": "187736324775121020", + "deps": ["types", "typescript-estree"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/global-increment.test.ts", + "hash": "14751768009647000030" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/global-return.test.ts", + "hash": "6868465436015294568", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/implicit-global-reference.test.ts", + "hash": "7659557358327640681" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/implied-strict.test.ts", + "hash": "16115244156249665208", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/label.test.ts", + "hash": "12829655455891006114" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/references.test.ts", + "hash": "14977673651822216022" + }, + { + "file": "packages/scope-manager/tests/eslint-scope/typescript.test.ts", + "hash": "3082078455987287174", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/eslint-scope/with-scope.test.ts", + "hash": "3574795740154175422" + }, + { + "file": "packages/scope-manager/tests/fixtures/block/inherited-scope.ts", + "hash": "4583134373621414003" + }, + { + "file": "packages/scope-manager/tests/fixtures/block/inherited-scope.ts.shot", + "hash": "16522531114392145950" + }, + { + "file": "packages/scope-manager/tests/fixtures/block/scope.ts", + "hash": "15706762805610361076" + }, + { + "file": "packages/scope-manager/tests/fixtures/block/scope.ts.shot", + "hash": "16996092474194775021" + }, + { + "file": "packages/scope-manager/tests/fixtures/call-expression/call-expression.ts", + "hash": "16372485801750876580" + }, + { + "file": "packages/scope-manager/tests/fixtures/call-expression/call-expression.ts.shot", + "hash": "15399358051905729106" + }, + { + "file": "packages/scope-manager/tests/fixtures/call-expression/type-parameters1.ts", + "hash": "7411861674565892796" + }, + { + "file": "packages/scope-manager/tests/fixtures/call-expression/type-parameters1.ts.shot", + "hash": "17762894120830218927" + }, + { + "file": "packages/scope-manager/tests/fixtures/call-expression/type-parameters2.ts", + "hash": "4149301535506375450" + }, + { + "file": "packages/scope-manager/tests/fixtures/call-expression/type-parameters2.ts.shot", + "hash": "2881525605656503431" + }, + { + "file": "packages/scope-manager/tests/fixtures/catch/inherited-scope.ts", + "hash": "1680305048092498016" + }, + { + "file": "packages/scope-manager/tests/fixtures/catch/inherited-scope.ts.shot", + "hash": "8335927011816494417" + }, + { + "file": "packages/scope-manager/tests/fixtures/catch/scope.ts", + "hash": "23850485494173396" + }, + { + "file": "packages/scope-manager/tests/fixtures/catch/scope.ts.shot", + "hash": "9983024272142716685" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/abstract-accessor-property.ts", + "hash": "17325695022981344646" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/abstract-accessor-property.ts.shot", + "hash": "6539504029790231653" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/abstract-property.ts", + "hash": "8752089801411873183" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/abstract-property.ts.shot", + "hash": "17774142273026293256" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/abstract.ts", + "hash": "746653968378813751" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/abstract.ts.shot", + "hash": "14717377152081456655" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/accessor-property-type-annotation.ts", + "hash": "17561378917006473147" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/accessor-property-type-annotation.ts.shot", + "hash": "14776811288162857744" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/accessor-property.ts", + "hash": "5102248160257620509" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/accessor-property.ts.shot", + "hash": "6015281565853291359" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/computed-member.ts", + "hash": "15186683475517825170" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/computed-member.ts.shot", + "hash": "8689848370566858046" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/extends-generic.ts", + "hash": "7853551162053577504" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/extends-generic.ts.shot", + "hash": "11269696973670235708" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/extends.ts", + "hash": "14120692578510343266" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/extends.ts.shot", + "hash": "12360210875550292679" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/generic-ref-extends.ts", + "hash": "3153719546293322583" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/generic-ref-extends.ts.shot", + "hash": "9437390219259352369" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/generic-ref-implements.ts", + "hash": "3462917058336986252" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/generic-ref-implements.ts.shot", + "hash": "10274480658806642358" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/generic.ts", + "hash": "2492222106325409317" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/generic.ts.shot", + "hash": "15281204404449153600" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/implements-generic.ts", + "hash": "5538852553706875877" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/implements-generic.ts.shot", + "hash": "11229546858669807650" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/implements.ts", + "hash": "4373948105824018040" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/implements.ts.shot", + "hash": "14502093711336187693" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/method-param-default.ts", + "hash": "14786096102323191944" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/method-param-default.ts.shot", + "hash": "1034300788080430767" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/method.ts", + "hash": "5875869363477084233" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/method.ts.shot", + "hash": "16695619714922962429" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/new.ts", + "hash": "11005960440964270888" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/new.ts.shot", + "hash": "11289187538387997297" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/parameter-properties.ts", + "hash": "7843961301679631415" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/parameter-properties.ts.shot", + "hash": "13872420720884907984" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/private-identifier.ts", + "hash": "4243505886163301652" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/private-identifier.ts.shot", + "hash": "15317141547098685003" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/properties-type-annotation.ts", + "hash": "17561378917006473147" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/properties-type-annotation.ts.shot", + "hash": "1527010149557599860" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/properties.ts", + "hash": "5102248160257620509" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/properties.ts.shot", + "hash": "17344560627180454529" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/static-block.ts", + "hash": "5392377921704355842" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/static-block.ts.shot", + "hash": "11238718917696478024" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/static-external-ref.ts", + "hash": "5581737507243298625" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/static-external-ref.ts.shot", + "hash": "2130614176367956848" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/static-with-constructor.ts", + "hash": "11005704353851703297" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/static-with-constructor.ts.shot", + "hash": "16334330987018051579" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/type-reference.ts", + "hash": "15733830697359733751" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/declaration/type-reference.ts.shot", + "hash": "11588169499459136802" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/accessor-deco.ts", + "hash": "6476768864310496807" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/accessor-deco.ts.shot", + "hash": "10318798630139065747" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/method-deco.ts", + "hash": "13042184812920064947" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/method-deco.ts.shot", + "hash": "16148345230901856183" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/method-return-generic.ts", + "hash": "11486862609827013330", + "deps": ["npm:fake-module"] + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/method-return-generic.ts.shot", + "hash": "17803247567664689396" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/nested-class-both.ts", + "hash": "16512113726953104413" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/nested-class-both.ts.shot", + "hash": "2273127161285446658" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/nested-class-inner.ts", + "hash": "8366641637268385669" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/nested-class-inner.ts.shot", + "hash": "7667149453084300924" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/nested-class-outer.ts", + "hash": "7676743095154798468" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/nested-class-outer.ts.shot", + "hash": "14897952400446630346" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/parameters-deco.ts", + "hash": "11243071320539126523" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/parameters-deco.ts.shot", + "hash": "907590184618463062" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/property-deco.ts", + "hash": "6332747641249356850" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/emit-metadata/property-deco.ts.shot", + "hash": "15099065576848108313" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/computed-member.ts", + "hash": "13794352366503201388" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/computed-member.ts.shot", + "hash": "14963133657414500700" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/extends.ts", + "hash": "4228193672496038095" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/extends.ts.shot", + "hash": "10474394911697816827" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/method.ts", + "hash": "13444611049590442728" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/method.ts.shot", + "hash": "17723724081620625090" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/new.ts", + "hash": "8143038044814541994" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/new.ts.shot", + "hash": "14398780911696337521" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/parameter-properties.ts", + "hash": "16969612842464181140" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/parameter-properties.ts.shot", + "hash": "9796051719012142079" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/private-identifier.ts", + "hash": "7032580910836969546" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/private-identifier.ts.shot", + "hash": "4627234135342353148" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/properties.ts", + "hash": "16229322965121903018" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/properties.ts.shot", + "hash": "9165403892440554715" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/self-reference-super.ts", + "hash": "9055623516279903122" + }, + { + "file": "packages/scope-manager/tests/fixtures/class/expression/self-reference-super.ts.shot", + "hash": "880676914362860955" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/accessor.ts", + "hash": "6912270163351018937" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/accessor.ts.shot", + "hash": "11964846004284835258" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/class-deco-with-object-param.ts", + "hash": "4766165338454480081" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/class-deco-with-object-param.ts.shot", + "hash": "56719453013488100" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/class-property.ts", + "hash": "810901353378287211" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/class-property.ts.shot", + "hash": "16276179947968425689" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/class.ts", + "hash": "12417556257059018432" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/class.ts.shot", + "hash": "12992455745320081755" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/method.ts", + "hash": "13820053008326044388" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/method.ts.shot", + "hash": "18354342661195448793" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/parameter-property.ts", + "hash": "14237470606836250496" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/parameter-property.ts.shot", + "hash": "15019403371144627121" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/parameter.ts", + "hash": "12779746055015029108" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/parameter.ts.shot", + "hash": "14822851863761892720" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/typeof-this.ts", + "hash": "11404216008116070022" + }, + { + "file": "packages/scope-manager/tests/fixtures/decorators/typeof-this.ts.shot", + "hash": "10885818300012733887" + }, + { + "file": "packages/scope-manager/tests/fixtures/destructuring/array-assignment.ts", + "hash": "4662300789764524320" + }, + { + "file": "packages/scope-manager/tests/fixtures/destructuring/array-assignment.ts.shot", + "hash": "5154840044680512297" + }, + { + "file": "packages/scope-manager/tests/fixtures/destructuring/array.ts", + "hash": "15566461957779974828" + }, + { + "file": "packages/scope-manager/tests/fixtures/destructuring/array.ts.shot", + "hash": "2326198510209756602" + }, + { + "file": "packages/scope-manager/tests/fixtures/destructuring/object-assignment.ts", + "hash": "16524358670710707756" + }, + { + "file": "packages/scope-manager/tests/fixtures/destructuring/object-assignment.ts.shot", + "hash": "12959771321593905822" + }, + { + "file": "packages/scope-manager/tests/fixtures/destructuring/object.ts", + "hash": "13868404889461403653" + }, + { + "file": "packages/scope-manager/tests/fixtures/destructuring/object.ts.shot", + "hash": "6931906741655921522" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/all.ts", + "hash": "17918819674332141751", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/export/all.ts.shot", + "hash": "12926856500846077882" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default-type.ts", + "hash": "3559139172766718432" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default-type.ts.shot", + "hash": "17278958548606550489" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default1.ts", + "hash": "5752456552193710688" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default1.ts.shot", + "hash": "5551173664147014303" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default2.ts", + "hash": "17907434294560375075" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default2.ts.shot", + "hash": "3647009916181823133" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default3.ts", + "hash": "12617065066611963625" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default3.ts.shot", + "hash": "2242483056792813142" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default4.ts", + "hash": "4383465764826975167" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/default4.ts.shot", + "hash": "7952775752979685253" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/equals1.ts", + "hash": "7786838748401043096" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/equals1.ts.shot", + "hash": "11203489156844908182" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/equals2.ts", + "hash": "17253009825305205071" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/equals2.ts.shot", + "hash": "2522145949584967930" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named-dual.ts", + "hash": "10909414448695514832" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named-dual.ts.shot", + "hash": "4988923267603555099" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named-source1.ts", + "hash": "603247689417774583", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named-source1.ts.shot", + "hash": "2610551761835581936" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named-source2.ts", + "hash": "14937583061216107897", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named-source2.ts.shot", + "hash": "18067055526419928134" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named-type1.ts", + "hash": "7830735773008576865" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named-type1.ts.shot", + "hash": "8278318533063182793" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named1.ts", + "hash": "69266086312589795" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named1.ts.shot", + "hash": "3017579363502308519" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named2-type.ts", + "hash": "9907430884145107632" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named2-type.ts.shot", + "hash": "1808659560394371742" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named2.ts", + "hash": "2461417805453049830" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named2.ts.shot", + "hash": "11910588171738736264" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named3-type.ts", + "hash": "4089354277629116891" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named3-type.ts.shot", + "hash": "4898413883286918128" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named3.ts", + "hash": "11352159947381677457" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/named3.ts.shot", + "hash": "1892407250836201160" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/type-inline.ts", + "hash": "392621048839058735" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/type-inline.ts.shot", + "hash": "11522570157440366537" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/type.ts", + "hash": "6617179193739028308" + }, + { + "file": "packages/scope-manager/tests/fixtures/export/type.ts.shot", + "hash": "16723825337848328982" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-body-shadow.ts", + "hash": "17151230091864219145" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-body-shadow.ts.shot", + "hash": "9387842301481028296" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-const.ts", + "hash": "10627542739462939684" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-const.ts.shot", + "hash": "6027093729193628800" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-let.ts", + "hash": "5351492509091007153" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-let.ts.shot", + "hash": "9446360881628784843" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-nested-body-shadow.ts", + "hash": "661986374003485116" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-nested-body-shadow.ts.shot", + "hash": "10856341551507264620" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-nested.ts", + "hash": "13084764469531690818" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-nested.ts.shot", + "hash": "13429505494244202509" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-param-shadow.ts", + "hash": "886217653181173991" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-param-shadow.ts.shot", + "hash": "4063489825118368474" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-partial.ts", + "hash": "585473879826550870" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/readable-ref-partial.ts.shot", + "hash": "1876496971293917303" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/writable-ref.ts", + "hash": "8593150427114601750" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/default-params/writable-ref.ts.shot", + "hash": "13884197597570783402" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/inherited-scope.ts", + "hash": "9082170853095646093" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/inherited-scope.ts.shot", + "hash": "18362665884124700903" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/no-body.ts", + "hash": "3706108236929873770" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/no-body.ts.shot", + "hash": "10807746266362414274" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/params.ts", + "hash": "1663537714277177582" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/params.ts.shot", + "hash": "5953843702094840545" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/scope.ts", + "hash": "11218511604368038363" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/scope.ts.shot", + "hash": "15127878164196629006" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/body-reference.ts", + "hash": "8715688508593003703" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/body-reference.ts.shot", + "hash": "2861958457454632620" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/param-reference.ts", + "hash": "11414145633728565194" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/param-reference.ts.shot", + "hash": "3875714597429113932" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/return-value-reference.ts", + "hash": "17023464374103907393" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/return-value-reference.ts.shot", + "hash": "864958672419653350" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/type-param-reference.ts", + "hash": "15596084448902147977" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/type-param-reference.ts.shot", + "hash": "11335587298818254443" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/type-parameter-declaration.ts", + "hash": "3351809773223322585" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-parameters/type-parameter-declaration.ts.shot", + "hash": "15726667977724036945" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-predicate-asserts1.ts", + "hash": "17841399320758946664" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-predicate-asserts1.ts.shot", + "hash": "6887352070434429404" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-predicate-asserts2.ts", + "hash": "10397894915662022084" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-predicate-asserts2.ts.shot", + "hash": "4104971701637234170" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-predicate1.ts", + "hash": "14406699280402714877" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-predicate1.ts.shot", + "hash": "15440844728016928790" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-predicate2.ts", + "hash": "2784963143761364556" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/arrow/type-predicate2.ts.shot", + "hash": "14965451178862373973" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-body-shadow.ts", + "hash": "2728192064069997682" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-body-shadow.ts.shot", + "hash": "12247373883823685954" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-const.ts", + "hash": "13368691173960086925" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-const.ts.shot", + "hash": "2167741585396019936" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-let.ts", + "hash": "7801949453181270831" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-let.ts.shot", + "hash": "2384366903368428800" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-nested-body-shadow.ts", + "hash": "596983783336023471" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-nested-body-shadow.ts.shot", + "hash": "2626734193798765620" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-nested.ts", + "hash": "9702819173864101683" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-nested.ts.shot", + "hash": "4363564960123200077" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-param-shadow.ts", + "hash": "961331831458506378" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-param-shadow.ts.shot", + "hash": "5816608664445621110" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-partial.ts", + "hash": "788730785503012730" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/readable-ref-partial.ts.shot", + "hash": "15228597288343052277" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/writable-ref.ts", + "hash": "10189972322073562579" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/default-params/writable-ref.ts.shot", + "hash": "7490240472426505405" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/inherited-scope.ts", + "hash": "13494131804871629523" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/inherited-scope.ts.shot", + "hash": "3468589859554892498" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/name-shadowed-in-body.ts", + "hash": "11336825805587595282" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/name-shadowed-in-body.ts.shot", + "hash": "6820923591172062412" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/overload.ts", + "hash": "7265218076770736211" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/overload.ts.shot", + "hash": "11201947439535144169" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/params.ts", + "hash": "5256538569896336466" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/params.ts.shot", + "hash": "12068537537431209668" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/scope.ts", + "hash": "14475954757684978327" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/scope.ts.shot", + "hash": "5784942126460063413" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/body-reference.ts", + "hash": "3371528424420231351" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/body-reference.ts.shot", + "hash": "12188624229934263910" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/param-reference.ts", + "hash": "5106135641237423924" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/param-reference.ts.shot", + "hash": "18033320431509788793" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/return-value-reference.ts", + "hash": "2856130955537705347" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/return-value-reference.ts.shot", + "hash": "1903888748999207572" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/type-param-reference.ts", + "hash": "11309502072184296297" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/type-param-reference.ts.shot", + "hash": "6294547248933155029" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/type-parameter-declaration.ts", + "hash": "8708746202380370561" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-parameters/type-parameter-declaration.ts.shot", + "hash": "1524280637132728110" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-predicate-asserts1.ts", + "hash": "5610050211174055541" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-predicate-asserts1.ts.shot", + "hash": "10023180593097306349" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-predicate-asserts2.ts", + "hash": "6054138841818336973" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-predicate-asserts2.ts.shot", + "hash": "15200927114796801857" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-predicate1.ts", + "hash": "8004183054276098001" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-predicate1.ts.shot", + "hash": "472332508420382369" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-predicate2.ts", + "hash": "7835078901134396695" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-declaration/type-predicate2.ts.shot", + "hash": "13725996495513505766" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/anonymous.ts", + "hash": "11566482008179585041" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/anonymous.ts.shot", + "hash": "11409083254482611824" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-body-shadow.ts", + "hash": "12132467734238543901" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-body-shadow.ts.shot", + "hash": "15523407822153677308" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-const.ts", + "hash": "13185268167658629845" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-const.ts.shot", + "hash": "15467027310668520631" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-let.ts", + "hash": "13991763535726135677" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-let.ts.shot", + "hash": "15650311522960556680" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-nested-body-shadow.ts", + "hash": "11144989646197341949" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-nested-body-shadow.ts.shot", + "hash": "2481851513057347370" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-nested.ts", + "hash": "10374053912012967335" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-nested.ts.shot", + "hash": "3501399486629804789" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-param-shadow.ts", + "hash": "607734621333603423" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-param-shadow.ts.shot", + "hash": "3002571820617924597" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-partial.ts", + "hash": "13700150711645075011" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/readable-ref-partial.ts.shot", + "hash": "4997723657118417836" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/writable-ref.ts", + "hash": "5456310984164173049" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/default-params/writable-ref.ts.shot", + "hash": "3443515823241514178" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/inherited-scope.ts", + "hash": "6496965913104923935" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/inherited-scope.ts.shot", + "hash": "16922678520631741523" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/params.ts", + "hash": "18180747974893441709" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/params.ts.shot", + "hash": "15262893260396688033" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/scope.ts", + "hash": "4787809402598688600" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/scope.ts.shot", + "hash": "13538558032566440089" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/body-reference.ts", + "hash": "7054476971236744479" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/body-reference.ts.shot", + "hash": "1166399959736836298" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/param-reference.ts", + "hash": "3922988271369199414" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/param-reference.ts.shot", + "hash": "4564210340983624996" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/return-value-reference.ts", + "hash": "12027069434438546777" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/return-value-reference.ts.shot", + "hash": "17548291768270085650" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/type-param-reference.ts", + "hash": "2252531045221708191" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/type-param-reference.ts.shot", + "hash": "8496677059301111414" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/type-parameter-declaration.ts", + "hash": "18101163621230901990" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-parameters/type-parameter-declaration.ts.shot", + "hash": "4231644250525685415" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-predicate-asserts1.ts", + "hash": "513797918716787980" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-predicate-asserts1.ts.shot", + "hash": "6538712772939204327" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-predicate-asserts2.ts", + "hash": "3675002081637017097" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-predicate-asserts2.ts.shot", + "hash": "16327380552539636254" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-predicate1.ts", + "hash": "13211694950116123618" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-predicate1.ts.shot", + "hash": "14863686389830966773" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-predicate2.ts", + "hash": "12705604630300607093" + }, + { + "file": "packages/scope-manager/tests/fixtures/functions/function-expression/type-predicate2.ts.shot", + "hash": "836070108675000467" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/class.ts", + "hash": "14831369160128841268" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/class.ts.shot", + "hash": "14332665077869463803" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/function.ts", + "hash": "14151259520881172255" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/function.ts.shot", + "hash": "6516988061295837460" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/variable-decl-const.ts", + "hash": "6847358835889768404" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/variable-decl-const.ts.shot", + "hash": "13431842149590776342" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/variable-decl-let.ts", + "hash": "10515699245167235297" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/variable-decl-let.ts.shot", + "hash": "200830979661604857" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/variable-decl-var.ts", + "hash": "16541878354324404204" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/module/variable-decl-var.ts.shot", + "hash": "17133193493056663000" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/class.ts", + "hash": "4723966985559730311" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/class.ts.shot", + "hash": "16094462338791752712" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/function.ts", + "hash": "17073512894981612083" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/function.ts.shot", + "hash": "18057056761767046696" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/variable-decl-const.ts", + "hash": "12116568623967254169" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/variable-decl-const.ts.shot", + "hash": "45819449271239648" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/variable-decl-let.ts", + "hash": "7346673122669186345" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/variable-decl-let.ts.shot", + "hash": "17434116236862947267" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/variable-decl-var.ts", + "hash": "1390310970095912181" + }, + { + "file": "packages/scope-manager/tests/fixtures/global-resolution/script/variable-decl-var.ts.shot", + "hash": "5899887331554798709" + }, + { + "file": "packages/scope-manager/tests/fixtures/implicit/implicit1.ts", + "hash": "11159266622578682664" + }, + { + "file": "packages/scope-manager/tests/fixtures/implicit/implicit1.ts.shot", + "hash": "3184933572147290363" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/default.ts", + "hash": "18093403322929696517", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/default.ts.shot", + "hash": "3128745976199385639" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/equals1.ts", + "hash": "1902086660522594132", + "deps": ["npm:a"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/equals1.ts.shot", + "hash": "10313530034065174674" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/equals2.ts", + "hash": "14240577440799989417" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/equals2.ts.shot", + "hash": "381063120362925600" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/named-alias.ts", + "hash": "13952197656127663958", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/named-alias.ts.shot", + "hash": "572043324461888233" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/named.ts", + "hash": "6371817433737027928", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/named.ts.shot", + "hash": "3902191988550297706" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/namespace.ts", + "hash": "13541216511332627652", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/namespace.ts.shot", + "hash": "7418098409535982219" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-default-value.ts", + "hash": "3914073424207049470", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-default-value.ts.shot", + "hash": "8241434007439644095" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-default.ts", + "hash": "16246222373292346023", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-default.ts.shot", + "hash": "2171303877625077939" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-inline-value.ts", + "hash": "6620628770565673114", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-inline-value.ts.shot", + "hash": "1816700069275229525" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-inline.ts", + "hash": "9088514806181734724", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-inline.ts.shot", + "hash": "3064912183621117125" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-named-value.ts", + "hash": "13443107149026736648", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-named-value.ts.shot", + "hash": "3971188387215250564" + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-named.ts", + "hash": "16364914747023681330", + "deps": ["npm:foo"] + }, + { + "file": "packages/scope-manager/tests/fixtures/import/type-named.ts.shot", + "hash": "10438829881085108000" + }, + { + "file": "packages/scope-manager/tests/fixtures/instantiation-expressions/type-arguments1.ts", + "hash": "3583068812519886216" + }, + { + "file": "packages/scope-manager/tests/fixtures/instantiation-expressions/type-arguments1.ts.shot", + "hash": "10903408663570123823" + }, + { + "file": "packages/scope-manager/tests/fixtures/instantiation-expressions/type-arguments2.ts", + "hash": "425113438653573031" + }, + { + "file": "packages/scope-manager/tests/fixtures/instantiation-expressions/type-arguments2.ts.shot", + "hash": "3854998721900533864" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/attribute-spread.tsx", + "hash": "270754133923015909" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/attribute-spread.tsx.shot", + "hash": "1515402391311763542" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/attribute.tsx", + "hash": "15474776697750792569" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/attribute.tsx.shot", + "hash": "761599168589997459" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/children.tsx", + "hash": "6040242648068593991" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/children.tsx.shot", + "hash": "4948561979626719215" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/component-intrinsic-name.tsx", + "hash": "5237760424021449481" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/component-intrinsic-name.tsx.shot", + "hash": "17872790431712440105" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/component-namespaced1.tsx", + "hash": "8663921039618730654" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/component-namespaced1.tsx.shot", + "hash": "2251290715138551366" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/component-namespaced2.tsx", + "hash": "128326495880250299" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/component-namespaced2.tsx.shot", + "hash": "7208449570188962733" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/component.tsx", + "hash": "3478333336578171512" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/component.tsx.shot", + "hash": "7068574132411467196" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/default-jsxFragmentName.tsx", + "hash": "3843729372831218495", + "deps": ["npm:react"] + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/default-jsxFragmentName.tsx.shot", + "hash": "16905292869571845679" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/default-jsxPragma-fragment.tsx", + "hash": "6019958942747729291", + "deps": ["npm:react"] + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/default-jsxPragma-fragment.tsx.shot", + "hash": "1159871814284403052" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/default-jsxPragma.tsx", + "hash": "10134351987548141887", + "deps": ["npm:react"] + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/default-jsxPragma.tsx.shot", + "hash": "15969422994681817841" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/jsxFragmentName.tsx", + "hash": "15610909851500315279", + "deps": ["npm:react", "npm:preact"] + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/jsxFragmentName.tsx.shot", + "hash": "2428573195637332267" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/jsxPragma-jsxFragmentName.tsx", + "hash": "14840829478527693548", + "deps": ["npm:react", "npm:preact"] + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/jsxPragma-jsxFragmentName.tsx.shot", + "hash": "11950598657035000058" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/jsxPragma.tsx", + "hash": "10933748795004615428", + "deps": ["npm:react", "npm:preact"] + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/factory/jsxPragma.tsx.shot", + "hash": "18401991284225174045" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/fragment-children.tsx", + "hash": "3026923618963960663" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/fragment-children.tsx.shot", + "hash": "8947276648018407130" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/fragment.tsx", + "hash": "5966457898889920960" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/fragment.tsx.shot", + "hash": "16778875508225580186" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/generic-type-param.tsx", + "hash": "7636512651886776075" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/generic-type-param.tsx.shot", + "hash": "10798326342640387256" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/namespaced-attribute.tsx", + "hash": "14140625371114443621", + "deps": ["npm:react"] + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/namespaced-attribute.tsx.shot", + "hash": "3956241792283824866" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/text.tsx", + "hash": "15840394236974989514" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/text.tsx.shot", + "hash": "18335861299848534517" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/this-jsxidentifier.tsx", + "hash": "9492459743032919684" + }, + { + "file": "packages/scope-manager/tests/fixtures/jsx/this-jsxidentifier.tsx.shot", + "hash": "12826414295056481534" + }, + { + "file": "packages/scope-manager/tests/fixtures/member-expression/member-expression.ts", + "hash": "16400962333917806903" + }, + { + "file": "packages/scope-manager/tests/fixtures/member-expression/member-expression.ts.shot", + "hash": "1897887513065434300" + }, + { + "file": "packages/scope-manager/tests/fixtures/new-expression/new-expression.ts", + "hash": "6198893931891786113" + }, + { + "file": "packages/scope-manager/tests/fixtures/new-expression/new-expression.ts.shot", + "hash": "11426714119492839934" + }, + { + "file": "packages/scope-manager/tests/fixtures/new-expression/type-parameters1.ts", + "hash": "1394746316249607237" + }, + { + "file": "packages/scope-manager/tests/fixtures/new-expression/type-parameters1.ts.shot", + "hash": "4161258973941579671" + }, + { + "file": "packages/scope-manager/tests/fixtures/new-expression/type-parameters2.ts", + "hash": "16501904571715602162" + }, + { + "file": "packages/scope-manager/tests/fixtures/new-expression/type-parameters2.ts.shot", + "hash": "12479249719875250841" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/external-ref.ts", + "hash": "13445870649570979371" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/external-ref.ts.shot", + "hash": "10583418843071627273" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/literal-member-ref.ts", + "hash": "3264400450995791463" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/literal-member-ref.ts.shot", + "hash": "8637114036730720043" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/literal-member.ts", + "hash": "1656165220816691654" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/literal-member.ts.shot", + "hash": "3654948846500838167" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/member-ref.ts", + "hash": "16245344788378244956" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/member-ref.ts.shot", + "hash": "16838839555595488137" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/scope.ts", + "hash": "5660068906508603690" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/scope.ts.shot", + "hash": "17051459506200339028" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/self-ref.ts", + "hash": "16948836738105661813" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-enum/self-ref.ts.shot", + "hash": "10939673697874861895" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/declaration-merging/class-namespace.ts", + "hash": "15997098190196253977" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/declaration-merging/class-namespace.ts.shot", + "hash": "2837965245614396842" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/declaration-merging/function-namespace.ts", + "hash": "11017491984103975360" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/declaration-merging/function-namespace.ts.shot", + "hash": "17201991788861048019" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/declaration-merging/namespace-variable.ts", + "hash": "17219014512390933009" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/declaration-merging/namespace-variable.ts.shot", + "hash": "13177515843654835247" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/external-ref.ts", + "hash": "13312363587930868383" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/external-ref.ts.shot", + "hash": "10579711479247949015" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/global-augmentation.ts", + "hash": "5114599680800706102" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/global-augmentation.ts.shot", + "hash": "12086133451158025224" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/import.ts", + "hash": "10319372697927655666", + "deps": ["npm:mod"] + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/import.ts.shot", + "hash": "18257091290740722834" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/name-shadowed-in-body.ts", + "hash": "13389425562672428040" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/name-shadowed-in-body.ts.shot", + "hash": "17790971776321195795" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/namespace.ts", + "hash": "8110686828887759873" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/namespace.ts.shot", + "hash": "14506518693456120596" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/scope.ts", + "hash": "5974967168120260070" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/scope.ts.shot", + "hash": "1203649934190800854" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/self-ref.ts", + "hash": "6583982927626501731" + }, + { + "file": "packages/scope-manager/tests/fixtures/ts-module/self-ref.ts.shot", + "hash": "8227508886459701286" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter-array-destructure.ts", + "hash": "14460899782391729864" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter-array-destructure.ts.shot", + "hash": "11550529111585592492" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter-default.ts", + "hash": "76663248333135145" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter-default.ts.shot", + "hash": "10233381293415617208" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter-object-destructure.ts", + "hash": "18196576916707648490" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter-object-destructure.ts.shot", + "hash": "889206396144008388" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter-rest.ts", + "hash": "11632559183350600689" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter-rest.ts.shot", + "hash": "942613411872642958" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter.ts", + "hash": "14351168184130981830" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/parameter.ts.shot", + "hash": "17103659435049040090" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-array-destructure.ts", + "hash": "8143672975022250379" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-array-destructure.ts.shot", + "hash": "6419423608126464931" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-const.ts", + "hash": "7538747589689531909" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-const.ts.shot", + "hash": "12290422745500126597" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-let.ts", + "hash": "8852439386400955774" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-let.ts.shot", + "hash": "13335602216105147743" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-object-destructure.ts", + "hash": "13030605165012679185" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-object-destructure.ts.shot", + "hash": "11869782138832728427" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-var.ts", + "hash": "13435404761371872111" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-annotation/variable-var.ts.shot", + "hash": "9096931052967526631" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/angle-bracket.ts", + "hash": "8064571796341709247" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/angle-bracket.ts.shot", + "hash": "7565405399929199745" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/as.ts", + "hash": "4579792974894113878" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/as.ts.shot", + "hash": "8494876137444034851" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/assignment/angle-bracket-assignment.ts", + "hash": "15452903341054754091" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/assignment/angle-bracket-assignment.ts.shot", + "hash": "15023055212914232274" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/assignment/as-assignment.ts", + "hash": "198288021818833908" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/assignment/as-assignment.ts.shot", + "hash": "4663184557730105225" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/assignment/non-null-assignment.ts", + "hash": "8745629055404787608" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/assignment/non-null-assignment.ts.shot", + "hash": "9539451515306845690" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/satisfies.ts", + "hash": "18145036132542741622" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-assertion/satisfies.ts.shot", + "hash": "18192143151414988829" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional-nested.ts", + "hash": "17718484216110899544" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional-nested.ts.shot", + "hash": "6758415267915928578" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional1.ts", + "hash": "3418827971343831547" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional1.ts.shot", + "hash": "12399676354780827664" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional2.ts", + "hash": "3673743433128695494" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional2.ts.shot", + "hash": "14370807122416331614" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional3.ts", + "hash": "18038847613335767310" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional3.ts.shot", + "hash": "1326468699991049168" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional4.ts", + "hash": "7212498936418560752" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional4.ts.shot", + "hash": "14152959642204360264" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional5.ts", + "hash": "745631170570337210" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/conditional5.ts.shot", + "hash": "10666609133018928191" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/dual-type-value.ts", + "hash": "6027729478563599822" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/dual-type-value.ts.shot", + "hash": "4642027461256963504" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/constructor-generics1.ts", + "hash": "10581127520673204646" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/constructor-generics1.ts.shot", + "hash": "135994745621276479" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/constructor-generics2.ts", + "hash": "14475576315399357419" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/constructor-generics2.ts.shot", + "hash": "9607900136706858988" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/constructor.ts", + "hash": "4951920917344791551" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/constructor.ts.shot", + "hash": "1489366193048278503" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/function-generics1.ts", + "hash": "16689325354731206796" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/function-generics1.ts.shot", + "hash": "12670471028415534822" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/function-generics2.ts", + "hash": "12607998909320870973" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/function-generics2.ts.shot", + "hash": "1106120375829607646" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/function1.ts", + "hash": "13893120687704105534" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/function1.ts.shot", + "hash": "3021344009118729629" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/function2.ts", + "hash": "10425604346104014337" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/function2.ts.shot", + "hash": "17143587269261390826" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/params/array-pattern.ts", + "hash": "2320787398468326915" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/params/array-pattern.ts.shot", + "hash": "13471960902565435353" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/params/object-pattern.ts", + "hash": "7800972499576159299" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/params/object-pattern.ts.shot", + "hash": "11451571525452366222" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/params/rest-element.ts", + "hash": "13034749042135476628" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/function/params/rest-element.ts.shot", + "hash": "4367582490590116493" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/import-type-with-qualifier.ts", + "hash": "16136107792059068300", + "deps": [["npm:", "dynamic"]] + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/import-type-with-qualifier.ts.shot", + "hash": "12285985585978907300" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/import-type-with-type-params.ts", + "hash": "16542942010354484599", + "deps": [["npm:", "dynamic"]] + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/import-type-with-type-params.ts.shot", + "hash": "5657168099322460863" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/import-type.ts", + "hash": "12482829972544885640", + "deps": [["npm:", "dynamic"]] + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/import-type.ts.shot", + "hash": "4815893026583046688" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/index-access1.ts", + "hash": "13667433612240050408" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/index-access1.ts.shot", + "hash": "16226196799294623094" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/index-access2.ts", + "hash": "7917669877079409050" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/index-access2.ts.shot", + "hash": "11376803571438798542" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/index-access3.ts", + "hash": "4299339312271059140" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/index-access3.ts.shot", + "hash": "13163162604465309733" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/infer-type-constraint.ts", + "hash": "10358316846774839627" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/infer-type-constraint.ts.shot", + "hash": "6865075159439365624" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/interface-heritage1.ts", + "hash": "6335115232286447969" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/interface-heritage1.ts.shot", + "hash": "376722279421531972" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/interface-heritage2.ts", + "hash": "8816795397819763061" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/interface-heritage2.ts.shot", + "hash": "8538224966826256865" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/interface1.ts", + "hash": "4152162860332451315" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/interface1.ts.shot", + "hash": "14514226415441259143" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/interface2.ts", + "hash": "5150292979729770895" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/interface2.ts.shot", + "hash": "3748653888367197642" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/literal-type1.ts", + "hash": "15263119863507482922" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/literal-type1.ts.shot", + "hash": "412297973849508556" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/literal-type2.ts", + "hash": "14893846750721778830" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/literal-type2.ts.shot", + "hash": "11918064662212429373" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/literal-type3.ts", + "hash": "15620173820001796714" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/literal-type3.ts.shot", + "hash": "18308359535749284818" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/mapped-named.ts", + "hash": "2515627490956489598" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/mapped-named.ts.shot", + "hash": "5179250650944986980" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/mapped.ts", + "hash": "3994766615929267446" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/mapped.ts.shot", + "hash": "17856681429202466107" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/qualified-name.ts", + "hash": "13307544826218309511" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/qualified-name.ts.shot", + "hash": "11047104225716094064" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/call-generics.ts", + "hash": "13334492120461989214" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/call-generics.ts.shot", + "hash": "5904560689851411760" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/call.ts", + "hash": "10475930267512128725" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/call.ts.shot", + "hash": "7194618768185440586" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/construct-generics.ts", + "hash": "18254595656282135095" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/construct-generics.ts.shot", + "hash": "9094091882553862304" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/construct.ts", + "hash": "20811606354431122" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/construct.ts.shot", + "hash": "7045975423483717592" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/index-sig.ts", + "hash": "11575484617250821572" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/index-sig.ts.shot", + "hash": "1152668591417385262" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/method-computed-name.ts", + "hash": "15571855797676782196" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/method-computed-name.ts.shot", + "hash": "962301080815273519" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/method-computed-name2.ts", + "hash": "8609742762727728890" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/method-computed-name2.ts.shot", + "hash": "12984475068403417786" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/method-generics.ts", + "hash": "1110434680019745266" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/method-generics.ts.shot", + "hash": "14289279225994122926" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/method.ts", + "hash": "11387008563144013533" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/method.ts.shot", + "hash": "12743439830343954607" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/property-computed-name.ts", + "hash": "1564372501802120162" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/property-computed-name.ts.shot", + "hash": "14394194220525677260" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/property-computed-name2.ts", + "hash": "5579464923214762816" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/property-computed-name2.ts.shot", + "hash": "8735685045991432245" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/property.ts", + "hash": "17728787886682482252" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/signatures/property.ts.shot", + "hash": "12724984583452037942" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/tuple-labelled-rest.ts", + "hash": "10311266312226161331" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/tuple-labelled-rest.ts.shot", + "hash": "10347736072170742659" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/tuple-labelled.ts", + "hash": "16956643783995882332" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/tuple-labelled.ts.shot", + "hash": "15541466776280284263" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/tuple-rest.ts", + "hash": "14582640326164220793" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/tuple-rest.ts.shot", + "hash": "12892930471829753844" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/tuple.ts", + "hash": "7347322479749903190" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/tuple.ts.shot", + "hash": "14475743335721696569" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/body-reference.ts", + "hash": "5053247480154775160" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/body-reference.ts.shot", + "hash": "18086019519569142556" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/extends-reference.ts", + "hash": "9336055943263025779" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/extends-reference.ts.shot", + "hash": "18328975959508228180" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/type-param-reference.ts", + "hash": "1890030885978852614" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/type-param-reference.ts.shot", + "hash": "4207383745567051960" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/type-parameter-declaration-extends.ts", + "hash": "11444098594423999481" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/type-parameter-declaration-extends.ts.shot", + "hash": "16692334389235400821" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/type-parameter-declaration.ts", + "hash": "13026214906944808277" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/interface/type-parameter-declaration.ts.shot", + "hash": "3315255460440354404" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/tagged-template.ts", + "hash": "1126833102211187856" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/tagged-template.ts.shot", + "hash": "7622330164500716584" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/type-decl/body-reference.ts", + "hash": "7635095943725563769" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/type-decl/body-reference.ts.shot", + "hash": "10034511482733678399" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/type-decl/type-param-reference.ts", + "hash": "6909878918831754769" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/type-decl/type-param-reference.ts.shot", + "hash": "17043126821695873925" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/type-decl/type-parameter-declaration-extends.ts", + "hash": "17148957872734154148" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/type-decl/type-parameter-declaration-extends.ts.shot", + "hash": "7046743185879479007" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/type-decl/type-parameter-declaration.ts", + "hash": "10971554049011062277" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-parameters/type-decl/type-parameter-declaration.ts.shot", + "hash": "11085189720371553243" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-query-qualified.ts", + "hash": "606173376506719606" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-query-qualified.ts.shot", + "hash": "1898220433008961493" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-query-with-parameters.ts", + "hash": "13739280183480409686" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-query-with-parameters.ts.shot", + "hash": "15476973937719717345" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-query.ts", + "hash": "15536179856788781344" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type-query.ts.shot", + "hash": "5300986376462347225" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type1.ts", + "hash": "6164730695783971564" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type1.ts.shot", + "hash": "13941421100342685539" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type2.ts", + "hash": "13664580311042230122" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type2.ts.shot", + "hash": "4717182849098314742" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type3.ts", + "hash": "3124912092385755545" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/type3.ts.shot", + "hash": "879221154409867595" + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/typeof-import-type-with-qualifier.ts", + "hash": "18116511548431047352", + "deps": [["npm:", "dynamic"]] + }, + { + "file": "packages/scope-manager/tests/fixtures/type-declaration/typeof-import-type-with-qualifier.ts.shot", + "hash": "2800107738565274275" + }, + { + "file": "packages/scope-manager/tests/fixtures.test.ts", + "hash": "12287144933284510629", + "deps": ["npm:fs", "npm:glob", "npm:make-dir", "npm:path"] + }, + { + "file": "packages/scope-manager/tests/lib.test.ts", + "hash": "455999957413817071" + }, + { + "file": "packages/scope-manager/tests/types/reference-type.test.ts", + "hash": "5547746237446082915", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/types/variable-definition.test.ts", + "hash": "16930769335540855010", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/util/expect.ts", + "hash": "754750377386546837", + "deps": ["types"] + }, + { + "file": "packages/scope-manager/tests/util/getSpecificNode.ts", + "hash": "5213112350383012565", + "deps": ["types", "typescript-estree"] + }, + { + "file": "packages/scope-manager/tests/util/index.ts", + "hash": "6500783424861977626" + }, + { + "file": "packages/scope-manager/tests/util/misc.ts", + "hash": "15515394878622227773" + }, + { + "file": "packages/scope-manager/tests/util/parse.ts", + "hash": "4105986994177959751", + "deps": ["typescript-estree"] + }, + { + "file": "packages/scope-manager/tests/util/serializers/DefinitionBase.ts", + "hash": "13050683825770470857" + }, + { + "file": "packages/scope-manager/tests/util/serializers/Reference.ts", + "hash": "16315257659882776550" + }, + { + "file": "packages/scope-manager/tests/util/serializers/ScopeBase.ts", + "hash": "8146476634361101348" + }, + { + "file": "packages/scope-manager/tests/util/serializers/ScopeManager.ts", + "hash": "8599151117413572286" + }, + { + "file": "packages/scope-manager/tests/util/serializers/TSESTreeNode.ts", + "hash": "2712038017536910461", + "deps": ["types", "npm:pretty-format"] + }, + { + "file": "packages/scope-manager/tests/util/serializers/Variable.ts", + "hash": "5608685285560634249" + }, + { + "file": "packages/scope-manager/tests/util/serializers/baseSerializer.ts", + "hash": "10576190972291014148", + "deps": ["npm:pretty-format"] + }, + { + "file": "packages/scope-manager/tests/util/serializers/index.ts", + "hash": "2997832029034613697", + "deps": ["npm:jest-specific-snapshot"] + }, + { + "file": "packages/scope-manager/tools/generate-lib.ts", + "hash": "12540361707609332898", + "deps": [ + "types", + "npm:fs", + "npm:path", + "npm:prettier", + "npm:rimraf", + "npm:typescript" + ] + }, + { + "file": "packages/scope-manager/tsconfig.build.json", + "hash": "7860802032777029091" + }, + { + "file": "packages/scope-manager/tsconfig.json", + "hash": "357108583365677717" + }, + { + "file": "packages/scope-manager/tsconfig.spec.json", + "hash": "425118217677556287" + }, + { + "file": "packages/scope-manager/typings/typescript.d.ts", + "hash": "13212360377123535856", + "deps": ["npm:typescript"] + } + ], + "typescript-estree": [ + { + "file": "packages/typescript-estree/CHANGELOG.md", + "hash": "454144418261550689" + }, + { + "file": "packages/typescript-estree/LICENSE", + "hash": "15004163776992133960" + }, + { + "file": "packages/typescript-estree/README.md", + "hash": "2514308211814691779" + }, + { + "file": "packages/typescript-estree/jest.config.js", + "hash": "5973291814190868532", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/typescript-estree/package.json", + "hash": "3037651933736702611", + "deps": [ + "types", + "visitor-keys", + "npm:debug", + "npm:globby", + "npm:is-glob", + "npm:semver", + "npm:jest-specific-snapshot", + "npm:make-dir", + "npm:tmp" + ] + }, + { + "file": "packages/typescript-estree/project.json", + "hash": "7839042169551241354" + }, + { + "file": "packages/typescript-estree/src/ast-converter.ts", + "hash": "17109698387496011054", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/clear-caches.ts", + "hash": "887798198607923720" + }, + { + "file": "packages/typescript-estree/src/convert-comments.ts", + "hash": "2840556375135058693", + "deps": ["npm:ts-api-utils", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/convert.ts", + "hash": "5993805904637666263", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/create-program/WatchCompilerHostOfConfigFile.ts", + "hash": "17519416080722530226", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/create-program/createDefaultProgram.ts", + "hash": "13439269764768137836", + "deps": ["npm:debug", "npm:path", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/create-program/createIsolatedProgram.ts", + "hash": "3271313957110966877", + "deps": ["npm:debug", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/create-program/createProjectProgram.ts", + "hash": "11469669104662158784", + "deps": ["npm:debug", "npm:path", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/create-program/createProjectService.ts", + "hash": "6038627909809468627", + "deps": [ + "npm:typescript/lib/tsserverlibrary", + ["npm:typescript/lib/tsserverlibrary", "dynamic"] + ] + }, + { + "file": "packages/typescript-estree/src/create-program/createSourceFile.ts", + "hash": "14590107217695446651", + "deps": ["npm:debug", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/create-program/describeFilePath.ts", + "hash": "3142164303706084974", + "deps": ["npm:path"] + }, + { + "file": "packages/typescript-estree/src/create-program/getScriptKind.ts", + "hash": "5427454331130175518", + "deps": ["npm:path", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/create-program/getWatchProgramsForProjects.ts", + "hash": "12910687587264421435", + "deps": ["npm:debug", "npm:fs", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/create-program/shared.ts", + "hash": "6600894157827551126", + "deps": ["npm:path", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/create-program/useProvidedPrograms.ts", + "hash": "6282929773311987236", + "deps": ["npm:debug", "npm:fs", "npm:path", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/createParserServices.ts", + "hash": "3062719999363716396", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/getModifiers.ts", + "hash": "7256643563229079250", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/index.ts", + "hash": "16943217030021300439" + }, + { + "file": "packages/typescript-estree/src/jsx/xhtml-entities.ts", + "hash": "12193163394643371207" + }, + { + "file": "packages/typescript-estree/src/node-utils.ts", + "hash": "7927069395258924305", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/parseSettings/ExpiringCache.ts", + "hash": "10415517864976526057", + "deps": ["types"] + }, + { + "file": "packages/typescript-estree/src/parseSettings/createParseSettings.ts", + "hash": "901091864057633421", + "deps": ["npm:debug", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/parseSettings/getProjectConfigFiles.ts", + "hash": "11647931379607834951", + "deps": ["npm:debug", "npm:fs", "npm:path"] + }, + { + "file": "packages/typescript-estree/src/parseSettings/index.ts", + "hash": "5638222873183985862", + "deps": ["npm:typescript", "npm:typescript/lib/tsserverlibrary"] + }, + { + "file": "packages/typescript-estree/src/parseSettings/inferSingleRun.ts", + "hash": "13175194161302814585", + "deps": ["npm:path"] + }, + { + "file": "packages/typescript-estree/src/parseSettings/resolveProjectList.ts", + "hash": "8656649567270865733", + "deps": ["npm:debug", "npm:globby", "npm:is-glob"] + }, + { + "file": "packages/typescript-estree/src/parseSettings/warnAboutTSVersion.ts", + "hash": "7178329631065645123", + "deps": ["npm:semver", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/parser-options.ts", + "hash": "14862103359101308159", + "deps": ["types", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/parser.ts", + "hash": "1703541774889602316", + "deps": ["npm:debug", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/semantic-or-syntactic-errors.ts", + "hash": "15710507384752406058", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/simple-traverse.ts", + "hash": "17291259274589554879", + "deps": ["visitor-keys"] + }, + { + "file": "packages/typescript-estree/src/source-files.ts", + "hash": "15406772353592862244", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/ts-estree/estree-to-ts-node-types.ts", + "hash": "15723169740486082962", + "deps": ["types", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/ts-estree/index.ts", + "hash": "16154052326785253195", + "deps": ["types"] + }, + { + "file": "packages/typescript-estree/src/ts-estree/ts-nodes.ts", + "hash": "2353869863905231659", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/src/use-at-your-own-risk.ts", + "hash": "9638267163856100029" + }, + { + "file": "packages/typescript-estree/src/useProgramFromProjectService.ts", + "hash": "14003307088586032482", + "deps": [ + "npm:path", + "npm:typescript", + "npm:typescript/lib/tsserverlibrary" + ] + }, + { + "file": "packages/typescript-estree/src/version-check.ts", + "hash": "7831402035606365944", + "deps": ["npm:semver", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/js/included01.js", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/js/included02.jsx", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/js/notIncluded01.js", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/js/notIncluded02.jsx", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/other/included.vue", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/other/notIncluded.vue", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/other/unknownFileType.unknown", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/ts/included01.ts", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/ts/included02.tsx", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/ts/notIncluded01.ts", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/ts/notIncluded02.tsx", + "hash": "12004268688236808455" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/tsconfig.extra.json", + "hash": "15753941481085060538" + }, + { + "file": "packages/typescript-estree/tests/fixtures/invalidFileErrors/tsconfig.json", + "hash": "8459191956727770204" + }, + { + "file": "packages/typescript-estree/tests/fixtures/moduleResolver/file.ts", + "hash": "3244421341483603138" + }, + { + "file": "packages/typescript-estree/tests/fixtures/moduleResolver/moduleResolver.js", + "hash": "12117280044635062373", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/tests/fixtures/moduleResolver/something.ts", + "hash": "16393875651766414194" + }, + { + "file": "packages/typescript-estree/tests/fixtures/moduleResolver/tsconfig.defaultProgram.json", + "hash": "2757291497500426535" + }, + { + "file": "packages/typescript-estree/tests/fixtures/moduleResolver/tsconfig.json", + "hash": "6636903358353305656" + }, + { + "file": "packages/typescript-estree/tests/fixtures/projectFolderIgnoreList/ignoreme/file.ts", + "hash": "6725296160478957753" + }, + { + "file": "packages/typescript-estree/tests/fixtures/projectFolderIgnoreList/ignoreme/tsconfig.json", + "hash": "14057580267591754851" + }, + { + "file": "packages/typescript-estree/tests/fixtures/projectFolderIgnoreList/includeme/file.ts", + "hash": "11368481574194969773" + }, + { + "file": "packages/typescript-estree/tests/fixtures/projectFolderIgnoreList/includeme/tsconfig.json", + "hash": "14057580267591754851" + }, + { + "file": "packages/typescript-estree/tests/fixtures/projectTrue/nested/deep/included.ts", + "hash": "17682860058835601195" + }, + { + "file": "packages/typescript-estree/tests/fixtures/projectTrue/nested/included.ts", + "hash": "17682860058835601195" + }, + { + "file": "packages/typescript-estree/tests/fixtures/projectTrue/nested/tsconfig.json", + "hash": "4934900184096334615" + }, + { + "file": "packages/typescript-estree/tests/fixtures/projectTrue/notIncluded.ts", + "hash": "14370306333001155640" + }, + { + "file": "packages/typescript-estree/tests/fixtures/semanticInfo/badTSConfig/app.ts", + "hash": "3244421341483603138" + }, + { + "file": "packages/typescript-estree/tests/fixtures/semanticInfo/badTSConfig/tsconfig.json", + "hash": "3032455248676717222" + }, + { + "file": "packages/typescript-estree/tests/fixtures/semanticInfo/export-file.src.ts", + "hash": "5316353956764691056" + }, + { + "file": "packages/typescript-estree/tests/fixtures/semanticInfo/extra-file-extension.vue", + "hash": "2796916648800659761" + }, + { + "file": "packages/typescript-estree/tests/fixtures/semanticInfo/import-file.src.ts", + "hash": "11516337558210462933" + }, + { + "file": "packages/typescript-estree/tests/fixtures/semanticInfo/isolated-file.src.ts", + "hash": "2796916648800659761" + }, + { + "file": "packages/typescript-estree/tests/fixtures/semanticInfo/non-existent-estree-nodes.src.ts", + "hash": "1230976499676901636" + }, + { + "file": "packages/typescript-estree/tests/fixtures/semanticInfo/tsconfig.json", + "hash": "5089732980941572590" + }, + { + "file": "packages/typescript-estree/tests/fixtures/simpleProject/file-jsx.tsx", + "hash": "3244421341483603138" + }, + { + "file": "packages/typescript-estree/tests/fixtures/simpleProject/file.ts", + "hash": "3244421341483603138" + }, + { + "file": "packages/typescript-estree/tests/fixtures/simpleProject/tsconfig.json", + "hash": "11305592222145543787" + }, + { + "file": "packages/typescript-estree/tests/lib/__snapshots__/convert.test.ts.snap", + "hash": "13641499361527611266" + }, + { + "file": "packages/typescript-estree/tests/lib/__snapshots__/describeFilePath.test.ts.snap", + "hash": "13223157476196435914" + }, + { + "file": "packages/typescript-estree/tests/lib/__snapshots__/parse.test.ts.snap", + "hash": "7878490412151688326" + }, + { + "file": "packages/typescript-estree/tests/lib/__snapshots__/semanticInfo.test.ts.snap", + "hash": "17213718055548689471" + }, + { + "file": "packages/typescript-estree/tests/lib/convert.test.ts", + "hash": "7970031851902382167", + "deps": ["types", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/tests/lib/createParseSettings.test.ts", + "hash": "6878779614799964985" + }, + { + "file": "packages/typescript-estree/tests/lib/createProjectService.test.ts", + "hash": "16943607752541102406" + }, + { + "file": "packages/typescript-estree/tests/lib/describeFilePath.test.ts", + "hash": "12312620747998678423" + }, + { + "file": "packages/typescript-estree/tests/lib/getProjectConfigFiles.test.ts", + "hash": "11683530497486090979", + "deps": ["npm:path"] + }, + { + "file": "packages/typescript-estree/tests/lib/node-utils.test.ts", + "hash": "13301985979694118117" + }, + { + "file": "packages/typescript-estree/tests/lib/parse.project-true.test.ts", + "hash": "2708081568789682949", + "deps": ["npm:path"] + }, + { + "file": "packages/typescript-estree/tests/lib/parse.test.ts", + "hash": "9710825193697769317", + "deps": [ + "types", + "npm:debug", + "npm:globby", + "npm:path", + "npm:typescript" + ] + }, + { + "file": "packages/typescript-estree/tests/lib/persistentParse.test.ts", + "hash": "13743891243310457362", + "deps": ["npm:fs", "npm:path", "npm:tmp"] + }, + { + "file": "packages/typescript-estree/tests/lib/semanticInfo-singleRun.test.ts", + "hash": "9661034808420964423", + "deps": ["npm:glob", "npm:path"] + }, + { + "file": "packages/typescript-estree/tests/lib/semanticInfo.test.ts", + "hash": "2356382685663837271", + "deps": ["npm:fs", "npm:glob", "npm:path", "npm:typescript"] + }, + { + "file": "packages/typescript-estree/tests/lib/source-files.test.ts", + "hash": "11359781168144628250", + "deps": ["npm:typescript"] + }, + { + "file": "packages/typescript-estree/tests/lib/test-utils/expectToHaveParserServices.ts", + "hash": "12439694654308470207" + }, + { + "file": "packages/typescript-estree/tests/lib/warn-on-unsupported-ts.test.ts", + "hash": "4673397239914060669", + "deps": ["npm:semver"] + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/block-trailing-comment.src.js.shot", + "hash": "994044322157602692" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/comment-within-condition.src.js.shot", + "hash": "15766058449734051269" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/export-default-anonymous-class.src.js.shot", + "hash": "1326716696256905494" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsdoc-comment.src.js.shot", + "hash": "1573688936828677078" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-attr-and-text-with-url.src.js.shot", + "hash": "630356401288320120" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-block-comment.src.js.shot", + "hash": "2441265747366250235" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-comment-after-jsx.src.js.shot", + "hash": "2683316351661258808" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-comment-after-self-closing-jsx.src.js.shot", + "hash": "14649811899949113239" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-generic-with-comment-in-tag.src.js.shot", + "hash": "4938937934974428103" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-tag-comment-after-prop.src.js.shot", + "hash": "5273758051471149288" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-tag-comments.src.js.shot", + "hash": "8958998031263973440" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-text-with-multiline-non-comment.src.js.shot", + "hash": "6986041062459649137" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-text-with-url.src.js.shot", + "hash": "9524996920067992423" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-with-greather-than.src.js.shot", + "hash": "5153164438628796865" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/jsx-with-operators.src.js.shot", + "hash": "12999291619216257604" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/mix-line-and-block-comments.src.js.shot", + "hash": "16121473088061473900" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/no-comment-regex.src.js.shot", + "hash": "3127870001508533802" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/no-comment-template.src.js.shot", + "hash": "12890422243268642155" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/surrounding-call-comments.src.js.shot", + "hash": "14220634499211134471" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/surrounding-debugger-comments.src.js.shot", + "hash": "274759067818371251" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/surrounding-return-comments.src.js.shot", + "hash": "10480393680171335418" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/surrounding-throw-comments.src.js.shot", + "hash": "15198625559341305220" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/surrounding-while-loop-comments.src.js.shot", + "hash": "6777424347143224275" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/switch-fallthrough-comment-in-function.src.js.shot", + "hash": "10725198059963095679" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/switch-fallthrough-comment.src.js.shot", + "hash": "4445318339567624753" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/switch-no-default-comment-in-function.src.js.shot", + "hash": "12586199706004870257" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/switch-no-default-comment-in-nested-functions.src.js.shot", + "hash": "797372799430807941" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/switch-no-default-comment.src.js.shot", + "hash": "5517748207020220734" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/template-string-block.src.js.shot", + "hash": "1670170114751210792" + }, + { + "file": "packages/typescript-estree/tests/snapshots/comments/type-assertion-regression-test.src.ts.shot", + "hash": "1883359139683594672" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrayLiteral/array-literal-in-lhs.src.js.shot", + "hash": "13520227562320085683" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrayLiteral/array-literals-in-binary-expr.src.js.shot", + "hash": "17410720185321441683" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/as-param-with-params.src.js.shot", + "hash": "17654035901979026277" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/as-param.src.js.shot", + "hash": "2856516505003069967" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/basic-in-binary-expression.src.js.shot", + "hash": "9609154381628099448" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/basic.src.js.shot", + "hash": "781606048356998039" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/block-body-not-object.src.js.shot", + "hash": "15481811483021054636" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/block-body.src.js.shot", + "hash": "15854626591094339091" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-dup-params.src.js.shot", + "hash": "11664075353228301684" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-default-param-eval.src.js.shot", + "hash": "6653605113250323567" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-dup-params.src.js.shot", + "hash": "4690681324569239128" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-eval-return.src.js.shot", + "hash": "2554267478314488825" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-eval.src.js.shot", + "hash": "10502839240043475424" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-octal.src.js.shot", + "hash": "23082725038849266" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-param-arguments.src.js.shot", + "hash": "16377679378067407771" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-param-eval.src.js.shot", + "hash": "10904754308246621379" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-param-names.src.js.shot", + "hash": "197341233297236568" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-param-no-paren-arguments.src.js.shot", + "hash": "6406542656537693425" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-strict-param-no-paren-eval.src.js.shot", + "hash": "2436347820620614262" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/error-two-lines.src.js.shot", + "hash": "13764317443235319178" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/expression.src.js.shot", + "hash": "8589756660935516945" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/iife.src.js.shot", + "hash": "9532008358800994883" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/multiple-params.src.js.shot", + "hash": "4971047113623091553" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/no-auto-return.src.js.shot", + "hash": "1971441858992941820" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/not-strict-arguments.src.js.shot", + "hash": "17031588469767584910" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/not-strict-eval-params.src.js.shot", + "hash": "15486198716340729337" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/not-strict-eval.src.js.shot", + "hash": "12084643009844619866" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/not-strict-octal.src.js.shot", + "hash": "10989327244624168112" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/return-arrow-function.src.js.shot", + "hash": "4654919738739146166" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/return-sequence.src.js.shot", + "hash": "17064786898978891363" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/single-param-parens.src.js.shot", + "hash": "1534305383964187686" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/single-param-return-identifier.src.js.shot", + "hash": "9329387056533918844" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/arrowFunctions/single-param.src.js.shot", + "hash": "10170775167788814020" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/and-operator-array-object.src.js.shot", + "hash": "298942990346721094" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/delete-expression.src.js.shot", + "hash": "6015593397364096943" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/do-while-statements.src.js.shot", + "hash": "3176077473614506819" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/identifiers-double-underscore.src.js.shot", + "hash": "847103752984332316" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/instanceof.src.js.shot", + "hash": "16613990963469356463" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/new-with-member-expression.src.js.shot", + "hash": "16938632128886199028" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/new-without-parens.src.js.shot", + "hash": "3351589166202638343" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/or-operator-array-object.src.js.shot", + "hash": "17025221184120500203" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/typeof-expression.src.js.shot", + "hash": "5821463190201589286" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/update-expression.src.js.shot", + "hash": "9360894150063072390" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/basics/void-expression.src.js.shot", + "hash": "10356454631673330288" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/bigIntLiterals/binary.src.js.shot", + "hash": "4986270366619460254" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/bigIntLiterals/decimal.src.js.shot", + "hash": "11632301066681556231" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/bigIntLiterals/hex.src.js.shot", + "hash": "11426814090777689770" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/bigIntLiterals/numeric-separator.src.js.shot", + "hash": "1700870417068734893" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/bigIntLiterals/octal.src.js.shot", + "hash": "10899235395461012572" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/binaryLiterals/lowercase.src.js.shot", + "hash": "7940995882653129716" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/binaryLiterals/uppercase.src.js.shot", + "hash": "5978309914636465233" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/blockBindings/const.src.js.shot", + "hash": "13849010391797459528" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/blockBindings/let-in-switchcase.src.js.shot", + "hash": "6235627206181239986" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/blockBindings/let.src.js.shot", + "hash": "6536399658011982324" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/callExpression/call-expression-with-array.src.js.shot", + "hash": "17942788910607906494" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/callExpression/call-expression-with-object.src.js.shot", + "hash": "9220406218902737113" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/callExpression/mixed-expression.src.js.shot", + "hash": "292015502489795058" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/callExpression/new-expression-with-array.src.js.shot", + "hash": "11163133670004915903" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/callExpression/new-expression-with-object.src.js.shot", + "hash": "15702984344553871218" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-accessor-properties.src.js.shot", + "hash": "97936985763851286" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-computed-static-method.src.js.shot", + "hash": "4898967464565062800" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-expression.src.js.shot", + "hash": "17191452565887249140" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-method-named-prototype.src.js.shot", + "hash": "14024742999891695028" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-method-named-static.src.js.shot", + "hash": "18138978101031469712" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-method-named-with-space.src.js.shot", + "hash": "6989246723300348310" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-one-method-super.src.js.shot", + "hash": "13185357557526272630" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-one-method.src.js.shot", + "hash": "9331385803745224035" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-private-identifier-accessor.src.js.shot", + "hash": "12168540668856579814" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-private-identifier-field.src.js.shot", + "hash": "11672012655630026335" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-private-identifier-method.src.js.shot", + "hash": "12527920729572616547" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-static-method-named-prototype.src.js.shot", + "hash": "2402556770018719841" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-static-method-named-static.src.js.shot", + "hash": "2687999071000626556" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-static-method.src.js.shot", + "hash": "294370118288850822" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-static-methods-and-accessor-properties.src.js.shot", + "hash": "1097265096806891220" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-two-computed-static-methods.src.js.shot", + "hash": "5778963248767987251" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-two-methods-computed-constructor.src.js.shot", + "hash": "17546479139336309264" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-two-methods-semi.src.js.shot", + "hash": "4308204774328400069" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-two-methods-three-semi.src.js.shot", + "hash": "9067564956392670740" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-two-methods-two-semi.src.js.shot", + "hash": "13870521330377936604" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-two-methods.src.js.shot", + "hash": "7368884915752982558" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-two-static-methods-named-constructor.src.js.shot", + "hash": "9544448429559303149" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-with-constructor-parameters.src.js.shot", + "hash": "10308253795109571513" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-with-constructor-with-space.src.js.shot", + "hash": "14776451912477682944" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/class-with-constructor.src.js.shot", + "hash": "3658213315654802701" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/derived-class-assign-to-var.src.js.shot", + "hash": "6120628360039859807" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/derived-class-expression.src.js.shot", + "hash": "391999681261399916" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/empty-class-double-semi.src.js.shot", + "hash": "17841537460039352921" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/empty-class-semi.src.js.shot", + "hash": "13717808149904135091" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/empty-class.src.js.shot", + "hash": "89842643995441753" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/empty-literal-derived-class.src.js.shot", + "hash": "15225131988683758193" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/invalid-class-declaration.src.js.shot", + "hash": "9827026176503014965" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/invalid-class-setter-declaration.src.js.shot", + "hash": "18099867050335491433" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/named-class-expression.src.js.shot", + "hash": "2608292236167063343" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/classes/named-derived-class-expression.src.js.shot", + "hash": "5478912030509334667" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/commaOperator/comma-operator-conditional.src.js.shot", + "hash": "9708969175339426103" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/commaOperator/comma-operator-multi.src.js.shot", + "hash": "14157194858111245648" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/commaOperator/comma-operator-nested.src.js.shot", + "hash": "7986237867454581863" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/commaOperator/comma-operator-return.src.js.shot", + "hash": "5063985831998426895" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/commaOperator/comma-operator-simple-nested.src.js.shot", + "hash": "8852517829675497753" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/commaOperator/comma-operator-simple.src.js.shot", + "hash": "10967779791305374349" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/defaultParams/class-constructor.src.js.shot", + "hash": "9291935136638998938" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/defaultParams/class-method.src.js.shot", + "hash": "12978876721599156530" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/defaultParams/declaration.src.js.shot", + "hash": "12701601730545417668" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/defaultParams/expression.src.js.shot", + "hash": "17055464024700230665" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/defaultParams/method.src.js.shot", + "hash": "1583419944263258650" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/defaultParams/not-all-params.src.js.shot", + "hash": "12359390469783297136" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/array-member.src.js.shot", + "hash": "1144776321059880698" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/array-to-array.src.js.shot", + "hash": "705240065007081333" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/array-var-undefined.src.js.shot", + "hash": "7000544295216640456" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/call-expression-destruction-array.src.js.shot", + "hash": "1858999245518745754" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/call-expression-destruction-object.src.js.shot", + "hash": "11041883439796615567" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/class-constructor-params-array.src.js.shot", + "hash": "3725435329634150688" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/class-constructor-params-defaults-array.src.js.shot", + "hash": "17614794662229813312" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/class-constructor-params-defaults-object.src.js.shot", + "hash": "7167910258594355121" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/class-constructor-params-object.src.js.shot", + "hash": "7951532987525497316" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/class-method-params-array.src.js.shot", + "hash": "2163969541611143584" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/class-method-params-defaults-array.src.js.shot", + "hash": "4508557290266315903" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/class-method-params-defaults-object.src.js.shot", + "hash": "765437629915501902" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/class-method-params-object.src.js.shot", + "hash": "9442625730831906846" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-array-all.src.js.shot", + "hash": "15379091883823378973" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-array-longform-nested-multi.src.js.shot", + "hash": "8280162642033507973" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-array-multi.src.js.shot", + "hash": "6671205819333960226" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-array-nested-all.src.js.shot", + "hash": "13350246767655791088" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-array-nested-multi.src.js.shot", + "hash": "967561809614838577" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-array.src.js.shot", + "hash": "4867303176106228164" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object-all.src.js.shot", + "hash": "10482562042852750033" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object-assign.src.js.shot", + "hash": "2754763691215771053" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object-longform-all.src.js.shot", + "hash": "16290154753214531916" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object-longform-multi.src.js.shot", + "hash": "1930878325890126284" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object-longform.src.js.shot", + "hash": "305865062884864976" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object-mixed-multi.src.js.shot", + "hash": "7687214162501916342" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object-multi.src.js.shot", + "hash": "17638666391808280323" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object-nested-all.src.js.shot", + "hash": "2001556419387795585" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object-nested-multi.src.js.shot", + "hash": "692269348455961143" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/defaults-object.src.js.shot", + "hash": "17914564259122338327" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/destructured-array-catch.src.js.shot", + "hash": "23134472569401792" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/destructured-object-catch.src.js.shot", + "hash": "4633869436714250649" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/invalid-defaults-object-assign.src.js.shot", + "hash": "16456078058270873294" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/named-param.src.js.shot", + "hash": "5437447615139495090" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/nested-array.src.js.shot", + "hash": "9414175019175741590" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/nested-object.src.js.shot", + "hash": "15296857896039326220" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/object-var-named.src.js.shot", + "hash": "3684150340147140530" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/object-var-undefined.src.js.shot", + "hash": "15951900271392515892" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/param-defaults-array.src.js.shot", + "hash": "7322899979652319885" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/param-defaults-object-nested.src.js.shot", + "hash": "3693742642677209937" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/param-defaults-object.src.js.shot", + "hash": "3099550490367443884" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/params-array-wrapped.src.js.shot", + "hash": "9872159849892804618" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/params-array.src.js.shot", + "hash": "3144880976265932185" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/params-multi-object.src.js.shot", + "hash": "17969364812184882748" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/params-nested-array.src.js.shot", + "hash": "1006364534204318108" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/params-nested-object.src.js.shot", + "hash": "7410907802147254732" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/params-object-wrapped.src.js.shot", + "hash": "12315156538488726271" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/params-object.src.js.shot", + "hash": "6181801861061473406" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring/sparse-array.src.js.shot", + "hash": "5706519891375413547" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-arrowFunctions/arrow-param-array.src.js.shot", + "hash": "11783094443679855497" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-arrowFunctions/arrow-param-nested-array.src.js.shot", + "hash": "7095492858739003250" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-arrowFunctions/arrow-param-nested-object-named.src.js.shot", + "hash": "13123937969695590848" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-arrowFunctions/arrow-param-nested-object.src.js.shot", + "hash": "8163039938346458422" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-arrowFunctions/arrow-param-object.src.js.shot", + "hash": "16461447062704255522" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-arrowFunctions/param-defaults-array.src.js.shot", + "hash": "1114213345137659593" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-arrowFunctions/param-defaults-object-nested.src.js.shot", + "hash": "124673199814452732" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-arrowFunctions/param-defaults-object.src.js.shot", + "hash": "3137051970361125107" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-blockBindings/array-const-undefined.src.js.shot", + "hash": "13845948750648558877" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-blockBindings/array-let-undefined.src.js.shot", + "hash": "18392879787586264327" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-blockBindings/object-const-named.src.js.shot", + "hash": "1960113094214950488" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-blockBindings/object-const-undefined.src.js.shot", + "hash": "7523014835713756339" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-blockBindings/object-let-named.src.js.shot", + "hash": "5832418349237635710" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-blockBindings/object-let-undefined.src.js.shot", + "hash": "13459425001353918751" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-defaultParams/param-array.src.js.shot", + "hash": "18350040149212634153" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-defaultParams/param-object-short.src.js.shot", + "hash": "13760916974384638125" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-defaultParams/param-object-wrapped.src.js.shot", + "hash": "2288987691077328399" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-defaultParams/param-object.src.js.shot", + "hash": "10758853462602632555" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-forOf/loop.src.js.shot", + "hash": "14302909734790302749" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/complex-destructured.src.js.shot", + "hash": "15727768066123858655" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/destructured-array-literal.src.js.shot", + "hash": "14641291186104765612" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/destructuring-param.src.js.shot", + "hash": "13685112680063046190" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/error-complex-destructured-spread-first.src.js.shot", + "hash": "13740801821516298853" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/invalid-not-final-array-empty.src.js.shot", + "hash": "983444255577192319" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/multi-destructured.src.js.shot", + "hash": "5986107355024832348" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/not-final-array.src.js.shot", + "hash": "13237418911815353282" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/single-destructured.src.js.shot", + "hash": "5902632794419258564" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/var-complex-destructured.src.js.shot", + "hash": "4052267108578331822" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/var-destructured-array-literal.src.js.shot", + "hash": "15214699349477215134" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/var-multi-destructured.src.js.shot", + "hash": "13464330378343042810" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/destructuring-and-spread/var-single-destructured.src.js.shot", + "hash": "535931182442745477" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/directives/block.src.js.shot", + "hash": "17899900047874472843" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/directives/directive-in-class.src.js.shot", + "hash": "7140035815020494731" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/directives/first-expression.src.js.shot", + "hash": "9374071668482080396" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/directives/function-non-strict.src.js.shot", + "hash": "5926628332758359633" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/directives/non-directive-string.src.js.shot", + "hash": "5230002482787506696" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/directives/program-order.src.js.shot", + "hash": "329007236407804791" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/directives/program.src.js.shot", + "hash": "11561495198310652828" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalAsyncIteration/async-generators.src.js.shot", + "hash": "7773344418966287317" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalAsyncIteration/async-iterator.src.js.shot", + "hash": "9979598803661277719" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalDynamicImport/dynamic-import.src.js.shot", + "hash": "7247814448275047873" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/arg-spread.src.js.shot", + "hash": "516297587028702653" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/destructuring-assign-mirror.src.js.shot", + "hash": "16033946804259188104" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/function-parameter-object-spread.src.js.shot", + "hash": "4186810887911746170" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/invalid-rest-trailing-comma.src.js.shot", + "hash": "9197964169666749380" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/object-rest.src.js.shot", + "hash": "9407248016392676950" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/property-spread.src.js.shot", + "hash": "1810820109638768526" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/shorthand-method-args.src.js.shot", + "hash": "6453065724788372324" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/shorthand-methods.src.js.shot", + "hash": "13108358240685187704" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/shorthand-properties.src.js.shot", + "hash": "1246730797253857568" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/single-spread.src.js.shot", + "hash": "2676011057269224590" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/spread-trailing-comma.src.js.shot", + "hash": "14787602884804609752" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/experimentalObjectRestSpread/two-spread.src.js.shot", + "hash": "5910365196400451323" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/exponentiationOperators/exponential-operators.src.js.shot", + "hash": "9701325714227561256" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/for/for-loop.src.js.shot", + "hash": "8382482247594724930" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/for/for-with-coma.src.js.shot", + "hash": "16735434346182197095" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/for/for-with-const.src.js.shot", + "hash": "2140371750885460079" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/for/for-with-function.src.js.shot", + "hash": "13420762975643992077" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/for/for-with-let.src.js.shot", + "hash": "6318548130484927578" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-array.src.js.shot", + "hash": "8001547631136935112" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-bare-nonstrict.src.js.shot", + "hash": "13023016687626038974" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-destruction-object.src.js.shot", + "hash": "3904246515642105486" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-destruction.src.js.shot", + "hash": "13996682783550269330" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-object-with-body.src.js.shot", + "hash": "14221574208178673928" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-with-assigment.src.js.shot", + "hash": "600268864997682360" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-with-bare-assigment.src.js.shot", + "hash": "17263694621033346551" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-with-const.src.js.shot", + "hash": "10316443782558341679" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-with-milti-asigment.src.js.shot", + "hash": "4119700504591227122" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-with-rest.src.js.shot", + "hash": "17024630845845495998" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forIn/for-in-with-var.src.js.shot", + "hash": "17488878046072090464" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/for-of-array.src.js.shot", + "hash": "4640508894351855312" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/for-of-destruction-object.src.js.shot", + "hash": "1105791320659829505" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/for-of-destruction.src.js.shot", + "hash": "1248256691546854032" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/for-of-object.src.js.shot", + "hash": "7592682404789189733" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/for-of-with-function-initializer.src.js.shot", + "hash": "17534753496545316532" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/for-of-with-rest.src.js.shot", + "hash": "17474755803038114007" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/for-of-with-var-and-braces.src.js.shot", + "hash": "17979046917873719772" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/for-of-with-var-and-no-braces.src.js.shot", + "hash": "5920674390493543206" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/invalid-for-of-with-const-and-no-braces.src.js.shot", + "hash": "5182527512127445322" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/forOf/invalid-for-of-with-let-and-no-braces.src.js.shot", + "hash": "6476852411259363158" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/function/return-multiline-sequence.src.js.shot", + "hash": "13719273655172338664" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/function/return-sequence.src.js.shot", + "hash": "11345324274797300918" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/anonymous-generator.src.js.shot", + "hash": "11536857870104617567" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/async-generator-function.src.js.shot", + "hash": "14564079222199752481" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/async-generator-method.src.js.shot", + "hash": "9668124522906520303" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/double-yield.src.js.shot", + "hash": "17660572760451211522" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/empty-generator-declaration.src.js.shot", + "hash": "1332466125762688825" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/generator-declaration.src.js.shot", + "hash": "7031678976186478880" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/yield-delegation.src.js.shot", + "hash": "4355039057536905769" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/yield-without-value-in-call.src.js.shot", + "hash": "11792125778156092336" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/yield-without-value-no-semi.src.js.shot", + "hash": "17094263060800103694" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/generators/yield-without-value.src.js.shot", + "hash": "6867096440897078691" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/globalReturn/return-identifier.src.js.shot", + "hash": "7973292980740300833" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/hexLiterals/lowercase.src.js.shot", + "hash": "5392597105222760073" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/hexLiterals/uppercase.src.js.shot", + "hash": "13421604268392798423" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/importMeta/simple-import-meta.src.js.shot", + "hash": "3673172832983366144" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/labels/label-break.src.js.shot", + "hash": "2848492809757459094" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/labels/label-continue.src.js.shot", + "hash": "1500996482841880566" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/error-delete.src.js.shot", + "hash": "12017856920408654650" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/error-function.src.js.shot", + "hash": "1251239540592810744" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/error-strict.src.js.shot", + "hash": "8810956702493347612" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-async-named-function.src.js.shot", + "hash": "131708801792840963" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-const.src.js.shot", + "hash": "16387527911097223400" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-default-async-named-function.src.js.shot", + "hash": "16258376256835982491" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-default-class.src.js.shot", + "hash": "4524081954782279285" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-default-function.src.js.shot", + "hash": "2920146551731160524" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-default-named-class.src.js.shot", + "hash": "11596168635148860237" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-default-named-function.src.js.shot", + "hash": "6247922395863947492" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-default-object.src.js.shot", + "hash": "6388594003403720262" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-default-value.src.js.shot", + "hash": "5052735353166058829" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-from-default.src.js.shot", + "hash": "972423135685779743" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-from-named-as-default.src.js.shot", + "hash": "13631605600229981704" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-from-named-as-specifier.src.js.shot", + "hash": "14834723775768961982" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-from-named-as-specifiers.src.js.shot", + "hash": "7183669269355306758" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-from-specifier.src.js.shot", + "hash": "17364619815370721265" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-from-specifiers.src.js.shot", + "hash": "14350548316728838733" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-function.src.js.shot", + "hash": "2201477306406580778" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-let.src.js.shot", + "hash": "7754850102070462721" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-named-as-default.src.js.shot", + "hash": "16645550461198800808" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-named-as-specifier.src.js.shot", + "hash": "10630559384509990295" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-named-as-specifiers.src.js.shot", + "hash": "1981327557158695764" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-named-class.src.js.shot", + "hash": "3338165919096279350" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-named-specifier.src.js.shot", + "hash": "5959396076135560916" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-named-specifiers-comma.src.js.shot", + "hash": "10307671983812672647" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-named-specifiers.src.js.shot", + "hash": "14892332873704200298" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-var-anonymous-function.src.js.shot", + "hash": "5507183500268230165" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-var-number.src.js.shot", + "hash": "56834226715238446" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/export-var.src.js.shot", + "hash": "9404950768181722458" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-default-and-named-specifiers.src.js.shot", + "hash": "13804863104878930807" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-default-and-namespace-specifiers.src.js.shot", + "hash": "16679856112773718326" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-default-as.src.js.shot", + "hash": "9241363339582030575" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-default.src.js.shot", + "hash": "1591407325132896852" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-jquery.src.js.shot", + "hash": "7508408201005497319" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-named-as-specifier.src.js.shot", + "hash": "1776965973079711156" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-named-as-specifiers.src.js.shot", + "hash": "4880204668701091238" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-named-specifier.src.js.shot", + "hash": "10517063746414878225" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-named-specifiers-comma.src.js.shot", + "hash": "12627378499381871568" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-named-specifiers.src.js.shot", + "hash": "1821004898829292595" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-namespace-specifier.src.js.shot", + "hash": "15029835462811043644" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/import-null-as-nil.src.js.shot", + "hash": "17754687048964895367" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/invalid-await.src.js.shot", + "hash": "392290047745722624" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/invalid-class.src.js.shot", + "hash": "14836679674234174148" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/modules/invalid-export-named-default.src.js.shot", + "hash": "3766769582017045124" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/newTarget/invalid-new-target.src.js.shot", + "hash": "7800468354590971760" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/newTarget/invalid-unknown-property.src.js.shot", + "hash": "11903469783972711658" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/newTarget/simple-new-target.src.js.shot", + "hash": "11872662025496569177" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteral/object-literal-in-lhs.src.js.shot", + "hash": "9551802062231922019" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralComputedProperties/computed-addition-property.src.js.shot", + "hash": "2557537426760411649" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralComputedProperties/computed-and-identifier.src.js.shot", + "hash": "1901913829701978131" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralComputedProperties/computed-getter-and-setter.src.js.shot", + "hash": "9827418642724311610" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralComputedProperties/computed-string-property.src.js.shot", + "hash": "5040059594254194651" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralComputedProperties/computed-variable-property.src.js.shot", + "hash": "14762008392400773331" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralComputedProperties/standalone-expression-with-addition.src.js.shot", + "hash": "8294601674103491757" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralComputedProperties/standalone-expression-with-method.src.js.shot", + "hash": "11594358963117524863" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralComputedProperties/standalone-expression.src.js.shot", + "hash": "17795854456952856967" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralDuplicateProperties/error-proto-property.src.js.shot", + "hash": "5948347416636428984" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralDuplicateProperties/error-proto-string-property.src.js.shot", + "hash": "3159546122453030569" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralDuplicateProperties/strict-duplicate-properties.src.js.shot", + "hash": "12570625345574835046" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralDuplicateProperties/strict-duplicate-string-properties.src.js.shot", + "hash": "16272394214678029911" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralShorthandMethods/method-property.src.js.shot", + "hash": "14716550010498205954" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralShorthandMethods/simple-method-named-get.src.js.shot", + "hash": "13701531348214254847" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralShorthandMethods/simple-method-named-set.src.js.shot", + "hash": "5835353160984254671" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralShorthandMethods/simple-method-with-argument.src.js.shot", + "hash": "12247262936989773617" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralShorthandMethods/simple-method-with-string-name.src.js.shot", + "hash": "17215287935761826091" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralShorthandMethods/simple-method.src.js.shot", + "hash": "4159607174450320282" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralShorthandMethods/string-name-method-property.src.js.shot", + "hash": "8836083985879347732" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/objectLiteralShorthandProperties/shorthand-properties.src.js.shot", + "hash": "8227430571082510488" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/octalLiterals/legacy.src.js.shot", + "hash": "8159717789132814700" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/octalLiterals/lowercase.src.js.shot", + "hash": "15391966673185932235" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/octalLiterals/strict-uppercase.src.js.shot", + "hash": "10537797039673320176" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/octalLiterals/uppercase.src.js.shot", + "hash": "2319298026864318146" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/regex/regexp-simple.src.js.shot", + "hash": "7865809278187548254" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/regexUFlag/regex-u-extended-escape.src.js.shot", + "hash": "11587746790657453491" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/regexUFlag/regex-u-invalid-extended-escape.src.js.shot", + "hash": "11634914599244617355" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/regexUFlag/regex-u-simple.src.js.shot", + "hash": "9668820607641783001" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/regexYFlag/regexp-y-simple.src.js.shot", + "hash": "13120147272949731075" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/restParams/basic-rest.src.js.shot", + "hash": "4647603445505914804" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/restParams/class-constructor.src.js.shot", + "hash": "4154728021424476553" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/restParams/class-method.src.js.shot", + "hash": "10105424252201993332" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/restParams/error-no-default.src.js.shot", + "hash": "14935011175574274078" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/restParams/error-not-last.src.js.shot", + "hash": "16071608829598174067" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/restParams/func-expression-multi.src.js.shot", + "hash": "13601800796769142403" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/restParams/func-expression.src.js.shot", + "hash": "18235739415608716919" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/restParams/invalid-rest-param.src.js.shot", + "hash": "5797569482372380945" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/restParams/single-rest.src.js.shot", + "hash": "15892349277305796245" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/simple-literals/literal-float-negative.src.js.shot", + "hash": "15662200721329921266" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/simple-literals/literal-float.src.js.shot", + "hash": "6230610358782162898" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/simple-literals/literal-null.src.js.shot", + "hash": "645378241683725828" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/simple-literals/literal-number-negative.src.js.shot", + "hash": "10831148940802243469" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/simple-literals/literal-number.src.js.shot", + "hash": "6433071135141713313" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/simple-literals/literal-string.src.js.shot", + "hash": "13921247010687735252" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/simple-literals/literal-undefined.src.js.shot", + "hash": "5181994494833870788" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/spread/complex-spread.src.js.shot", + "hash": "7831836109042126115" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/spread/multi-function-call.src.js.shot", + "hash": "13214744170044569993" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/spread/not-final-param.src.js.shot", + "hash": "79548364813266193" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/spread/simple-function-call.src.js.shot", + "hash": "16103080946476632670" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/templateStrings/deeply-nested.src.js.shot", + "hash": "6038602312232581479" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/templateStrings/error-octal-literal.src.js.shot", + "hash": "16936145161711823326" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/templateStrings/escape-characters.src.js.shot", + "hash": "14256337565191292153" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/templateStrings/expressions.src.js.shot", + "hash": "16374545258212482246" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/templateStrings/multi-line-template-string.src.js.shot", + "hash": "15549116495271613228" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/templateStrings/simple-template-string.src.js.shot", + "hash": "16710096670083747418" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/templateStrings/single-dollar-sign.src.js.shot", + "hash": "15518376294912772074" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/templateStrings/tagged-no-placeholders.src.js.shot", + "hash": "8921164152234796366" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/templateStrings/tagged-template-string.src.js.shot", + "hash": "18241615386424975809" + }, + { + "file": "packages/typescript-estree/tests/snapshots/javascript/unicodeCodePointEscapes/ignored.src.js.shot", + "hash": "835580207229816667" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/attributes.src.js.shot", + "hash": "18076497853678417190" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/element-keyword-name.src.js.shot", + "hash": "13874401125062335451" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/embedded-comment.src.js.shot", + "hash": "15731033106478904513" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/embedded-conditional.src.js.shot", + "hash": "5237333918703423725" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/embedded-invalid-js-identifier.src.js.shot", + "hash": "15727856267762686900" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/empty-placeholder.src.js.shot", + "hash": "10079094337864959322" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/escape-patterns-ignored.src.js.shot", + "hash": "11450349248541838289" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/escape-patterns-unknown.src.js.shot", + "hash": "6224023448590476455" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/escape-patterns-valid.src.js.shot", + "hash": "23078802061085160" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/escape-patters-multi.src.js.shot", + "hash": "11450147938800370661" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/invalid-namespace-value-with-dots.src.js.shot", + "hash": "798774988857354762" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/japanese-characters.src.js.shot", + "hash": "14036305091252803765" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/less-than-operator.src.js.shot", + "hash": "11062440382633904951" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/member-expression-this.src.js.shot", + "hash": "12717249623364027724" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/member-expression.src.js.shot", + "hash": "11240534242368349745" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/multiple-blank-spaces.src.js.shot", + "hash": "11328992567544252808" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/namespace-this-name.src.js.shot", + "hash": "2427113820827803514" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/namespaced-attribute-and-value-inserted.src.js.shot", + "hash": "15388766449952239303" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/namespaced-name-and-attribute.src.js.shot", + "hash": "8111627737363446827" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/self-closing-tag-inside-tag.src.js.shot", + "hash": "11741269629781223274" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/self-closing-tag.src.js.shot", + "hash": "4638266746163350097" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/shorthand-fragment-with-child.src.js.shot", + "hash": "5485901981586700398" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/shorthand-fragment.src.js.shot", + "hash": "13358389267744405243" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/spread-child.src.js.shot", + "hash": "11231386587741226029" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/spread-operator-attribute-and-regular-attribute.src.js.shot", + "hash": "14360659225028936992" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/spread-operator-attributes.src.js.shot", + "hash": "10415126229371225512" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/tag-names-with-dots.src.js.shot", + "hash": "2945249088455147117" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/tag-names-with-multi-dots-multi.src.js.shot", + "hash": "14061179895401886635" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/tag-names-with-multi-dots.src.js.shot", + "hash": "16055230557989961241" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/test-content.src.js.shot", + "hash": "15055721165367716166" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx/trailing-spread-operator-attribute.src.js.shot", + "hash": "15051542300276516991" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx-useJSXTextNode/self-closing-tag-inside-tag.src.js.shot", + "hash": "7291220901279799294" + }, + { + "file": "packages/typescript-estree/tests/snapshots/jsx-useJSXTextNode/test-content.src.js.shot", + "hash": "554599282553662301" + }, + { + "file": "packages/typescript-estree/tests/snapshots/tsx/generic-jsx-element.src.tsx.shot", + "hash": "14047238505963143132" + }, + { + "file": "packages/typescript-estree/tests/snapshots/tsx/generic-jsx-opening-element.src.tsx.shot", + "hash": "2537228604514096615" + }, + { + "file": "packages/typescript-estree/tests/snapshots/tsx/react-typed-props.src.tsx.shot", + "hash": "10522575814744702268" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/babylon-convergence/type-parameter-whitespace-loc.src.ts.shot", + "hash": "13078476344719698217" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/babylon-convergence/type-parameters.src.ts.shot", + "hash": "9116800644636311355" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-class-with-abstract-constructor.src.ts.shot", + "hash": "4548740408603675270" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-class-with-abstract-method.src.ts.shot", + "hash": "14069127784484267191" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-class-with-abstract-properties.src.ts.shot", + "hash": "285750598314333856" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-class-with-abstract-readonly-property.src.ts.shot", + "hash": "15162615401353046017" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-class-with-abstract-static-constructor.src.ts.shot", + "hash": "17780939935678918422" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-class-with-declare-properties.src.ts.shot", + "hash": "1141465834787202803" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-class-with-optional-method.src.ts.shot", + "hash": "8104268330330661613" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-class-with-override-method.src.ts.shot", + "hash": "10219306862093110946" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-class-with-override-property.src.ts.shot", + "hash": "14288281848029396663" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/abstract-interface.src.ts.shot", + "hash": "4303606239335099029" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/angle-bracket-type-assertion-arrow-function.src.ts.shot", + "hash": "16394786665753076786" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/angle-bracket-type-assertion.src.ts.shot", + "hash": "6457488268429031229" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/arrow-function-with-optional-parameter.src.ts.shot", + "hash": "18225048898270694174" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/arrow-function-with-type-parameters.src.ts.shot", + "hash": "10925158223773797988" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/async-function-expression.src.ts.shot", + "hash": "10977456052661262277" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/async-function-with-var-declaration.src.ts.shot", + "hash": "577044263973215340" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/await-without-async-function.src.ts.shot", + "hash": "1504934237273349477" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/call-signatures-with-generics.src.ts.shot", + "hash": "3729378683431155067" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/call-signatures.src.ts.shot", + "hash": "16328931075418726064" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/cast-as-expression.src.ts.shot", + "hash": "17135031368120519079" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/cast-as-multi-assign.src.ts.shot", + "hash": "10646832988529018953" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/cast-as-multi.src.ts.shot", + "hash": "4757338906583559336" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/cast-as-operator.src.ts.shot", + "hash": "5894655516153576706" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/cast-as-simple.src.ts.shot", + "hash": "18298688015223341758" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/catch-clause-with-annotation.src.ts.shot", + "hash": "50805994562754918" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/catch-clause-with-invalid-annotation.src.ts.shot", + "hash": "16959367793645129126" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-multi-line-keyword-abstract.src.ts.shot", + "hash": "10783178206157579727" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-multi-line-keyword-declare.src.ts.shot", + "hash": "14845970821845969632" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-private-identifier-field-with-accessibility-error.src.ts.shot", + "hash": "16008624298347580984" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-private-identifier-field-with-annotation.src.ts.shot", + "hash": "17481604897071813265" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-private-identifier-readonly-field.src.ts.shot", + "hash": "6324544266119846294" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-static-blocks.src.ts.shot", + "hash": "14067239597694629407" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-accessibility-modifiers.src.ts.shot", + "hash": "11465647379463527432" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-constructor-and-modifier.src.ts.shot", + "hash": "6275895214875799867" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-constructor-and-parameter-property-with-modifiers.src.ts.shot", + "hash": "15897003368022168074" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-constructor-and-parameter-proptery-with-override-modifier.src.ts.shot", + "hash": "13484769620513798880" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-constructor-and-return-type.src.ts.shot", + "hash": "3692820234807133215" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-constructor-and-type-parameters.src.ts.shot", + "hash": "7271530248321679389" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-declare-properties.src.ts.shot", + "hash": "11168032510034344837" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-definite-assignment.src.ts.shot", + "hash": "16676584821700001028" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-export-parameter-properties.src.ts.shot", + "hash": "11534087451910290177" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-extends-and-implements.src.ts.shot", + "hash": "17968223002173633997" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-extends-generic-multiple.src.ts.shot", + "hash": "15049843704358496881" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-extends-generic.src.ts.shot", + "hash": "4609019319460678863" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-generic-method-default.src.ts.shot", + "hash": "2508059320813894896" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-generic-method.src.ts.shot", + "hash": "12610232385858070829" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-implements-and-extends.src.ts.shot", + "hash": "13204893911300774622" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-implements-generic-multiple.src.ts.shot", + "hash": "4538063149150158197" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-implements-generic.src.ts.shot", + "hash": "14796752769752406270" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-implements.src.ts.shot", + "hash": "12044021049980517009" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-method.src.ts.shot", + "hash": "17194007692102647802" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-mixin-reference.src.ts.shot", + "hash": "799561811152043750" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-mixin.src.ts.shot", + "hash": "17556636378327359254" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-optional-computed-method.src.ts.shot", + "hash": "9817362979693715791" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-optional-computed-property.src.ts.shot", + "hash": "2476076085033623673" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-optional-methods.src.ts.shot", + "hash": "4915998942843387577" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-optional-properties.src.ts.shot", + "hash": "18307173412640874729" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-optional-property-undefined.src.ts.shot", + "hash": "26342045582007312" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-override-method.src.ts.shot", + "hash": "17848773370652247261" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-override-property.src.ts.shot", + "hash": "15515442963976617203" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-private-optional-property.src.ts.shot", + "hash": "2465106332536976339" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-private-parameter-properties.src.ts.shot", + "hash": "3369807889916632089" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-property-function.src.ts.shot", + "hash": "8588376299957985415" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-property-values.src.ts.shot", + "hash": "14807731628628046761" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-protected-parameter-properties.src.ts.shot", + "hash": "14724109230441973136" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-public-parameter-properties.src.ts.shot", + "hash": "11377148953776063960" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-readonly-parameter-properties.src.ts.shot", + "hash": "1539045294210587279" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-readonly-property.src.ts.shot", + "hash": "7919250200266887658" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-static-parameter-properties.src.ts.shot", + "hash": "3810025761867585925" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-two-methods-computed-constructor.src.ts.shot", + "hash": "4994957286144206846" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-type-parameter-default.src.ts.shot", + "hash": "16327161817594248881" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-type-parameter-underscore.src.ts.shot", + "hash": "12627056052732897213" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/class-with-type-parameter.src.ts.shot", + "hash": "16937083345174035324" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/const-assertions.src.ts.shot", + "hash": "5634760600991667963" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/const-enum.src.ts.shot", + "hash": "5300843636281403637" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/declare-class-with-optional-method.src.ts.shot", + "hash": "3758210599397558110" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/declare-function.src.ts.shot", + "hash": "8630088749905382268" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/destructuring-assignment-nested.src.ts.shot", + "hash": "4347734524695874309" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/destructuring-assignment-object.src.ts.shot", + "hash": "6015425682264328334" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/destructuring-assignment-property.src.ts.shot", + "hash": "6804218517382050352" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/destructuring-assignment.src.ts.shot", + "hash": "2533329348323849545" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/directive-in-module.src.ts.shot", + "hash": "2305762870984995735" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/directive-in-namespace.src.ts.shot", + "hash": "4429260750765969949" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/dynamic-import-with-import-assertions.src.ts.shot", + "hash": "83634902910110238" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-all-with-import-assertions.src.ts.shot", + "hash": "14179960413805445207" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-as-namespace.src.ts.shot", + "hash": "12141792279708156372" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-assignment.src.ts.shot", + "hash": "12207314759036324877" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-declare-const-named-enum.src.ts.shot", + "hash": "17510752312682214095" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-declare-named-enum.src.ts.shot", + "hash": "18108018429642646590" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-default-class-with-generic.src.ts.shot", + "hash": "8003318888074120638" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-default-class-with-multiple-generics.src.ts.shot", + "hash": "9344017238458325061" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-default-interface.src.ts.shot", + "hash": "18375756837185495834" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-named-class-with-generic.src.ts.shot", + "hash": "1561110285109237012" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-named-class-with-multiple-generics.src.ts.shot", + "hash": "13536730504237044730" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-named-enum-computed-number.src.ts.shot", + "hash": "1379904157815995916" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-named-enum-computed-string.src.ts.shot", + "hash": "7297496960060638894" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-named-enum-computed-var-ref.src.ts.shot", + "hash": "16279335707764144912" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-named-enum.src.ts.shot", + "hash": "4337553378601281746" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-star-as-ns-from.src.ts.shot", + "hash": "6325323359010923835" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-type-as.src.ts.shot", + "hash": "17004527117456216238" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-type-from-as.src.ts.shot", + "hash": "7668525013380414145" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-type-from.src.ts.shot", + "hash": "5808565110630977359" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-type.src.ts.shot", + "hash": "3607325124780280841" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/export-with-import-assertions.src.ts.shot", + "hash": "8000620988116575333" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-anonymus-with-type-parameters.src.ts.shot", + "hash": "14273399079221538476" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-anynomus-with-return-type.src.ts.shot", + "hash": "4307350775939488142" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-overloads.src.ts.shot", + "hash": "2309513010355452733" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-with-await.src.ts.shot", + "hash": "5863458503102081123" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-with-object-type-with-optional-properties.src.ts.shot", + "hash": "11913731257807164111" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-with-object-type-without-annotation.src.ts.shot", + "hash": "5542804086333076271" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-with-type-parameters-that-have-comments.src.ts.shot", + "hash": "6206020781107144692" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-with-type-parameters-with-constraint.src.ts.shot", + "hash": "17861742978856591646" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-with-type-parameters.src.ts.shot", + "hash": "13023564832747954673" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-with-types-assignation.src.ts.shot", + "hash": "17129943049889431948" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/function-with-types.src.ts.shot", + "hash": "17542706151418402321" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/global-this.src.ts.shot", + "hash": "15710888293511898721" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-equal-declaration.src.ts.shot", + "hash": "3602775235783272533" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-equal-type-declaration.src.ts.shot", + "hash": "15635999875444785518" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-export-equal-declaration.src.ts.shot", + "hash": "12163076873376124508" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-export-equal-type-declaration.src.ts.shot", + "hash": "10810833898773346866" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-type-default.src.ts.shot", + "hash": "6051579647890054447" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-type-empty.src.ts.shot", + "hash": "14655394262201055954" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-type-error.src.ts.shot", + "hash": "17216581258472864299" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-type-named-as.src.ts.shot", + "hash": "964861588731279811" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-type-named.src.ts.shot", + "hash": "10055885438259479989" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-type-star-as-ns.src.ts.shot", + "hash": "3956471005149253497" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/import-with-import-assertions.src.ts.shot", + "hash": "4242810297308233862" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-extends-multiple.src.ts.shot", + "hash": "10422862787765969207" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-extends.src.ts.shot", + "hash": "4641465910118535794" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-type-parameters.src.ts.shot", + "hash": "4440638766682877443" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-with-all-property-types.src.ts.shot", + "hash": "5778625406156796827" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-with-construct-signature-with-parameter-accessibility.src.ts.shot", + "hash": "4382613688340711030" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-with-extends-member-expression.src.ts.shot", + "hash": "17704919142300986765" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-with-extends-type-parameters.src.ts.shot", + "hash": "2238368116740655012" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-with-generic.src.ts.shot", + "hash": "2810722889748476277" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-with-jsdoc.src.ts.shot", + "hash": "2583382587748151117" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-with-method.src.ts.shot", + "hash": "17674211871127948520" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-with-optional-properties.src.ts.shot", + "hash": "9830457769445875845" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/interface-without-type-annotation.src.ts.shot", + "hash": "18230467649649033026" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/intrinsic-keyword.src.ts.shot", + "hash": "8856783886969400483" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/keyof-operator.src.ts.shot", + "hash": "11657586921139143869" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/keyword-variables.src.ts.shot", + "hash": "17553188945333601124" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/nested-type-arguments.src.ts.shot", + "hash": "3419080802555470583" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/never-type-param.src.ts.shot", + "hash": "11583975165193882240" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/new-target-in-arrow-function-body.src.ts.shot", + "hash": "8761866699787911268" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/non-null-assertion-operator.src.ts.shot", + "hash": "16080801804724233427" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/null-and-undefined-type-annotations.src.ts.shot", + "hash": "6432727552590740010" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/nullish-coalescing.src.ts.shot", + "hash": "797175496550342904" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/object-with-escaped-properties.src.ts.shot", + "hash": "1019516407205614008" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/object-with-typed-methods.src.ts.shot", + "hash": "15988488862852759298" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/optional-chain-call-with-non-null-assertion.src.ts.shot", + "hash": "5157057335811193205" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/optional-chain-call-with-parens.src.ts.shot", + "hash": "16148537831677899018" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/optional-chain-call.src.ts.shot", + "hash": "3664427986349866411" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/optional-chain-element-access-with-non-null-assertion.src.ts.shot", + "hash": "8242163315276094144" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/optional-chain-element-access-with-parens.src.ts.shot", + "hash": "12885755220213058697" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/optional-chain-element-access.src.ts.shot", + "hash": "1988105995501117546" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/optional-chain-with-non-null-assertion.src.ts.shot", + "hash": "13834128822163595397" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/optional-chain-with-parens.src.ts.shot", + "hash": "2095033381813346627" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/optional-chain.src.ts.shot", + "hash": "11356418384854802884" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/parenthesized-use-strict.src.ts.shot", + "hash": "9244872760535683024" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/private-fields-in-in.src.ts.shot", + "hash": "6114743329995349706" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/readonly-arrays.src.ts.shot", + "hash": "3054805270562324047" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/readonly-tuples.src.ts.shot", + "hash": "10329739612767494198" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/short-circuiting-assignment-and-and.src.ts.shot", + "hash": "14505234807353057480" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/short-circuiting-assignment-or-or.src.ts.shot", + "hash": "8455869767132575064" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/short-circuiting-assignment-question-question.src.ts.shot", + "hash": "5053400270453628194" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/symbol-type-param.src.ts.shot", + "hash": "12975535385035321206" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-alias-declaration-export-function-type.src.ts.shot", + "hash": "4732751929582552543" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-alias-declaration-export-object-type.src.ts.shot", + "hash": "3064378811850502734" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-alias-declaration-export.src.ts.shot", + "hash": "11883222029455618681" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-alias-declaration-with-constrained-type-parameter.src.ts.shot", + "hash": "3719061698109790064" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-alias-declaration.src.ts.shot", + "hash": "14045166891129895105" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-alias-object-without-annotation.src.ts.shot", + "hash": "11782763629531820214" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-assertion-in-arrow-function.src.ts.shot", + "hash": "17637816514224886110" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-assertion-in-function.src.ts.shot", + "hash": "13304853336833092952" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-assertion-in-interface.src.ts.shot", + "hash": "2258462831655362258" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-assertion-in-method.src.ts.shot", + "hash": "11304045891750763497" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-assertion-with-guard-in-arrow-function.src.ts.shot", + "hash": "10272690049459812421" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-assertion-with-guard-in-function.src.ts.shot", + "hash": "13568285931626000377" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-assertion-with-guard-in-interface.src.ts.shot", + "hash": "7395978162307201308" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-assertion-with-guard-in-method.src.ts.shot", + "hash": "1318613788372721543" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-guard-in-arrow-function.src.ts.shot", + "hash": "1069686659564062090" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-guard-in-function.src.ts.shot", + "hash": "13393876755253890097" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-guard-in-interface.src.ts.shot", + "hash": "4065661663600733592" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-guard-in-method.src.ts.shot", + "hash": "14810935626595790177" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-import-type-with-type-parameters-in-type-reference.src.ts.shot", + "hash": "6407912452976674492" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-import-type.src.ts.shot", + "hash": "10946477994943488245" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-only-export-specifiers.src.ts.shot", + "hash": "18240617212172527200" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-only-import-specifiers.src.ts.shot", + "hash": "12107316692440067060" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-parameters-comments-heritage.src.ts.shot", + "hash": "10138761608043122597" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-parameters-comments.src.ts.shot", + "hash": "4692503329283029431" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/type-reference-comments.src.ts.shot", + "hash": "2802934512511664202" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-bigint.src.ts.shot", + "hash": "12898365596125315629" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-boolean.src.ts.shot", + "hash": "5081635038030649052" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-false.src.ts.shot", + "hash": "2113554687191214072" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-never.src.ts.shot", + "hash": "4523603379271399577" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-null.src.ts.shot", + "hash": "12678962543261773102" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-number.src.ts.shot", + "hash": "8655516563195847456" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-object.src.ts.shot", + "hash": "12522136687306069683" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-string.src.ts.shot", + "hash": "13350803406896023404" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-symbol.src.ts.shot", + "hash": "5548099725584782646" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-true.src.ts.shot", + "hash": "5825120434812041242" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-undefined.src.ts.shot", + "hash": "14170952488277186439" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-unknown.src.ts.shot", + "hash": "10076573262800817956" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-keyword-void.src.ts.shot", + "hash": "4605704552475254422" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-method-signature.src.ts.shot", + "hash": "10505034572713067898" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/typed-this.src.ts.shot", + "hash": "12941650232697278939" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/union-intersection.src.ts.shot", + "hash": "6976987929406030327" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/unique-symbol.src.ts.shot", + "hash": "9034260719656338157" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/unknown-type-annotation.src.ts.shot", + "hash": "14670528278305337188" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/var-with-definite-assignment.src.ts.shot", + "hash": "16725172260825439082" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/var-with-dotted-type.src.ts.shot", + "hash": "13477479047144562923" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/var-with-type.src.ts.shot", + "hash": "6114649984782603032" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/basics/variable-declaration-type-annotation-spacing.src.ts.shot", + "hash": "5212051038896137819" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/declare/abstract-class.src.ts.shot", + "hash": "11333622744878469002" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/declare/class.src.ts.shot", + "hash": "10221792420827114263" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/declare/enum.src.ts.shot", + "hash": "12828523382162102931" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/declare/function.src.ts.shot", + "hash": "7371686520265284778" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/declare/interface.src.ts.shot", + "hash": "8210667250168060890" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/declare/module.src.ts.shot", + "hash": "15829979338736152307" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/declare/namespace.src.ts.shot", + "hash": "1534403591488589157" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/declare/type-alias.src.ts.shot", + "hash": "15634549861210795436" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/declare/variable.src.ts.shot", + "hash": "7017197386637676354" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/accessor-decorators/accessor-decorator-factory-instance-member.src.ts.shot", + "hash": "4242680358645658127" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/accessor-decorators/accessor-decorator-factory-static-member.src.ts.shot", + "hash": "17054836952672099576" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/accessor-decorators/accessor-decorator-instance-member.src.ts.shot", + "hash": "12380294170862504973" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/accessor-decorators/accessor-decorator-static-member.src.ts.shot", + "hash": "7171859051455406097" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/class-decorators/class-decorator-factory.src.ts.shot", + "hash": "11766404448709997494" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/class-decorators/class-decorator.src.ts.shot", + "hash": "6805004002250371704" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/class-decorators/class-parameter-property.src.ts.shot", + "hash": "4947358471681656980" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/class-decorators/export-default-class-decorator.src.ts.shot", + "hash": "16396303960998792873" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/class-decorators/export-named-class-decorator.src.ts.shot", + "hash": "17607704627879908216" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/method-decorators/method-decorator-factory-instance-member.src.ts.shot", + "hash": "18075454773346390318" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/method-decorators/method-decorator-factory-static-member.src.ts.shot", + "hash": "7619792729588799925" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/method-decorators/method-decorator-instance-member.src.ts.shot", + "hash": "17069622749295619040" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/method-decorators/method-decorator-static-member.src.ts.shot", + "hash": "10463015319996129532" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/parameter-decorators/parameter-array-pattern-decorator.src.ts.shot", + "hash": "16311572034931433631" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/parameter-decorators/parameter-decorator-constructor.src.ts.shot", + "hash": "6957789875065306571" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/parameter-decorators/parameter-decorator-decorator-instance-member.src.ts.shot", + "hash": "3140052453582750593" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/parameter-decorators/parameter-decorator-decorator-static-member.src.ts.shot", + "hash": "341766654946743972" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/parameter-decorators/parameter-decorator-instance-member.src.ts.shot", + "hash": "2710713059104809857" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/parameter-decorators/parameter-decorator-static-member.src.ts.shot", + "hash": "2960365316146617867" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/parameter-decorators/parameter-object-pattern-decorator.src.ts.shot", + "hash": "11739413425048862481" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/parameter-decorators/parameter-rest-element-decorator.src.ts.shot", + "hash": "11503339491733011056" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/property-decorators/property-decorator-factory-instance-member.src.ts.shot", + "hash": "11506437475644180608" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/property-decorators/property-decorator-factory-static-member.src.ts.shot", + "hash": "7004800420353605716" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/property-decorators/property-decorator-instance-member.src.ts.shot", + "hash": "14833340667176924452" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/decorators/property-decorators/property-decorator-static-member.src.ts.shot", + "hash": "15190344746563822966" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/class-empty-extends-implements.src.ts.shot", + "hash": "13405072546922627401" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/class-empty-extends.src.ts.shot", + "hash": "2663843997221765780" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/class-extends-empty-implements.src.ts.shot", + "hash": "5868036083455733726" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/class-multiple-implements.src.ts.shot", + "hash": "15503673695580481101" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/decorator-on-enum-declaration.src.ts.shot", + "hash": "11078616432121836668" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/decorator-on-function.src.ts.shot", + "hash": "13057625252438887175" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/decorator-on-interface-declaration.src.ts.shot", + "hash": "17849086379114281619" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/decorator-on-variable.src.ts.shot", + "hash": "8049648254650918177" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/empty-type-arguments-in-call-expression.src.ts.shot", + "hash": "17046879613458443550" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/empty-type-arguments-in-new-expression.src.ts.shot", + "hash": "9612664938565322480" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/empty-type-arguments.src.ts.shot", + "hash": "1868081965570864005" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/empty-type-parameters-in-arrow-function.src.ts.shot", + "hash": "5226567611218609453" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/empty-type-parameters-in-constructor.src.ts.shot", + "hash": "8035621152764591112" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/empty-type-parameters-in-function-expression.src.ts.shot", + "hash": "4419578191128733296" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/empty-type-parameters-in-method-signature.src.ts.shot", + "hash": "777293872074911181" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/empty-type-parameters-in-method.src.ts.shot", + "hash": "13386437578205504645" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/empty-type-parameters.src.ts.shot", + "hash": "9250696482814344735" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/enum-with-keywords.src.ts.shot", + "hash": "1913724647684908744" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/index-signature-parameters.src.ts.shot", + "hash": "16341216907909786775" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-empty-extends.src.ts.shot", + "hash": "4447176349600069458" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-implements.src.ts.shot", + "hash": "17271547964794011416" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-index-signature-export.src.ts.shot", + "hash": "619461352933335208" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-index-signature-private.src.ts.shot", + "hash": "14205740071851033075" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-index-signature-protected.src.ts.shot", + "hash": "14429011307326603703" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-index-signature-public.src.ts.shot", + "hash": "8933465539152269942" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-index-signature-static.src.ts.shot", + "hash": "15453820341013202206" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-method-export.src.ts.shot", + "hash": "14601135980534016378" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-method-private.src.ts.shot", + "hash": "7233490917372252672" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-method-protected.src.ts.shot", + "hash": "12593351339622520239" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-method-public.src.ts.shot", + "hash": "9623234894170776872" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-method-readonly.src.ts.shot", + "hash": "13985656253717983882" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-method-static.src.ts.shot", + "hash": "119922332956893542" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-multiple-extends.src.ts.shot", + "hash": "13029228122888869524" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-property-export.src.ts.shot", + "hash": "18053898867729742790" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-property-private.src.ts.shot", + "hash": "4694281657685688149" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-property-protected.src.ts.shot", + "hash": "16545018743075379728" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-property-public.src.ts.shot", + "hash": "8043514868491379624" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-property-static.src.ts.shot", + "hash": "14726292843077956385" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-property-with-default-value.src.ts.shot", + "hash": "11993399118701543979" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/interface-with-optional-index-signature.src.ts.shot", + "hash": "3862400378486826158" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/object-assertion-not-allowed.src.ts.shot", + "hash": "465047193124768960" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/object-optional-not-allowed.src.ts.shot", + "hash": "14411303225832270807" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/errorRecovery/solo-const.src.ts.shot", + "hash": "996058213816511982" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/expressions/call-expression-type-arguments.src.ts.shot", + "hash": "12680019842024251715" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/expressions/instantiation-expression.src.ts.shot", + "hash": "10243798620270811631" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/expressions/new-expression-type-arguments.src.ts.shot", + "hash": "17440048378379862753" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/expressions/optional-call-expression-type-arguments.src.ts.shot", + "hash": "14046845906047631252" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/expressions/tagged-template-expression-type-arguments.src.ts.shot", + "hash": "13371841202972215356" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/namespaces-and-modules/ambient-module-declaration-with-import.src.ts.shot", + "hash": "17375346480758739899" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/namespaces-and-modules/declare-namespace-with-exported-function.src.ts.shot", + "hash": "17099296374311376481" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/namespaces-and-modules/global-module-declaration.src.ts.shot", + "hash": "13696391114044149219" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/namespaces-and-modules/module-with-default-exports.src.ts.shot", + "hash": "1117519454693409872" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/namespaces-and-modules/nested-internal-module.src.ts.shot", + "hash": "17008289094989505787" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/namespaces-and-modules/shorthand-ambient-module-declaration.src.ts.shot", + "hash": "1159364460206506091" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/array-type.src.ts.shot", + "hash": "15247675393883256852" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/conditional-infer-nested.src.ts.shot", + "hash": "17562651899903854582" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/conditional-infer-simple.src.ts.shot", + "hash": "7483226972734309303" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/conditional-infer-with-constraint.src.ts.shot", + "hash": "1855841389029372471" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/conditional-infer.src.ts.shot", + "hash": "8645605491705077557" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/conditional-with-null.src.ts.shot", + "hash": "8297570463246607322" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/conditional.src.ts.shot", + "hash": "4265640269840924323" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/constructor-abstract.src.ts.shot", + "hash": "16643962084927511359" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/constructor-empty.src.ts.shot", + "hash": "4408559620733475814" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/constructor-generic.src.ts.shot", + "hash": "13361524089136222824" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/constructor-in-generic.src.ts.shot", + "hash": "10723861530580380377" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/constructor-with-rest.src.ts.shot", + "hash": "12561602297813405750" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/constructor.src.ts.shot", + "hash": "12545734214169066897" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/function-generic.src.ts.shot", + "hash": "11332822888240287797" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/function-in-generic.src.ts.shot", + "hash": "10021608883703412571" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/function-with-array-destruction.src.ts.shot", + "hash": "10457928739370058891" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/function-with-object-destruction.src.ts.shot", + "hash": "5386374703778653632" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/function-with-rest.src.ts.shot", + "hash": "4611096502456664093" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/function-with-this.src.ts.shot", + "hash": "12936862871299286703" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/function.src.ts.shot", + "hash": "4850258322206469969" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/index-signature-readonly.src.ts.shot", + "hash": "8206032794518066472" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/index-signature-without-type.src.ts.shot", + "hash": "11740701822720860000" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/index-signature.src.ts.shot", + "hash": "2348744412235677680" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/indexed.src.ts.shot", + "hash": "558488307643208298" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/interface-with-accessors.src.ts.shot", + "hash": "3425356495840797734" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/intersection-type.src.ts.shot", + "hash": "9330598580791555271" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/literal-number-negative.src.ts.shot", + "hash": "5507159588245638684" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/literal-number.src.ts.shot", + "hash": "9808005843007057268" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/literal-string.src.ts.shot", + "hash": "7556233842462683485" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/mapped-named-type.src.ts.shot", + "hash": "358171814098398624" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/mapped-readonly-minus.src.ts.shot", + "hash": "6344740965766579028" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/mapped-readonly-plus.src.ts.shot", + "hash": "4476270056647624086" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/mapped-readonly.src.ts.shot", + "hash": "6749462171199901253" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/mapped-untypped.src.ts.shot", + "hash": "10321449742134272241" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/mapped.src.ts.shot", + "hash": "4317694757804572733" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/nested-types.src.ts.shot", + "hash": "13777888610598959076" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/object-literal-type-with-accessors.src.ts.shot", + "hash": "8640476198106360931" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/optional-variance-in-and-out.src.ts.shot", + "hash": "18087559373409270427" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/optional-variance-in-out.src.ts.shot", + "hash": "16718527575082302199" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/optional-variance-in.src.ts.shot", + "hash": "7281960151065556018" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/optional-variance-out.src.ts.shot", + "hash": "7579223493723400372" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/parenthesized-type.src.ts.shot", + "hash": "14815208437112492687" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/reference-generic-nested.src.ts.shot", + "hash": "14676996740920317819" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/reference-generic.src.ts.shot", + "hash": "13030482702369226545" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/reference.src.ts.shot", + "hash": "2153405432076069539" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/template-literal-type-1.src.ts.shot", + "hash": "14878448321112721911" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/template-literal-type-2.src.ts.shot", + "hash": "10867271595000155635" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/template-literal-type-3.src.ts.shot", + "hash": "16515179963303483033" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/template-literal-type-4.src.ts.shot", + "hash": "15464901226435913067" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/this-type-expanded.src.ts.shot", + "hash": "12169323520257967452" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/this-type.src.ts.shot", + "hash": "105258052533913711" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/tuple-empty.src.ts.shot", + "hash": "15101465346679766063" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/tuple-named-optional.src.ts.shot", + "hash": "4885152003127006433" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/tuple-named-rest.src.ts.shot", + "hash": "11077927381706689671" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/tuple-named-type.src.ts.shot", + "hash": "17475145909025933685" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/tuple-named.src.ts.shot", + "hash": "7595848958047324040" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/tuple-optional.src.ts.shot", + "hash": "3096228709242127068" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/tuple-rest.src.ts.shot", + "hash": "1745668111861324172" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/tuple-type.src.ts.shot", + "hash": "6311136761556149944" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/tuple.src.ts.shot", + "hash": "4749014133333079133" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/type-literal.src.ts.shot", + "hash": "11116480918616830833" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/type-operator.src.ts.shot", + "hash": "14697739744069657312" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/typeof-this.src.ts.shot", + "hash": "13757369537572285750" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/typeof-with-type-parameters.src.ts.shot", + "hash": "6564017163199898392" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/typeof.src.ts.shot", + "hash": "616721929793276841" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/union-intersection.src.ts.shot", + "hash": "13575165841146315176" + }, + { + "file": "packages/typescript-estree/tests/snapshots/typescript/types/union-type.src.ts.shot", + "hash": "7459278056486699868" + }, + { + "file": "packages/typescript-estree/tools/test-utils.ts", + "hash": "15998944115747812487" + }, + { + "file": "packages/typescript-estree/tools/tserror-serializer.ts", + "hash": "11101638700803973778", + "deps": ["npm:pretty-format"] + }, + { + "file": "packages/typescript-estree/tsconfig.build.json", + "hash": "4070905393837271163" + }, + { + "file": "packages/typescript-estree/tsconfig.json", + "hash": "7330455620777911521" + }, + { + "file": "packages/typescript-estree/typings/typescript.d.ts", + "hash": "1371452845237877393", + "deps": ["npm:typescript"] + } + ], + "types": [ + { + "file": "packages/types/CHANGELOG.md", + "hash": "16939521096691304594" + }, + { + "file": "packages/types/LICENSE", + "hash": "7839189362606127045" + }, + { + "file": "packages/types/README.md", + "hash": "1426808905124376782" + }, + { + "file": "packages/types/jest.config.js", + "hash": "5004466771274142581", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/types/package.json", + "hash": "13512327107150869114" + }, + { + "file": "packages/types/project.json", + "hash": "9624798688009854667" + }, + { + "file": "packages/types/src/index.ts", + "hash": "15476857507895611121" + }, + { + "file": "packages/types/src/lib.ts", + "hash": "227840977677306680" + }, + { + "file": "packages/types/src/parser-options.ts", + "hash": "2235806292412334766", + "deps": ["npm:typescript"] + }, + { + "file": "packages/types/src/ts-estree.ts", + "hash": "861773005364490404" + }, + { + "file": "packages/types/tools/copy-ast-spec.ts", + "hash": "15502891135270795136", + "deps": ["npm:child_process", "npm:fs", "npm:path", "npm:util"] + }, + { + "file": "packages/types/tsconfig.build.json", + "hash": "4823153275379211186" + }, + { + "file": "packages/types/tsconfig.json", + "hash": "12519347020545924240" + } + ], + "website-eslint": [ + { + "file": "packages/website-eslint/CHANGELOG.md", + "hash": "16708754176946812270" + }, + { + "file": "packages/website-eslint/build.ts", + "hash": "13925427659134262957", + "deps": [ + "npm:node:fs/promises", + "npm:node:module", + "npm:node:path", + "npm:esbuild" + ] + }, + { + "file": "packages/website-eslint/package.json", + "hash": "14521257105183982530", + "deps": [ + "types", + "utils", + "eslint-plugin", + "parser", + "scope-manager", + "typescript-estree", + "visitor-keys", + "npm:esquery", + "npm:semver" + ] + }, + { + "file": "packages/website-eslint/project.json", + "hash": "8619492229420170321" + }, + { + "file": "packages/website-eslint/src/index.js", + "hash": "17228049484205382233", + "deps": [ + "npm:@eslint/js", + "eslint-plugin", + "scope-manager", + "typescript-estree", + "visitor-keys", + "npm:eslint", + "npm:esquery" + ] + }, + { + "file": "packages/website-eslint/src/mock/assert.js", + "hash": "14109895917979705488" + }, + { + "file": "packages/website-eslint/src/mock/empty.js", + "hash": "4595979742548113990" + }, + { + "file": "packages/website-eslint/src/mock/eslint-rules.js", + "hash": "946595858119018623", + "deps": ["npm:vt:eslint/rules"] + }, + { + "file": "packages/website-eslint/src/mock/eslint.js", + "hash": "3941159074460077423", + "deps": ["npm:vt:eslint/linter"] + }, + { + "file": "packages/website-eslint/src/mock/lru-cache.js", + "hash": "1232893295738191908" + }, + { + "file": "packages/website-eslint/src/mock/path.js", + "hash": "8071169841446712927" + }, + { + "file": "packages/website-eslint/src/mock/typescript.js", + "hash": "4037095972983459953" + }, + { + "file": "packages/website-eslint/src/mock/util.js", + "hash": "18441685564140816796" + }, + { + "file": "packages/website-eslint/tsconfig.json", + "hash": "15198838601915370942" + }, + { + "file": "packages/website-eslint/types/eslint-js.d.ts", + "hash": "12075481349830463345" + }, + { + "file": "packages/website-eslint/types/eslint.d.ts", + "hash": "5023390197282547612" + }, + { + "file": "packages/website-eslint/types/esquery.d.ts", + "hash": "5902167324685664977" + } + ], + "visitor-keys": [ + { + "file": "packages/visitor-keys/CHANGELOG.md", + "hash": "15841557766958623720" + }, + { + "file": "packages/visitor-keys/LICENSE", + "hash": "7839189362606127045" + }, + { + "file": "packages/visitor-keys/README.md", + "hash": "11179869566410319094" + }, + { + "file": "packages/visitor-keys/jest.config.js", + "hash": "5004466771274142581", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/visitor-keys/package.json", + "hash": "9568654670342133294", + "deps": ["types", "npm:@types/eslint-visitor-keys"] + }, + { + "file": "packages/visitor-keys/project.json", + "hash": "8580563448703923117" + }, + { + "file": "packages/visitor-keys/src/get-keys.ts", + "hash": "3468126908396121295", + "deps": ["types", "npm:eslint-visitor-keys"] + }, + { + "file": "packages/visitor-keys/src/index.ts", + "hash": "17103825600357222988" + }, + { + "file": "packages/visitor-keys/src/visitor-keys.ts", + "hash": "1250937420333567299", + "deps": ["types", "npm:eslint-visitor-keys"] + }, + { + "file": "packages/visitor-keys/tests/visitor-keys.test.ts", + "hash": "16415407960560264962", + "deps": ["types"] + }, + { + "file": "packages/visitor-keys/tsconfig.build.json", + "hash": "387012659797194505" + }, + { + "file": "packages/visitor-keys/tsconfig.json", + "hash": "16856679834487381879" + } + ], + "eslint-plugin-internal": [ + { + "file": "packages/eslint-plugin-internal/CHANGELOG.md", + "hash": "16242263244045111663" + }, + { + "file": "packages/eslint-plugin-internal/README.md", + "hash": "16092221751092551294" + }, + { + "file": "packages/eslint-plugin-internal/jest.config.js", + "hash": "18083063484728550629", + "deps": ["npm:../../jest.config.base.js"] + }, + { + "file": "packages/eslint-plugin-internal/package.json", + "hash": "925721373806568335", + "deps": [ + "npm:@types/prettier", + "rule-tester", + "scope-manager", + "type-utils", + "utils" + ] + }, + { + "file": "packages/eslint-plugin-internal/project.json", + "hash": "4642984158421596221" + }, + { + "file": "packages/eslint-plugin-internal/src/index.ts", + "hash": "14554476035839233531" + }, + { + "file": "packages/eslint-plugin-internal/src/rules/index.ts", + "hash": "10774672427167698051" + }, + { + "file": "packages/eslint-plugin-internal/src/rules/no-poorly-typed-ts-props.ts", + "hash": "3313422734647061566", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin-internal/src/rules/no-typescript-default-import.ts", + "hash": "15470302272247953620", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin-internal/src/rules/no-typescript-estree-import.ts", + "hash": "2159569732371488469" + }, + { + "file": "packages/eslint-plugin-internal/src/rules/plugin-test-formatting.ts", + "hash": "12384895659824180224", + "deps": ["type-utils", "utils", "npm:prettier"] + }, + { + "file": "packages/eslint-plugin-internal/src/rules/prefer-ast-types-enum.ts", + "hash": "4725262547861671933", + "deps": ["scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin-internal/src/util/createRule.ts", + "hash": "17807405677033215775", + "deps": ["utils"] + }, + { + "file": "packages/eslint-plugin-internal/src/util/index.ts", + "hash": "7225314574278683515" + }, + { + "file": "packages/eslint-plugin-internal/tests/RuleTester.ts", + "hash": "4863329629692346380", + "deps": ["npm:path", "rule-tester"] + }, + { + "file": "packages/eslint-plugin-internal/tests/fixtures/file.ts", + "hash": "3244421341483603138" + }, + { + "file": "packages/eslint-plugin-internal/tests/fixtures/tsconfig.json", + "hash": "3291886161545399033" + }, + { + "file": "packages/eslint-plugin-internal/tests/rules/no-poorly-typed-ts-props.test.ts", + "hash": "5576809173979096194", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin-internal/tests/rules/no-typescript-default-import.test.ts", + "hash": "14315935524675745391", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin-internal/tests/rules/no-typescript-estree.test.ts", + "hash": "7637591624270008591", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin-internal/tests/rules/plugin-test-formatting.test.ts", + "hash": "14545664243144321071", + "deps": ["rule-tester"] + }, + { + "file": "packages/eslint-plugin-internal/tests/rules/prefer-ast-types-enum.test.ts", + "hash": "12535679904820815860", + "deps": ["rule-tester", "scope-manager", "utils"] + }, + { + "file": "packages/eslint-plugin-internal/tsconfig.build.json", + "hash": "12692219333516959375" + }, + { + "file": "packages/eslint-plugin-internal/tsconfig.json", + "hash": "10933734841431153979" + } + ] + } + } +} diff --git a/.nx/cache/lockfile.hash b/.nx/cache/lockfile.hash new file mode 100644 index 000000000000..09ca905cebdb --- /dev/null +++ b/.nx/cache/lockfile.hash @@ -0,0 +1 @@ +16588389196793530468 \ No newline at end of file diff --git a/.nx/cache/parsed-lock-file.json b/.nx/cache/parsed-lock-file.json new file mode 100644 index 000000000000..57063446e187 --- /dev/null +++ b/.nx/cache/parsed-lock-file.json @@ -0,0 +1,49557 @@ +{ + "externalNodes": { + "npm:@aashutoshrathi/word-wrap": { + "type": "npm", + "name": "npm:@aashutoshrathi/word-wrap", + "data": { + "version": "1.2.6", + "packageName": "@aashutoshrathi/word-wrap", + "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + } + }, + "npm:@actions/core@1.10.0": { + "type": "npm", + "name": "npm:@actions/core@1.10.0", + "data": { + "version": "1.10.0", + "packageName": "@actions/core", + "hash": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==" + } + }, + "npm:@actions/github@5.1.1": { + "type": "npm", + "name": "npm:@actions/github@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "@actions/github", + "hash": "sha512-Nk59rMDoJaV+mHCOJPXuvB1zIbomlKS0dmSIqPGxd0enAXBnOfn4VWF+CGtRCwXZG9Epa54tZA7VIRlJDS8A6g==" + } + }, + "npm:@actions/http-client@2.1.0": { + "type": "npm", + "name": "npm:@actions/http-client@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@actions/http-client", + "hash": "sha512-BonhODnXr3amchh4qkmjPMUO8mFi/zLaaCeCAJZqch8iQqyDnVIkySjB38VHAC8IJ+bnlgfOqlhpyCUZHlQsqw==" + } + }, + "npm:@algolia/autocomplete-core": { + "type": "npm", + "name": "npm:@algolia/autocomplete-core", + "data": { + "version": "1.7.1", + "packageName": "@algolia/autocomplete-core", + "hash": "sha512-eiZw+fxMzNQn01S8dA/hcCpoWCOCwcIIEUtHHdzN5TGB3IpzLbuhqFeTfh2OUhhgkE8Uo17+wH+QJ/wYyQmmzg==" + } + }, + "npm:@algolia/autocomplete-preset-algolia": { + "type": "npm", + "name": "npm:@algolia/autocomplete-preset-algolia", + "data": { + "version": "1.7.1", + "packageName": "@algolia/autocomplete-preset-algolia", + "hash": "sha512-pJwmIxeJCymU1M6cGujnaIYcY3QPOVYZOXhFkWVM7IxKzy272BwCvMFMyc5NpG/QmiObBxjo7myd060OeTNJXg==" + } + }, + "npm:@algolia/autocomplete-shared": { + "type": "npm", + "name": "npm:@algolia/autocomplete-shared", + "data": { + "version": "1.7.1", + "packageName": "@algolia/autocomplete-shared", + "hash": "sha512-eTmGVqY3GeyBTT8IWiB2K5EuURAqhnumfktAEoHxfDY2o7vg2rSnO16ZtIG0fMgt3py28Vwgq42/bVEuaQV7pg==" + } + }, + "npm:@algolia/cache-browser-local-storage": { + "type": "npm", + "name": "npm:@algolia/cache-browser-local-storage", + "data": { + "version": "4.13.1", + "packageName": "@algolia/cache-browser-local-storage", + "hash": "sha512-UAUVG2PEfwd/FfudsZtYnidJ9eSCpS+LW9cQiesePQLz41NAcddKxBak6eP2GErqyFagSlnVXe/w2E9h2m2ttg==" + } + }, + "npm:@algolia/cache-common": { + "type": "npm", + "name": "npm:@algolia/cache-common", + "data": { + "version": "4.13.1", + "packageName": "@algolia/cache-common", + "hash": "sha512-7Vaf6IM4L0Jkl3sYXbwK+2beQOgVJ0mKFbz/4qSxKd1iy2Sp77uTAazcX+Dlexekg1fqGUOSO7HS4Sx47ZJmjA==" + } + }, + "npm:@algolia/cache-in-memory": { + "type": "npm", + "name": "npm:@algolia/cache-in-memory", + "data": { + "version": "4.13.1", + "packageName": "@algolia/cache-in-memory", + "hash": "sha512-pZzybCDGApfA/nutsFK1P0Sbsq6fYJU3DwIvyKg4pURerlJM4qZbB9bfLRef0FkzfQu7W11E4cVLCIOWmyZeuQ==" + } + }, + "npm:@algolia/client-account": { + "type": "npm", + "name": "npm:@algolia/client-account", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-account", + "hash": "sha512-TFLiZ1KqMiir3FNHU+h3b0MArmyaHG+eT8Iojio6TdpeFcAQ1Aiy+2gb3SZk3+pgRJa/BxGmDkRUwE5E/lv3QQ==" + } + }, + "npm:@algolia/client-analytics": { + "type": "npm", + "name": "npm:@algolia/client-analytics", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-analytics", + "hash": "sha512-iOS1JBqh7xaL5x00M5zyluZ9+9Uy9GqtYHv/2SMuzNW1qP7/0doz1lbcsP3S7KBbZANJTFHUOfuqyRLPk91iFA==" + } + }, + "npm:@algolia/client-common": { + "type": "npm", + "name": "npm:@algolia/client-common", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-common", + "hash": "sha512-LcDoUE0Zz3YwfXJL6lJ2OMY2soClbjrrAKB6auYVMNJcoKZZ2cbhQoFR24AYoxnGUYBER/8B+9sTBj5bj/Gqbg==" + } + }, + "npm:@algolia/client-personalization": { + "type": "npm", + "name": "npm:@algolia/client-personalization", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-personalization", + "hash": "sha512-1CqrOW1ypVrB4Lssh02hP//YxluoIYXAQCpg03L+/RiXJlCs+uIqlzC0ctpQPmxSlTK6h07kr50JQoYH/TIM9w==" + } + }, + "npm:@algolia/client-search": { + "type": "npm", + "name": "npm:@algolia/client-search", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-search", + "hash": "sha512-YQKYA83MNRz3FgTNM+4eRYbSmHi0WWpo019s5SeYcL3HUan/i5R09VO9dk3evELDFJYciiydSjbsmhBzbpPP2A==" + } + }, + "npm:@algolia/events": { + "type": "npm", + "name": "npm:@algolia/events", + "data": { + "version": "4.0.1", + "packageName": "@algolia/events", + "hash": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==" + } + }, + "npm:@algolia/logger-common": { + "type": "npm", + "name": "npm:@algolia/logger-common", + "data": { + "version": "4.13.1", + "packageName": "@algolia/logger-common", + "hash": "sha512-L6slbL/OyZaAXNtS/1A8SAbOJeEXD5JcZeDCPYDqSTYScfHu+2ePRTDMgUTY4gQ7HsYZ39N1LujOd8WBTmM2Aw==" + } + }, + "npm:@algolia/logger-console": { + "type": "npm", + "name": "npm:@algolia/logger-console", + "data": { + "version": "4.13.1", + "packageName": "@algolia/logger-console", + "hash": "sha512-7jQOTftfeeLlnb3YqF8bNgA2GZht7rdKkJ31OCeSH2/61haO0tWPoNRjZq9XLlgMQZH276pPo0NdiArcYPHjCA==" + } + }, + "npm:@algolia/requester-browser-xhr": { + "type": "npm", + "name": "npm:@algolia/requester-browser-xhr", + "data": { + "version": "4.13.1", + "packageName": "@algolia/requester-browser-xhr", + "hash": "sha512-oa0CKr1iH6Nc7CmU6RE7TnXMjHnlyp7S80pP/LvZVABeJHX3p/BcSCKovNYWWltgTxUg0U1o+2uuy8BpMKljwA==" + } + }, + "npm:@algolia/requester-common": { + "type": "npm", + "name": "npm:@algolia/requester-common", + "data": { + "version": "4.13.1", + "packageName": "@algolia/requester-common", + "hash": "sha512-eGVf0ID84apfFEuXsaoSgIxbU3oFsIbz4XiotU3VS8qGCJAaLVUC5BUJEkiFENZIhon7hIB4d0RI13HY4RSA+w==" + } + }, + "npm:@algolia/requester-node-http": { + "type": "npm", + "name": "npm:@algolia/requester-node-http", + "data": { + "version": "4.13.1", + "packageName": "@algolia/requester-node-http", + "hash": "sha512-7C0skwtLdCz5heKTVe/vjvrqgL/eJxmiEjHqXdtypcE5GCQCYI15cb+wC4ytYioZDMiuDGeVYmCYImPoEgUGPw==" + } + }, + "npm:@algolia/transporter": { + "type": "npm", + "name": "npm:@algolia/transporter", + "data": { + "version": "4.13.1", + "packageName": "@algolia/transporter", + "hash": "sha512-pICnNQN7TtrcYJqqPEXByV8rJ8ZRU2hCiIKLTLRyNpghtQG3VAFk6fVtdzlNfdUGZcehSKGarPIZEHlQXnKjgw==" + } + }, + "npm:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.2.1", + "packageName": "@ampproject/remapping", + "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" + } + }, + "npm:@apideck/better-ajv-errors@0.3.6": { + "type": "npm", + "name": "npm:@apideck/better-ajv-errors@0.3.6", + "data": { + "version": "0.3.6", + "packageName": "@apideck/better-ajv-errors", + "hash": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==" + } + }, + "npm:@axe-core/playwright@4.7.3": { + "type": "npm", + "name": "npm:@axe-core/playwright@4.7.3", + "data": { + "version": "4.7.3", + "packageName": "@axe-core/playwright", + "hash": "sha512-v2PRgAyGvop7bamrTpNJtc5b1R7giAPnMzZXrS/VDZBCY5+uwVYtCNgDvBsqp5P1QMZxUMoBN+CERJUTMjFN0A==" + } + }, + "npm:@babel/code-frame@7.22.5": { + "type": "npm", + "name": "npm:@babel/code-frame@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/code-frame", + "hash": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.22.9", + "packageName": "@babel/compat-data", + "hash": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==" + } + }, + "npm:@babel/core@7.22.9": { + "type": "npm", + "name": "npm:@babel/core@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/core", + "hash": "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==" + } + }, + "npm:@babel/core@7.12.9": { + "type": "npm", + "name": "npm:@babel/core@7.12.9", + "data": { + "version": "7.12.9", + "packageName": "@babel/core", + "hash": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==" + } + }, + "npm:@babel/eslint-parser@7.22.9": { + "type": "npm", + "name": "npm:@babel/eslint-parser@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/eslint-parser", + "hash": "sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==" + } + }, + "npm:@babel/generator@7.22.9": { + "type": "npm", + "name": "npm:@babel/generator@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/generator", + "hash": "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==" + } + }, + "npm:@babel/helper-annotate-as-pure@7.18.6": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==" + } + }, + "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9": { + "type": "npm", + "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", + "hash": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==" + } + }, + "npm:@babel/helper-compilation-targets@7.22.9": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==" + } + }, + "npm:@babel/helper-create-class-features-plugin@7.21.8": { + "type": "npm", + "name": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "data": { + "version": "7.21.8", + "packageName": "@babel/helper-create-class-features-plugin", + "hash": "sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==" + } + }, + "npm:@babel/helper-create-regexp-features-plugin@7.21.8": { + "type": "npm", + "name": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "data": { + "version": "7.21.8", + "packageName": "@babel/helper-create-regexp-features-plugin", + "hash": "sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==" + } + }, + "npm:@babel/helper-define-polyfill-provider@0.3.3": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "data": { + "version": "0.3.3", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==" + } + }, + "npm:@babel/helper-environment-visitor@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-environment-visitor@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-environment-visitor", + "hash": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==" + } + }, + "npm:@babel/helper-explode-assignable-expression@7.18.6": { + "type": "npm", + "name": "npm:@babel/helper-explode-assignable-expression@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-explode-assignable-expression", + "hash": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==" + } + }, + "npm:@babel/helper-function-name": { + "type": "npm", + "name": "npm:@babel/helper-function-name", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-function-name", + "hash": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==" + } + }, + "npm:@babel/helper-hoist-variables": { + "type": "npm", + "name": "npm:@babel/helper-hoist-variables", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-hoist-variables", + "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" + } + }, + "npm:@babel/helper-member-expression-to-functions@7.21.5": { + "type": "npm", + "name": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/helper-member-expression-to-functions", + "hash": "sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==" + } + }, + "npm:@babel/helper-module-imports@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-module-imports@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==" + } + }, + "npm:@babel/helper-module-transforms@7.22.9": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==" + } + }, + "npm:@babel/helper-optimise-call-expression@7.18.6": { + "type": "npm", + "name": "npm:@babel/helper-optimise-call-expression@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-optimise-call-expression", + "hash": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==" + } + }, + "npm:@babel/helper-plugin-utils@7.10.4": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils@7.10.4", + "data": { + "version": "7.10.4", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" + } + }, + "npm:@babel/helper-remap-async-to-generator@7.18.9": { + "type": "npm", + "name": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/helper-remap-async-to-generator", + "hash": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==" + } + }, + "npm:@babel/helper-replace-supers@7.21.5": { + "type": "npm", + "name": "npm:@babel/helper-replace-supers@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/helper-replace-supers", + "hash": "sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" + } + }, + "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0": { + "type": "npm", + "name": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "data": { + "version": "7.20.0", + "packageName": "@babel/helper-skip-transparent-expression-wrappers", + "hash": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==" + } + }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.22.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" + } + }, + "npm:@babel/helper-validator-identifier@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==" + } + }, + "npm:@babel/helper-validator-option@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-validator-option@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==" + } + }, + "npm:@babel/helper-wrap-function@7.18.9": { + "type": "npm", + "name": "npm:@babel/helper-wrap-function@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/helper-wrap-function", + "hash": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==" + } + }, + "npm:@babel/helpers@7.22.6": { + "type": "npm", + "name": "npm:@babel/helpers@7.22.6", + "data": { + "version": "7.22.6", + "packageName": "@babel/helpers", + "hash": "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==" + } + }, + "npm:@babel/highlight@7.22.5": { + "type": "npm", + "name": "npm:@babel/highlight@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/highlight", + "hash": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==" + } + }, + "npm:@babel/parser@7.22.7": { + "type": "npm", + "name": "npm:@babel/parser@7.22.7", + "data": { + "version": "7.22.7", + "packageName": "@babel/parser", + "hash": "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==" + } + }, + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "hash": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==" + } + }, + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "hash": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==" + } + }, + "npm:@babel/plugin-proposal-async-generator-functions@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-async-generator-functions", + "hash": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==" + } + }, + "npm:@babel/plugin-proposal-class-properties@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-class-properties", + "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" + } + }, + "npm:@babel/plugin-proposal-class-static-block@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-class-static-block", + "hash": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==" + } + }, + "npm:@babel/plugin-proposal-decorators@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-decorators@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==" + } + }, + "npm:@babel/plugin-proposal-dynamic-import@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-dynamic-import", + "hash": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==" + } + }, + "npm:@babel/plugin-proposal-export-namespace-from@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-proposal-export-namespace-from", + "hash": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" + } + }, + "npm:@babel/plugin-proposal-json-strings@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-json-strings", + "hash": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==" + } + }, + "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-logical-assignment-operators", + "hash": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==" + } + }, + "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", + "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" + } + }, + "npm:@babel/plugin-proposal-numeric-separator@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-numeric-separator", + "hash": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" + } + }, + "npm:@babel/plugin-proposal-object-rest-spread@7.12.1": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "data": { + "version": "7.12.1", + "packageName": "@babel/plugin-proposal-object-rest-spread", + "hash": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==" + } + }, + "npm:@babel/plugin-proposal-object-rest-spread@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-object-rest-spread", + "hash": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==" + } + }, + "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-optional-catch-binding", + "hash": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" + } + }, + "npm:@babel/plugin-proposal-optional-chaining@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-optional-chaining", + "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" + } + }, + "npm:@babel/plugin-proposal-private-methods@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-private-methods", + "hash": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==" + } + }, + "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-unicode-property-regex", + "hash": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==" + } + }, + "npm:@babel/plugin-syntax-async-generators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-async-generators", + "data": { + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + } + }, + "npm:@babel/plugin-syntax-bigint": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-bigint", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + } + }, + "npm:@babel/plugin-syntax-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-properties", + "data": { + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + } + }, + "npm:@babel/plugin-syntax-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-static-block", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-class-static-block", + "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + } + }, + "npm:@babel/plugin-syntax-decorators@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-decorators@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-syntax-decorators", + "hash": "sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==" + } + }, + "npm:@babel/plugin-syntax-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-dynamic-import", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-dynamic-import", + "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + } + }, + "npm:@babel/plugin-syntax-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-namespace-from", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-export-namespace-from", + "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + } + }, + "npm:@babel/plugin-syntax-import-assertions@7.20.0": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-assertions@7.20.0", + "data": { + "version": "7.20.0", + "packageName": "@babel/plugin-syntax-import-assertions", + "hash": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==" + } + }, + "npm:@babel/plugin-syntax-import-meta": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-meta", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-import-meta", + "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + } + }, + "npm:@babel/plugin-syntax-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-json-strings", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-json-strings", + "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + } + }, + "npm:@babel/plugin-syntax-jsx@7.12.1": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx@7.12.1", + "data": { + "version": "7.12.1", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==" + } + }, + "npm:@babel/plugin-syntax-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-logical-assignment-operators", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-logical-assignment-operators", + "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + } + }, + "npm:@babel/plugin-syntax-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", + "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + } + }, + "npm:@babel/plugin-syntax-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-numeric-separator", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-numeric-separator", + "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + } + }, + "npm:@babel/plugin-syntax-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-object-rest-spread", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-object-rest-spread", + "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + } + }, + "npm:@babel/plugin-syntax-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-catch-binding", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-catch-binding", + "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + } + }, + "npm:@babel/plugin-syntax-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-chaining", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-chaining", + "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + } + }, + "npm:@babel/plugin-syntax-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-private-property-in-object", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-private-property-in-object", + "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + } + }, + "npm:@babel/plugin-syntax-top-level-await": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-top-level-await", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-top-level-await", + "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + } + }, + "npm:@babel/plugin-syntax-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-typescript", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==" + } + }, + "npm:@babel/plugin-transform-arrow-functions@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-arrow-functions@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-arrow-functions", + "hash": "sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==" + } + }, + "npm:@babel/plugin-transform-async-to-generator@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-transform-async-to-generator", + "hash": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==" + } + }, + "npm:@babel/plugin-transform-block-scoped-functions@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoped-functions@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-block-scoped-functions", + "hash": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==" + } + }, + "npm:@babel/plugin-transform-block-scoping@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoping@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-transform-block-scoping", + "hash": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==" + } + }, + "npm:@babel/plugin-transform-classes@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-transform-classes@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-transform-classes", + "hash": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==" + } + }, + "npm:@babel/plugin-transform-computed-properties@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-computed-properties", + "hash": "sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==" + } + }, + "npm:@babel/plugin-transform-destructuring@7.21.3": { + "type": "npm", + "name": "npm:@babel/plugin-transform-destructuring@7.21.3", + "data": { + "version": "7.21.3", + "packageName": "@babel/plugin-transform-destructuring", + "hash": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==" + } + }, + "npm:@babel/plugin-transform-dotall-regex@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-dotall-regex", + "hash": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==" + } + }, + "npm:@babel/plugin-transform-duplicate-keys@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-duplicate-keys@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-duplicate-keys", + "hash": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==" + } + }, + "npm:@babel/plugin-transform-exponentiation-operator@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-exponentiation-operator", + "hash": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==" + } + }, + "npm:@babel/plugin-transform-for-of@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-for-of@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-for-of", + "hash": "sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==" + } + }, + "npm:@babel/plugin-transform-function-name@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-function-name@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-function-name", + "hash": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==" + } + }, + "npm:@babel/plugin-transform-literals@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-literals@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-literals", + "hash": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==" + } + }, + "npm:@babel/plugin-transform-member-expression-literals@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-member-expression-literals@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-member-expression-literals", + "hash": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==" + } + }, + "npm:@babel/plugin-transform-modules-amd@7.20.11": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "data": { + "version": "7.20.11", + "packageName": "@babel/plugin-transform-modules-amd", + "hash": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==" + } + }, + "npm:@babel/plugin-transform-modules-systemjs@7.20.11": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "data": { + "version": "7.20.11", + "packageName": "@babel/plugin-transform-modules-systemjs", + "hash": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==" + } + }, + "npm:@babel/plugin-transform-modules-umd@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-modules-umd", + "hash": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==" + } + }, + "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "data": { + "version": "7.20.5", + "packageName": "@babel/plugin-transform-named-capturing-groups-regex", + "hash": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==" + } + }, + "npm:@babel/plugin-transform-new-target@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-new-target@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-new-target", + "hash": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==" + } + }, + "npm:@babel/plugin-transform-object-super@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-super@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-object-super", + "hash": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==" + } + }, + "npm:@babel/plugin-transform-parameters@7.21.3": { + "type": "npm", + "name": "npm:@babel/plugin-transform-parameters@7.21.3", + "data": { + "version": "7.21.3", + "packageName": "@babel/plugin-transform-parameters", + "hash": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==" + } + }, + "npm:@babel/plugin-transform-property-literals@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-property-literals@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-property-literals", + "hash": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==" + } + }, + "npm:@babel/plugin-transform-react-constant-elements": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-constant-elements", + "data": { + "version": "7.17.12", + "packageName": "@babel/plugin-transform-react-constant-elements", + "hash": "sha512-maEkX2xs2STuv2Px8QuqxqjhV2LsFobT1elCgyU5704fcyTu9DyD/bJXxD/mrRiVyhpHweOQ00OJ5FKhHq9oEw==" + } + }, + "npm:@babel/plugin-transform-react-display-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-display-name", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-react-display-name", + "hash": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==" + } + }, + "npm:@babel/plugin-transform-react-jsx-development": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-development", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-react-jsx-development", + "hash": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==" + } + }, + "npm:@babel/plugin-transform-react-pure-annotations": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-pure-annotations", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-react-pure-annotations", + "hash": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==" + } + }, + "npm:@babel/plugin-transform-regenerator@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-regenerator@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-regenerator", + "hash": "sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==" + } + }, + "npm:@babel/plugin-transform-reserved-words@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-reserved-words@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-reserved-words", + "hash": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==" + } + }, + "npm:@babel/plugin-transform-runtime@7.21.4": { + "type": "npm", + "name": "npm:@babel/plugin-transform-runtime@7.21.4", + "data": { + "version": "7.21.4", + "packageName": "@babel/plugin-transform-runtime", + "hash": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==" + } + }, + "npm:@babel/plugin-transform-shorthand-properties@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-shorthand-properties@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-shorthand-properties", + "hash": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==" + } + }, + "npm:@babel/plugin-transform-spread@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-transform-spread@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-transform-spread", + "hash": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==" + } + }, + "npm:@babel/plugin-transform-sticky-regex@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-sticky-regex@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-sticky-regex", + "hash": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==" + } + }, + "npm:@babel/plugin-transform-template-literals@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-template-literals@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-template-literals", + "hash": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==" + } + }, + "npm:@babel/plugin-transform-typeof-symbol@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typeof-symbol@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-typeof-symbol", + "hash": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==" + } + }, + "npm:@babel/plugin-transform-typescript@7.18.8": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typescript@7.18.8", + "data": { + "version": "7.18.8", + "packageName": "@babel/plugin-transform-typescript", + "hash": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==" + } + }, + "npm:@babel/plugin-transform-unicode-escapes@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-escapes@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-unicode-escapes", + "hash": "sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==" + } + }, + "npm:@babel/plugin-transform-unicode-regex@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-unicode-regex", + "hash": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==" + } + }, + "npm:@babel/preset-env@7.21.5": { + "type": "npm", + "name": "npm:@babel/preset-env@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/preset-env", + "hash": "sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==" + } + }, + "npm:@babel/preset-modules@0.1.5": { + "type": "npm", + "name": "npm:@babel/preset-modules@0.1.5", + "data": { + "version": "0.1.5", + "packageName": "@babel/preset-modules", + "hash": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==" + } + }, + "npm:@babel/preset-react": { + "type": "npm", + "name": "npm:@babel/preset-react", + "data": { + "version": "7.18.6", + "packageName": "@babel/preset-react", + "hash": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==" + } + }, + "npm:@babel/preset-typescript@7.18.6": { + "type": "npm", + "name": "npm:@babel/preset-typescript@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/preset-typescript", + "hash": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==" + } + }, + "npm:@babel/regjsgen": { + "type": "npm", + "name": "npm:@babel/regjsgen", + "data": { + "version": "0.8.0", + "packageName": "@babel/regjsgen", + "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + } + }, + "npm:@babel/runtime-corejs3": { + "type": "npm", + "name": "npm:@babel/runtime-corejs3", + "data": { + "version": "7.18.9", + "packageName": "@babel/runtime-corejs3", + "hash": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==" + } + }, + "npm:@babel/runtime@7.22.6": { + "type": "npm", + "name": "npm:@babel/runtime@7.22.6", + "data": { + "version": "7.22.6", + "packageName": "@babel/runtime", + "hash": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==" + } + }, + "npm:@babel/template@7.22.5": { + "type": "npm", + "name": "npm:@babel/template@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/template", + "hash": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==" + } + }, + "npm:@babel/traverse@7.22.8": { + "type": "npm", + "name": "npm:@babel/traverse@7.22.8", + "data": { + "version": "7.22.8", + "packageName": "@babel/traverse", + "hash": "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==" + } + }, + "npm:@babel/types@7.22.5": { + "type": "npm", + "name": "npm:@babel/types@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/types", + "hash": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@colors/colors": { + "type": "npm", + "name": "npm:@colors/colors", + "data": { + "version": "1.5.0", + "packageName": "@colors/colors", + "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" + } + }, + "npm:@cspell/cspell-bundled-dicts@6.31.2": { + "type": "npm", + "name": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "@cspell/cspell-bundled-dicts", + "hash": "sha512-rQ5y/U1Ah5AaduIh3NU2z371hRrOr1cmNdhhP8oiuz2E4VqmcoVHflXIct9DgY8uIJpwsSCdR6ypOQWZYXYnwA==" + } + }, + "npm:@cspell/cspell-pipe@6.31.1": { + "type": "npm", + "name": "npm:@cspell/cspell-pipe@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/cspell-pipe", + "hash": "sha512-zk1olZi4dr6GLm5PAjvsiZ01HURNSruUYFl1qSicGnTwYN8GaN4RhAwannAytcJ7zJPIcyXlid0YsB58nJf3wQ==" + } + }, + "npm:@cspell/cspell-service-bus@6.31.1": { + "type": "npm", + "name": "npm:@cspell/cspell-service-bus@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/cspell-service-bus", + "hash": "sha512-YyBicmJyZ1uwKVxujXw7sgs9x+Eps43OkWmCtDZmZlnq489HdTSuhF1kTbVi2yeFSeaXIS87+uHo12z97KkQpg==" + } + }, + "npm:@cspell/cspell-types@6.31.1": { + "type": "npm", + "name": "npm:@cspell/cspell-types@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/cspell-types", + "hash": "sha512-1KeTQFiHMssW1eRoF2NZIEg4gPVIfXLsL2+VSD/AV6YN7lBcuf6gRRgV5KWYarhxtEfjxhDdDTmu26l/iJEUtw==" + } + }, + "npm:@cspell/dict-ada@4.0.1": { + "type": "npm", + "name": "npm:@cspell/dict-ada@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-ada", + "hash": "sha512-/E9o3nHrXOhYmQE43deKbxZcR3MIJAsa+66IzP9TXGHheKEx8b9dVMVVqydDDH8oom1H0U20NRPtu6KRVbT9xw==" + } + }, + "npm:@cspell/dict-aws@3.0.0": { + "type": "npm", + "name": "npm:@cspell/dict-aws@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@cspell/dict-aws", + "hash": "sha512-O1W6nd5y3Z00AMXQMzfiYrIJ1sTd9fB1oLr+xf/UD7b3xeHeMeYE2OtcWbt9uyeHim4tk+vkSTcmYEBKJgS5bQ==" + } + }, + "npm:@cspell/dict-bash@4.1.1": { + "type": "npm", + "name": "npm:@cspell/dict-bash@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "@cspell/dict-bash", + "hash": "sha512-8czAa/Mh96wu2xr0RXQEGMTBUGkTvYn/Pb0o+gqOO1YW+poXGQc3gx0YPqILDryP/KCERrNvkWUJz3iGbvwC2A==" + } + }, + "npm:@cspell/dict-companies@3.0.17": { + "type": "npm", + "name": "npm:@cspell/dict-companies@3.0.17", + "data": { + "version": "3.0.17", + "packageName": "@cspell/dict-companies", + "hash": "sha512-vo1jbozgZWSzz2evIL26kLd35tVb+5kW/UTvTzAwaWutSWRloRyKx38nj2CaLJ2IFxBdiATteCFGTzKCvJJl6A==" + } + }, + "npm:@cspell/dict-cpp@5.0.3": { + "type": "npm", + "name": "npm:@cspell/dict-cpp@5.0.3", + "data": { + "version": "5.0.3", + "packageName": "@cspell/dict-cpp", + "hash": "sha512-7sx/RFsf0hB3q8chx8OHYl9Kd+g0pqA1laphwaAQ+/jPwoAreYT3kNQWbJ3bIt/rMoORetFSQxckSbaJXwwqpw==" + } + }, + "npm:@cspell/dict-cryptocurrencies@3.0.1": { + "type": "npm", + "name": "npm:@cspell/dict-cryptocurrencies@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@cspell/dict-cryptocurrencies", + "hash": "sha512-Tdlr0Ahpp5yxtwM0ukC13V6+uYCI0p9fCRGMGZt36rWv8JQZHIuHfehNl7FB/Qc09NCF7p5ep0GXbL+sVTd/+w==" + } + }, + "npm:@cspell/dict-csharp": { + "type": "npm", + "name": "npm:@cspell/dict-csharp", + "data": { + "version": "4.0.2", + "packageName": "@cspell/dict-csharp", + "hash": "sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==" + } + }, + "npm:@cspell/dict-css@4.0.6": { + "type": "npm", + "name": "npm:@cspell/dict-css@4.0.6", + "data": { + "version": "4.0.6", + "packageName": "@cspell/dict-css", + "hash": "sha512-2Lo8W2ezHmGgY8cWFr4RUwnjbndna5mokpCK/DuxGILQnuajR0J31ANQOXj/8iZM2phFB93ZzMNk/0c04TDfSQ==" + } + }, + "npm:@cspell/dict-dart@2.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-dart@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "@cspell/dict-dart", + "hash": "sha512-jigcODm7Z4IFZ4vParwwP3IT0fIgRq/9VoxkXfrxBMsLBGGM2QltHBj7pl+joX+c4cOHxfyZktGJK1B1wFtR4Q==" + } + }, + "npm:@cspell/dict-data-science@1.0.7": { + "type": "npm", + "name": "npm:@cspell/dict-data-science@1.0.7", + "data": { + "version": "1.0.7", + "packageName": "@cspell/dict-data-science", + "hash": "sha512-Q9VUFaarUpqM6CAmR8peP4o9alk0XQ4rgVoE2R2XalpC2cqPI8Hmg6QwMU2UPioSUcWMJCqLc/KzJti0gBMuxA==" + } + }, + "npm:@cspell/dict-django": { + "type": "npm", + "name": "npm:@cspell/dict-django", + "data": { + "version": "4.1.0", + "packageName": "@cspell/dict-django", + "hash": "sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w==" + } + }, + "npm:@cspell/dict-docker@1.1.6": { + "type": "npm", + "name": "npm:@cspell/dict-docker@1.1.6", + "data": { + "version": "1.1.6", + "packageName": "@cspell/dict-docker", + "hash": "sha512-zCCiRTZ6EOQpBnSOm0/3rnKW1kCcAUDUA7SxJG3SuH6iZvKi3I8FEg8+O83WQUeXg0SyPNerD9F40JLnnJjJig==" + } + }, + "npm:@cspell/dict-dotnet": { + "type": "npm", + "name": "npm:@cspell/dict-dotnet", + "data": { + "version": "5.0.0", + "packageName": "@cspell/dict-dotnet", + "hash": "sha512-EOwGd533v47aP5QYV8GlSSKkmM9Eq8P3G/eBzSpH3Nl2+IneDOYOBLEUraHuiCtnOkNsz0xtZHArYhAB2bHWAw==" + } + }, + "npm:@cspell/dict-elixir": { + "type": "npm", + "name": "npm:@cspell/dict-elixir", + "data": { + "version": "4.0.3", + "packageName": "@cspell/dict-elixir", + "hash": "sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==" + } + }, + "npm:@cspell/dict-en-common-misspellings": { + "type": "npm", + "name": "npm:@cspell/dict-en-common-misspellings", + "data": { + "version": "1.0.2", + "packageName": "@cspell/dict-en-common-misspellings", + "hash": "sha512-jg7ZQZpZH7+aAxNBlcAG4tGhYF6Ksy+QS5Df73Oo+XyckBjC9QS+PrRwLTeYoFIgXy5j3ICParK5r3MSSoL4gw==" + } + }, + "npm:@cspell/dict-en-gb": { + "type": "npm", + "name": "npm:@cspell/dict-en-gb", + "data": { + "version": "1.1.33", + "packageName": "@cspell/dict-en-gb", + "hash": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==" + } + }, + "npm:@cspell/dict-en_us@4.3.4": { + "type": "npm", + "name": "npm:@cspell/dict-en_us@4.3.4", + "data": { + "version": "4.3.4", + "packageName": "@cspell/dict-en_us", + "hash": "sha512-mR2yqWmFip1zTKja2SqyVMbzuqEThqkEJk9M32bMDziPJpEyOIPvLA0UPmj3cyRKJkRuVF0bhDCE33O+at38hw==" + } + }, + "npm:@cspell/dict-filetypes": { + "type": "npm", + "name": "npm:@cspell/dict-filetypes", + "data": { + "version": "3.0.1", + "packageName": "@cspell/dict-filetypes", + "hash": "sha512-8z8mY1IbrTyTRumx2vvD9yzRhNMk9SajM/GtI5hdMM2pPpNSp25bnuauzjRf300eqlqPY2MNb5MmhBFO014DJw==" + } + }, + "npm:@cspell/dict-fonts@3.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-fonts@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "@cspell/dict-fonts", + "hash": "sha512-Z5QdbgEI7DV+KPXrAeDA6dDm/vTzyaW53SGlKqz6PI5VhkOjgkBXv3YtZjnxMZ4dY2ZIqq+RUK6qa9Pi8rQdGQ==" + } + }, + "npm:@cspell/dict-fullstack": { + "type": "npm", + "name": "npm:@cspell/dict-fullstack", + "data": { + "version": "3.1.5", + "packageName": "@cspell/dict-fullstack", + "hash": "sha512-6ppvo1dkXUZ3fbYn/wwzERxCa76RtDDl5Afzv2lijLoijGGUw5yYdLBKJnx8PJBGNLh829X352ftE7BElG4leA==" + } + }, + "npm:@cspell/dict-gaming-terms": { + "type": "npm", + "name": "npm:@cspell/dict-gaming-terms", + "data": { + "version": "1.0.4", + "packageName": "@cspell/dict-gaming-terms", + "hash": "sha512-hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg==" + } + }, + "npm:@cspell/dict-git": { + "type": "npm", + "name": "npm:@cspell/dict-git", + "data": { + "version": "2.0.0", + "packageName": "@cspell/dict-git", + "hash": "sha512-n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==" + } + }, + "npm:@cspell/dict-golang@6.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-golang@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "@cspell/dict-golang", + "hash": "sha512-5pyZn4AAiYukAW+gVMIMVmUSkIERFrDX2vtPDjg8PLQUhAHWiVeQSDjuOhq9/C5GCCEZU/zWSONkGiwLBBvV9A==" + } + }, + "npm:@cspell/dict-haskell": { + "type": "npm", + "name": "npm:@cspell/dict-haskell", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-haskell", + "hash": "sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==" + } + }, + "npm:@cspell/dict-html-symbol-entities": { + "type": "npm", + "name": "npm:@cspell/dict-html-symbol-entities", + "data": { + "version": "4.0.0", + "packageName": "@cspell/dict-html-symbol-entities", + "hash": "sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==" + } + }, + "npm:@cspell/dict-html@4.0.3": { + "type": "npm", + "name": "npm:@cspell/dict-html@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "@cspell/dict-html", + "hash": "sha512-Gae8i8rrArT0UyG1I6DHDK62b7Be6QEcBSIeWOm4VIIW1CASkN9B0qFgSVnkmfvnu1Y3H7SSaaEynKjdj3cs8w==" + } + }, + "npm:@cspell/dict-java@5.0.5": { + "type": "npm", + "name": "npm:@cspell/dict-java@5.0.5", + "data": { + "version": "5.0.5", + "packageName": "@cspell/dict-java", + "hash": "sha512-X19AoJgWIBwJBSWGFqSgHaBR/FEykBHTMjL6EqOnhIGEyE9nvuo32tsSHjXNJ230fQxQptEvRZoaldNLtKxsRg==" + } + }, + "npm:@cspell/dict-k8s": { + "type": "npm", + "name": "npm:@cspell/dict-k8s", + "data": { + "version": "1.0.1", + "packageName": "@cspell/dict-k8s", + "hash": "sha512-gc5y4Nm3hVdMZNBZfU2M1AsAmObZsRWjCUk01NFPfGhFBXyVne41T7E62rpnzu5330FV/6b/TnFcPgRmak9lLw==" + } + }, + "npm:@cspell/dict-latex": { + "type": "npm", + "name": "npm:@cspell/dict-latex", + "data": { + "version": "4.0.0", + "packageName": "@cspell/dict-latex", + "hash": "sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==" + } + }, + "npm:@cspell/dict-lorem-ipsum@3.0.0": { + "type": "npm", + "name": "npm:@cspell/dict-lorem-ipsum@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@cspell/dict-lorem-ipsum", + "hash": "sha512-msEV24qEpzWZs2kcEicqYlhyBpR0amfDkJOs+iffC07si9ftqtQ+yP3lf1VFLpgqw3SQh1M1vtU7RD4sPrNlcQ==" + } + }, + "npm:@cspell/dict-lua@4.0.1": { + "type": "npm", + "name": "npm:@cspell/dict-lua@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-lua", + "hash": "sha512-j0MFmeCouSoC6EdZTbvGe1sJ9V+ruwKSeF+zRkNNNload7R72Co5kX1haW2xLHGdlq0kqSy1ODRZKdVl0e+7hg==" + } + }, + "npm:@cspell/dict-node@4.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-node@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "@cspell/dict-node", + "hash": "sha512-FEQJ4TnMcXEFslqBQkXa5HposMoCGsiBv2ux4IZuIXgadXeHKHUHk60iarWpjhzNzQLyN2GD7NoRMd12bK3Llw==" + } + }, + "npm:@cspell/dict-npm@5.0.7": { + "type": "npm", + "name": "npm:@cspell/dict-npm@5.0.7", + "data": { + "version": "5.0.7", + "packageName": "@cspell/dict-npm", + "hash": "sha512-6SegF0HsVaBTl6PlHjeErG8Av+tRYkUG1yaXUQIGWXU0A8oxhI0o4PuL65UWH5lkCKhJyGai69Cd0iytL0oVFg==" + } + }, + "npm:@cspell/dict-php@4.0.1": { + "type": "npm", + "name": "npm:@cspell/dict-php@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-php", + "hash": "sha512-XaQ/JkSyq2c07MfRG54DjLi2CV+HHwS99DDCAao9Fq2JfkWroTQsUeek7wYZXJATrJVOULoV3HKih12x905AtQ==" + } + }, + "npm:@cspell/dict-powershell": { + "type": "npm", + "name": "npm:@cspell/dict-powershell", + "data": { + "version": "5.0.2", + "packageName": "@cspell/dict-powershell", + "hash": "sha512-IHfWLme3FXE7vnOmMncSBxOsMTdNWd1Vcyhag03WS8oANSgX8IZ+4lMI00mF0ptlgchf16/OU8WsV4pZfikEFw==" + } + }, + "npm:@cspell/dict-public-licenses@2.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-public-licenses@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "@cspell/dict-public-licenses", + "hash": "sha512-baKkbs/WGEV2lCWZoL0KBPh3uiPcul5GSDwmXEBAsR5McEW52LF94/b7xWM0EmSAc/y8ODc5LnPYC7RDRLi6LQ==" + } + }, + "npm:@cspell/dict-python@4.1.2": { + "type": "npm", + "name": "npm:@cspell/dict-python@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "@cspell/dict-python", + "hash": "sha512-Whcn4K8R0Ux/hcx/P9Fbx6i29GwTaXgT3LTt95AuCnV5RRLrzsqoyZkz851hcg5z4kjUQVMduDl3HECGgW/FNw==" + } + }, + "npm:@cspell/dict-r": { + "type": "npm", + "name": "npm:@cspell/dict-r", + "data": { + "version": "2.0.1", + "packageName": "@cspell/dict-r", + "hash": "sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==" + } + }, + "npm:@cspell/dict-ruby@5.0.0": { + "type": "npm", + "name": "npm:@cspell/dict-ruby@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "@cspell/dict-ruby", + "hash": "sha512-ssb96QxLZ76yPqFrikWxItnCbUKhYXJ2owkoIYzUGNFl2CHSoHCb5a6Zetum9mQ/oUA3gNeUhd28ZUlXs0la2A==" + } + }, + "npm:@cspell/dict-rust": { + "type": "npm", + "name": "npm:@cspell/dict-rust", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-rust", + "hash": "sha512-xJSSzHDK2z6lSVaOmMxl3PTOtfoffaxMo7fTcbZUF+SCJzfKbO6vnN9TCGX2sx1RHFDz66Js6goz6SAZQdOwaw==" + } + }, + "npm:@cspell/dict-scala": { + "type": "npm", + "name": "npm:@cspell/dict-scala", + "data": { + "version": "5.0.0", + "packageName": "@cspell/dict-scala", + "hash": "sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==" + } + }, + "npm:@cspell/dict-software-terms@3.2.0": { + "type": "npm", + "name": "npm:@cspell/dict-software-terms@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "@cspell/dict-software-terms", + "hash": "sha512-RI6sv4Bc4i42YH/ofVelv8lXpJRhCyS9IhI2BtejUoMXKhKA9gC01ATXOylx+oaQmj3t5ark4R50xKFRvC7ENA==" + } + }, + "npm:@cspell/dict-sql@2.1.0": { + "type": "npm", + "name": "npm:@cspell/dict-sql@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@cspell/dict-sql", + "hash": "sha512-Bb+TNWUrTNNABO0bmfcYXiTlSt0RD6sB2MIY+rNlaMyIwug43jUjeYmkLz2tPkn3+2uvySeFEOMVYhMVfcuDKg==" + } + }, + "npm:@cspell/dict-svelte": { + "type": "npm", + "name": "npm:@cspell/dict-svelte", + "data": { + "version": "1.0.2", + "packageName": "@cspell/dict-svelte", + "hash": "sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==" + } + }, + "npm:@cspell/dict-swift": { + "type": "npm", + "name": "npm:@cspell/dict-swift", + "data": { + "version": "2.0.1", + "packageName": "@cspell/dict-swift", + "hash": "sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==" + } + }, + "npm:@cspell/dict-typescript@3.1.1": { + "type": "npm", + "name": "npm:@cspell/dict-typescript@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "@cspell/dict-typescript", + "hash": "sha512-N9vNJZoOXmmrFPR4ir3rGvnqqwmQGgOYoL1+y6D4oIhyr7FhaYiyF/d7QT61RmjZQcATMa6PSL+ZisCeRLx9+A==" + } + }, + "npm:@cspell/dict-vue": { + "type": "npm", + "name": "npm:@cspell/dict-vue", + "data": { + "version": "3.0.0", + "packageName": "@cspell/dict-vue", + "hash": "sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==" + } + }, + "npm:@cspell/dynamic-import@6.31.1": { + "type": "npm", + "name": "npm:@cspell/dynamic-import@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/dynamic-import", + "hash": "sha512-uliIUv9uZlnyYmjUlcw/Dm3p0xJOEnWJNczHAfqAl4Ytg6QZktw0GtUA9b1umbRXLv0KRTPtSC6nMq3cR7rRmQ==" + } + }, + "npm:@cspell/strong-weak-map@6.31.1": { + "type": "npm", + "name": "npm:@cspell/strong-weak-map@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/strong-weak-map", + "hash": "sha512-z8AuWvUuSnugFKJOA9Ke0aiFuehcqLFqia9bk8XaQNEWr44ahPVn3sEWnAncTxPbpWuUw5UajoJa0egRAE1CCg==" + } + }, + "npm:@cspotcode/source-map-consumer": { + "type": "npm", + "name": "npm:@cspotcode/source-map-consumer", + "data": { + "version": "0.8.0", + "packageName": "@cspotcode/source-map-consumer", + "hash": "sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==" + } + }, + "npm:@cspotcode/source-map-support@0.7.0": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support@0.7.0", + "data": { + "version": "0.7.0", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==" + } + }, + "npm:@cspotcode/source-map-support": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support", + "data": { + "version": "0.8.1", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" + } + }, + "npm:@csstools/css-parser-algorithms@2.3.0": { + "type": "npm", + "name": "npm:@csstools/css-parser-algorithms@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "@csstools/css-parser-algorithms", + "hash": "sha512-dTKSIHHWc0zPvcS5cqGP+/TPFUJB0ekJ9dGKvMAFoNuBFhDPBt9OMGNZiIA5vTiNdGHHBeScYPXIGBMnVOahsA==" + } + }, + "npm:@csstools/css-tokenizer@2.1.1": { + "type": "npm", + "name": "npm:@csstools/css-tokenizer@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "@csstools/css-tokenizer", + "hash": "sha512-GbrTj2Z8MCTUv+52GE0RbFGM527xuXZ0Xa5g0Z+YN573uveS4G0qi6WNOMyz3yrFM/jaILTTwJ0+umx81EzqfA==" + } + }, + "npm:@csstools/media-query-list-parser@2.1.2": { + "type": "npm", + "name": "npm:@csstools/media-query-list-parser@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "@csstools/media-query-list-parser", + "hash": "sha512-M8cFGGwl866o6++vIY7j1AKuq9v57cf+dGepScwCcbut9ypJNr4Cj+LLTWligYUZ0uyhEoJDKt5lvyBfh2L3ZQ==" + } + }, + "npm:@csstools/selector-specificity": { + "type": "npm", + "name": "npm:@csstools/selector-specificity", + "data": { + "version": "3.0.0", + "packageName": "@csstools/selector-specificity", + "hash": "sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==" + } + }, + "npm:@docsearch/css": { + "type": "npm", + "name": "npm:@docsearch/css", + "data": { + "version": "3.1.1", + "packageName": "@docsearch/css", + "hash": "sha512-utLgg7E1agqQeqCJn05DWC7XXMk4tMUUnL7MZupcknRu2OzGN13qwey2qA/0NAKkVBGugiWtON0+rlU0QIPojg==" + } + }, + "npm:@docsearch/react": { + "type": "npm", + "name": "npm:@docsearch/react", + "data": { + "version": "3.1.1", + "packageName": "@docsearch/react", + "hash": "sha512-cfoql4qvtsVRqBMYxhlGNpvyy/KlCoPqjIsJSZYqYf9AplZncKjLBTcwBu6RXFMVCe30cIFljniI4OjqAU67pQ==" + } + }, + "npm:@docusaurus/core@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/core@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/core", + "hash": "sha512-SNsY7PshK3Ri7vtsLXVeAJGS50nJN3RgF836zkyUfAD01Fq+sAk5EwWgLw+nnm5KVNGDu7PRR2kRGDsWvqpo0g==" + } + }, + "npm:@docusaurus/cssnano-preset@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/cssnano-preset@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/cssnano-preset", + "hash": "sha512-ka+vqXwtcW1NbXxWsh6yA1Ckii1klY9E53cJ4O9J09nkMBgrNX3iEFED1fWdv8wf4mJjvGi5RLZ2p9hJNjsLyQ==" + } + }, + "npm:@docusaurus/logger@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/logger@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/logger", + "hash": "sha512-5h5ysIIWYIDHyTVd8BjheZmQZmEgWDR54aQ1BX9pjFfpyzFo5puKXKYrYJXbjEHGyVhEzmB9UXwbxGfaZhOjcg==" + } + }, + "npm:@docusaurus/mdx-loader@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/mdx-loader@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/mdx-loader", + "hash": "sha512-4KhUhEavteIAmbBj7LVFnrVYDiU51H5YWW1zY6SmBSte/YLhDutztLTBE0PQl1Grux1jzUJeaSvAzHpTn6JJDQ==" + } + }, + "npm:@docusaurus/module-type-aliases@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/module-type-aliases@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/module-type-aliases", + "hash": "sha512-gLBuIFM8Dp2XOCWffUDSjtxY7jQgKvYujt7Mx5s4FCTfoL5dN1EVbnrn+O2Wvh8b0a77D57qoIDY7ghgmatR1A==" + } + }, + "npm:@docusaurus/plugin-content-blog@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-content-blog@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-content-blog", + "hash": "sha512-E2i7Knz5YIbE1XELI6RlTnZnGgS52cUO4BlCiCUCvQHbR+s1xeIWz4C6BtaVnlug0Ccz7nFSksfwDpVlkujg5Q==" + } + }, + "npm:@docusaurus/plugin-content-docs@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-content-docs@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-content-docs", + "hash": "sha512-Lo7lSIcpswa2Kv4HEeUcGYqaasMUQNpjTXpV0N8G6jXgZaQurqp7E8NGYeGbDXnb48czmHWbzDL4S3+BbK0VzA==" + } + }, + "npm:@docusaurus/plugin-content-pages@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-content-pages@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-content-pages", + "hash": "sha512-/UjuH/76KLaUlL+o1OvyORynv6FURzjurSjvn2lbWTFc4tpYY2qLYTlKpTCBVPhlLUQsfyFnshEJDLmPneq2oA==" + } + }, + "npm:@docusaurus/plugin-debug@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-debug@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-debug", + "hash": "sha512-7Yu9UPzRShlrH/G8btOpR0e6INFZr0EegWplMjOqelIwAcx3PKyR8mgPTxGTxcqiYj6hxSCRN0D8R7YrzImwNA==" + } + }, + "npm:@docusaurus/plugin-google-analytics@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-google-analytics", + "hash": "sha512-dyZJdJiCoL+rcfnm0RPkLt/o732HvLiEwmtoNzOoz9MSZz117UH2J6U2vUDtzUzwtFLIf32KkeyzisbwUCgcaQ==" + } + }, + "npm:@docusaurus/plugin-google-gtag@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-google-gtag", + "hash": "sha512-mKIefK+2kGTQBYvloNEKtDmnRD7bxHLsBcxgnbt4oZwzi2nxCGjPX6+9SQO2KCN5HZbNrYmGo5GJfMgoRvy6uA==" + } + }, + "npm:@docusaurus/plugin-google-tag-manager@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-google-tag-manager", + "hash": "sha512-Zg4Ii9CMOLfpeV2nG74lVTWNtisFaH9QNtEw48R5QE1KIwDBdTVaiSA18G1EujZjrzJJzXN79VhINSbOJO/r3g==" + } + }, + "npm:@docusaurus/plugin-pwa@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-pwa@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-pwa", + "hash": "sha512-kiD4qu5u3Nhwa6dPFrBDGInJYI/MWu01mbeLJFLk7oFqbkvLrHPKyB6KxrKQQfx/sAJKro79RYejigUDj0Ahig==" + } + }, + "npm:@docusaurus/plugin-sitemap@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-sitemap@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-sitemap", + "hash": "sha512-lZx+ijt/+atQ3FVE8FOHV/+X3kuok688OydDXrqKRJyXBJZKgGjA2Qa8RjQ4f27V2woaXhtnyrdPop/+OjVMRg==" + } + }, + "npm:@docusaurus/preset-classic@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/preset-classic@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/preset-classic", + "hash": "sha512-P4//+I4zDqQJ+UDgoFrjIFaQ1MeS9UD1cvxVQaI6O7iBmiHQm0MGROP1TbE7HlxlDPXFJjZUK3x3cAoK63smGQ==" + } + }, + "npm:@docusaurus/react-loadable": { + "type": "npm", + "name": "npm:@docusaurus/react-loadable", + "data": { + "version": "5.5.2", + "packageName": "@docusaurus/react-loadable", + "hash": "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==" + } + }, + "npm:react-loadable": { + "type": "npm", + "name": "npm:react-loadable", + "data": { + "version": "npm:@docusaurus/react-loadable@5.5.2", + "packageName": "react-loadable", + "hash": "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==" + } + }, + "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/remark-plugin-npm2yarn", + "hash": "sha512-RTX4hGCrwibqjDVf6edWVNwdvWHjx+YmfKwxqXxfhNnYjypTCXWTAyKeIfCUW2DNdtqAI2ZM0zFhB1maua2JbQ==" + } + }, + "npm:@docusaurus/theme-classic@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/theme-classic@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/theme-classic", + "hash": "sha512-Rz0wKUa+LTW1PLXmwnf8mn85EBzaGSt6qamqtmnh9Hflkc+EqiYMhtUJeLdV+wsgYq4aG0ANc+bpUDpsUhdnwg==" + } + }, + "npm:@docusaurus/theme-common@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/theme-common@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/theme-common", + "hash": "sha512-G7Zau1W5rQTaFFB3x3soQoZpkgMbl/SYNG8PfMFIjKa3M3q8n0m/GRf5/H/e5BqOvt8c+ZWIXGCiz+kUCSHovA==" + } + }, + "npm:@docusaurus/theme-search-algolia@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/theme-search-algolia@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/theme-search-algolia", + "hash": "sha512-6BcqW2lnLhZCXuMAvPRezFs1DpmEKzXFKlYjruuas+Xy3AQeFzDJKTJFIm49N77WFCTyxff8d3E4Q9pi/+5McQ==" + } + }, + "npm:@docusaurus/theme-translations@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/theme-translations@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/theme-translations", + "hash": "sha512-T1RAGP+f86CA1kfE8ejZ3T3pUU3XcyvrGMfC/zxCtc2BsnoexuNI9Vk2CmuKCb+Tacvhxjv5unhxXce0+NKyvA==" + } + }, + "npm:@docusaurus/types@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/types@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/types", + "hash": "sha512-0R+cbhpMkhbRXX138UOc/2XZFF8hiZa6ooZAEEJFp5scytzCw4tC1gChMFXrpa3d2tYE6AX8IrOEpSonLmfQuQ==" + } + }, + "npm:@docusaurus/utils-common@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/utils-common@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/utils-common", + "hash": "sha512-bCVGdZU+z/qVcIiEQdyx0K13OC5mYwxhSuDUR95oFbKVuXYRrTVrwZIqQljuo1fyJvFTKHiL9L9skQOPokuFNQ==" + } + }, + "npm:@docusaurus/utils-validation@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/utils-validation@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/utils-validation", + "hash": "sha512-unII3hlJlDwZ3w8U+pMO3Lx3RhI4YEbY3YNsQj4yzrkZzlpqZOLuAiZK2JyULnD+TKbceKU0WyWkQXtYbLNDFA==" + } + }, + "npm:@docusaurus/utils@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/utils@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/utils", + "hash": "sha512-1lvEZdAQhKNht9aPXPoh69eeKnV0/62ROhQeFKKxmzd0zkcuE/Oc5Gpnt00y/f5bIsmOsYMY7Pqfm/5rteT5GA==" + } + }, + "npm:@esbuild-kit/cjs-loader@2.4.2": { + "type": "npm", + "name": "npm:@esbuild-kit/cjs-loader@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "@esbuild-kit/cjs-loader", + "hash": "sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==" + } + }, + "npm:@esbuild-kit/core-utils@3.1.0": { + "type": "npm", + "name": "npm:@esbuild-kit/core-utils@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "@esbuild-kit/core-utils", + "hash": "sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==" + } + }, + "npm:@esbuild-kit/esm-loader@2.5.5": { + "type": "npm", + "name": "npm:@esbuild-kit/esm-loader@2.5.5", + "data": { + "version": "2.5.5", + "packageName": "@esbuild-kit/esm-loader", + "hash": "sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==" + } + }, + "npm:@esbuild/android-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==" + } + }, + "npm:@esbuild/android-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==" + } + }, + "npm:@esbuild/android-arm@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/android-arm", + "hash": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==" + } + }, + "npm:@esbuild/android-arm@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/android-arm", + "hash": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==" + } + }, + "npm:@esbuild/android-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/android-x64", + "hash": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==" + } + }, + "npm:@esbuild/android-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/android-x64", + "hash": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==" + } + }, + "npm:@esbuild/darwin-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==" + } + }, + "npm:@esbuild/darwin-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==" + } + }, + "npm:@esbuild/darwin-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==" + } + }, + "npm:@esbuild/darwin-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==" + } + }, + "npm:@esbuild/freebsd-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==" + } + }, + "npm:@esbuild/freebsd-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==" + } + }, + "npm:@esbuild/linux-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==" + } + }, + "npm:@esbuild/linux-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==" + } + }, + "npm:@esbuild/linux-arm@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==" + } + }, + "npm:@esbuild/linux-arm@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==" + } + }, + "npm:@esbuild/linux-ia32@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==" + } + }, + "npm:@esbuild/linux-ia32@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==" + } + }, + "npm:@esbuild/linux-loong64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==" + } + }, + "npm:@esbuild/linux-loong64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==" + } + }, + "npm:@esbuild/linux-mips64el@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==" + } + }, + "npm:@esbuild/linux-mips64el@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==" + } + }, + "npm:@esbuild/linux-ppc64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==" + } + }, + "npm:@esbuild/linux-ppc64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==" + } + }, + "npm:@esbuild/linux-riscv64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==" + } + }, + "npm:@esbuild/linux-riscv64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==" + } + }, + "npm:@esbuild/linux-s390x@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==" + } + }, + "npm:@esbuild/linux-s390x@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==" + } + }, + "npm:@esbuild/linux-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==" + } + }, + "npm:@esbuild/linux-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==" + } + }, + "npm:@esbuild/netbsd-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==" + } + }, + "npm:@esbuild/netbsd-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==" + } + }, + "npm:@esbuild/openbsd-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==" + } + }, + "npm:@esbuild/openbsd-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==" + } + }, + "npm:@esbuild/sunos-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==" + } + }, + "npm:@esbuild/sunos-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==" + } + }, + "npm:@esbuild/win32-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==" + } + }, + "npm:@esbuild/win32-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==" + } + }, + "npm:@esbuild/win32-ia32@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==" + } + }, + "npm:@esbuild/win32-ia32@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==" + } + }, + "npm:@esbuild/win32-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==" + } + }, + "npm:@esbuild/win32-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.4.0", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" + } + }, + "npm:@eslint-community/regexpp@4.6.2": { + "type": "npm", + "name": "npm:@eslint-community/regexpp@4.6.2", + "data": { + "version": "4.6.2", + "packageName": "@eslint-community/regexpp", + "hash": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==" + } + }, + "npm:@eslint/eslintrc@2.1.1": { + "type": "npm", + "name": "npm:@eslint/eslintrc@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "@eslint/eslintrc", + "hash": "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==" + } + }, + "npm:@eslint/js@8.46.0": { + "type": "npm", + "name": "npm:@eslint/js@8.46.0", + "data": { + "version": "8.46.0", + "packageName": "@eslint/js", + "hash": "sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==" + } + }, + "npm:@gar/promisify@1.1.3": { + "type": "npm", + "name": "npm:@gar/promisify@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "@gar/promisify", + "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + } + }, + "npm:@hapi/hoek": { + "type": "npm", + "name": "npm:@hapi/hoek", + "data": { + "version": "9.2.1", + "packageName": "@hapi/hoek", + "hash": "sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw==" + } + }, + "npm:@hapi/topo": { + "type": "npm", + "name": "npm:@hapi/topo", + "data": { + "version": "5.1.0", + "packageName": "@hapi/topo", + "hash": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==" + } + }, + "npm:@humanwhocodes/config-array": { + "type": "npm", + "name": "npm:@humanwhocodes/config-array", + "data": { + "version": "0.11.10", + "packageName": "@humanwhocodes/config-array", + "hash": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==" + } + }, + "npm:@humanwhocodes/module-importer": { + "type": "npm", + "name": "npm:@humanwhocodes/module-importer", + "data": { + "version": "1.0.1", + "packageName": "@humanwhocodes/module-importer", + "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + } + }, + "npm:@humanwhocodes/object-schema": { + "type": "npm", + "name": "npm:@humanwhocodes/object-schema", + "data": { + "version": "1.2.1", + "packageName": "@humanwhocodes/object-schema", + "hash": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + } + }, + "npm:@hutson/parse-repository-url": { + "type": "npm", + "name": "npm:@hutson/parse-repository-url", + "data": { + "version": "3.0.2", + "packageName": "@hutson/parse-repository-url", + "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:@istanbuljs/load-nyc-config": { + "type": "npm", + "name": "npm:@istanbuljs/load-nyc-config", + "data": { + "version": "1.1.0", + "packageName": "@istanbuljs/load-nyc-config", + "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + } + }, + "npm:@istanbuljs/schema": { + "type": "npm", + "name": "npm:@istanbuljs/schema", + "data": { + "version": "0.1.3", + "packageName": "@istanbuljs/schema", + "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + } + }, + "npm:@jest/console@29.6.2": { + "type": "npm", + "name": "npm:@jest/console@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/console", + "hash": "sha512-0N0yZof5hi44HAR2pPS+ikJ3nzKNoZdVu8FffRf3wy47I7Dm7etk/3KetMdRUqzVd16V4O2m2ISpNTbnIuqy1w==" + } + }, + "npm:@jest/core@29.6.2": { + "type": "npm", + "name": "npm:@jest/core@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/core", + "hash": "sha512-Oj+5B+sDMiMWLhPFF+4/DvHOf+U10rgvCLGPHP8Xlsy/7QxS51aU/eBngudHlJXnaWD5EohAgJ4js+T6pa+zOg==" + } + }, + "npm:@jest/create-cache-key-function@29.6.2": { + "type": "npm", + "name": "npm:@jest/create-cache-key-function@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/create-cache-key-function", + "hash": "sha512-oGVRMr8na9h1vUiem1E/Uoxb/NR9BdfKb7IBZ+pNWxJQmTYSbDF0dsVBAGqNU7MBQwYJDyRx0H7H/0itiqAgQg==" + } + }, + "npm:@jest/environment@29.6.2": { + "type": "npm", + "name": "npm:@jest/environment@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/environment", + "hash": "sha512-AEcW43C7huGd/vogTddNNTDRpO6vQ2zaQNrttvWV18ArBx9Z56h7BIsXkNFJVOO4/kblWEQz30ckw0+L3izc+Q==" + } + }, + "npm:@jest/expect-utils@29.6.2": { + "type": "npm", + "name": "npm:@jest/expect-utils@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/expect-utils", + "hash": "sha512-6zIhM8go3RV2IG4aIZaZbxwpOzz3ZiM23oxAlkquOIole+G6TrbeXnykxWYlqF7kz2HlBjdKtca20x9atkEQYg==" + } + }, + "npm:@jest/expect@29.6.2": { + "type": "npm", + "name": "npm:@jest/expect@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/expect", + "hash": "sha512-m6DrEJxVKjkELTVAztTLyS/7C92Y2b0VYqmDROYKLLALHn8T/04yPs70NADUYPrV3ruI+H3J0iUIuhkjp7vkfg==" + } + }, + "npm:@jest/fake-timers@29.6.2": { + "type": "npm", + "name": "npm:@jest/fake-timers@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/fake-timers", + "hash": "sha512-euZDmIlWjm1Z0lJ1D0f7a0/y5Kh/koLFMUBE5SUYWrmy8oNhJpbTBDAP6CxKnadcMLDoDf4waRYCe35cH6G6PA==" + } + }, + "npm:@jest/globals@29.6.2": { + "type": "npm", + "name": "npm:@jest/globals@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/globals", + "hash": "sha512-cjuJmNDjs6aMijCmSa1g2TNG4Lby/AeU7/02VtpW+SLcZXzOLK2GpN2nLqcFjmhy3B3AoPeQVx7BnyOf681bAw==" + } + }, + "npm:@jest/reporters@29.6.2": { + "type": "npm", + "name": "npm:@jest/reporters@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/reporters", + "hash": "sha512-sWtijrvIav8LgfJZlrGCdN0nP2EWbakglJY49J1Y5QihcQLfy7ovyxxjJBRXMNltgt4uPtEcFmIMbVshEDfFWw==" + } + }, + "npm:@jest/schemas@29.6.0": { + "type": "npm", + "name": "npm:@jest/schemas@29.6.0", + "data": { + "version": "29.6.0", + "packageName": "@jest/schemas", + "hash": "sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==" + } + }, + "npm:@jest/source-map@29.6.0": { + "type": "npm", + "name": "npm:@jest/source-map@29.6.0", + "data": { + "version": "29.6.0", + "packageName": "@jest/source-map", + "hash": "sha512-oA+I2SHHQGxDCZpbrsCQSoMLb3Bz547JnM+jUr9qEbuw0vQlWZfpPS7CO9J7XiwKicEz9OFn/IYoLkkiUD7bzA==" + } + }, + "npm:@jest/test-result@29.6.2": { + "type": "npm", + "name": "npm:@jest/test-result@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/test-result", + "hash": "sha512-3VKFXzcV42EYhMCsJQURptSqnyjqCGbtLuX5Xxb6Pm6gUf1wIRIl+mandIRGJyWKgNKYF9cnstti6Ls5ekduqw==" + } + }, + "npm:@jest/test-sequencer@29.6.2": { + "type": "npm", + "name": "npm:@jest/test-sequencer@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/test-sequencer", + "hash": "sha512-GVYi6PfPwVejO7slw6IDO0qKVum5jtrJ3KoLGbgBWyr2qr4GaxFV6su+ZAjdTX75Sr1DkMFRk09r2ZVa+wtCGw==" + } + }, + "npm:@jest/transform@29.6.2": { + "type": "npm", + "name": "npm:@jest/transform@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/transform", + "hash": "sha512-ZqCqEISr58Ce3U+buNFJYUktLJZOggfyvR+bZMaiV1e8B1SIvJbwZMrYz3gx/KAPn9EXmOmN+uB08yLCjWkQQg==" + } + }, + "npm:@jest/types@29.6.1": { + "type": "npm", + "name": "npm:@jest/types@29.6.1", + "data": { + "version": "29.6.1", + "packageName": "@jest/types", + "hash": "sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.3", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" + } + }, + "npm:@jridgewell/resolve-uri@3.1.0": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.1.2", + "packageName": "@jridgewell/set-array", + "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.3", + "packageName": "@jridgewell/source-map", + "hash": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==" + } + }, + "npm:@jridgewell/sourcemap-codec@1.4.14": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec@1.4.14", + "data": { + "version": "1.4.14", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.4.15", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.9": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.18": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.18", + "data": { + "version": "0.3.18", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==" + } + }, + "npm:@leichtgewicht/ip-codec": { + "type": "npm", + "name": "npm:@leichtgewicht/ip-codec", + "data": { + "version": "2.0.4", + "packageName": "@leichtgewicht/ip-codec", + "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + } + }, + "npm:@lerna/child-process@7.1.4": { + "type": "npm", + "name": "npm:@lerna/child-process@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "@lerna/child-process", + "hash": "sha512-cSiMDx9oI9vvVT+V/WHcbqrksNoc9PIPFiks1lPS7zrVWkEbgA6REQyYmRd2H71kihzqhX5TJ20f2dWv6oEPdA==" + } + }, + "npm:@lerna/create@7.1.4": { + "type": "npm", + "name": "npm:@lerna/create@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "@lerna/create", + "hash": "sha512-D5YWXsXIxWb1aGqcbtttczg86zMzkNhcs00/BleFNxdNYlTRdjLIReELOGBGrq3Hij05UN+7Dv9EKnPFJVbqAw==" + } + }, + "npm:@mdx-js/mdx": { + "type": "npm", + "name": "npm:@mdx-js/mdx", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/mdx", + "hash": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==" + } + }, + "npm:@mdx-js/react": { + "type": "npm", + "name": "npm:@mdx-js/react", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/react", + "hash": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==" + } + }, + "npm:@mdx-js/util": { + "type": "npm", + "name": "npm:@mdx-js/util", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/util", + "hash": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==" + } + }, + "npm:@microsoft/api-extractor-model@7.27.5": { + "type": "npm", + "name": "npm:@microsoft/api-extractor-model@7.27.5", + "data": { + "version": "7.27.5", + "packageName": "@microsoft/api-extractor-model", + "hash": "sha512-9/tBzYMJitR+o+zkPr1lQh2+e8ClcaTF6eZo7vZGDqRt2O5XmXWPbYJZmxyM3wb5at6lfJNEeGZrQXLjsQ0Nbw==" + } + }, + "npm:@microsoft/api-extractor@7.36.3": { + "type": "npm", + "name": "npm:@microsoft/api-extractor@7.36.3", + "data": { + "version": "7.36.3", + "packageName": "@microsoft/api-extractor", + "hash": "sha512-u0H6362AQq+r55X8drHx4npgkrCfJnMzRRHfQo8PMNKB8TcBnrTLfXhXWi+xnTM6CzlU/netEN8c4bq581Rnrg==" + } + }, + "npm:@microsoft/tsdoc-config": { + "type": "npm", + "name": "npm:@microsoft/tsdoc-config", + "data": { + "version": "0.16.1", + "packageName": "@microsoft/tsdoc-config", + "hash": "sha512-2RqkwiD4uN6MLnHFljqBlZIXlt/SaUT6cuogU1w2ARw4nKuuppSmR0+s+NC+7kXBQykd9zzu0P4HtBpZT5zBpQ==" + } + }, + "npm:@microsoft/tsdoc@0.14.1": { + "type": "npm", + "name": "npm:@microsoft/tsdoc@0.14.1", + "data": { + "version": "0.14.1", + "packageName": "@microsoft/tsdoc", + "hash": "sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==" + } + }, + "npm:@microsoft/tsdoc": { + "type": "npm", + "name": "npm:@microsoft/tsdoc", + "data": { + "version": "0.14.2", + "packageName": "@microsoft/tsdoc", + "hash": "sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==" + } + }, + "npm:@netlify/open-api": { + "type": "npm", + "name": "npm:@netlify/open-api", + "data": { + "version": "2.19.1", + "packageName": "@netlify/open-api", + "hash": "sha512-RkucRf8o0vYhCDXCRHWU/EdhkVE3JhkqKmZFvMW6qCPD206GV2Cfo9JGSKb0NdN+nmHSNaYmd+9dvT6I9MP4pw==" + } + }, + "npm:@nicolo-ribaudo/eslint-scope-5-internals": { + "type": "npm", + "name": "npm:@nicolo-ribaudo/eslint-scope-5-internals", + "data": { + "version": "5.1.1-v1", + "packageName": "@nicolo-ribaudo/eslint-scope-5-internals", + "hash": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.5", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.5", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.8", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + } + }, + "npm:@npmcli/fs@2.1.0": { + "type": "npm", + "name": "npm:@npmcli/fs@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-DmfBvNXGaetMxj9LTp8NAN9vEidXURrf5ZTslQzEAi/6GbW+4yjaLFQc6Tue5cpZ9Frlk4OBo/Snf1Bh/S7qTQ==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "3.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" + } + }, + "npm:@npmcli/git": { + "type": "npm", + "name": "npm:@npmcli/git", + "data": { + "version": "4.0.4", + "packageName": "@npmcli/git", + "hash": "sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg==" + } + }, + "npm:@npmcli/installed-package-contents": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents", + "data": { + "version": "2.0.2", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" + } + }, + "npm:@npmcli/move-file@2.0.0": { + "type": "npm", + "name": "npm:@npmcli/move-file@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@npmcli/move-file", + "hash": "sha512-UR6D5f4KEGWJV6BGPH3Qb2EtgH+t+1XQ1Tt85c7qicN6cezzuHPdZwwAxqZr4JLtnQu0LZsTza/5gmNmSl8XLg==" + } + }, + "npm:@npmcli/node-gyp": { + "type": "npm", + "name": "npm:@npmcli/node-gyp", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/node-gyp", + "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" + } + }, + "npm:@npmcli/promise-spawn": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/promise-spawn", + "hash": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==" + } + }, + "npm:@npmcli/run-script": { + "type": "npm", + "name": "npm:@npmcli/run-script", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/run-script", + "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" + } + }, + "npm:@nrwl/devkit@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/devkit@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/devkit", + "hash": "sha512-a/XtuamF0PbiW8glJwI91Tx234qNYCF0PULyk2tjqp/idefiJlbb1eIkPz3kTWvZUG6tvPLdmwzpdHOqqH13Aw==" + } + }, + "npm:@nrwl/jest@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/jest@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/jest", + "hash": "sha512-QwClOTlcVf8uD17vPUlnmAl/6Ul8t9EEPbwtUXZb6QZSJ3Ihn/7EphmKhz77lJ2Em8XHpdkPdBTVXg665J/CmA==" + } + }, + "npm:@nrwl/js@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/js@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/js", + "hash": "sha512-l1mpG5ItfiuMRwTxpHpu0+uNR4Stk3usR4Bhy0MwW1QYk9DtgqCYfTs0/gF2CLKCTXJ211RkSXJ9NHge1m39hA==" + } + }, + "npm:@nrwl/linter@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/linter@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/linter", + "hash": "sha512-miUER7nOqEuAty8JKul0WxRsbRem2zNuZhG6a9MW6Ss2ny9uBeGKrElts+nDFGaL7eXQJgtoB0ChRfp06pKSoA==" + } + }, + "npm:@nrwl/nx-cloud": { + "type": "npm", + "name": "npm:@nrwl/nx-cloud", + "data": { + "version": "16.1.1", + "packageName": "@nrwl/nx-cloud", + "hash": "sha512-iJIPP46+saFZK748FKU4u4YZH+Sv3ZvZPbMwGVMhwqhOYcrlO5aSa0lpilyoN8WuhooKNqcCfiqshx6V577fTg==" + } + }, + "npm:@nrwl/tao@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/tao@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/tao", + "hash": "sha512-GHL8NU2P/kMahXo9lhExTgG1ow9sI3CbCe8E+UPgp4GOscIJypCpD5FuvwmkYJHgMzAx1nknlDYXN12xEe7QVg==" + } + }, + "npm:@nrwl/workspace@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/workspace@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/workspace", + "hash": "sha512-0S7ifuEsDhdSq775vXDEfvjrBIu6ORogesZCe3XLnOzX9u+xsUsYFnT59cnACkdM8IP++dnyuZkfCk0C/xBdYA==" + } + }, + "npm:@nx/devkit@16.5.3": { + "type": "npm", + "name": "npm:@nx/devkit@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/devkit", + "hash": "sha512-szsBpO4ZYEwilUZMEjpmvg8ritl8C7jEAkAq3k2CxEdwE24cDBPwjXWnbc4YffvYW9gatDt+n93in5XYXWT5CA==" + } + }, + "npm:@nx/jest@16.5.3": { + "type": "npm", + "name": "npm:@nx/jest@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/jest", + "hash": "sha512-E9SMO/wFDXBZCepcE3TcAk6Fu0Q/wTIGCXNum6urTS+2hqetisugC+cxCoisBrevPlqZvTm5WmBU/4UipmxN0g==" + } + }, + "npm:@nx/js@16.5.3": { + "type": "npm", + "name": "npm:@nx/js@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/js", + "hash": "sha512-4eGseRQR2t9QoahwBOEvqv3xGL7icfpx4dhCfhv1YV5ImoycuqwaUhoJZwTYvxOW0pahwI2qDZCpOUGXz76kGg==" + } + }, + "npm:@nx/linter@16.5.3": { + "type": "npm", + "name": "npm:@nx/linter@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/linter", + "hash": "sha512-md+dzialAUqXMgEZWqguhTyeFkuGMJ2oRQed3k4EkkJ2JScXXtnj/Izk2kob7Eik7KEoBTSlNdOMHdCgc4FeIA==" + } + }, + "npm:@nx/nx-darwin-arm64@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-HS3R/vRVFwOjZ0l1y3h1UMSd7Zfh4NQ2qDe1FSOfA38AXNftyWNCnZ1kkOikVjJKCpwKXls56XcPDu+2hbqSDA==" + } + }, + "npm:@nx/nx-darwin-x64@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-3QEZkliJy+rk5UrcBsMnExBIAXmjqd4dHBDGH1eo0w85/3Bih3Z9QxU/n+3tEewvUCCx4o4kg+bya/hVz23V6g==" + } + }, + "npm:@nx/nx-freebsd-x64@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-FyJ2xUBPifO0y9LoVuS0CjwN+GGsYSy+O1y541eh8j4Y86/xcPx0j+fhHhh3MDnKA9ftjbq+vrqgs84NHmIAAw==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-Zn343k/satXGWEJjh56+Y/Uxtsl1aCyUtq0OPxznwx/ZGG+Sw2wN/ZEnePEh0OB1/yZ2uWAFRHVSA2fYPrmdhQ==" + } + }, + "npm:@nx/nx-linux-arm64-gnu@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-ACUhKWHe7C7IopyIwXAoHx/phaZudBOu+pZwzVDaRy2xn78tdzJQrOySsQ7YmBGoGSXEAd5+3pVVXnXcRNJ2aA==" + } + }, + "npm:@nx/nx-linux-arm64-musl@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-eNrVa1Oaf42kEiCoJu01NlmGs6hQMzDhHiQ/DBKxMePW1bh4O5FEQUtYp1K/AKPcHH5270VNz0eAl164+fMqpQ==" + } + }, + "npm:@nx/nx-linux-x64-gnu@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-ZAW+Oar+WEwbmu8KFw80qDpT9y3qmWZdVD5wNRX5CMByuVJ3ly7MJbtD/rEDtvAUOgSMJikuGsK0jQ6acm+X/A==" + } + }, + "npm:@nx/nx-linux-x64-musl@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-jM2igA26dd0YVj9w/Pv2x3ZUUziVP4H3rFzYDAd80sQqLYWqELr6Fljyvj/2C+o+mOfVcw85+yfessjlPz8K8Q==" + } + }, + "npm:@nx/nx-win32-arm64-msvc@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-gEP6ekFXLfvRWezSvQoHxV+vhKavuA/Lhz/AifYAIgdJEmKUPqVdnUtdkYwU0Ygn/a11KqbFh8J4TikXIkVxYw==" + } + }, + "npm:@nx/nx-win32-x64-msvc@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-QTpDoqxQq7wSuErkCgQoFegaUZ3D9lgmpS20zexlHm43SwS/MXtqRm9i5XNoJPTx19rpJ7gqaOm6+eOkOYLETg==" + } + }, + "npm:@nx/workspace@16.5.3": { + "type": "npm", + "name": "npm:@nx/workspace@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/workspace", + "hash": "sha512-nviDIJdNJ1K9K8g6Ug+NqHBHILm/J5Uqr4sPTOvNAfkUpqS6gN2aKUJ09iXIwA+/cu+3hrVjIyNhvQ3xHfMCBg==" + } + }, + "npm:@octokit/auth-token@2.5.0": { + "type": "npm", + "name": "npm:@octokit/auth-token@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "@octokit/auth-token", + "hash": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==" + } + }, + "npm:@octokit/auth-token@3.0.0": { + "type": "npm", + "name": "npm:@octokit/auth-token@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@octokit/auth-token", + "hash": "sha512-MDNFUBcJIptB9At7HiV7VCvU3NcL4GnfCQaP8C5lrxWrRPMJBnemYtehaKSOlaM7AYxeRyj9etenu8LVpSpVaQ==" + } + }, + "npm:@octokit/core@3.6.0": { + "type": "npm", + "name": "npm:@octokit/core@3.6.0", + "data": { + "version": "3.6.0", + "packageName": "@octokit/core", + "hash": "sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==" + } + }, + "npm:@octokit/core": { + "type": "npm", + "name": "npm:@octokit/core", + "data": { + "version": "4.2.4", + "packageName": "@octokit/core", + "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" + } + }, + "npm:@octokit/endpoint@6.0.12": { + "type": "npm", + "name": "npm:@octokit/endpoint@6.0.12", + "data": { + "version": "6.0.12", + "packageName": "@octokit/endpoint", + "hash": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==" + } + }, + "npm:@octokit/endpoint@7.0.0": { + "type": "npm", + "name": "npm:@octokit/endpoint@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "@octokit/endpoint", + "hash": "sha512-Kz/mIkOTjs9rV50hf/JK9pIDl4aGwAtT8pry6Rpy+hVXkAPhXanNQRxMoq6AeRgDCZR6t/A1zKniY2V1YhrzlQ==" + } + }, + "npm:@octokit/graphql@4.8.0": { + "type": "npm", + "name": "npm:@octokit/graphql@4.8.0", + "data": { + "version": "4.8.0", + "packageName": "@octokit/graphql", + "hash": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==" + } + }, + "npm:@octokit/graphql@5.0.0": { + "type": "npm", + "name": "npm:@octokit/graphql@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "@octokit/graphql", + "hash": "sha512-1ZZ8tX4lUEcLPvHagfIVu5S2xpHYXAmgN0+95eAOPoaVPzCfUXJtA5vASafcpWcO86ze0Pzn30TAx72aB2aguQ==" + } + }, + "npm:@octokit/openapi-types@12.10.1": { + "type": "npm", + "name": "npm:@octokit/openapi-types@12.10.1", + "data": { + "version": "12.10.1", + "packageName": "@octokit/openapi-types", + "hash": "sha512-P+SukKanjFY0ZhsK6wSVnQmxTP2eVPPE8OPSNuxaMYtgVzwJZgfGdwlYjf4RlRU4vLEw4ts2fsE2icG4nZ5ddQ==" + } + }, + "npm:@octokit/openapi-types": { + "type": "npm", + "name": "npm:@octokit/openapi-types", + "data": { + "version": "18.0.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==" + } + }, + "npm:@octokit/plugin-enterprise-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-enterprise-rest", + "data": { + "version": "6.0.1", + "packageName": "@octokit/plugin-enterprise-rest", + "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" + } + }, + "npm:@octokit/plugin-paginate-rest@2.21.3": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest@2.21.3", + "data": { + "version": "2.21.3", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==" + } + }, + "npm:@octokit/plugin-paginate-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest", + "data": { + "version": "6.1.2", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" + } + }, + "npm:@octokit/plugin-request-log": { + "type": "npm", + "name": "npm:@octokit/plugin-request-log", + "data": { + "version": "1.0.4", + "packageName": "@octokit/plugin-request-log", + "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods@5.16.2": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods@5.16.2", + "data": { + "version": "5.16.2", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods", + "data": { + "version": "7.2.3", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" + } + }, + "npm:@octokit/request-error@2.1.0": { + "type": "npm", + "name": "npm:@octokit/request-error@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@octokit/request-error", + "hash": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==" + } + }, + "npm:@octokit/request-error@3.0.0": { + "type": "npm", + "name": "npm:@octokit/request-error@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@octokit/request-error", + "hash": "sha512-WBtpzm9lR8z4IHIMtOqr6XwfkGvMOOILNLxsWvDwtzm/n7f5AWuqJTXQXdDtOvPfTDrH4TPhEvW2qMlR4JFA2w==" + } + }, + "npm:@octokit/request@5.6.3": { + "type": "npm", + "name": "npm:@octokit/request@5.6.3", + "data": { + "version": "5.6.3", + "packageName": "@octokit/request", + "hash": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==" + } + }, + "npm:@octokit/request@6.2.0": { + "type": "npm", + "name": "npm:@octokit/request@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "@octokit/request", + "hash": "sha512-7IAmHnaezZrgUqtRShMlByJK33MT9ZDnMRgZjnRrRV9a/jzzFwKGz0vxhFU6i7VMLraYcQ1qmcAOin37Kryq+Q==" + } + }, + "npm:@octokit/rest": { + "type": "npm", + "name": "npm:@octokit/rest", + "data": { + "version": "19.0.11", + "packageName": "@octokit/rest", + "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" + } + }, + "npm:@octokit/tsconfig": { + "type": "npm", + "name": "npm:@octokit/tsconfig", + "data": { + "version": "1.0.2", + "packageName": "@octokit/tsconfig", + "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" + } + }, + "npm:@octokit/types@10.0.0": { + "type": "npm", + "name": "npm:@octokit/types@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "@octokit/types", + "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" + } + }, + "npm:@octokit/types@6.40.0": { + "type": "npm", + "name": "npm:@octokit/types@6.40.0", + "data": { + "version": "6.40.0", + "packageName": "@octokit/types", + "hash": "sha512-MFZOU5r8SwgJWDMhrLUSvyJPtVsqA6VnbVI3TNbsmw+Jnvrktzvq2fYES/6RiJA/5Ykdwq4mJmtlYUfW7CGjmw==" + } + }, + "npm:@octokit/types@9.3.2": { + "type": "npm", + "name": "npm:@octokit/types@9.3.2", + "data": { + "version": "9.3.2", + "packageName": "@octokit/types", + "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" + } + }, + "npm:@parcel/watcher": { + "type": "npm", + "name": "npm:@parcel/watcher", + "data": { + "version": "2.0.4", + "packageName": "@parcel/watcher", + "hash": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==" + } + }, + "npm:@phenomnomnominal/tsquery": { + "type": "npm", + "name": "npm:@phenomnomnominal/tsquery", + "data": { + "version": "5.0.1", + "packageName": "@phenomnomnominal/tsquery", + "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@playwright/test@1.36.2": { + "type": "npm", + "name": "npm:@playwright/test@1.36.2", + "data": { + "version": "1.36.2", + "packageName": "@playwright/test", + "hash": "sha512-2rVZeyPRjxfPH6J0oGJqE8YxiM1IBRyM8hyrXYK7eSiAqmbNhxwcLa7dZ7fy9Kj26V7FYia5fh9XJRq4Dqme+g==" + } + }, + "npm:@polka/url": { + "type": "npm", + "name": "npm:@polka/url", + "data": { + "version": "1.0.0-next.21", + "packageName": "@polka/url", + "hash": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==" + } + }, + "npm:@rollup/plugin-babel": { + "type": "npm", + "name": "npm:@rollup/plugin-babel", + "data": { + "version": "5.3.1", + "packageName": "@rollup/plugin-babel", + "hash": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==" + } + }, + "npm:@rollup/plugin-node-resolve": { + "type": "npm", + "name": "npm:@rollup/plugin-node-resolve", + "data": { + "version": "11.2.1", + "packageName": "@rollup/plugin-node-resolve", + "hash": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==" + } + }, + "npm:@rollup/plugin-replace": { + "type": "npm", + "name": "npm:@rollup/plugin-replace", + "data": { + "version": "2.4.2", + "packageName": "@rollup/plugin-replace", + "hash": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==" + } + }, + "npm:@rollup/pluginutils": { + "type": "npm", + "name": "npm:@rollup/pluginutils", + "data": { + "version": "3.1.0", + "packageName": "@rollup/pluginutils", + "hash": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==" + } + }, + "npm:@rushstack/node-core-library@3.59.6": { + "type": "npm", + "name": "npm:@rushstack/node-core-library@3.59.6", + "data": { + "version": "3.59.6", + "packageName": "@rushstack/node-core-library", + "hash": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==" + } + }, + "npm:@rushstack/rig-package@0.4.0": { + "type": "npm", + "name": "npm:@rushstack/rig-package@0.4.0", + "data": { + "version": "0.4.0", + "packageName": "@rushstack/rig-package", + "hash": "sha512-FnM1TQLJYwSiurP6aYSnansprK5l8WUK8VG38CmAaZs29ZeL1msjK0AP1VS4ejD33G0kE/2cpsPsS9jDenBMxw==" + } + }, + "npm:@rushstack/ts-command-line@4.15.1": { + "type": "npm", + "name": "npm:@rushstack/ts-command-line@4.15.1", + "data": { + "version": "4.15.1", + "packageName": "@rushstack/ts-command-line", + "hash": "sha512-EL4jxZe5fhb1uVL/P/wQO+Z8Rc8FMiWJ1G7VgnPDvdIt5GVjRfK7vwzder1CZQiX3x0PY6uxENYLNGTFd1InRQ==" + } + }, + "npm:@sideway/address": { + "type": "npm", + "name": "npm:@sideway/address", + "data": { + "version": "4.1.4", + "packageName": "@sideway/address", + "hash": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==" + } + }, + "npm:@sideway/formula": { + "type": "npm", + "name": "npm:@sideway/formula", + "data": { + "version": "3.0.0", + "packageName": "@sideway/formula", + "hash": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==" + } + }, + "npm:@sideway/pinpoint": { + "type": "npm", + "name": "npm:@sideway/pinpoint", + "data": { + "version": "2.0.0", + "packageName": "@sideway/pinpoint", + "hash": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + } + }, + "npm:@sigstore/protobuf-specs": { + "type": "npm", + "name": "npm:@sigstore/protobuf-specs", + "data": { + "version": "0.1.0", + "packageName": "@sigstore/protobuf-specs", + "hash": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==" + } + }, + "npm:@sigstore/tuf": { + "type": "npm", + "name": "npm:@sigstore/tuf", + "data": { + "version": "1.0.0", + "packageName": "@sigstore/tuf", + "hash": "sha512-bLzi9GeZgMCvjJeLUIfs8LJYCxrPRA8IXQkzUtaFKKVPTz0mucRyqFcV2U20yg9K+kYAD0YSitzGfRZCFLjdHQ==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.27.8", + "packageName": "@sinclair/typebox", + "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + } + }, + "npm:@sindresorhus/is": { + "type": "npm", + "name": "npm:@sindresorhus/is", + "data": { + "version": "0.14.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + } + }, + "npm:@sinonjs/commons@1.8.6": { + "type": "npm", + "name": "npm:@sinonjs/commons@1.8.6", + "data": { + "version": "1.8.6", + "packageName": "@sinonjs/commons", + "hash": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==" + } + }, + "npm:@sinonjs/commons@2.0.0": { + "type": "npm", + "name": "npm:@sinonjs/commons@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@sinonjs/commons", + "hash": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==" + } + }, + "npm:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.0", + "packageName": "@sinonjs/commons", + "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" + } + }, + "npm:@sinonjs/fake-timers": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers", + "data": { + "version": "10.3.0", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" + } + }, + "npm:@sinonjs/fake-timers@7.1.2": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers@7.1.2", + "data": { + "version": "7.1.2", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg==" + } + }, + "npm:@sinonjs/samsam@6.1.3": { + "type": "npm", + "name": "npm:@sinonjs/samsam@6.1.3", + "data": { + "version": "6.1.3", + "packageName": "@sinonjs/samsam", + "hash": "sha512-nhOb2dWPeb1sd3IQXL/dVPnKHDOAFfvichtBf4xV00/rU1QbPCQqKMbvIheIjqwVjh7qIgf2AHTHi391yMOMpQ==" + } + }, + "npm:@sinonjs/text-encoding": { + "type": "npm", + "name": "npm:@sinonjs/text-encoding", + "data": { + "version": "0.7.2", + "packageName": "@sinonjs/text-encoding", + "hash": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==" + } + }, + "npm:@slorber/static-site-generator-webpack-plugin": { + "type": "npm", + "name": "npm:@slorber/static-site-generator-webpack-plugin", + "data": { + "version": "4.0.7", + "packageName": "@slorber/static-site-generator-webpack-plugin", + "hash": "sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==" + } + }, + "npm:@surma/rollup-plugin-off-main-thread": { + "type": "npm", + "name": "npm:@surma/rollup-plugin-off-main-thread", + "data": { + "version": "2.2.3", + "packageName": "@surma/rollup-plugin-off-main-thread", + "hash": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==" + } + }, + "npm:@svgr/babel-plugin-add-jsx-attribute": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-add-jsx-attribute", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-add-jsx-attribute", + "hash": "sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==" + } + }, + "npm:@svgr/babel-plugin-remove-jsx-attribute": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-remove-jsx-attribute", + "hash": "sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==" + } + }, + "npm:@svgr/babel-plugin-remove-jsx-empty-expression": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-remove-jsx-empty-expression", + "hash": "sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==" + } + }, + "npm:@svgr/babel-plugin-replace-jsx-attribute-value": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-replace-jsx-attribute-value", + "hash": "sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==" + } + }, + "npm:@svgr/babel-plugin-svg-dynamic-title": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-svg-dynamic-title", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-svg-dynamic-title", + "hash": "sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==" + } + }, + "npm:@svgr/babel-plugin-svg-em-dimensions": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-svg-em-dimensions", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-svg-em-dimensions", + "hash": "sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==" + } + }, + "npm:@svgr/babel-plugin-transform-react-native-svg": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-transform-react-native-svg", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-transform-react-native-svg", + "hash": "sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==" + } + }, + "npm:@svgr/babel-plugin-transform-svg-component": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-transform-svg-component", + "data": { + "version": "6.2.0", + "packageName": "@svgr/babel-plugin-transform-svg-component", + "hash": "sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==" + } + }, + "npm:@svgr/babel-preset": { + "type": "npm", + "name": "npm:@svgr/babel-preset", + "data": { + "version": "6.2.0", + "packageName": "@svgr/babel-preset", + "hash": "sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==" + } + }, + "npm:@svgr/core": { + "type": "npm", + "name": "npm:@svgr/core", + "data": { + "version": "6.2.1", + "packageName": "@svgr/core", + "hash": "sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA==" + } + }, + "npm:@svgr/hast-util-to-babel-ast": { + "type": "npm", + "name": "npm:@svgr/hast-util-to-babel-ast", + "data": { + "version": "6.2.1", + "packageName": "@svgr/hast-util-to-babel-ast", + "hash": "sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==" + } + }, + "npm:@svgr/plugin-jsx": { + "type": "npm", + "name": "npm:@svgr/plugin-jsx", + "data": { + "version": "6.2.1", + "packageName": "@svgr/plugin-jsx", + "hash": "sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g==" + } + }, + "npm:@svgr/plugin-svgo": { + "type": "npm", + "name": "npm:@svgr/plugin-svgo", + "data": { + "version": "6.2.0", + "packageName": "@svgr/plugin-svgo", + "hash": "sha512-oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q==" + } + }, + "npm:@svgr/webpack": { + "type": "npm", + "name": "npm:@svgr/webpack", + "data": { + "version": "6.2.1", + "packageName": "@svgr/webpack", + "hash": "sha512-h09ngMNd13hnePwgXa+Y5CgOjzlCvfWLHg+MBnydEedAnuLRzUHUJmGS3o2OsrhxTOOqEsPOFt5v/f6C5Qulcw==" + } + }, + "npm:@swc/core-android-arm-eabi@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-android-arm-eabi@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-android-arm-eabi", + "hash": "355329406115563300" + } + }, + "npm:@swc/core-android-arm64@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-android-arm64@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-android-arm64", + "hash": "7573237705184640318" + } + }, + "npm:@swc/core-freebsd-x64@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-freebsd-x64@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-freebsd-x64", + "hash": "847188036684439840" + } + }, + "npm:@swc/core-linux-arm-gnueabihf@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-linux-arm-gnueabihf@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-linux-arm-gnueabihf", + "hash": "16027573815195472203" + } + }, + "npm:@swc/core-linux-arm64-gnu@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-gnu@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-linux-arm64-gnu", + "hash": "109531574478354266" + } + }, + "npm:@swc/core-linux-arm64-musl@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-musl@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-linux-arm64-musl", + "hash": "8641085442062639021" + } + }, + "npm:@swc/core-win32-arm64-msvc@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-win32-arm64-msvc@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-win32-arm64-msvc", + "hash": "17091072665105731578" + } + }, + "npm:@swc/core-win32-ia32-msvc@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-win32-ia32-msvc@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-win32-ia32-msvc", + "hash": "2298370809555209607" + } + }, + "npm:@types/eslint-scope@0.0.0": { + "type": "npm", + "name": "npm:@types/eslint-scope@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@types/eslint-scope", + "hash": "11208898128428895389" + } + }, + "npm:@types/eslint@0.0.0": { + "type": "npm", + "name": "npm:@types/eslint@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@types/eslint", + "hash": "2556809010878089521" + } + }, + "npm:@types/estree@0.0.0": { + "type": "npm", + "name": "npm:@types/estree@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@types/estree", + "hash": "6526019019780440087" + } + }, + "npm:@swc/core-darwin-arm64@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-darwin-arm64@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-darwin-arm64", + "hash": "sha512-2rMV4QxM583jXcREfo0MhV3Oj5pgRSfSh/kVrB1twL2rQxOrbzkAPT/8flmygdVoL4f2F7o1EY5lKlYxEBiIKQ==" + } + }, + "npm:@swc/core-darwin-x64@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-darwin-x64@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-darwin-x64", + "hash": "sha512-KKEGE1wXneYXe15fWDRM8/oekd/Q4yAuccA0vWY/7i6nOSPqWYcSDR0nRtR030ltDxWt0rk/eCTmNkrOWrKs3A==" + } + }, + "npm:@swc/core-linux-x64-gnu@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-gnu@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-linux-x64-gnu", + "hash": "sha512-LEXpcShF6DLTWJSiBhMSYZkLQ27UvaQ24fCFhoIV/R3dhYaUpHmIyLPPBNC82T03lB3ONUFVwrRw6fxDJ/f00A==" + } + }, + "npm:@swc/core-linux-x64-musl@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-musl@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-linux-x64-musl", + "hash": "sha512-sxsFctbFMZEFmDE7CmYljG0dMumH8XBTwwtGr8s6z0fYAzXBGNq2AFPcmEh2np9rPWkt7pE1m0ByESD+dMkbxQ==" + } + }, + "npm:@swc/core-win32-x64-msvc@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-win32-x64-msvc@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-win32-x64-msvc", + "hash": "sha512-S3YAvvLprTnPRwQuy9Dkwubb5SRLpVK3JJsqYDbGfgj8PGQyKHZcVJ5X3nfFsoWLy3j9B/3Os2nawprRSzeC5A==" + } + }, + "npm:@swc/core@1.3.74": { + "type": "npm", + "name": "npm:@swc/core@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core", + "hash": "sha512-P+MIExOTdWlfq8Heb1/NhBAke6UTckd4cRDuJoFcFMGBRvgoCMNWhnfP3FRRXPLI7GGg27dRZS+xHiqYyQmSrA==" + } + }, + "npm:@swc/jest@0.2.27": { + "type": "npm", + "name": "npm:@swc/jest@0.2.27", + "data": { + "version": "0.2.27", + "packageName": "@swc/jest", + "hash": "sha512-Xt8EJ6Wy0NYVL8KDPcDMsuUSzyV2UAByamyy28x2iDZCJw2eVz3acedCGBYxxlPR/DNr6QbA35OSymuXhC9QVA==" + } + }, + "npm:@szmarczak/http-timer": { + "type": "npm", + "name": "npm:@szmarczak/http-timer", + "data": { + "version": "1.1.2", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==" + } + }, + "npm:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, + "npm:@tsconfig/node10": { + "type": "npm", + "name": "npm:@tsconfig/node10", + "data": { + "version": "1.0.8", + "packageName": "@tsconfig/node10", + "hash": "sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==" + } + }, + "npm:@tsconfig/node12": { + "type": "npm", + "name": "npm:@tsconfig/node12", + "data": { + "version": "1.0.9", + "packageName": "@tsconfig/node12", + "hash": "sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==" + } + }, + "npm:@tsconfig/node14": { + "type": "npm", + "name": "npm:@tsconfig/node14", + "data": { + "version": "1.0.1", + "packageName": "@tsconfig/node14", + "hash": "sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==" + } + }, + "npm:@tsconfig/node16": { + "type": "npm", + "name": "npm:@tsconfig/node16", + "data": { + "version": "1.0.2", + "packageName": "@tsconfig/node16", + "hash": "sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==" + } + }, + "npm:@tufjs/canonical-json": { + "type": "npm", + "name": "npm:@tufjs/canonical-json", + "data": { + "version": "1.0.0", + "packageName": "@tufjs/canonical-json", + "hash": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==" + } + }, + "npm:@tufjs/models": { + "type": "npm", + "name": "npm:@tufjs/models", + "data": { + "version": "1.0.4", + "packageName": "@tufjs/models", + "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" + } + }, + "npm:@types/argparse": { + "type": "npm", + "name": "npm:@types/argparse", + "data": { + "version": "1.0.38", + "packageName": "@types/argparse", + "hash": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==" + } + }, + "npm:@types/babel__code-frame@7.0.3": { + "type": "npm", + "name": "npm:@types/babel__code-frame@7.0.3", + "data": { + "version": "7.0.3", + "packageName": "@types/babel__code-frame", + "hash": "sha512-2TN6oiwtNjOezilFVl77zwdNPwQWaDBBCCWWxyo1ctiO3vAtd7H/aB/CBJdw9+kqq3+latD0SXoedIuHySSZWw==" + } + }, + "npm:@types/babel__core@7.20.1": { + "type": "npm", + "name": "npm:@types/babel__core@7.20.1", + "data": { + "version": "7.20.1", + "packageName": "@types/babel__core", + "hash": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.6.4", + "packageName": "@types/babel__generator", + "hash": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.4.1", + "packageName": "@types/babel__template", + "hash": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.20.1", + "packageName": "@types/babel__traverse", + "hash": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.2", + "packageName": "@types/body-parser", + "hash": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.10", + "packageName": "@types/bonjour", + "hash": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.3.5", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.35", + "packageName": "@types/connect", + "hash": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==" + } + }, + "npm:@types/debug@4.1.8": { + "type": "npm", + "name": "npm:@types/debug@4.1.8", + "data": { + "version": "4.1.8", + "packageName": "@types/debug", + "hash": "sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==" + } + }, + "npm:@types/eslint-visitor-keys": { + "type": "npm", + "name": "npm:@types/eslint-visitor-keys", + "data": { + "version": "3.3.0", + "packageName": "@types/eslint-visitor-keys", + "hash": "sha512-Occsmzv0PEJYna7gJdHg28/LNm/Ur+ivQRqvN12bfUiAuNKtUzMzGl/nzc59IJfjRbng4eul/0mEYyMDpaWKBw==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.17.28", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.13", + "packageName": "@types/express", + "hash": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==" + } + }, + "npm:@types/glob": { + "type": "npm", + "name": "npm:@types/glob", + "data": { + "version": "8.1.0", + "packageName": "@types/glob", + "hash": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==" + } + }, + "npm:@types/graceful-fs": { + "type": "npm", + "name": "npm:@types/graceful-fs", + "data": { + "version": "4.1.6", + "packageName": "@types/graceful-fs", + "hash": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==" + } + }, + "npm:@types/hast": { + "type": "npm", + "name": "npm:@types/hast", + "data": { + "version": "2.3.4", + "packageName": "@types/hast", + "hash": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==" + } + }, + "npm:@types/history": { + "type": "npm", + "name": "npm:@types/history", + "data": { + "version": "4.7.11", + "packageName": "@types/history", + "hash": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" + } + }, + "npm:@types/html-minifier-terser": { + "type": "npm", + "name": "npm:@types/html-minifier-terser", + "data": { + "version": "6.0.0", + "packageName": "@types/html-minifier-terser", + "hash": "sha512-NZwaaynfs1oIoLAV1vg18e7QMVDvw+6SQrdJc8w3BwUaoroVSf6EBj/Sk4PBWGxsq0dzhA2drbsuMC1/6C6KgQ==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.9", + "packageName": "@types/http-proxy", + "hash": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==" + } + }, + "npm:@types/is-glob@4.0.2": { + "type": "npm", + "name": "npm:@types/is-glob@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "@types/is-glob", + "hash": "sha512-4j5G9Y5jljDSICQ1R2f/Rcyoj6DZmYGneny+p/cDkjep0rkqNg0W73Ty0bVjMUTZgLXHf8oiMjg1XC3CDwCz+g==" + } + }, + "npm:@types/istanbul-lib-coverage": { + "type": "npm", + "name": "npm:@types/istanbul-lib-coverage", + "data": { + "version": "2.0.4", + "packageName": "@types/istanbul-lib-coverage", + "hash": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + } + }, + "npm:@types/istanbul-lib-report": { + "type": "npm", + "name": "npm:@types/istanbul-lib-report", + "data": { + "version": "3.0.0", + "packageName": "@types/istanbul-lib-report", + "hash": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==" + } + }, + "npm:@types/istanbul-reports": { + "type": "npm", + "name": "npm:@types/istanbul-reports", + "data": { + "version": "3.0.1", + "packageName": "@types/istanbul-reports", + "hash": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==" + } + }, + "npm:@types/jest-specific-snapshot@0.5.6": { + "type": "npm", + "name": "npm:@types/jest-specific-snapshot@0.5.6", + "data": { + "version": "0.5.6", + "packageName": "@types/jest-specific-snapshot", + "hash": "sha512-AQdUbEyTwO6JR2yZK7PTXDzK32AlkviDZJZEukZnrZtBjITYBtExFh59HTNTZeFSs+k1b1bqCHmWUwj3VHeh/A==" + } + }, + "npm:@types/jest@29.5.3": { + "type": "npm", + "name": "npm:@types/jest@29.5.3", + "data": { + "version": "29.5.3", + "packageName": "@types/jest", + "hash": "sha512-1Nq7YrO/vJE/FYnqYyw0FS8LdrjExSgIiHyKg7xPpn+yi8Q4huZryKnkJatN1ZRH89Kw2v33/8ZMB7DuZeSLlA==" + } + }, + "npm:@types/json-schema@7.0.12": { + "type": "npm", + "name": "npm:@types/json-schema@7.0.12", + "data": { + "version": "7.0.12", + "packageName": "@types/json-schema", + "hash": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==" + } + }, + "npm:@types/json5": { + "type": "npm", + "name": "npm:@types/json5", + "data": { + "version": "0.0.29", + "packageName": "@types/json5", + "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + } + }, + "npm:@types/lodash.merge@4.6.7": { + "type": "npm", + "name": "npm:@types/lodash.merge@4.6.7", + "data": { + "version": "4.6.7", + "packageName": "@types/lodash.merge", + "hash": "sha512-OwxUJ9E50gw3LnAefSHJPHaBLGEKmQBQ7CZe/xflHkyy/wH2zVyEIAKReHvVrrn7zKdF58p16We9kMfh7v0RRQ==" + } + }, + "npm:@types/lodash@4.14.192": { + "type": "npm", + "name": "npm:@types/lodash@4.14.192", + "data": { + "version": "4.14.192", + "packageName": "@types/lodash", + "hash": "sha512-km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A==" + } + }, + "npm:@types/marked@5.0.1": { + "type": "npm", + "name": "npm:@types/marked@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "@types/marked", + "hash": "sha512-Y3pAUzHKh605fN6fvASsz5FDSWbZcs/65Q6xYRmnIP9ZIYz27T4IOmXfH9gWJV1dpi7f1e7z7nBGUTx/a0ptpA==" + } + }, + "npm:@types/mdast": { + "type": "npm", + "name": "npm:@types/mdast", + "data": { + "version": "3.0.12", + "packageName": "@types/mdast", + "hash": "sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==" + } + }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "1.3.2", + "packageName": "@types/mime", + "hash": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + } + }, + "npm:@types/minimatch": { + "type": "npm", + "name": "npm:@types/minimatch", + "data": { + "version": "3.0.5", + "packageName": "@types/minimatch", + "hash": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" + } + }, + "npm:@types/minimatch@5.1.2": { + "type": "npm", + "name": "npm:@types/minimatch@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "@types/minimatch", + "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + } + }, + "npm:@types/minimist": { + "type": "npm", + "name": "npm:@types/minimist", + "data": { + "version": "1.2.2", + "packageName": "@types/minimist", + "hash": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==" + } + }, + "npm:@types/ms": { + "type": "npm", + "name": "npm:@types/ms", + "data": { + "version": "0.7.31", + "packageName": "@types/ms", + "hash": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" + } + }, + "npm:@types/natural-compare@1.4.1": { + "type": "npm", + "name": "npm:@types/natural-compare@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "@types/natural-compare", + "hash": "sha512-9dr4UakpvN0QUvwNefk9+o14Sr1pPPIDWkgCxPkHcg3kyjtc9eKK1ng6dZ23vRwByloCqXYtZ1T5nJxkk3Ib3A==" + } + }, + "npm:@types/ncp@2.0.5": { + "type": "npm", + "name": "npm:@types/ncp@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "@types/ncp", + "hash": "sha512-ocK0p8JuFmX7UkMabFPjY0F7apPvQyLWt5qtdvuvQEBz9i4m2dbzV+6L1zNaUp042RfnL6pHnxDE53OH6XQ9VQ==" + } + }, + "npm:@types/node@20.4.8": { + "type": "npm", + "name": "npm:@types/node@20.4.8", + "data": { + "version": "20.4.8", + "packageName": "@types/node", + "hash": "sha512-0mHckf6D2DiIAzh8fM8f3HQCvMKDpK94YQ0DSVkfWTG9BZleYIWudw9cJxX8oCk9bM+vAkDyujDV6dmKHbvQpg==" + } + }, + "npm:@types/normalize-package-data": { + "type": "npm", + "name": "npm:@types/normalize-package-data", + "data": { + "version": "2.4.1", + "packageName": "@types/normalize-package-data", + "hash": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" + } + }, + "npm:@types/parse-json": { + "type": "npm", + "name": "npm:@types/parse-json", + "data": { + "version": "4.0.0", + "packageName": "@types/parse-json", + "hash": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + } + }, + "npm:@types/parse5": { + "type": "npm", + "name": "npm:@types/parse5", + "data": { + "version": "5.0.3", + "packageName": "@types/parse5", + "hash": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" + } + }, + "npm:@types/prettier": { + "type": "npm", + "name": "npm:@types/prettier", + "data": { + "version": "2.7.3", + "packageName": "@types/prettier", + "hash": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + } + }, + "npm:@types/prop-types": { + "type": "npm", + "name": "npm:@types/prop-types", + "data": { + "version": "15.7.5", + "packageName": "@types/prop-types", + "hash": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.7", + "packageName": "@types/qs", + "hash": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.4", + "packageName": "@types/range-parser", + "hash": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + } + }, + "npm:@types/react-helmet@6.1.6": { + "type": "npm", + "name": "npm:@types/react-helmet@6.1.6", + "data": { + "version": "6.1.6", + "packageName": "@types/react-helmet", + "hash": "sha512-ZKcoOdW/Tg+kiUbkFCBtvDw0k3nD4HJ/h/B9yWxN4uDO8OkRksWTO+EL+z/Qu3aHTeTll3Ro0Cc/8UhwBCMG5A==" + } + }, + "npm:@types/react-router-config": { + "type": "npm", + "name": "npm:@types/react-router-config", + "data": { + "version": "5.0.6", + "packageName": "@types/react-router-config", + "hash": "sha512-db1mx37a1EJDf1XeX8jJN7R3PZABmJQXR8r28yUjVMFSjkmnQo6X6pOEEmNl+Tp2gYQOGPdYbFIipBtdElZ3Yg==" + } + }, + "npm:@types/react-router-dom": { + "type": "npm", + "name": "npm:@types/react-router-dom", + "data": { + "version": "5.3.3", + "packageName": "@types/react-router-dom", + "hash": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==" + } + }, + "npm:@types/react-router": { + "type": "npm", + "name": "npm:@types/react-router", + "data": { + "version": "5.1.17", + "packageName": "@types/react-router", + "hash": "sha512-RNSXOyb3VyRs/EOGmjBhhGKTbnN6fHWvy5FNLzWfOWOGjgVUKqJZXfpKzLmgoU8h6Hj8mpALj/mbXQASOb92wQ==" + } + }, + "npm:@types/react@18.2.18": { + "type": "npm", + "name": "npm:@types/react@18.2.18", + "data": { + "version": "18.2.18", + "packageName": "@types/react", + "hash": "sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ==" + } + }, + "npm:@types/resolve": { + "type": "npm", + "name": "npm:@types/resolve", + "data": { + "version": "1.17.1", + "packageName": "@types/resolve", + "hash": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.1", + "packageName": "@types/retry", + "hash": "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==" + } + }, + "npm:@types/sax": { + "type": "npm", + "name": "npm:@types/sax", + "data": { + "version": "1.2.4", + "packageName": "@types/sax", + "hash": "sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==" + } + }, + "npm:@types/scheduler": { + "type": "npm", + "name": "npm:@types/scheduler", + "data": { + "version": "0.16.3", + "packageName": "@types/scheduler", + "hash": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + } + }, + "npm:@types/semver@7.5.0": { + "type": "npm", + "name": "npm:@types/semver@7.5.0", + "data": { + "version": "7.5.0", + "packageName": "@types/semver", + "hash": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.1", + "packageName": "@types/serve-index", + "hash": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.13.10", + "packageName": "@types/serve-static", + "hash": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.33", + "packageName": "@types/sockjs", + "hash": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "2.0.1", + "packageName": "@types/stack-utils", + "hash": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + } + }, + "npm:@types/tmp@0.2.3": { + "type": "npm", + "name": "npm:@types/tmp@0.2.3", + "data": { + "version": "0.2.3", + "packageName": "@types/tmp", + "hash": "sha512-dDZH/tXzwjutnuk4UacGgFRwV+JSLaXL1ikvidfJprkb7L9Nx1njcRHHmi3Dsvt7pgqqTEeucQuOrWHPFgzVHA==" + } + }, + "npm:@types/trusted-types": { + "type": "npm", + "name": "npm:@types/trusted-types", + "data": { + "version": "2.0.2", + "packageName": "@types/trusted-types", + "hash": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" + } + }, + "npm:@types/unist": { + "type": "npm", + "name": "npm:@types/unist", + "data": { + "version": "2.0.7", + "packageName": "@types/unist", + "hash": "sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==" + } + }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.5.3", + "packageName": "@types/ws", + "hash": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==" + } + }, + "npm:@types/yargs-parser": { + "type": "npm", + "name": "npm:@types/yargs-parser", + "data": { + "version": "21.0.0", + "packageName": "@types/yargs-parser", + "hash": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "17.0.24", + "packageName": "@types/yargs", + "hash": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==" + } + }, + "npm:@typescript-eslint/scope-manager@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==" + } + }, + "npm:@typescript-eslint/types@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/types@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" + } + }, + "npm:@typescript-eslint/typescript-estree@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==" + } + }, + "npm:@typescript-eslint/utils@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/utils@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==" + } + }, + "npm:@typescript-eslint/visitor-keys@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==" + } + }, + "npm:@ungap/promise-all-settled@1.1.2": { + "type": "npm", + "name": "npm:@ungap/promise-all-settled@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "@ungap/promise-all-settled", + "hash": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==" + } + }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.0-rc.46", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.6", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" + } + }, + "npm:JSONStream": { + "type": "npm", + "name": "npm:JSONStream", + "data": { + "version": "1.3.5", + "packageName": "JSONStream", + "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" + } + }, + "npm:abbrev": { + "type": "npm", + "name": "npm:abbrev", + "data": { + "version": "1.1.1", + "packageName": "abbrev", + "hash": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "1.3.8", + "packageName": "accepts", + "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + } + }, + "npm:acorn-import-assertions": { + "type": "npm", + "name": "npm:acorn-import-assertions", + "data": { + "version": "1.9.0", + "packageName": "acorn-import-assertions", + "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.2.0", + "packageName": "acorn-walk", + "hash": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.10.0", + "packageName": "acorn", + "hash": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" + } + }, + "npm:add-stream": { + "type": "npm", + "name": "npm:add-stream", + "data": { + "version": "1.0.0", + "packageName": "add-stream", + "hash": "sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=" + } + }, + "npm:address": { + "type": "npm", + "name": "npm:address", + "data": { + "version": "1.1.2", + "packageName": "address", + "hash": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:agentkeepalive": { + "type": "npm", + "name": "npm:agentkeepalive", + "data": { + "version": "4.2.1", + "packageName": "agentkeepalive", + "hash": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + } + }, + "npm:ajv-formats@2.1.1": { + "type": "npm", + "name": "npm:ajv-formats@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:ajv-keywords@5.1.0": { + "type": "npm", + "name": "npm:ajv-keywords@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:ajv@8.12.0": { + "type": "npm", + "name": "npm:ajv@8.12.0", + "data": { + "version": "8.12.0", + "packageName": "ajv", + "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" + } + }, + "npm:algoliasearch-helper": { + "type": "npm", + "name": "npm:algoliasearch-helper", + "data": { + "version": "3.10.0", + "packageName": "algoliasearch-helper", + "hash": "sha512-4E4od8qWWDMVvQ3jaRX6Oks/k35ywD011wAA4LbYMMjOtaZV6VWaTjRr4iN2bdaXP2o1BP7SLFMBf3wvnHmd8Q==" + } + }, + "npm:algoliasearch": { + "type": "npm", + "name": "npm:algoliasearch", + "data": { + "version": "4.13.1", + "packageName": "algoliasearch", + "hash": "sha512-dtHUSE0caWTCE7liE1xaL+19AFf6kWEcyn76uhcitWpntqvicFHXKFoZe5JJcv9whQOTRM6+B8qJz6sFj+rDJA==" + } + }, + "npm:ansi-align": { + "type": "npm", + "name": "npm:ansi-align", + "data": { + "version": "3.0.1", + "packageName": "ansi-align", + "hash": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==" + } + }, + "npm:ansi-colors": { + "type": "npm", + "name": "npm:ansi-colors", + "data": { + "version": "4.1.1", + "packageName": "ansi-colors", + "hash": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" + } + }, + "npm:ansi-escapes": { + "type": "npm", + "name": "npm:ansi-escapes", + "data": { + "version": "4.3.2", + "packageName": "ansi-escapes", + "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, + "npm:ansi-regex@3.0.1": { + "type": "npm", + "name": "npm:ansi-regex@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "ansi-regex", + "hash": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:ansi-regex@6.0.1": { + "type": "npm", + "name": "npm:ansi-regex@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "ansi-regex", + "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + }, + "npm:ansi-styles@3.2.1": { + "type": "npm", + "name": "npm:ansi-styles@3.2.1", + "data": { + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:ansi-styles@6.2.1": { + "type": "npm", + "name": "npm:ansi-styles@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.3", + "packageName": "anymatch", + "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" + } + }, + "npm:aproba": { + "type": "npm", + "name": "npm:aproba", + "data": { + "version": "2.0.0", + "packageName": "aproba", + "hash": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + } + }, + "npm:are-we-there-yet": { + "type": "npm", + "name": "npm:are-we-there-yet", + "data": { + "version": "3.0.0", + "packageName": "are-we-there-yet", + "hash": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==" + } + }, + "npm:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "4.1.3", + "packageName": "arg", + "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + } + }, + "npm:arg@5.0.1": { + "type": "npm", + "name": "npm:arg@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "arg", + "hash": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + } + }, + "npm:argparse@1.0.10": { + "type": "npm", + "name": "npm:argparse@1.0.10", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:aria-query": { + "type": "npm", + "name": "npm:aria-query", + "data": { + "version": "5.1.3", + "packageName": "aria-query", + "hash": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.0", + "packageName": "array-buffer-byte-length", + "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" + } + }, + "npm:array-differ": { + "type": "npm", + "name": "npm:array-differ", + "data": { + "version": "3.0.0", + "packageName": "array-differ", + "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" + } + }, + "npm:array-flatten@1.1.1": { + "type": "npm", + "name": "npm:array-flatten@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "array-flatten", + "hash": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + } + }, + "npm:array-flatten": { + "type": "npm", + "name": "npm:array-flatten", + "data": { + "version": "2.1.2", + "packageName": "array-flatten", + "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + }, + "npm:array-ify": { + "type": "npm", + "name": "npm:array-ify", + "data": { + "version": "1.0.0", + "packageName": "array-ify", + "hash": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=" + } + }, + "npm:array-includes@3.1.6": { + "type": "npm", + "name": "npm:array-includes@3.1.6", + "data": { + "version": "3.1.6", + "packageName": "array-includes", + "hash": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==" + } + }, + "npm:array-timsort": { + "type": "npm", + "name": "npm:array-timsort", + "data": { + "version": "1.0.3", + "packageName": "array-timsort", + "hash": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==" + } + }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "2.1.0", + "packageName": "array-union", + "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + } + }, + "npm:array.prototype.findlastindex@1.2.2": { + "type": "npm", + "name": "npm:array.prototype.findlastindex@1.2.2", + "data": { + "version": "1.2.2", + "packageName": "array.prototype.findlastindex", + "hash": "sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==" + } + }, + "npm:array.prototype.flat@1.3.1": { + "type": "npm", + "name": "npm:array.prototype.flat@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "array.prototype.flat", + "hash": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==" + } + }, + "npm:array.prototype.flatmap@1.3.1": { + "type": "npm", + "name": "npm:array.prototype.flatmap@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "array.prototype.flatmap", + "hash": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==" + } + }, + "npm:array.prototype.tosorted": { + "type": "npm", + "name": "npm:array.prototype.tosorted", + "data": { + "version": "1.1.1", + "packageName": "array.prototype.tosorted", + "hash": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==" + } + }, + "npm:arraybuffer.prototype.slice@1.0.1": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==" + } + }, + "npm:arrify": { + "type": "npm", + "name": "npm:arrify", + "data": { + "version": "1.0.1", + "packageName": "arrify", + "hash": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + } + }, + "npm:arrify@2.0.1": { + "type": "npm", + "name": "npm:arrify@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "arrify", + "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + } + }, + "npm:asap": { + "type": "npm", + "name": "npm:asap", + "data": { + "version": "2.0.6", + "packageName": "asap", + "hash": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + } + }, + "npm:assertion-error": { + "type": "npm", + "name": "npm:assertion-error", + "data": { + "version": "1.1.0", + "packageName": "assertion-error", + "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" + } + }, + "npm:ast-types-flow": { + "type": "npm", + "name": "npm:ast-types-flow", + "data": { + "version": "0.0.7", + "packageName": "ast-types-flow", + "hash": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "2.0.0", + "packageName": "astral-regex", + "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.3", + "packageName": "async", + "hash": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + } + }, + "npm:at-least-node": { + "type": "npm", + "name": "npm:at-least-node", + "data": { + "version": "1.0.0", + "packageName": "at-least-node", + "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + } + }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.4.7", + "packageName": "autoprefixer", + "hash": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.5", + "packageName": "available-typed-arrays", + "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + } + }, + "npm:axe-core": { + "type": "npm", + "name": "npm:axe-core", + "data": { + "version": "4.7.2", + "packageName": "axe-core", + "hash": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==" + } + }, + "npm:axios@1.1.3": { + "type": "npm", + "name": "npm:axios@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "axios", + "hash": "sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==" + } + }, + "npm:axios@0.25.0": { + "type": "npm", + "name": "npm:axios@0.25.0", + "data": { + "version": "0.25.0", + "packageName": "axios", + "hash": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==" + } + }, + "npm:axobject-query": { + "type": "npm", + "name": "npm:axobject-query", + "data": { + "version": "3.1.1", + "packageName": "axobject-query", + "hash": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==" + } + }, + "npm:babel-jest@29.6.2": { + "type": "npm", + "name": "npm:babel-jest@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "babel-jest", + "hash": "sha512-BYCzImLos6J3BH/+HvUCHG1dTf2MzmAB4jaVxHV+29RZLjR29XuYTmsf2sdDwkrb+FczkGo3kOhE7ga6sI0P4A==" + } + }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "8.2.5", + "packageName": "babel-loader", + "hash": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==" + } + }, + "npm:babel-plugin-apply-mdx-type-prop@1.6.22": { + "type": "npm", + "name": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "data": { + "version": "1.6.22", + "packageName": "babel-plugin-apply-mdx-type-prop", + "hash": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==" + } + }, + "npm:babel-plugin-const-enum": { + "type": "npm", + "name": "npm:babel-plugin-const-enum", + "data": { + "version": "1.2.0", + "packageName": "babel-plugin-const-enum", + "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" + } + }, + "npm:babel-plugin-dynamic-import-node": { + "type": "npm", + "name": "npm:babel-plugin-dynamic-import-node", + "data": { + "version": "2.3.3", + "packageName": "babel-plugin-dynamic-import-node", + "hash": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==" + } + }, + "npm:babel-plugin-extract-import-names": { + "type": "npm", + "name": "npm:babel-plugin-extract-import-names", + "data": { + "version": "1.6.22", + "packageName": "babel-plugin-extract-import-names", + "hash": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==" + } + }, + "npm:babel-plugin-istanbul": { + "type": "npm", + "name": "npm:babel-plugin-istanbul", + "data": { + "version": "6.1.1", + "packageName": "babel-plugin-istanbul", + "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" + } + }, + "npm:babel-plugin-jest-hoist@29.5.0": { + "type": "npm", + "name": "npm:babel-plugin-jest-hoist@29.5.0", + "data": { + "version": "29.5.0", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==" + } + }, + "npm:babel-plugin-macros": { + "type": "npm", + "name": "npm:babel-plugin-macros", + "data": { + "version": "2.8.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" + } + }, + "npm:babel-plugin-polyfill-corejs2@0.3.3": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "data": { + "version": "0.3.3", + "packageName": "babel-plugin-polyfill-corejs2", + "hash": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==" + } + }, + "npm:babel-plugin-polyfill-corejs3@0.6.0": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "data": { + "version": "0.6.0", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==" + } + }, + "npm:babel-plugin-polyfill-regenerator@0.4.1": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "babel-plugin-polyfill-regenerator", + "hash": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==" + } + }, + "npm:babel-plugin-transform-typescript-metadata": { + "type": "npm", + "name": "npm:babel-plugin-transform-typescript-metadata", + "data": { + "version": "0.3.2", + "packageName": "babel-plugin-transform-typescript-metadata", + "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.0.1", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + } + }, + "npm:babel-preset-jest@29.5.0": { + "type": "npm", + "name": "npm:babel-preset-jest@29.5.0", + "data": { + "version": "29.5.0", + "packageName": "babel-preset-jest", + "hash": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==" + } + }, + "npm:bail": { + "type": "npm", + "name": "npm:bail", + "data": { + "version": "1.0.5", + "packageName": "bail", + "hash": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:balanced-match@2.0.0": { + "type": "npm", + "name": "npm:balanced-match@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "balanced-match", + "hash": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==" + } + }, + "npm:base16": { + "type": "npm", + "name": "npm:base16", + "data": { + "version": "1.0.0", + "packageName": "base16", + "hash": "sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + } + }, + "npm:before-after-hook": { + "type": "npm", + "name": "npm:before-after-hook", + "data": { + "version": "2.2.2", + "packageName": "before-after-hook", + "hash": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.2.0", + "packageName": "binary-extensions", + "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "1.20.0", + "packageName": "body-parser", + "hash": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==" + } + }, + "npm:bonjour-service": { + "type": "npm", + "name": "npm:bonjour-service", + "data": { + "version": "1.0.12", + "packageName": "bonjour-service", + "hash": "sha512-pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + } + }, + "npm:boxen@5.1.2": { + "type": "npm", + "name": "npm:boxen@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "boxen", + "hash": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==" + } + }, + "npm:boxen": { + "type": "npm", + "name": "npm:boxen", + "data": { + "version": "6.2.1", + "packageName": "boxen", + "hash": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==" + } + }, + "npm:brace-expansion@1.1.11": { + "type": "npm", + "name": "npm:brace-expansion@1.1.11", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "2.0.1", + "packageName": "brace-expansion", + "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:browser-stdout": { + "type": "npm", + "name": "npm:browser-stdout", + "data": { + "version": "1.3.1", + "packageName": "browser-stdout", + "hash": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.21.10", + "packageName": "browserslist", + "hash": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==" + } + }, + "npm:bser": { + "type": "npm", + "name": "npm:bser", + "data": { + "version": "2.1.1", + "packageName": "bser", + "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:builtin-modules@1.1.1": { + "type": "npm", + "name": "npm:builtin-modules@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "builtin-modules", + "hash": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" + } + }, + "npm:builtin-modules": { + "type": "npm", + "name": "npm:builtin-modules", + "data": { + "version": "3.3.0", + "packageName": "builtin-modules", + "hash": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==" + } + }, + "npm:builtins@1.0.3": { + "type": "npm", + "name": "npm:builtins@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "builtins", + "hash": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "5.0.1", + "packageName": "builtins", + "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" + } + }, + "npm:byte-size": { + "type": "npm", + "name": "npm:byte-size", + "data": { + "version": "8.1.1", + "packageName": "byte-size", + "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.0.0", + "packageName": "bytes", + "hash": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + } + }, + "npm:bytes@3.1.2": { + "type": "npm", + "name": "npm:bytes@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:cacache@16.1.0": { + "type": "npm", + "name": "npm:cacache@16.1.0", + "data": { + "version": "16.1.0", + "packageName": "cacache", + "hash": "sha512-Pk4aQkwCW82A4jGKFvcGkQFqZcMspfP9YWq9Pr87/ldDvlWf718zeI6KWCdKt/jeihu6BytHRUicJPB1K2k8EQ==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "17.0.5", + "packageName": "cacache", + "hash": "sha512-Y/PRQevNSsjAPWykl9aeGz8Pr+OI6BYM9fYDNMvOkuUiG9IhG4LEmaYrZZZvioMUEQ+cBCxT0v8wrnCURccyKA==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "6.1.0", + "packageName": "cacheable-request", + "hash": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==" + } + }, + "npm:call-bind@1.0.2": { + "type": "npm", + "name": "npm:call-bind@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "call-bind", + "hash": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camel-case": { + "type": "npm", + "name": "npm:camel-case", + "data": { + "version": "4.1.2", + "packageName": "camel-case", + "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" + } + }, + "npm:camelcase-css": { + "type": "npm", + "name": "npm:camelcase-css", + "data": { + "version": "2.0.1", + "packageName": "camelcase-css", + "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + } + }, + "npm:camelcase-keys": { + "type": "npm", + "name": "npm:camelcase-keys", + "data": { + "version": "6.2.2", + "packageName": "camelcase-keys", + "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" + } + }, + "npm:camelcase-keys@7.0.2": { + "type": "npm", + "name": "npm:camelcase-keys@7.0.2", + "data": { + "version": "7.0.2", + "packageName": "camelcase-keys", + "hash": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==" + } + }, + "npm:camelcase@5.3.1": { + "type": "npm", + "name": "npm:camelcase@5.3.1", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "6.3.0", + "packageName": "camelcase", + "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + } + }, + "npm:caniuse-api": { + "type": "npm", + "name": "npm:caniuse-api", + "data": { + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + } + }, + "npm:caniuse-lite@1.0.30001517": { + "type": "npm", + "name": "npm:caniuse-lite@1.0.30001517", + "data": { + "version": "1.0.30001517", + "packageName": "caniuse-lite", + "hash": "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==" + } + }, + "npm:ccount": { + "type": "npm", + "name": "npm:ccount", + "data": { + "version": "1.1.0", + "packageName": "ccount", + "hash": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" + } + }, + "npm:chai@4.3.7": { + "type": "npm", + "name": "npm:chai@4.3.7", + "data": { + "version": "4.3.7", + "packageName": "chai", + "hash": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==" + } + }, + "npm:chalk@4.1.0": { + "type": "npm", + "name": "npm:chalk@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "chalk", + "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" + } + }, + "npm:chalk@5.2.0": { + "type": "npm", + "name": "npm:chalk@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "chalk", + "hash": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==" + } + }, + "npm:chalk@2.4.2": { + "type": "npm", + "name": "npm:chalk@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:chalk@4.1.2": { + "type": "npm", + "name": "npm:chalk@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "5.3.0", + "packageName": "chalk", + "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + } + }, + "npm:char-regex": { + "type": "npm", + "name": "npm:char-regex", + "data": { + "version": "1.0.2", + "packageName": "char-regex", + "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + } + }, + "npm:character-entities-legacy": { + "type": "npm", + "name": "npm:character-entities-legacy", + "data": { + "version": "1.1.4", + "packageName": "character-entities-legacy", + "hash": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==" + } + }, + "npm:character-entities": { + "type": "npm", + "name": "npm:character-entities", + "data": { + "version": "1.2.4", + "packageName": "character-entities", + "hash": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==" + } + }, + "npm:character-reference-invalid": { + "type": "npm", + "name": "npm:character-reference-invalid", + "data": { + "version": "1.1.4", + "packageName": "character-reference-invalid", + "hash": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" + } + }, + "npm:chardet": { + "type": "npm", + "name": "npm:chardet", + "data": { + "version": "0.7.0", + "packageName": "chardet", + "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + } + }, + "npm:check-error@1.0.2": { + "type": "npm", + "name": "npm:check-error@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "check-error", + "hash": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==" + } + }, + "npm:cheerio-select": { + "type": "npm", + "name": "npm:cheerio-select", + "data": { + "version": "2.1.0", + "packageName": "cheerio-select", + "hash": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==" + } + }, + "npm:cheerio": { + "type": "npm", + "name": "npm:cheerio", + "data": { + "version": "1.0.0-rc.12", + "packageName": "cheerio", + "hash": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==" + } + }, + "npm:chokidar@3.5.1": { + "type": "npm", + "name": "npm:chokidar@3.5.1", + "data": { + "version": "3.5.1", + "packageName": "chokidar", + "hash": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.5.3", + "packageName": "chokidar", + "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "2.0.0", + "packageName": "chownr", + "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.3", + "packageName": "chrome-trace-event", + "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + } + }, + "npm:ci-info@2.0.0": { + "type": "npm", + "name": "npm:ci-info@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ci-info", + "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.8.0", + "packageName": "ci-info", + "hash": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.2.3", + "packageName": "cjs-module-lexer", + "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" + } + }, + "npm:clean-css": { + "type": "npm", + "name": "npm:clean-css", + "data": { + "version": "5.3.0", + "packageName": "clean-css", + "hash": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==" + } + }, + "npm:clean-regexp": { + "type": "npm", + "name": "npm:clean-regexp", + "data": { + "version": "1.0.0", + "packageName": "clean-regexp", + "hash": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:clear-module": { + "type": "npm", + "name": "npm:clear-module", + "data": { + "version": "4.1.2", + "packageName": "clear-module", + "hash": "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==" + } + }, + "npm:cli-boxes@2.2.1": { + "type": "npm", + "name": "npm:cli-boxes@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "cli-boxes", + "hash": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" + } + }, + "npm:cli-boxes": { + "type": "npm", + "name": "npm:cli-boxes", + "data": { + "version": "3.0.0", + "packageName": "cli-boxes", + "hash": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.6.1", + "packageName": "cli-spinners", + "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" + } + }, + "npm:cli-spinners@2.7.0": { + "type": "npm", + "name": "npm:cli-spinners@2.7.0", + "data": { + "version": "2.7.0", + "packageName": "cli-spinners", + "hash": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==" + } + }, + "npm:cli-table3": { + "type": "npm", + "name": "npm:cli-table3", + "data": { + "version": "0.6.2", + "packageName": "cli-table3", + "hash": "sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==" + } + }, + "npm:cli-truncate@2.1.0": { + "type": "npm", + "name": "npm:cli-truncate@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "cli-truncate", + "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" + } + }, + "npm:cli-truncate": { + "type": "npm", + "name": "npm:cli-truncate", + "data": { + "version": "3.1.0", + "packageName": "cli-truncate", + "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" + } + }, + "npm:cli-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + } + }, + "npm:cliui@7.0.4": { + "type": "npm", + "name": "npm:cliui@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "cliui", + "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:clone-response": { + "type": "npm", + "name": "npm:clone-response", + "data": { + "version": "1.0.2", + "packageName": "clone-response", + "hash": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + } + }, + "npm:clsx@1.2.1": { + "type": "npm", + "name": "npm:clsx@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "clsx", + "hash": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==" + } + }, + "npm:clsx": { + "type": "npm", + "name": "npm:clsx", + "data": { + "version": "2.0.0", + "packageName": "clsx", + "hash": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==" + } + }, + "npm:cmd-shim": { + "type": "npm", + "name": "npm:cmd-shim", + "data": { + "version": "6.0.1", + "packageName": "cmd-shim", + "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + } + }, + "npm:collapse-white-space": { + "type": "npm", + "name": "npm:collapse-white-space", + "data": { + "version": "1.0.6", + "packageName": "collapse-white-space", + "hash": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" + } + }, + "npm:collect-v8-coverage": { + "type": "npm", + "name": "npm:collect-v8-coverage", + "data": { + "version": "1.0.2", + "packageName": "collect-v8-coverage", + "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + } + }, + "npm:color-convert@2.0.1": { + "type": "npm", + "name": "npm:color-convert@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + }, + "npm:color-name@1.1.4": { + "type": "npm", + "name": "npm:color-name@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:color-support": { + "type": "npm", + "name": "npm:color-support", + "data": { + "version": "1.1.3", + "packageName": "color-support", + "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + } + }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:colors": { + "type": "npm", + "name": "npm:colors", + "data": { + "version": "1.2.5", + "packageName": "colors", + "hash": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==" + } + }, + "npm:columnify": { + "type": "npm", + "name": "npm:columnify", + "data": { + "version": "1.6.0", + "packageName": "columnify", + "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" + } + }, + "npm:combine-promises": { + "type": "npm", + "name": "npm:combine-promises", + "data": { + "version": "1.1.0", + "packageName": "combine-promises", + "hash": "sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:comma-separated-tokens": { + "type": "npm", + "name": "npm:comma-separated-tokens", + "data": { + "version": "1.0.8", + "packageName": "comma-separated-tokens", + "hash": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==" + } + }, + "npm:commander@10.0.1": { + "type": "npm", + "name": "npm:commander@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "commander", + "hash": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:commander@5.1.0": { + "type": "npm", + "name": "npm:commander@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "commander", + "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + } + }, + "npm:commander@7.2.0": { + "type": "npm", + "name": "npm:commander@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:commander@8.3.0": { + "type": "npm", + "name": "npm:commander@8.3.0", + "data": { + "version": "8.3.0", + "packageName": "commander", + "hash": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + } + }, + "npm:commander@11.0.0": { + "type": "npm", + "name": "npm:commander@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "commander", + "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" + } + }, + "npm:comment-json": { + "type": "npm", + "name": "npm:comment-json", + "data": { + "version": "4.2.3", + "packageName": "comment-json", + "hash": "sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==" + } + }, + "npm:common-tags": { + "type": "npm", + "name": "npm:common-tags", + "data": { + "version": "1.8.2", + "packageName": "common-tags", + "hash": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" + } + }, + "npm:commondir": { + "type": "npm", + "name": "npm:commondir", + "data": { + "version": "1.0.1", + "packageName": "commondir", + "hash": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + } + }, + "npm:compare-func": { + "type": "npm", + "name": "npm:compare-func", + "data": { + "version": "2.0.0", + "packageName": "compare-func", + "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.18", + "packageName": "compressible", + "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.7.4", + "packageName": "compression", + "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + } + }, + "npm:concat-stream": { + "type": "npm", + "name": "npm:concat-stream", + "data": { + "version": "2.0.0", + "packageName": "concat-stream", + "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" + } + }, + "npm:configstore@5.0.1": { + "type": "npm", + "name": "npm:configstore@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "configstore", + "hash": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==" + } + }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "2.0.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + } + }, + "npm:consola": { + "type": "npm", + "name": "npm:consola", + "data": { + "version": "2.15.3", + "packageName": "consola", + "hash": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" + } + }, + "npm:console-control-strings": { + "type": "npm", + "name": "npm:console-control-strings", + "data": { + "version": "1.1.0", + "packageName": "console-control-strings", + "hash": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + } + }, + "npm:console-fail-test": { + "type": "npm", + "name": "npm:console-fail-test", + "data": { + "version": "0.2.3", + "packageName": "console-fail-test", + "hash": "sha512-p1xfi9ubVM2X3NpjPH1Gm8Gxc7vXyTwcOIquU8rpUDA+ISSitAOiBDnT/Bti1We5YzZKRxgI0JU+fFvOmOXtvA==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "0.5.2", + "packageName": "content-disposition", + "hash": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" + } + }, + "npm:content-disposition@0.5.4": { + "type": "npm", + "name": "npm:content-disposition@0.5.4", + "data": { + "version": "0.5.4", + "packageName": "content-disposition", + "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.4", + "packageName": "content-type", + "hash": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + } + }, + "npm:conventional-changelog-angular": { + "type": "npm", + "name": "npm:conventional-changelog-angular", + "data": { + "version": "6.0.0", + "packageName": "conventional-changelog-angular", + "hash": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==" + } + }, + "npm:conventional-changelog-core": { + "type": "npm", + "name": "npm:conventional-changelog-core", + "data": { + "version": "5.0.1", + "packageName": "conventional-changelog-core", + "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" + } + }, + "npm:conventional-changelog-preset-loader": { + "type": "npm", + "name": "npm:conventional-changelog-preset-loader", + "data": { + "version": "3.0.0", + "packageName": "conventional-changelog-preset-loader", + "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" + } + }, + "npm:conventional-changelog-writer": { + "type": "npm", + "name": "npm:conventional-changelog-writer", + "data": { + "version": "6.0.0", + "packageName": "conventional-changelog-writer", + "hash": "sha512-8PyWTnn7zBIt9l4hj4UusFs1TyG+9Ulu1zlOAc72L7Sdv9Hsc8E86ot7htY3HXCVhXHB/NO0pVGvZpwsyJvFfw==" + } + }, + "npm:conventional-commits-filter": { + "type": "npm", + "name": "npm:conventional-commits-filter", + "data": { + "version": "3.0.0", + "packageName": "conventional-commits-filter", + "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" + } + }, + "npm:conventional-commits-parser": { + "type": "npm", + "name": "npm:conventional-commits-parser", + "data": { + "version": "4.0.0", + "packageName": "conventional-commits-parser", + "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" + } + }, + "npm:conventional-recommended-bump": { + "type": "npm", + "name": "npm:conventional-recommended-bump", + "data": { + "version": "7.0.1", + "packageName": "conventional-recommended-bump", + "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "1.9.0", + "packageName": "convert-source-map", + "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + } + }, + "npm:convert-source-map@2.0.0": { + "type": "npm", + "name": "npm:convert-source-map@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.0.6", + "packageName": "cookie-signature", + "hash": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.5.0", + "packageName": "cookie", + "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + } + }, + "npm:copy-text-to-clipboard": { + "type": "npm", + "name": "npm:copy-text-to-clipboard", + "data": { + "version": "3.0.1", + "packageName": "copy-text-to-clipboard", + "hash": "sha512-rvVsHrpFcL4F2P8ihsoLdFHmd404+CMg71S756oRSeQgqk51U3kicGdnvfkrxva0xXH92SjGS62B0XIJsbh+9Q==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "11.0.0", + "packageName": "copy-webpack-plugin", + "hash": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==" + } + }, + "npm:core-js-compat@3.25.4": { + "type": "npm", + "name": "npm:core-js-compat@3.25.4", + "data": { + "version": "3.25.4", + "packageName": "core-js-compat", + "hash": "sha512-gCEcIEEqCR6230WroNunK/653CWKhqyCKJ9b+uESqOt/WFJA8B4lTnnQFdpYY5vmBcwJAA90Bo5vXs+CVsf6iA==" + } + }, + "npm:core-js-pure": { + "type": "npm", + "name": "npm:core-js-pure", + "data": { + "version": "3.21.1", + "packageName": "core-js-pure", + "hash": "sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==" + } + }, + "npm:core-js": { + "type": "npm", + "name": "npm:core-js", + "data": { + "version": "3.24.0", + "packageName": "core-js", + "hash": "sha512-IeOyT8A6iK37Ep4kZDD423mpi6JfPRoPUdQwEWYiGolvn4o6j2diaRzNfDfpTdu3a5qMbrGUzKUpYpRY8jXCkQ==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, + "npm:cosmiconfig@8.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==" + } + }, + "npm:cosmiconfig@6.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + } + }, + "npm:cosmiconfig@7.0.1": { + "type": "npm", + "name": "npm:cosmiconfig@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "cosmiconfig", + "hash": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "8.2.0", + "packageName": "cosmiconfig", + "hash": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==" + } + }, + "npm:create-require": { + "type": "npm", + "name": "npm:create-require", + "data": { + "version": "1.1.1", + "packageName": "create-require", + "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + } + }, + "npm:cross-fetch": { + "type": "npm", + "name": "npm:cross-fetch", + "data": { + "version": "4.0.0", + "packageName": "cross-fetch", + "hash": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==" + } + }, + "npm:cross-fetch@3.1.5": { + "type": "npm", + "name": "npm:cross-fetch@3.1.5", + "data": { + "version": "3.1.5", + "packageName": "cross-fetch", + "hash": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:crypto-random-string@2.0.0": { + "type": "npm", + "name": "npm:crypto-random-string@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "crypto-random-string", + "hash": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + } + }, + "npm:cspell-dictionary@6.31.1": { + "type": "npm", + "name": "npm:cspell-dictionary@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "cspell-dictionary", + "hash": "sha512-7+K7aQGarqbpucky26wled7QSCJeg6VkLUWS+hLjyf0Cqc9Zew5xsLa4QjReExWUJx+a97jbiflITZNuWxgMrg==" + } + }, + "npm:cspell-gitignore@6.31.2": { + "type": "npm", + "name": "npm:cspell-gitignore@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell-gitignore", + "hash": "sha512-B1i8aiXCIbb/08u0K3xnDyXtg0qD+lb5B2itOOXi7KXlPkKvIuN4hWyXxhVDweWyYWEzyXD5wBpPrqICVrStHQ==" + } + }, + "npm:cspell-glob@6.31.2": { + "type": "npm", + "name": "npm:cspell-glob@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell-glob", + "hash": "sha512-ceTjHM4HaBgvG5S3oiB+PTPYq58EQYG6MmYpycDHzpR5I2H1NurK9lxWHfANmLbi0DsHn58tIZNDMUnnQj19Jw==" + } + }, + "npm:cspell-grammar@6.31.1": { + "type": "npm", + "name": "npm:cspell-grammar@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "cspell-grammar", + "hash": "sha512-AsRVP0idcNFVSb9+p9XjMumFj3BUV67WIPWApaAzJl/dYyiIygQObRE+si0/QtFWGNw873b7hNhWZiKjqIdoaQ==" + } + }, + "npm:cspell-io@6.31.2": { + "type": "npm", + "name": "npm:cspell-io@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell-io", + "hash": "sha512-Lp7LsF/f35LaOneROb/9mWiprShz2ONxjYFAt3bYP7gIxq41lWi8QhO+SN6spoqPp/wQXjSqJ7MuTZsemxPRnA==" + } + }, + "npm:cspell-lib@6.31.2": { + "type": "npm", + "name": "npm:cspell-lib@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell-lib", + "hash": "sha512-LqaB2ZfVfQHKL5aZzYoKU6/UxxAtWeXAYwpC9l+satXmajYyXtAh4kWmuW+y7kKRH2jA79rJQS3QE6ToeSqgQQ==" + } + }, + "npm:cspell-trie-lib@6.31.1": { + "type": "npm", + "name": "npm:cspell-trie-lib@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "cspell-trie-lib", + "hash": "sha512-MtYh7s4Sbr1rKT31P2BK6KY+YfOy3dWsuusq9HnqCXmq6aZ1HyFgjH/9p9uvqGi/TboMqn1KOV8nifhXK3l3jg==" + } + }, + "npm:cspell@6.31.2": { + "type": "npm", + "name": "npm:cspell@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell", + "hash": "sha512-HJcQ8jqL/1N3Mj5dufFnIZCX3ACuRoFTSVY6h3Bo5wBqd2iiJTyeQ1SY9Zymlxtb2KyJ6jQRiFmkWeFx2HVs7w==" + } + }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "6.3.0", + "packageName": "css-declaration-sorter", + "hash": "sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==" + } + }, + "npm:css-functions-list@3.2.0": { + "type": "npm", + "name": "npm:css-functions-list@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "css-functions-list", + "hash": "sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "6.7.1", + "packageName": "css-loader", + "hash": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==" + } + }, + "npm:css-minimizer-webpack-plugin": { + "type": "npm", + "name": "npm:css-minimizer-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "css-minimizer-webpack-plugin", + "hash": "sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "4.1.3", + "packageName": "css-select", + "hash": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==" + } + }, + "npm:css-select@5.1.0": { + "type": "npm", + "name": "npm:css-select@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "css-select", + "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "1.1.3", + "packageName": "css-tree", + "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" + } + }, + "npm:css-tree@2.3.1": { + "type": "npm", + "name": "npm:css-tree@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "css-tree", + "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" + } + }, + "npm:css-what@5.1.0": { + "type": "npm", + "name": "npm:css-what@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "css-what", + "hash": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.1.0", + "packageName": "css-what", + "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano-preset-advanced": { + "type": "npm", + "name": "npm:cssnano-preset-advanced", + "data": { + "version": "5.3.8", + "packageName": "cssnano-preset-advanced", + "hash": "sha512-xUlLLnEB1LjpEik+zgRNlk8Y/koBPPtONZjp7JKbXigeAmCrFvq9H0pXW5jJV45bQWAlmJ0sKy+IMr0XxLYQZg==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "5.2.12", + "packageName": "cssnano-preset-default", + "hash": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "3.1.0", + "packageName": "cssnano-utils", + "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" + } + }, + "npm:cssnano": { + "type": "npm", + "name": "npm:cssnano", + "data": { + "version": "5.1.12", + "packageName": "cssnano", + "hash": "sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==" + } + }, + "npm:csso": { + "type": "npm", + "name": "npm:csso", + "data": { + "version": "4.2.0", + "packageName": "csso", + "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" + } + }, + "npm:csstype": { + "type": "npm", + "name": "npm:csstype", + "data": { + "version": "3.1.2", + "packageName": "csstype", + "hash": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + } + }, + "npm:damerau-levenshtein": { + "type": "npm", + "name": "npm:damerau-levenshtein", + "data": { + "version": "1.0.8", + "packageName": "damerau-levenshtein", + "hash": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + } + }, + "npm:dargs": { + "type": "npm", + "name": "npm:dargs", + "data": { + "version": "7.0.0", + "packageName": "dargs", + "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" + } + }, + "npm:data-uri-to-buffer": { + "type": "npm", + "name": "npm:data-uri-to-buffer", + "data": { + "version": "4.0.1", + "packageName": "data-uri-to-buffer", + "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" + } + }, + "npm:dateformat": { + "type": "npm", + "name": "npm:dateformat", + "data": { + "version": "3.0.3", + "packageName": "dateformat", + "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" + } + }, + "npm:debug@2.6.9": { + "type": "npm", + "name": "npm:debug@2.6.9", + "data": { + "version": "2.6.9", + "packageName": "debug", + "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:debug@4.3.1": { + "type": "npm", + "name": "npm:debug@4.3.1", + "data": { + "version": "4.3.1", + "packageName": "debug", + "hash": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==" + } + }, + "npm:debug@3.2.7": { + "type": "npm", + "name": "npm:debug@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "debug", + "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + } + }, + "npm:decamelize-keys": { + "type": "npm", + "name": "npm:decamelize-keys", + "data": { + "version": "1.1.0", + "packageName": "decamelize-keys", + "hash": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=" + } + }, + "npm:decamelize": { + "type": "npm", + "name": "npm:decamelize", + "data": { + "version": "1.2.0", + "packageName": "decamelize", + "hash": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + } + }, + "npm:decamelize@4.0.0": { + "type": "npm", + "name": "npm:decamelize@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "decamelize", + "hash": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==" + } + }, + "npm:decamelize@5.0.1": { + "type": "npm", + "name": "npm:decamelize@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "decamelize", + "hash": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==" + } + }, + "npm:decompress-response": { + "type": "npm", + "name": "npm:decompress-response", + "data": { + "version": "3.3.0", + "packageName": "decompress-response", + "hash": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=" + } + }, + "npm:dedent": { + "type": "npm", + "name": "npm:dedent", + "data": { + "version": "0.7.0", + "packageName": "dedent", + "hash": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + } + }, + "npm:dedent@1.5.0": { + "type": "npm", + "name": "npm:dedent@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "dedent", + "hash": "sha512-3sSQTYoWKGcRHmHl6Y6opLpRJH55bxeGQ0Y1LCI5pZzUXvokVkj0FC4bi7uEwazxA9FQZ0Nv067Zt5kSUvXxEA==" + } + }, + "npm:deep-eql": { + "type": "npm", + "name": "npm:deep-eql", + "data": { + "version": "4.1.3", + "packageName": "deep-eql", + "hash": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==" + } + }, + "npm:deep-equal": { + "type": "npm", + "name": "npm:deep-equal", + "data": { + "version": "2.2.0", + "packageName": "deep-equal", + "hash": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.4", + "packageName": "deep-is", + "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + } + }, + "npm:deepmerge": { + "type": "npm", + "name": "npm:deepmerge", + "data": { + "version": "4.3.1", + "packageName": "deepmerge", + "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + } + }, + "npm:default-gateway": { + "type": "npm", + "name": "npm:default-gateway", + "data": { + "version": "6.0.3", + "packageName": "default-gateway", + "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.3", + "packageName": "defaults", + "hash": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=" + } + }, + "npm:defer-to-connect": { + "type": "npm", + "name": "npm:defer-to-connect", + "data": { + "version": "1.1.3", + "packageName": "defer-to-connect", + "hash": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.2.0", + "packageName": "define-properties", + "hash": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==" + } + }, + "npm:del": { + "type": "npm", + "name": "npm:del", + "data": { + "version": "6.1.1", + "packageName": "del", + "hash": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + } + }, + "npm:delegates": { + "type": "npm", + "name": "npm:delegates", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:depd@1.1.2": { + "type": "npm", + "name": "npm:depd@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + } + }, + "npm:deprecation": { + "type": "npm", + "name": "npm:deprecation", + "data": { + "version": "2.3.1", + "packageName": "deprecation", + "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + } + }, + "npm:destroy": { + "type": "npm", + "name": "npm:destroy", + "data": { + "version": "1.2.0", + "packageName": "destroy", + "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + } + }, + "npm:detab": { + "type": "npm", + "name": "npm:detab", + "data": { + "version": "2.0.4", + "packageName": "detab", + "hash": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==" + } + }, + "npm:detect-indent": { + "type": "npm", + "name": "npm:detect-indent", + "data": { + "version": "5.0.0", + "packageName": "detect-indent", + "hash": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.1.0", + "packageName": "detect-node", + "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + } + }, + "npm:detect-port-alt": { + "type": "npm", + "name": "npm:detect-port-alt", + "data": { + "version": "1.1.6", + "packageName": "detect-port-alt", + "hash": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==" + } + }, + "npm:detect-port": { + "type": "npm", + "name": "npm:detect-port", + "data": { + "version": "1.5.1", + "packageName": "detect-port", + "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" + } + }, + "npm:diff-sequences@29.4.3": { + "type": "npm", + "name": "npm:diff-sequences@29.4.3", + "data": { + "version": "29.4.3", + "packageName": "diff-sequences", + "hash": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==" + } + }, + "npm:diff@5.0.0": { + "type": "npm", + "name": "npm:diff@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "diff", + "hash": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==" + } + }, + "npm:diff": { + "type": "npm", + "name": "npm:diff", + "data": { + "version": "4.0.2", + "packageName": "diff", + "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + } + }, + "npm:diff@5.1.0": { + "type": "npm", + "name": "npm:diff@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "diff", + "hash": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:dns-equal": { + "type": "npm", + "name": "npm:dns-equal", + "data": { + "version": "1.0.0", + "packageName": "dns-equal", + "hash": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "5.3.1", + "packageName": "dns-packet", + "hash": "sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "2.1.0", + "packageName": "doctrine", + "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + } + }, + "npm:doctrine@3.0.0": { + "type": "npm", + "name": "npm:doctrine@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:dom-converter": { + "type": "npm", + "name": "npm:dom-converter", + "data": { + "version": "0.2.0", + "packageName": "dom-converter", + "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" + } + }, + "npm:dom-serializer@1.3.2": { + "type": "npm", + "name": "npm:dom-serializer@1.3.2", + "data": { + "version": "1.3.2", + "packageName": "dom-serializer", + "hash": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "2.0.0", + "packageName": "dom-serializer", + "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domhandler@4.2.2": { + "type": "npm", + "name": "npm:domhandler@4.2.2", + "data": { + "version": "4.2.2", + "packageName": "domhandler", + "hash": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "5.0.3", + "packageName": "domhandler", + "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + } + }, + "npm:domutils@2.8.0": { + "type": "npm", + "name": "npm:domutils@2.8.0", + "data": { + "version": "2.8.0", + "packageName": "domutils", + "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "3.0.1", + "packageName": "domutils", + "hash": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==" + } + }, + "npm:dot-case": { + "type": "npm", + "name": "npm:dot-case", + "data": { + "version": "3.0.4", + "packageName": "dot-case", + "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + } + }, + "npm:dot-prop": { + "type": "npm", + "name": "npm:dot-prop", + "data": { + "version": "5.3.0", + "packageName": "dot-prop", + "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + } + }, + "npm:dotenv@10.0.0": { + "type": "npm", + "name": "npm:dotenv@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "dotenv", + "hash": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" + } + }, + "npm:downlevel-dts": { + "type": "npm", + "name": "npm:downlevel-dts", + "data": { + "version": "0.11.0", + "packageName": "downlevel-dts", + "hash": "sha512-vo835pntK7kzYStk7xUHDifiYJvXxVhUapt85uk2AI94gUUAQX9HNRtrcMHNSc3YHJUEHGbYIGsM99uIbgAtxw==" + } + }, + "npm:duplexer3": { + "type": "npm", + "name": "npm:duplexer3", + "data": { + "version": "0.1.4", + "packageName": "duplexer3", + "hash": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + } + }, + "npm:duplexer": { + "type": "npm", + "name": "npm:duplexer", + "data": { + "version": "0.1.2", + "packageName": "duplexer", + "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + } + }, + "npm:ejs": { + "type": "npm", + "name": "npm:ejs", + "data": { + "version": "3.1.8", + "packageName": "ejs", + "hash": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==" + } + }, + "npm:electron-to-chromium@1.4.477": { + "type": "npm", + "name": "npm:electron-to-chromium@1.4.477", + "data": { + "version": "1.4.477", + "packageName": "electron-to-chromium", + "hash": "sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:emoji-regex@8.0.0": { + "type": "npm", + "name": "npm:emoji-regex@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:emojisplosion": { + "type": "npm", + "name": "npm:emojisplosion", + "data": { + "version": "2.6.1", + "packageName": "emojisplosion", + "hash": "sha512-a+yvHzHHP9R8qvt7ZeZS8yReuHjwXvbBbSxJHVMMWs4+sf0eOE/v/+Iz6fQq0CdF8G04jsJMF1MNDlrIBCC1pw==" + } + }, + "npm:emoticon": { + "type": "npm", + "name": "npm:emoticon", + "data": { + "version": "3.2.0", + "packageName": "emoticon", + "hash": "sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "1.0.2", + "packageName": "encodeurl", + "hash": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + } + }, + "npm:encoding": { + "type": "npm", + "name": "npm:encoding", + "data": { + "version": "0.1.13", + "packageName": "encoding", + "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.4", + "packageName": "end-of-stream", + "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.15.0", + "packageName": "enhanced-resolve", + "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:entities@2.2.0": { + "type": "npm", + "name": "npm:entities@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "entities", + "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + }, + "npm:entities@3.0.1": { + "type": "npm", + "name": "npm:entities@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "entities", + "hash": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.3.0", + "packageName": "entities", + "hash": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + } + }, + "npm:env-paths": { + "type": "npm", + "name": "npm:env-paths", + "data": { + "version": "2.2.1", + "packageName": "env-paths", + "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.8.1", + "packageName": "envinfo", + "hash": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" + } + }, + "npm:err-code": { + "type": "npm", + "name": "npm:err-code", + "data": { + "version": "2.0.3", + "packageName": "err-code", + "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:es-abstract@1.22.1": { + "type": "npm", + "name": "npm:es-abstract@1.22.1", + "data": { + "version": "1.22.1", + "packageName": "es-abstract", + "hash": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==" + } + }, + "npm:es-get-iterator": { + "type": "npm", + "name": "npm:es-get-iterator", + "data": { + "version": "1.1.3", + "packageName": "es-get-iterator", + "hash": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.2.1", + "packageName": "es-module-lexer", + "hash": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.0.1", + "packageName": "es-set-tostringtag", + "hash": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==" + } + }, + "npm:es-shim-unscopables": { + "type": "npm", + "name": "npm:es-shim-unscopables", + "data": { + "version": "1.0.0", + "packageName": "es-shim-unscopables", + "hash": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:esbuild@0.17.19": { + "type": "npm", + "name": "npm:esbuild@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "esbuild", + "hash": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==" + } + }, + "npm:esbuild@0.18.17": { + "type": "npm", + "name": "npm:esbuild@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "esbuild", + "hash": "sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.1.1", + "packageName": "escalade", + "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + } + }, + "npm:escape-goat": { + "type": "npm", + "name": "npm:escape-goat", + "data": { + "version": "2.1.1", + "packageName": "escape-goat", + "hash": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + } + }, + "npm:escape-string-regexp@4.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "npm:escape-string-regexp@2.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + }, + "npm:eslint-import-resolver-node@0.3.7": { + "type": "npm", + "name": "npm:eslint-import-resolver-node@0.3.7", + "data": { + "version": "0.3.7", + "packageName": "eslint-import-resolver-node", + "hash": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==" + } + }, + "npm:eslint-module-utils": { + "type": "npm", + "name": "npm:eslint-module-utils", + "data": { + "version": "2.8.0", + "packageName": "eslint-module-utils", + "hash": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==" + } + }, + "npm:eslint-plugin-deprecation@1.5.0": { + "type": "npm", + "name": "npm:eslint-plugin-deprecation@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "eslint-plugin-deprecation", + "hash": "sha512-mRcssI/tLROueBQ6yf4LnnGTijbMsTCPIpbRbPj5R5wGYVCpk1zDmAS0SEkgcUDXOPc22qMNFR24Qw7vSPrlTA==" + } + }, + "npm:eslint-plugin-eslint-comments": { + "type": "npm", + "name": "npm:eslint-plugin-eslint-comments", + "data": { + "version": "3.2.0", + "packageName": "eslint-plugin-eslint-comments", + "hash": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==" + } + }, + "npm:eslint-plugin-eslint-plugin": { + "type": "npm", + "name": "npm:eslint-plugin-eslint-plugin", + "data": { + "version": "5.1.1", + "packageName": "eslint-plugin-eslint-plugin", + "hash": "sha512-4MGDsG505Ot2TSDSYxFL0cpDo4Y+t6hKB8cfZw9Jx484VjXWDfiYC/A6cccWFtWoOOC0j+wGgQIIb11cdIAMBg==" + } + }, + "npm:eslint-plugin-import@2.28.0": { + "type": "npm", + "name": "npm:eslint-plugin-import@2.28.0", + "data": { + "version": "2.28.0", + "packageName": "eslint-plugin-import", + "hash": "sha512-B8s/n+ZluN7sxj9eUf7/pRFERX0r5bnFA2dCaLHy2ZeaQEAz0k+ZZkFWRFHJAqxfxQDx6KLv9LeIki7cFdwW+Q==" + } + }, + "npm:eslint-plugin-jest@27.2.3": { + "type": "npm", + "name": "npm:eslint-plugin-jest@27.2.3", + "data": { + "version": "27.2.3", + "packageName": "eslint-plugin-jest", + "hash": "sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==" + } + }, + "npm:eslint-plugin-jsx-a11y": { + "type": "npm", + "name": "npm:eslint-plugin-jsx-a11y", + "data": { + "version": "6.7.1", + "packageName": "eslint-plugin-jsx-a11y", + "hash": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==" + } + }, + "npm:eslint-plugin-react-hooks": { + "type": "npm", + "name": "npm:eslint-plugin-react-hooks", + "data": { + "version": "4.6.0", + "packageName": "eslint-plugin-react-hooks", + "hash": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==" + } + }, + "npm:eslint-plugin-react@7.33.1": { + "type": "npm", + "name": "npm:eslint-plugin-react@7.33.1", + "data": { + "version": "7.33.1", + "packageName": "eslint-plugin-react", + "hash": "sha512-L093k0WAMvr6VhNwReB8VgOq5s2LesZmrpPdKz/kZElQDzqS7G7+DnKoqT+w4JwuiGeAhAvHO0fvy0Eyk4ejDA==" + } + }, + "npm:eslint-plugin-simple-import-sort": { + "type": "npm", + "name": "npm:eslint-plugin-simple-import-sort", + "data": { + "version": "10.0.0", + "packageName": "eslint-plugin-simple-import-sort", + "hash": "sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==" + } + }, + "npm:eslint-plugin-unicorn": { + "type": "npm", + "name": "npm:eslint-plugin-unicorn", + "data": { + "version": "48.0.1", + "packageName": "eslint-plugin-unicorn", + "hash": "sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:eslint-scope@7.2.2": { + "type": "npm", + "name": "npm:eslint-scope@7.2.2", + "data": { + "version": "7.2.2", + "packageName": "eslint-scope", + "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" + } + }, + "npm:eslint-utils": { + "type": "npm", + "name": "npm:eslint-utils", + "data": { + "version": "3.0.0", + "packageName": "eslint-utils", + "hash": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==" + } + }, + "npm:eslint-visitor-keys@3.4.2": { + "type": "npm", + "name": "npm:eslint-visitor-keys@3.4.2", + "data": { + "version": "3.4.2", + "packageName": "eslint-visitor-keys", + "hash": "sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==" + } + }, + "npm:eslint@8.46.0": { + "type": "npm", + "name": "npm:eslint@8.46.0", + "data": { + "version": "8.46.0", + "packageName": "eslint", + "hash": "sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "9.6.1", + "packageName": "espree", + "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.5.0", + "packageName": "esquery", + "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:estree-walker": { + "type": "npm", + "name": "npm:estree-walker", + "data": { + "version": "1.0.1", + "packageName": "estree-walker", + "hash": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:eta": { + "type": "npm", + "name": "npm:eta", + "data": { + "version": "2.0.1", + "packageName": "eta", + "hash": "sha512-46E2qDPDm7QA+usjffUWz9KfXsxVZclPOuKsXs4ZWZdI/X1wpDF7AO424pt7fdYohCzWsIkXAhNGXSlwo5naAg==" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + } + }, + "npm:eval": { + "type": "npm", + "name": "npm:eval", + "data": { + "version": "0.1.8", + "packageName": "eval", + "hash": "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "7.1.1", + "packageName": "execa", + "hash": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==" + } + }, + "npm:execa@5.0.0": { + "type": "npm", + "name": "npm:execa@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "execa", + "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" + } + }, + "npm:execa@5.1.1": { + "type": "npm", + "name": "npm:execa@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + } + }, + "npm:expect@29.6.2": { + "type": "npm", + "name": "npm:expect@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "expect", + "hash": "sha512-iAErsLxJ8C+S02QbLAwgSGSezLQK+XXRDt8IuFXFpwCNw2ECmzZSmjKcCaFVp5VRMk+WAvz6h6jokzEzBFZEuA==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "4.18.1", + "packageName": "express", + "hash": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==" + } + }, + "npm:extend-shallow": { + "type": "npm", + "name": "npm:extend-shallow", + "data": { + "version": "2.0.1", + "packageName": "extend-shallow", + "hash": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" + } + }, + "npm:extend": { + "type": "npm", + "name": "npm:extend", + "data": { + "version": "3.0.2", + "packageName": "extend", + "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + } + }, + "npm:external-editor": { + "type": "npm", + "name": "npm:external-editor", + "data": { + "version": "3.1.0", + "packageName": "external-editor", + "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:fast-equals": { + "type": "npm", + "name": "npm:fast-equals", + "data": { + "version": "4.0.3", + "packageName": "fast-equals", + "hash": "sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==" + } + }, + "npm:fast-glob@3.2.7": { + "type": "npm", + "name": "npm:fast-glob@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "fast-glob", + "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.1", + "packageName": "fast-glob", + "hash": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + } + }, + "npm:fast-url-parser": { + "type": "npm", + "name": "npm:fast-url-parser", + "data": { + "version": "1.1.3", + "packageName": "fast-url-parser", + "hash": "sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=" + } + }, + "npm:fastest-levenshtein": { + "type": "npm", + "name": "npm:fastest-levenshtein", + "data": { + "version": "1.0.16", + "packageName": "fastest-levenshtein", + "hash": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.15.0", + "packageName": "fastq", + "hash": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==" + } + }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.4", + "packageName": "faye-websocket", + "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.2", + "packageName": "fb-watchman", + "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" + } + }, + "npm:fbemitter": { + "type": "npm", + "name": "npm:fbemitter", + "data": { + "version": "3.0.0", + "packageName": "fbemitter", + "hash": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==" + } + }, + "npm:fbjs-css-vars": { + "type": "npm", + "name": "npm:fbjs-css-vars", + "data": { + "version": "1.0.2", + "packageName": "fbjs-css-vars", + "hash": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + } + }, + "npm:fbjs": { + "type": "npm", + "name": "npm:fbjs", + "data": { + "version": "3.0.1", + "packageName": "fbjs", + "hash": "sha512-8+vkGyT4lNDRKHQNPp0yh/6E7FfkLg89XqQbOYnvntRh+8RiSD43yrh9E5ejp1muCizTL4nDVG+y8W4e+LROHg==" + } + }, + "npm:feed": { + "type": "npm", + "name": "npm:feed", + "data": { + "version": "4.2.2", + "packageName": "feed", + "hash": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==" + } + }, + "npm:fetch-blob": { + "type": "npm", + "name": "npm:fetch-blob", + "data": { + "version": "3.2.0", + "packageName": "fetch-blob", + "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "npm:file-entry-cache@6.0.1": { + "type": "npm", + "name": "npm:file-entry-cache@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "file-entry-cache", + "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + } + }, + "npm:file-loader": { + "type": "npm", + "name": "npm:file-loader", + "data": { + "version": "6.2.0", + "packageName": "file-loader", + "hash": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==" + } + }, + "npm:filelist": { + "type": "npm", + "name": "npm:filelist", + "data": { + "version": "1.0.3", + "packageName": "filelist", + "hash": "sha512-LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q==" + } + }, + "npm:filesize": { + "type": "npm", + "name": "npm:filesize", + "data": { + "version": "8.0.7", + "packageName": "filesize", + "hash": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.2.0", + "packageName": "finalhandler", + "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" + } + }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:find-up@2.1.0": { + "type": "npm", + "name": "npm:find-up@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-up", + "hash": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" + } + }, + "npm:find-up@3.0.0": { + "type": "npm", + "name": "npm:find-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "find-up", + "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + } + }, + "npm:find-up@4.1.0": { + "type": "npm", + "name": "npm:find-up@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:find-yarn-workspace-root@2.0.0": { + "type": "npm", + "name": "npm:find-yarn-workspace-root@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "find-yarn-workspace-root", + "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" + } + }, + "npm:flat-cache@3.0.4": { + "type": "npm", + "name": "npm:flat-cache@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "flat-cache", + "hash": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:flatted@3.2.7": { + "type": "npm", + "name": "npm:flatted@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "flatted", + "hash": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + } + }, + "npm:flux": { + "type": "npm", + "name": "npm:flux", + "data": { + "version": "4.0.2", + "packageName": "flux", + "hash": "sha512-u/ucO5ezm3nBvdaSGkWpDlzCePoV+a9x3KHmy13TV/5MzOaCZDN8Mfd94jmf0nOi8ZZay+nOKbBUkOe2VNaupQ==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.2", + "packageName": "follow-redirects", + "hash": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.3", + "packageName": "for-each", + "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.1.1", + "packageName": "foreground-child", + "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" + } + }, + "npm:fork-ts-checker-webpack-plugin": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin", + "data": { + "version": "6.5.0", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, + "npm:formdata-polyfill": { + "type": "npm", + "name": "npm:formdata-polyfill", + "data": { + "version": "4.0.10", + "packageName": "formdata-polyfill", + "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "4.2.0", + "packageName": "fraction.js", + "hash": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "0.5.2", + "packageName": "fresh", + "hash": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + } + }, + "npm:fs-constants": { + "type": "npm", + "name": "npm:fs-constants", + "data": { + "version": "1.0.0", + "packageName": "fs-constants", + "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:fs-extra@11.1.1": { + "type": "npm", + "name": "npm:fs-extra@11.1.1", + "data": { + "version": "11.1.1", + "packageName": "fs-extra", + "hash": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==" + } + }, + "npm:fs-extra@9.1.0": { + "type": "npm", + "name": "npm:fs-extra@9.1.0", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:fs-extra@7.0.1": { + "type": "npm", + "name": "npm:fs-extra@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "fs-extra", + "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" + } + }, + "npm:fs-minipass@2.1.0": { + "type": "npm", + "name": "npm:fs-minipass@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "3.0.1", + "packageName": "fs-minipass", + "hash": "sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.3", + "packageName": "fs-monkey", + "hash": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + } + }, + "npm:fsevents@2.3.2": { + "type": "npm", + "name": "npm:fsevents@2.3.2", + "data": { + "version": "2.3.2", + "packageName": "fsevents", + "hash": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" + } + }, + "npm:function-bind@1.1.1": { + "type": "npm", + "name": "npm:function-bind@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "function-bind", + "hash": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + } + }, + "npm:function.prototype.name@1.1.5": { + "type": "npm", + "name": "npm:function.prototype.name@1.1.5", + "data": { + "version": "1.1.5", + "packageName": "function.prototype.name", + "hash": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==" + } + }, + "npm:functions-have-names": { + "type": "npm", + "name": "npm:functions-have-names", + "data": { + "version": "1.2.3", + "packageName": "functions-have-names", + "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + } + }, + "npm:gauge": { + "type": "npm", + "name": "npm:gauge", + "data": { + "version": "4.0.4", + "packageName": "gauge", + "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" + } + }, + "npm:gensequence@5.0.2": { + "type": "npm", + "name": "npm:gensequence@5.0.2", + "data": { + "version": "5.0.2", + "packageName": "gensequence", + "hash": "sha512-JlKEZnFc6neaeSVlkzBGGgkIoIaSxMgvdamRoPN8r3ozm2r9dusqxeKqYQ7lhzmj2UhFQP8nkyfCaiLQxiLrDA==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:get-func-name@2.0.0": { + "type": "npm", + "name": "npm:get-func-name@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "get-func-name", + "hash": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==" + } + }, + "npm:get-intrinsic@1.2.1": { + "type": "npm", + "name": "npm:get-intrinsic@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "get-intrinsic", + "hash": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==" + } + }, + "npm:get-own-enumerable-property-symbols": { + "type": "npm", + "name": "npm:get-own-enumerable-property-symbols", + "data": { + "version": "3.0.2", + "packageName": "get-own-enumerable-property-symbols", + "hash": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + } + }, + "npm:get-package-type": { + "type": "npm", + "name": "npm:get-package-type", + "data": { + "version": "0.1.0", + "packageName": "get-package-type", + "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + } + }, + "npm:get-pkg-repo": { + "type": "npm", + "name": "npm:get-pkg-repo", + "data": { + "version": "4.2.1", + "packageName": "get-pkg-repo", + "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "5.1.1", + "packageName": "get-port", + "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" + } + }, + "npm:get-stdin@8.0.0": { + "type": "npm", + "name": "npm:get-stdin@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "get-stdin", + "hash": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" + } + }, + "npm:get-stdin": { + "type": "npm", + "name": "npm:get-stdin", + "data": { + "version": "9.0.0", + "packageName": "get-stdin", + "hash": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==" + } + }, + "npm:get-stream@6.0.0": { + "type": "npm", + "name": "npm:get-stream@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "get-stream", + "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" + } + }, + "npm:get-stream@4.1.0": { + "type": "npm", + "name": "npm:get-stream@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "get-stream", + "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + } + }, + "npm:get-stream@5.2.0": { + "type": "npm", + "name": "npm:get-stream@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "get-stream", + "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.0", + "packageName": "get-symbol-description", + "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" + } + }, + "npm:get-tsconfig@4.5.0": { + "type": "npm", + "name": "npm:get-tsconfig@4.5.0", + "data": { + "version": "4.5.0", + "packageName": "get-tsconfig", + "hash": "sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==" + } + }, + "npm:git-raw-commits": { + "type": "npm", + "name": "npm:git-raw-commits", + "data": { + "version": "3.0.0", + "packageName": "git-raw-commits", + "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" + } + }, + "npm:git-remote-origin-url": { + "type": "npm", + "name": "npm:git-remote-origin-url", + "data": { + "version": "2.0.0", + "packageName": "git-remote-origin-url", + "hash": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=" + } + }, + "npm:git-semver-tags": { + "type": "npm", + "name": "npm:git-semver-tags", + "data": { + "version": "5.0.0", + "packageName": "git-semver-tags", + "hash": "sha512-fZ+tmZ1O5aXW/T5nLzZLbxWAHdQTLLXalOECMNAmhoEQSfqZjtaeMjpsXH4C5qVhrICTkVQeQFujB1lKzIHljA==" + } + }, + "npm:git-up": { + "type": "npm", + "name": "npm:git-up", + "data": { + "version": "7.0.0", + "packageName": "git-up", + "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" + } + }, + "npm:git-url-parse": { + "type": "npm", + "name": "npm:git-url-parse", + "data": { + "version": "13.1.0", + "packageName": "git-url-parse", + "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" + } + }, + "npm:gitconfiglocal": { + "type": "npm", + "name": "npm:gitconfiglocal", + "data": { + "version": "1.0.0", + "packageName": "gitconfiglocal", + "hash": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=" + } + }, + "npm:github-slugger": { + "type": "npm", + "name": "npm:github-slugger", + "data": { + "version": "1.4.0", + "packageName": "github-slugger", + "hash": "sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-parent@6.0.2": { + "type": "npm", + "name": "npm:glob-parent@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:glob@10.3.3": { + "type": "npm", + "name": "npm:glob@10.3.3", + "data": { + "version": "10.3.3", + "packageName": "glob", + "hash": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==" + } + }, + "npm:glob@7.1.4": { + "type": "npm", + "name": "npm:glob@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "glob", + "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" + } + }, + "npm:glob@7.1.6": { + "type": "npm", + "name": "npm:glob@7.1.6", + "data": { + "version": "7.1.6", + "packageName": "glob", + "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" + } + }, + "npm:glob@7.2.3": { + "type": "npm", + "name": "npm:glob@7.2.3", + "data": { + "version": "7.2.3", + "packageName": "glob", + "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" + } + }, + "npm:glob@8.1.0": { + "type": "npm", + "name": "npm:glob@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "glob", + "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" + } + }, + "npm:glob@9.3.5": { + "type": "npm", + "name": "npm:glob@9.3.5", + "data": { + "version": "9.3.5", + "packageName": "glob", + "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" + } + }, + "npm:glob@10.2.7": { + "type": "npm", + "name": "npm:glob@10.2.7", + "data": { + "version": "10.2.7", + "packageName": "glob", + "hash": "sha512-jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA==" + } + }, + "npm:global-dirs@0.1.1": { + "type": "npm", + "name": "npm:global-dirs@0.1.1", + "data": { + "version": "0.1.1", + "packageName": "global-dirs", + "hash": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==" + } + }, + "npm:global-dirs@3.0.0": { + "type": "npm", + "name": "npm:global-dirs@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "global-dirs", + "hash": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==" + } + }, + "npm:global-modules": { + "type": "npm", + "name": "npm:global-modules", + "data": { + "version": "2.0.0", + "packageName": "global-modules", + "hash": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==" + } + }, + "npm:global-prefix": { + "type": "npm", + "name": "npm:global-prefix", + "data": { + "version": "3.0.0", + "packageName": "global-prefix", + "hash": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:globals@13.20.0": { + "type": "npm", + "name": "npm:globals@13.20.0", + "data": { + "version": "13.20.0", + "packageName": "globals", + "hash": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.3", + "packageName": "globalthis", + "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:globby@13.1.1": { + "type": "npm", + "name": "npm:globby@13.1.1", + "data": { + "version": "13.1.1", + "packageName": "globby", + "hash": "sha512-XMzoDZbGZ37tufiv7g0N4F/zp3zkwdFtVbV3EHsVl1KQr4RPLfNoT068/97RPshz2J5xYNEjLKKBKaGHifBd3Q==" + } + }, + "npm:globjoin": { + "type": "npm", + "name": "npm:globjoin", + "data": { + "version": "0.1.4", + "packageName": "globjoin", + "hash": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.0.1", + "packageName": "gopd", + "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" + } + }, + "npm:got": { + "type": "npm", + "name": "npm:got", + "data": { + "version": "9.6.0", + "packageName": "got", + "hash": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:graphemer": { + "type": "npm", + "name": "npm:graphemer", + "data": { + "version": "1.4.0", + "packageName": "graphemer", + "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + } + }, + "npm:gray-matter": { + "type": "npm", + "name": "npm:gray-matter", + "data": { + "version": "4.0.3", + "packageName": "gray-matter", + "hash": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==" + } + }, + "npm:growl@1.10.5": { + "type": "npm", + "name": "npm:growl@1.10.5", + "data": { + "version": "1.10.5", + "packageName": "growl", + "hash": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==" + } + }, + "npm:gzip-size": { + "type": "npm", + "name": "npm:gzip-size", + "data": { + "version": "6.0.0", + "packageName": "gzip-size", + "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" + } + }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.1", + "packageName": "handle-thing", + "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + } + }, + "npm:handlebars": { + "type": "npm", + "name": "npm:handlebars", + "data": { + "version": "4.7.7", + "packageName": "handlebars", + "hash": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==" + } + }, + "npm:hard-rejection": { + "type": "npm", + "name": "npm:hard-rejection", + "data": { + "version": "2.1.0", + "packageName": "hard-rejection", + "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" + } + }, + "npm:harmony-reflect": { + "type": "npm", + "name": "npm:harmony-reflect", + "data": { + "version": "1.6.2", + "packageName": "harmony-reflect", + "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.0.2", + "packageName": "has-bigints", + "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + } + }, + "npm:has-flag@3.0.0": { + "type": "npm", + "name": "npm:has-flag@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:has-own-prop": { + "type": "npm", + "name": "npm:has-own-prop", + "data": { + "version": "2.0.0", + "packageName": "has-own-prop", + "hash": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.0", + "packageName": "has-property-descriptors", + "hash": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.0.1", + "packageName": "has-proto", + "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.0.3", + "packageName": "has-symbols", + "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.0", + "packageName": "has-tostringtag", + "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + } + }, + "npm:has-unicode": { + "type": "npm", + "name": "npm:has-unicode", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + } + }, + "npm:has-yarn": { + "type": "npm", + "name": "npm:has-yarn", + "data": { + "version": "2.1.0", + "packageName": "has-yarn", + "hash": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==" + } + }, + "npm:has": { + "type": "npm", + "name": "npm:has", + "data": { + "version": "1.0.3", + "packageName": "has", + "hash": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" + } + }, + "npm:hast-to-hyperscript": { + "type": "npm", + "name": "npm:hast-to-hyperscript", + "data": { + "version": "9.0.1", + "packageName": "hast-to-hyperscript", + "hash": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==" + } + }, + "npm:hast-util-from-parse5": { + "type": "npm", + "name": "npm:hast-util-from-parse5", + "data": { + "version": "6.0.1", + "packageName": "hast-util-from-parse5", + "hash": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==" + } + }, + "npm:hast-util-parse-selector": { + "type": "npm", + "name": "npm:hast-util-parse-selector", + "data": { + "version": "2.2.5", + "packageName": "hast-util-parse-selector", + "hash": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" + } + }, + "npm:hast-util-raw": { + "type": "npm", + "name": "npm:hast-util-raw", + "data": { + "version": "6.0.1", + "packageName": "hast-util-raw", + "hash": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==" + } + }, + "npm:hast-util-to-parse5": { + "type": "npm", + "name": "npm:hast-util-to-parse5", + "data": { + "version": "6.0.0", + "packageName": "hast-util-to-parse5", + "hash": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==" + } + }, + "npm:hastscript": { + "type": "npm", + "name": "npm:hastscript", + "data": { + "version": "6.0.0", + "packageName": "hastscript", + "hash": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:history": { + "type": "npm", + "name": "npm:history", + "data": { + "version": "4.10.1", + "packageName": "history", + "hash": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" + } + }, + "npm:hoist-non-react-statics": { + "type": "npm", + "name": "npm:hoist-non-react-statics", + "data": { + "version": "3.3.2", + "packageName": "hoist-non-react-statics", + "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" + } + }, + "npm:hosted-git-info@2.8.9": { + "type": "npm", + "name": "npm:hosted-git-info@2.8.9", + "data": { + "version": "2.8.9", + "packageName": "hosted-git-info", + "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + } + }, + "npm:hosted-git-info@3.0.8": { + "type": "npm", + "name": "npm:hosted-git-info@3.0.8", + "data": { + "version": "3.0.8", + "packageName": "hosted-git-info", + "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" + } + }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "4.0.2", + "packageName": "hosted-git-info", + "hash": "sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==" + } + }, + "npm:hosted-git-info@6.1.1": { + "type": "npm", + "name": "npm:hosted-git-info@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "hosted-git-info", + "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" + } + }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.3.2", + "packageName": "html-entities", + "hash": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==" + } + }, + "npm:html-escaper": { + "type": "npm", + "name": "npm:html-escaper", + "data": { + "version": "2.0.2", + "packageName": "html-escaper", + "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + } + }, + "npm:html-minifier-terser": { + "type": "npm", + "name": "npm:html-minifier-terser", + "data": { + "version": "6.1.0", + "packageName": "html-minifier-terser", + "hash": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==" + } + }, + "npm:html-tags": { + "type": "npm", + "name": "npm:html-tags", + "data": { + "version": "3.3.1", + "packageName": "html-tags", + "hash": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==" + } + }, + "npm:html-void-elements": { + "type": "npm", + "name": "npm:html-void-elements", + "data": { + "version": "1.0.5", + "packageName": "html-void-elements", + "hash": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" + } + }, + "npm:html-webpack-plugin": { + "type": "npm", + "name": "npm:html-webpack-plugin", + "data": { + "version": "5.5.0", + "packageName": "html-webpack-plugin", + "hash": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==" + } + }, + "npm:htmlparser2": { + "type": "npm", + "name": "npm:htmlparser2", + "data": { + "version": "6.1.0", + "packageName": "htmlparser2", + "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" + } + }, + "npm:htmlparser2@8.0.1": { + "type": "npm", + "name": "npm:htmlparser2@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "htmlparser2", + "hash": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==" + } + }, + "npm:http-cache-semantics": { + "type": "npm", + "name": "npm:http-cache-semantics", + "data": { + "version": "4.1.1", + "packageName": "http-cache-semantics", + "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + } + }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "2.0.0", + "packageName": "http-errors", + "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" + } + }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.3", + "packageName": "http-parser-js", + "hash": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.6", + "packageName": "http-proxy-middleware", + "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "https-proxy-agent", + "hash": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "npm:human-signals@4.3.1": { + "type": "npm", + "name": "npm:human-signals@4.3.1", + "data": { + "version": "4.3.1", + "packageName": "human-signals", + "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + } + }, + "npm:humanize-ms": { + "type": "npm", + "name": "npm:humanize-ms", + "data": { + "version": "1.2.1", + "packageName": "humanize-ms", + "hash": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=" + } + }, + "npm:husky": { + "type": "npm", + "name": "npm:husky", + "data": { + "version": "8.0.3", + "packageName": "husky", + "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "npm:iconv-lite@0.6.3": { + "type": "npm", + "name": "npm:iconv-lite@0.6.3", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, + "npm:idb": { + "type": "npm", + "name": "npm:idb", + "data": { + "version": "7.1.0", + "packageName": "idb", + "hash": "sha512-Wsk07aAxDsntgYJY4h0knZJuTxM73eQ4reRAO+Z1liOh8eMCJ/MoDS8fCui1vGT9mnjtl1sOu3I2i/W1swPYZg==" + } + }, + "npm:identity-obj-proxy": { + "type": "npm", + "name": "npm:identity-obj-proxy", + "data": { + "version": "3.0.0", + "packageName": "identity-obj-proxy", + "hash": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore-walk": { + "type": "npm", + "name": "npm:ignore-walk", + "data": { + "version": "5.0.1", + "packageName": "ignore-walk", + "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" + } + }, + "npm:ignore-walk@6.0.2": { + "type": "npm", + "name": "npm:ignore-walk@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "ignore-walk", + "hash": "sha512-ezmQ1Dg2b3jVZh2Dh+ar6Eu2MqNSTkyb32HU2MAQQQX9tKM3q/UQ/9lf03lQ5hW+fOeoMnwxwkleZ0xcNp0/qg==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.2.4", + "packageName": "ignore", + "hash": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + } + }, + "npm:image-size": { + "type": "npm", + "name": "npm:image-size", + "data": { + "version": "1.0.1", + "packageName": "image-size", + "hash": "sha512-VAwkvNSNGClRw9mDHhc5Efax8PLlsOGcUTh0T/LIriC8vPA3U5PdqXWqkz406MoYHMKW8Uf9gWr05T/rYB44kQ==" + } + }, + "npm:immer": { + "type": "npm", + "name": "npm:immer", + "data": { + "version": "9.0.12", + "packageName": "immer", + "hash": "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.0", + "packageName": "import-fresh", + "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + } + }, + "npm:import-lazy@2.1.0": { + "type": "npm", + "name": "npm:import-lazy@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "import-lazy", + "hash": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" + } + }, + "npm:import-lazy": { + "type": "npm", + "name": "npm:import-lazy", + "data": { + "version": "4.0.0", + "packageName": "import-lazy", + "hash": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:import-meta-resolve@2.2.2": { + "type": "npm", + "name": "npm:import-meta-resolve@2.2.2", + "data": { + "version": "2.2.2", + "packageName": "import-meta-resolve", + "hash": "sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:indent-string@5.0.0": { + "type": "npm", + "name": "npm:indent-string@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "indent-string", + "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" + } + }, + "npm:infer-owner@1.0.4": { + "type": "npm", + "name": "npm:infer-owner@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "infer-owner", + "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + } + }, + "npm:infima": { + "type": "npm", + "name": "npm:infima", + "data": { + "version": "0.2.0-alpha.43", + "packageName": "infima", + "hash": "sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==" + } + }, + "npm:inflight": { + "type": "npm", + "name": "npm:inflight", + "data": { + "version": "1.0.6", + "packageName": "inflight", + "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + }, + "npm:ini@2.0.0": { + "type": "npm", + "name": "npm:ini@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ini", + "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:ini@3.0.1": { + "type": "npm", + "name": "npm:ini@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "ini", + "hash": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==" + } + }, + "npm:init-package-json": { + "type": "npm", + "name": "npm:init-package-json", + "data": { + "version": "5.0.0", + "packageName": "init-package-json", + "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" + } + }, + "npm:inline-style-parser": { + "type": "npm", + "name": "npm:inline-style-parser", + "data": { + "version": "0.1.1", + "packageName": "inline-style-parser", + "hash": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + } + }, + "npm:inquirer": { + "type": "npm", + "name": "npm:inquirer", + "data": { + "version": "8.2.4", + "packageName": "inquirer", + "hash": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.5", + "packageName": "internal-slot", + "hash": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==" + } + }, + "npm:interpret": { + "type": "npm", + "name": "npm:interpret", + "data": { + "version": "1.4.0", + "packageName": "interpret", + "hash": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + } + }, + "npm:invariant": { + "type": "npm", + "name": "npm:invariant", + "data": { + "version": "2.2.4", + "packageName": "invariant", + "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" + } + }, + "npm:ip": { + "type": "npm", + "name": "npm:ip", + "data": { + "version": "1.1.5", + "packageName": "ip", + "hash": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:ipaddr.js@2.0.1": { + "type": "npm", + "name": "npm:ipaddr.js@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "ipaddr.js", + "hash": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" + } + }, + "npm:is-alphabetical": { + "type": "npm", + "name": "npm:is-alphabetical", + "data": { + "version": "1.0.4", + "packageName": "is-alphabetical", + "hash": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" + } + }, + "npm:is-alphanumerical": { + "type": "npm", + "name": "npm:is-alphanumerical", + "data": { + "version": "1.0.4", + "packageName": "is-alphanumerical", + "hash": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==" + } + }, + "npm:is-arguments": { + "type": "npm", + "name": "npm:is-arguments", + "data": { + "version": "1.1.1", + "packageName": "is-arguments", + "hash": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.2", + "packageName": "is-array-buffer", + "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.4", + "packageName": "is-bigint", + "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + } + }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.1.2", + "packageName": "is-boolean-object", + "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" + } + }, + "npm:is-buffer": { + "type": "npm", + "name": "npm:is-buffer", + "data": { + "version": "2.0.5", + "packageName": "is-buffer", + "hash": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" + } + }, + "npm:is-builtin-module": { + "type": "npm", + "name": "npm:is-builtin-module", + "data": { + "version": "3.2.1", + "packageName": "is-builtin-module", + "hash": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.7", + "packageName": "is-callable", + "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + } + }, + "npm:is-ci": { + "type": "npm", + "name": "npm:is-ci", + "data": { + "version": "3.0.1", + "packageName": "is-ci", + "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" + } + }, + "npm:is-ci@2.0.0": { + "type": "npm", + "name": "npm:is-ci@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-ci", + "hash": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" + } + }, + "npm:is-core-module@2.12.1": { + "type": "npm", + "name": "npm:is-core-module@2.12.1", + "data": { + "version": "2.12.1", + "packageName": "is-core-module", + "hash": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.0.5", + "packageName": "is-date-object", + "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" + } + }, + "npm:is-decimal": { + "type": "npm", + "name": "npm:is-decimal", + "data": { + "version": "1.0.4", + "packageName": "is-decimal", + "hash": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:is-extendable": { + "type": "npm", + "name": "npm:is-extendable", + "data": { + "version": "0.1.1", + "packageName": "is-extendable", + "hash": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + } + }, + "npm:is-fullwidth-code-point@2.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:is-fullwidth-code-point@4.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" + } + }, + "npm:is-generator-fn": { + "type": "npm", + "name": "npm:is-generator-fn", + "data": { + "version": "2.1.0", + "packageName": "is-generator-fn", + "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:is-hexadecimal": { + "type": "npm", + "name": "npm:is-hexadecimal", + "data": { + "version": "1.0.4", + "packageName": "is-hexadecimal", + "hash": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==" + } + }, + "npm:is-installed-globally": { + "type": "npm", + "name": "npm:is-installed-globally", + "data": { + "version": "0.4.0", + "packageName": "is-installed-globally", + "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:is-lambda": { + "type": "npm", + "name": "npm:is-lambda", + "data": { + "version": "1.0.1", + "packageName": "is-lambda", + "hash": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" + } + }, + "npm:is-map": { + "type": "npm", + "name": "npm:is-map", + "data": { + "version": "2.0.2", + "packageName": "is-map", + "hash": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" + } + }, + "npm:is-module": { + "type": "npm", + "name": "npm:is-module", + "data": { + "version": "1.0.0", + "packageName": "is-module", + "hash": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.2", + "packageName": "is-negative-zero", + "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + } + }, + "npm:is-npm": { + "type": "npm", + "name": "npm:is-npm", + "data": { + "version": "5.0.0", + "packageName": "is-npm", + "hash": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.0.7", + "packageName": "is-number-object", + "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-obj@1.0.1": { + "type": "npm", + "name": "npm:is-obj@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-obj", + "hash": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + } + }, + "npm:is-obj": { + "type": "npm", + "name": "npm:is-obj", + "data": { + "version": "2.0.0", + "packageName": "is-obj", + "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + }, + "npm:is-path-cwd": { + "type": "npm", + "name": "npm:is-path-cwd", + "data": { + "version": "2.2.0", + "packageName": "is-path-cwd", + "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "3.0.3", + "packageName": "is-path-inside", + "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + } + }, + "npm:is-plain-obj@1.1.0": { + "type": "npm", + "name": "npm:is-plain-obj@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "2.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + } + }, + "npm:is-plain-obj@3.0.0": { + "type": "npm", + "name": "npm:is-plain-obj@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-object@2.0.4": { + "type": "npm", + "name": "npm:is-plain-object@2.0.4", + "data": { + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + } + }, + "npm:is-plain-object": { + "type": "npm", + "name": "npm:is-plain-object", + "data": { + "version": "5.0.0", + "packageName": "is-plain-object", + "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.1.4", + "packageName": "is-regex", + "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + } + }, + "npm:is-regexp": { + "type": "npm", + "name": "npm:is-regexp", + "data": { + "version": "1.0.0", + "packageName": "is-regexp", + "hash": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + } + }, + "npm:is-root": { + "type": "npm", + "name": "npm:is-root", + "data": { + "version": "2.1.0", + "packageName": "is-root", + "hash": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + } + }, + "npm:is-set": { + "type": "npm", + "name": "npm:is-set", + "data": { + "version": "2.0.2", + "packageName": "is-set", + "hash": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.2", + "packageName": "is-shared-array-buffer", + "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" + } + }, + "npm:is-ssh": { + "type": "npm", + "name": "npm:is-ssh", + "data": { + "version": "1.4.0", + "packageName": "is-ssh", + "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" + } + }, + "npm:is-stream@2.0.0": { + "type": "npm", + "name": "npm:is-stream@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-stream", + "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.1", + "packageName": "is-stream", + "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + } + }, + "npm:is-stream@3.0.0": { + "type": "npm", + "name": "npm:is-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-stream", + "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.0.4", + "packageName": "is-symbol", + "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" + } + }, + "npm:is-text-path": { + "type": "npm", + "name": "npm:is-text-path", + "data": { + "version": "1.0.1", + "packageName": "is-text-path", + "hash": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.12", + "packageName": "is-typed-array", + "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" + } + }, + "npm:is-typedarray": { + "type": "npm", + "name": "npm:is-typedarray", + "data": { + "version": "1.0.0", + "packageName": "is-typedarray", + "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:is-weakmap": { + "type": "npm", + "name": "npm:is-weakmap", + "data": { + "version": "2.0.1", + "packageName": "is-weakmap", + "hash": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.0.2", + "packageName": "is-weakref", + "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" + } + }, + "npm:is-weakset": { + "type": "npm", + "name": "npm:is-weakset", + "data": { + "version": "2.0.2", + "packageName": "is-weakset", + "hash": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==" + } + }, + "npm:is-whitespace-character": { + "type": "npm", + "name": "npm:is-whitespace-character", + "data": { + "version": "1.0.4", + "packageName": "is-whitespace-character", + "hash": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" + } + }, + "npm:is-word-character": { + "type": "npm", + "name": "npm:is-word-character", + "data": { + "version": "1.0.4", + "packageName": "is-word-character", + "hash": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:is-yarn-global": { + "type": "npm", + "name": "npm:is-yarn-global", + "data": { + "version": "0.3.0", + "packageName": "is-yarn-global", + "hash": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" + } + }, + "npm:isarray@0.0.1": { + "type": "npm", + "name": "npm:isarray@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "isarray", + "hash": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:isarray@1.0.0": { + "type": "npm", + "name": "npm:isarray@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + }, + "npm:istanbul-lib-coverage": { + "type": "npm", + "name": "npm:istanbul-lib-coverage", + "data": { + "version": "3.2.0", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "5.2.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" + } + }, + "npm:istanbul-lib-report": { + "type": "npm", + "name": "npm:istanbul-lib-report", + "data": { + "version": "3.0.1", + "packageName": "istanbul-lib-report", + "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" + } + }, + "npm:istanbul-lib-source-maps": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps", + "data": { + "version": "4.0.1", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" + } + }, + "npm:istanbul-reports": { + "type": "npm", + "name": "npm:istanbul-reports", + "data": { + "version": "3.1.6", + "packageName": "istanbul-reports", + "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" + } + }, + "npm:jackspeak@2.2.1": { + "type": "npm", + "name": "npm:jackspeak@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "jackspeak", + "hash": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.8.5", + "packageName": "jake", + "hash": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==" + } + }, + "npm:jest-changed-files@29.5.0": { + "type": "npm", + "name": "npm:jest-changed-files@29.5.0", + "data": { + "version": "29.5.0", + "packageName": "jest-changed-files", + "hash": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==" + } + }, + "npm:jest-circus@29.6.2": { + "type": "npm", + "name": "npm:jest-circus@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-circus", + "hash": "sha512-G9mN+KOYIUe2sB9kpJkO9Bk18J4dTDArNFPwoZ7WKHKel55eKIS/u2bLthxgojwlf9NLCVQfgzM/WsOVvoC6Fw==" + } + }, + "npm:jest-cli@29.6.2": { + "type": "npm", + "name": "npm:jest-cli@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-cli", + "hash": "sha512-TT6O247v6dCEX2UGHGyflMpxhnrL0DNqP2fRTKYm3nJJpCTfXX3GCMQPGFjXDoj0i5/Blp3jriKXFgdfmbYB6Q==" + } + }, + "npm:jest-config@29.6.2": { + "type": "npm", + "name": "npm:jest-config@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-config", + "hash": "sha512-VxwFOC8gkiJbuodG9CPtMRjBUNZEHxwfQXmIudSTzFWxaci3Qub1ddTRbFNQlD/zUeaifLndh/eDccFX4wCMQw==" + } + }, + "npm:jest-diff@29.6.2": { + "type": "npm", + "name": "npm:jest-diff@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-diff", + "hash": "sha512-t+ST7CB9GX5F2xKwhwCf0TAR17uNDiaPTZnVymP9lw0lssa9vG+AFyDZoeIHStU3WowFFwT+ky+er0WVl2yGhA==" + } + }, + "npm:jest-docblock@29.4.3": { + "type": "npm", + "name": "npm:jest-docblock@29.4.3", + "data": { + "version": "29.4.3", + "packageName": "jest-docblock", + "hash": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==" + } + }, + "npm:jest-each@29.6.2": { + "type": "npm", + "name": "npm:jest-each@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-each", + "hash": "sha512-MsrsqA0Ia99cIpABBc3izS1ZYoYfhIy0NNWqPSE0YXbQjwchyt6B1HD2khzyPe1WiJA7hbxXy77ZoUQxn8UlSw==" + } + }, + "npm:jest-environment-node@29.6.2": { + "type": "npm", + "name": "npm:jest-environment-node@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-environment-node", + "hash": "sha512-YGdFeZ3T9a+/612c5mTQIllvWkddPbYcN2v95ZH24oWMbGA4GGS2XdIF92QMhUhvrjjuQWYgUGW2zawOyH63MQ==" + } + }, + "npm:jest-get-type@29.4.3": { + "type": "npm", + "name": "npm:jest-get-type@29.4.3", + "data": { + "version": "29.4.3", + "packageName": "jest-get-type", + "hash": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==" + } + }, + "npm:jest-haste-map@29.6.2": { + "type": "npm", + "name": "npm:jest-haste-map@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-haste-map", + "hash": "sha512-+51XleTDAAysvU8rT6AnS1ZJ+WHVNqhj1k6nTvN2PYP+HjU3kqlaKQ1Lnw3NYW3bm2r8vq82X0Z1nDDHZMzHVA==" + } + }, + "npm:jest-leak-detector@29.6.2": { + "type": "npm", + "name": "npm:jest-leak-detector@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-leak-detector", + "hash": "sha512-aNqYhfp5uYEO3tdWMb2bfWv6f0b4I0LOxVRpnRLAeque2uqOVVMLh6khnTcE2qJ5wAKop0HcreM1btoysD6bPQ==" + } + }, + "npm:jest-matcher-utils@29.6.2": { + "type": "npm", + "name": "npm:jest-matcher-utils@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-matcher-utils", + "hash": "sha512-4LiAk3hSSobtomeIAzFTe+N8kL6z0JtF3n6I4fg29iIW7tt99R7ZcIFW34QkX+DuVrf+CUe6wuVOpm7ZKFJzZQ==" + } + }, + "npm:jest-message-util@29.6.2": { + "type": "npm", + "name": "npm:jest-message-util@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-message-util", + "hash": "sha512-vnIGYEjoPSuRqV8W9t+Wow95SDp6KPX2Uf7EoeG9G99J2OVh7OSwpS4B6J0NfpEIpfkBNHlBZpA2rblEuEFhZQ==" + } + }, + "npm:jest-mock@29.6.2": { + "type": "npm", + "name": "npm:jest-mock@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-mock", + "hash": "sha512-hoSv3lb3byzdKfwqCuT6uTscan471GUECqgNYykg6ob0yiAw3zYc7OrPnI9Qv8Wwoa4lC7AZ9hyS4AiIx5U2zg==" + } + }, + "npm:jest-pnp-resolver": { + "type": "npm", + "name": "npm:jest-pnp-resolver", + "data": { + "version": "1.2.3", + "packageName": "jest-pnp-resolver", + "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" + } + }, + "npm:jest-regex-util@29.4.3": { + "type": "npm", + "name": "npm:jest-regex-util@29.4.3", + "data": { + "version": "29.4.3", + "packageName": "jest-regex-util", + "hash": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==" + } + }, + "npm:jest-resolve-dependencies@29.6.2": { + "type": "npm", + "name": "npm:jest-resolve-dependencies@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-LGqjDWxg2fuQQm7ypDxduLu/m4+4Lb4gczc13v51VMZbVP5tSBILqVx8qfWcsdP8f0G7aIqByIALDB0R93yL+w==" + } + }, + "npm:jest-resolve@29.6.2": { + "type": "npm", + "name": "npm:jest-resolve@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-resolve", + "hash": "sha512-G/iQUvZWI5e3SMFssc4ug4dH0aZiZpsDq9o1PtXTV1210Ztyb2+w+ZgQkB3iOiC5SmAEzJBOHWz6Hvrd+QnNPw==" + } + }, + "npm:jest-runner@29.6.2": { + "type": "npm", + "name": "npm:jest-runner@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-runner", + "hash": "sha512-wXOT/a0EspYgfMiYHxwGLPCZfC0c38MivAlb2lMEAlwHINKemrttu1uSbcGbfDV31sFaPWnWJPmb2qXM8pqZ4w==" + } + }, + "npm:jest-runtime@29.6.2": { + "type": "npm", + "name": "npm:jest-runtime@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-runtime", + "hash": "sha512-2X9dqK768KufGJyIeLmIzToDmsN0m7Iek8QNxRSI/2+iPFYHF0jTwlO3ftn7gdKd98G/VQw9XJCk77rbTGZnJg==" + } + }, + "npm:jest-snapshot@29.6.2": { + "type": "npm", + "name": "npm:jest-snapshot@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-snapshot", + "hash": "sha512-1OdjqvqmRdGNvWXr/YZHuyhh5DeaLp1p/F8Tht/MrMw4Kr1Uu/j4lRG+iKl1DAqUJDWxtQBMk41Lnf/JETYBRA==" + } + }, + "npm:jest-specific-snapshot": { + "type": "npm", + "name": "npm:jest-specific-snapshot", + "data": { + "version": "8.0.0", + "packageName": "jest-specific-snapshot", + "hash": "sha512-PjK0cqPbN3ZGU1pdP78YBEFMsS1AsV28hIHg249E0v/bTtGAJqDm7lNDLj0Cs0O26P2sulbXbgEQU9xLm34WmA==" + } + }, + "npm:jest-util@29.6.2": { + "type": "npm", + "name": "npm:jest-util@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-util", + "hash": "sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w==" + } + }, + "npm:jest-validate@29.6.2": { + "type": "npm", + "name": "npm:jest-validate@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-validate", + "hash": "sha512-vGz0yMN5fUFRRbpJDPwxMpgSXW1LDKROHfBopAvDcmD6s+B/s8WJrwi+4bfH4SdInBA5C3P3BI19dBtKzx1Arg==" + } + }, + "npm:jest-watcher@29.6.2": { + "type": "npm", + "name": "npm:jest-watcher@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-watcher", + "hash": "sha512-GZitlqkMkhkefjfN/p3SJjrDaxPflqxEAv3/ik10OirZqJGYH5rPiIsgVcfof0Tdqg3shQGdEIxDBx+B4tuLzA==" + } + }, + "npm:jest-worker@26.6.2": { + "type": "npm", + "name": "npm:jest-worker@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "jest-worker", + "hash": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==" + } + }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, + "npm:jest-worker@29.6.2": { + "type": "npm", + "name": "npm:jest-worker@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-worker", + "hash": "sha512-l3ccBOabTdkng8I/ORCkADz4eSMKejTYv1vB/Z83UiubqhC1oQ5Li6dWCyqOIvSifGjUBxuvxvlm6KGK2DtuAQ==" + } + }, + "npm:jest@29.6.2": { + "type": "npm", + "name": "npm:jest@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest", + "hash": "sha512-8eQg2mqFbaP7CwfsTpCxQ+sHzw1WuNWL5UUvjnWP4hx2riGz9fPSzYOaU5q8/GqWn1TfgZIVTqYJygbGbWAANg==" + } + }, + "npm:jju": { + "type": "npm", + "name": "npm:jju", + "data": { + "version": "1.4.0", + "packageName": "jju", + "hash": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=" + } + }, + "npm:joi": { + "type": "npm", + "name": "npm:joi", + "data": { + "version": "17.6.0", + "packageName": "joi", + "hash": "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:js-yaml@4.0.0": { + "type": "npm", + "name": "npm:js-yaml@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "js-yaml", + "hash": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "4.1.0", + "packageName": "js-yaml", + "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + } + }, + "npm:js-yaml@3.14.1": { + "type": "npm", + "name": "npm:js-yaml@3.14.1", + "data": { + "version": "3.14.1", + "packageName": "js-yaml", + "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + } + }, + "npm:jsesc@2.5.2": { + "type": "npm", + "name": "npm:jsesc@2.5.2", + "data": { + "version": "2.5.2", + "packageName": "jsesc", + "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + }, + "npm:jsesc@3.0.2": { + "type": "npm", + "name": "npm:jsesc@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "jsesc", + "hash": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "0.5.0", + "packageName": "jsesc", + "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + }, + "npm:json-buffer@3.0.0": { + "type": "npm", + "name": "npm:json-buffer@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "json-buffer", + "hash": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + } + }, + "npm:json-parse-better-errors": { + "type": "npm", + "name": "npm:json-parse-better-errors", + "data": { + "version": "1.0.2", + "packageName": "json-parse-better-errors", + "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-parse-even-better-errors@3.0.0": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse@1.0.0": { + "type": "npm", + "name": "npm:json-schema-traverse@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-schema": { + "type": "npm", + "name": "npm:json-schema", + "data": { + "version": "0.4.0", + "packageName": "json-schema", + "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + } + }, + "npm:json-stable-stringify@1.0.2": { + "type": "npm", + "name": "npm:json-stable-stringify@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "json-stable-stringify", + "hash": "sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==" + } + }, + "npm:json-stringify-safe": { + "type": "npm", + "name": "npm:json-stringify-safe", + "data": { + "version": "5.0.1", + "packageName": "json-stringify-safe", + "hash": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + } + }, + "npm:json5@1.0.2": { + "type": "npm", + "name": "npm:json5@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "json5", + "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:jsonc-parser": { + "type": "npm", + "name": "npm:jsonc-parser", + "data": { + "version": "3.2.0", + "packageName": "jsonc-parser", + "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + } + }, + "npm:jsonfile@4.0.0": { + "type": "npm", + "name": "npm:jsonfile@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "jsonfile", + "hash": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:jsonify@0.0.1": { + "type": "npm", + "name": "npm:jsonify@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "jsonify", + "hash": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==" + } + }, + "npm:jsonparse": { + "type": "npm", + "name": "npm:jsonparse", + "data": { + "version": "1.3.1", + "packageName": "jsonparse", + "hash": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" + } + }, + "npm:jsonpointer": { + "type": "npm", + "name": "npm:jsonpointer", + "data": { + "version": "5.0.1", + "packageName": "jsonpointer", + "hash": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==" + } + }, + "npm:jsx-ast-utils": { + "type": "npm", + "name": "npm:jsx-ast-utils", + "data": { + "version": "3.3.5", + "packageName": "jsx-ast-utils", + "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" + } + }, + "npm:just-extend": { + "type": "npm", + "name": "npm:just-extend", + "data": { + "version": "4.2.1", + "packageName": "just-extend", + "hash": "sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==" + } + }, + "npm:keyv@3.1.0": { + "type": "npm", + "name": "npm:keyv@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "keyv", + "hash": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:klaw-sync@6.0.0": { + "type": "npm", + "name": "npm:klaw-sync@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "klaw-sync", + "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:klona": { + "type": "npm", + "name": "npm:klona", + "data": { + "version": "2.0.5", + "packageName": "klona", + "hash": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" + } + }, + "npm:known-css-properties@0.27.0": { + "type": "npm", + "name": "npm:known-css-properties@0.27.0", + "data": { + "version": "0.27.0", + "packageName": "known-css-properties", + "hash": "sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg==" + } + }, + "npm:konami-code-js": { + "type": "npm", + "name": "npm:konami-code-js", + "data": { + "version": "0.8.1", + "packageName": "konami-code-js", + "hash": "sha512-bJ0tuWYLYiUueIVTpA0MV4h4Gz1X16uuJggh5TpIWXOQoLv0238SU7Im23z2wYKCCBsOfk5j4HKWB/pqdCgu5Q==" + } + }, + "npm:konamimojisplosion": { + "type": "npm", + "name": "npm:konamimojisplosion", + "data": { + "version": "0.5.2", + "packageName": "konamimojisplosion", + "hash": "sha512-gPZ+0a720xl9OcfJOUw549fnij0xsP78GupIhl0irnJF6wwIhHSjHEp75qrXNVJb2p9Rtui5yOeJQoUcLy1lvQ==" + } + }, + "npm:language-subtag-registry": { + "type": "npm", + "name": "npm:language-subtag-registry", + "data": { + "version": "0.3.21", + "packageName": "language-subtag-registry", + "hash": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + } + }, + "npm:language-tags": { + "type": "npm", + "name": "npm:language-tags", + "data": { + "version": "1.0.5", + "packageName": "language-tags", + "hash": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==" + } + }, + "npm:latest-version": { + "type": "npm", + "name": "npm:latest-version", + "data": { + "version": "5.1.0", + "packageName": "latest-version", + "hash": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==" + } + }, + "npm:lerna@7.1.4": { + "type": "npm", + "name": "npm:lerna@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "lerna", + "hash": "sha512-/cabvmTTkmayyALIZx7OpHRex72i8xSOkiJchEkrKxAZHoLNaGSwqwKkj+x6WtmchhWl/gLlqwQXGRuxrJKiBw==" + } + }, + "npm:leven": { + "type": "npm", + "name": "npm:leven", + "data": { + "version": "3.1.0", + "packageName": "leven", + "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:libnpmaccess": { + "type": "npm", + "name": "npm:libnpmaccess", + "data": { + "version": "7.0.2", + "packageName": "libnpmaccess", + "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" + } + }, + "npm:libnpmpublish": { + "type": "npm", + "name": "npm:libnpmpublish", + "data": { + "version": "7.3.0", + "packageName": "libnpmpublish", + "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "2.1.0", + "packageName": "lilconfig", + "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + } + }, + "npm:lines-and-columns@1.2.4": { + "type": "npm", + "name": "npm:lines-and-columns@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "lines-and-columns", + "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "2.0.3", + "packageName": "lines-and-columns", + "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" + } + }, + "npm:linkify-it": { + "type": "npm", + "name": "npm:linkify-it", + "data": { + "version": "4.0.1", + "packageName": "linkify-it", + "hash": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==" + } + }, + "npm:lint-staged@13.2.3": { + "type": "npm", + "name": "npm:lint-staged@13.2.3", + "data": { + "version": "13.2.3", + "packageName": "lint-staged", + "hash": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==" + } + }, + "npm:listr2@5.0.8": { + "type": "npm", + "name": "npm:listr2@5.0.8", + "data": { + "version": "5.0.8", + "packageName": "listr2", + "hash": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==" + } + }, + "npm:load-json-file": { + "type": "npm", + "name": "npm:load-json-file", + "data": { + "version": "6.2.0", + "packageName": "load-json-file", + "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" + } + }, + "npm:load-json-file@4.0.0": { + "type": "npm", + "name": "npm:load-json-file@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "load-json-file", + "hash": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.2.0", + "packageName": "loader-runner", + "hash": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.1", + "packageName": "loader-utils", + "hash": "sha512-g4miPa9uUrZz4iElkaVJgDFwKJGh8aQGM7pUL4ejXl6cu7kSb30seQOVGNMP6sW8j7DW77X68hJZ+GM7UGhXeQ==" + } + }, + "npm:loader-utils@3.2.0": { + "type": "npm", + "name": "npm:loader-utils@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "loader-utils", + "hash": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==" + } + }, + "npm:locate-path@2.0.0": { + "type": "npm", + "name": "npm:locate-path@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "locate-path", + "hash": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" + } + }, + "npm:locate-path@3.0.0": { + "type": "npm", + "name": "npm:locate-path@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "locate-path", + "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:locate-path@6.0.0": { + "type": "npm", + "name": "npm:locate-path@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:lodash-es": { + "type": "npm", + "name": "npm:lodash-es", + "data": { + "version": "4.17.21", + "packageName": "lodash-es", + "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + } + }, + "npm:lodash.curry": { + "type": "npm", + "name": "npm:lodash.curry", + "data": { + "version": "4.1.1", + "packageName": "lodash.curry", + "hash": "sha1-JI42By7ekGUB11lmIAqG2riyMXA=" + } + }, + "npm:lodash.debounce": { + "type": "npm", + "name": "npm:lodash.debounce", + "data": { + "version": "4.0.8", + "packageName": "lodash.debounce", + "hash": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + } + }, + "npm:lodash.flow": { + "type": "npm", + "name": "npm:lodash.flow", + "data": { + "version": "3.5.0", + "packageName": "lodash.flow", + "hash": "sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o=" + } + }, + "npm:lodash.get": { + "type": "npm", + "name": "npm:lodash.get", + "data": { + "version": "4.4.2", + "packageName": "lodash.get", + "hash": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + } + }, + "npm:lodash.isequal": { + "type": "npm", + "name": "npm:lodash.isequal", + "data": { + "version": "4.5.0", + "packageName": "lodash.isequal", + "hash": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + } + }, + "npm:lodash.ismatch": { + "type": "npm", + "name": "npm:lodash.ismatch", + "data": { + "version": "4.4.0", + "packageName": "lodash.ismatch", + "hash": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:lodash.sortby": { + "type": "npm", + "name": "npm:lodash.sortby", + "data": { + "version": "4.7.0", + "packageName": "lodash.sortby", + "hash": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + } + }, + "npm:lodash.truncate": { + "type": "npm", + "name": "npm:lodash.truncate", + "data": { + "version": "4.4.2", + "packageName": "lodash.truncate", + "hash": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:log-symbols@4.0.0": { + "type": "npm", + "name": "npm:log-symbols@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "log-symbols", + "hash": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:log-update@4.0.0": { + "type": "npm", + "name": "npm:log-update@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "log-update", + "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" + } + }, + "npm:loose-envify": { + "type": "npm", + "name": "npm:loose-envify", + "data": { + "version": "1.4.0", + "packageName": "loose-envify", + "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + } + }, + "npm:loupe@2.3.6": { + "type": "npm", + "name": "npm:loupe@2.3.6", + "data": { + "version": "2.3.6", + "packageName": "loupe", + "hash": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==" + } + }, + "npm:lower-case": { + "type": "npm", + "name": "npm:lower-case", + "data": { + "version": "2.0.2", + "packageName": "lower-case", + "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + } + }, + "npm:lowercase-keys": { + "type": "npm", + "name": "npm:lowercase-keys", + "data": { + "version": "1.0.1", + "packageName": "lowercase-keys", + "hash": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + } + }, + "npm:lowercase-keys@2.0.0": { + "type": "npm", + "name": "npm:lowercase-keys@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + }, + "npm:lru-cache@5.1.1": { + "type": "npm", + "name": "npm:lru-cache@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "6.0.0", + "packageName": "lru-cache", + "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + } + }, + "npm:lru-cache@7.18.3": { + "type": "npm", + "name": "npm:lru-cache@7.18.3", + "data": { + "version": "7.18.3", + "packageName": "lru-cache", + "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" + } + }, + "npm:lru-cache@10.0.0": { + "type": "npm", + "name": "npm:lru-cache@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "lru-cache", + "hash": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==" + } + }, + "npm:lz-string": { + "type": "npm", + "name": "npm:lz-string", + "data": { + "version": "1.5.0", + "packageName": "lz-string", + "hash": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.25.9", + "packageName": "magic-string", + "hash": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "4.0.0", + "packageName": "make-dir", + "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" + } + }, + "npm:make-dir@3.1.0": { + "type": "npm", + "name": "npm:make-dir@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-error": { + "type": "npm", + "name": "npm:make-error", + "data": { + "version": "1.3.6", + "packageName": "make-error", + "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + } + }, + "npm:make-fetch-happen@10.1.5": { + "type": "npm", + "name": "npm:make-fetch-happen@10.1.5", + "data": { + "version": "10.1.5", + "packageName": "make-fetch-happen", + "hash": "sha512-mucOj2H0Jn/ax7H9K9T1bf0p1nn/mBFa551Os7ed9xRfLEx20aZhZeLslmRYfAaAqXZUGipcs+m5KOKvOH0XKA==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "11.1.1", + "packageName": "make-fetch-happen", + "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:map-obj@1.0.1": { + "type": "npm", + "name": "npm:map-obj@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "map-obj", + "hash": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" + } + }, + "npm:map-obj": { + "type": "npm", + "name": "npm:map-obj", + "data": { + "version": "4.3.0", + "packageName": "map-obj", + "hash": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==" + } + }, + "npm:markdown-escapes": { + "type": "npm", + "name": "npm:markdown-escapes", + "data": { + "version": "1.0.4", + "packageName": "markdown-escapes", + "hash": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" + } + }, + "npm:markdown-it": { + "type": "npm", + "name": "npm:markdown-it", + "data": { + "version": "13.0.1", + "packageName": "markdown-it", + "hash": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==" + } + }, + "npm:markdown-table": { + "type": "npm", + "name": "npm:markdown-table", + "data": { + "version": "3.0.3", + "packageName": "markdown-table", + "hash": "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==" + } + }, + "npm:markdownlint-cli@0.35.0": { + "type": "npm", + "name": "npm:markdownlint-cli@0.35.0", + "data": { + "version": "0.35.0", + "packageName": "markdownlint-cli", + "hash": "sha512-lVIIIV1MrUtjoocgDqXLxUCxlRbn7Ve8rsWppfwciUNwLlNS28AhNiyQ3PU7jjj4Qvj+rWTTvwkqg7AcdG988g==" + } + }, + "npm:markdownlint-micromark@0.1.5": { + "type": "npm", + "name": "npm:markdownlint-micromark@0.1.5", + "data": { + "version": "0.1.5", + "packageName": "markdownlint-micromark", + "hash": "sha512-HvofNU4QCvfUCWnocQP1IAWaqop5wpWrB0mKB6SSh0fcpV0PdmQNS6tdUuFew1utpYlUvYYzz84oDkrD76GB9A==" + } + }, + "npm:markdownlint@0.29.0": { + "type": "npm", + "name": "npm:markdownlint@0.29.0", + "data": { + "version": "0.29.0", + "packageName": "markdownlint", + "hash": "sha512-ASAzqpODstu/Qsk0xW5BPgWnK/qjpBQ4e7IpsSvvFXcfYIjanLTdwFRJK1SIEEh0fGSMKXcJf/qhaZYHyME0wA==" + } + }, + "npm:marked": { + "type": "npm", + "name": "npm:marked", + "data": { + "version": "5.1.2", + "packageName": "marked", + "hash": "sha512-ahRPGXJpjMjwSOlBoTMZAK7ATXkli5qCPxZ21TG44rx1KEo44bii4ekgTDQPNRQ4Kh7JMb9Ub1PVk1NxRSsorg==" + } + }, + "npm:mathml-tag-names": { + "type": "npm", + "name": "npm:mathml-tag-names", + "data": { + "version": "2.1.3", + "packageName": "mathml-tag-names", + "hash": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==" + } + }, + "npm:mdast-squeeze-paragraphs": { + "type": "npm", + "name": "npm:mdast-squeeze-paragraphs", + "data": { + "version": "4.0.0", + "packageName": "mdast-squeeze-paragraphs", + "hash": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==" + } + }, + "npm:mdast-util-definitions": { + "type": "npm", + "name": "npm:mdast-util-definitions", + "data": { + "version": "4.0.0", + "packageName": "mdast-util-definitions", + "hash": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==" + } + }, + "npm:mdast-util-to-hast": { + "type": "npm", + "name": "npm:mdast-util-to-hast", + "data": { + "version": "10.0.1", + "packageName": "mdast-util-to-hast", + "hash": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==" + } + }, + "npm:mdast-util-to-string": { + "type": "npm", + "name": "npm:mdast-util-to-string", + "data": { + "version": "2.0.0", + "packageName": "mdast-util-to-string", + "hash": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==" + } + }, + "npm:mdn-data@2.0.14": { + "type": "npm", + "name": "npm:mdn-data@2.0.14", + "data": { + "version": "2.0.14", + "packageName": "mdn-data", + "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.30", + "packageName": "mdn-data", + "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + } + }, + "npm:mdurl": { + "type": "npm", + "name": "npm:mdurl", + "data": { + "version": "1.0.1", + "packageName": "mdurl", + "hash": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "0.3.0", + "packageName": "media-typer", + "hash": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + } + }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.4.1", + "packageName": "memfs", + "hash": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==" + } + }, + "npm:meow@10.1.5": { + "type": "npm", + "name": "npm:meow@10.1.5", + "data": { + "version": "10.1.5", + "packageName": "meow", + "hash": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==" + } + }, + "npm:meow": { + "type": "npm", + "name": "npm:meow", + "data": { + "version": "8.1.2", + "packageName": "meow", + "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.1", + "packageName": "merge-descriptors", + "hash": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + } + }, + "npm:merge-stream": { + "type": "npm", + "name": "npm:merge-stream", + "data": { + "version": "2.0.0", + "packageName": "merge-stream", + "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:methods": { + "type": "npm", + "name": "npm:methods", + "data": { + "version": "1.1.2", + "packageName": "methods", + "hash": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + } + }, + "npm:micro-api-client": { + "type": "npm", + "name": "npm:micro-api-client", + "data": { + "version": "3.3.0", + "packageName": "micro-api-client", + "hash": "sha512-y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.5", + "packageName": "micromatch", + "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:mime-db@1.33.0": { + "type": "npm", + "name": "npm:mime-db@1.33.0", + "data": { + "version": "1.33.0", + "packageName": "mime-db", + "hash": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + } + }, + "npm:mime-types@2.1.18": { + "type": "npm", + "name": "npm:mime-types@2.1.18", + "data": { + "version": "2.1.18", + "packageName": "mime-types", + "hash": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:mime@1.6.0": { + "type": "npm", + "name": "npm:mime@1.6.0", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "2.6.0", + "packageName": "mime", + "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:mimic-fn@4.0.0": { + "type": "npm", + "name": "npm:mimic-fn@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "mimic-fn", + "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + } + }, + "npm:mimic-response": { + "type": "npm", + "name": "npm:mimic-response", + "data": { + "version": "1.0.1", + "packageName": "mimic-response", + "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + } + }, + "npm:min-indent": { + "type": "npm", + "name": "npm:min-indent", + "data": { + "version": "1.0.1", + "packageName": "min-indent", + "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + } + }, + "npm:mini-create-react-context": { + "type": "npm", + "name": "npm:mini-create-react-context", + "data": { + "version": "0.4.1", + "packageName": "mini-create-react-context", + "hash": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==" + } + }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.6.1", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, + "npm:minimatch@3.0.4": { + "type": "npm", + "name": "npm:minimatch@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "minimatch", + "hash": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" + } + }, + "npm:minimatch@3.0.5": { + "type": "npm", + "name": "npm:minimatch@3.0.5", + "data": { + "version": "3.0.5", + "packageName": "minimatch", + "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.1.2", + "packageName": "minimatch", + "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + } + }, + "npm:minimatch@5.1.6": { + "type": "npm", + "name": "npm:minimatch@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "minimatch", + "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" + } + }, + "npm:minimatch@7.4.3": { + "type": "npm", + "name": "npm:minimatch@7.4.3", + "data": { + "version": "7.4.3", + "packageName": "minimatch", + "hash": "sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==" + } + }, + "npm:minimatch@8.0.3": { + "type": "npm", + "name": "npm:minimatch@8.0.3", + "data": { + "version": "8.0.3", + "packageName": "minimatch", + "hash": "sha512-tEEvU9TkZgnFDCtpnrEYnPsjT7iUx42aXfs4bzmQ5sMA09/6hZY0jeZcGkXyDagiBOvkUjNo8Viom+Me6+2x7g==" + } + }, + "npm:minimatch@9.0.3": { + "type": "npm", + "name": "npm:minimatch@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "minimatch", + "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" + } + }, + "npm:minimist-options": { + "type": "npm", + "name": "npm:minimist-options", + "data": { + "version": "4.1.0", + "packageName": "minimist-options", + "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "1.0.2", + "packageName": "minipass-collect", + "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" + } + }, + "npm:minipass-fetch@2.1.0": { + "type": "npm", + "name": "npm:minipass-fetch@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "minipass-fetch", + "hash": "sha512-H9U4UVBGXEyyWJnqYDCLp1PwD8XIkJ4akNHp1aGVI+2Ym7wQMlxDKi4IB4JbmyU+pl9pEs/cVrK6cOuvmbK4Sg==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "3.0.1", + "packageName": "minipass-fetch", + "hash": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:minipass-json-stream": { + "type": "npm", + "name": "npm:minipass-json-stream", + "data": { + "version": "1.0.1", + "packageName": "minipass-json-stream", + "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:minipass-sized": { + "type": "npm", + "name": "npm:minipass-sized", + "data": { + "version": "1.0.3", + "packageName": "minipass-sized", + "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "3.1.6", + "packageName": "minipass", + "hash": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==" + } + }, + "npm:minipass@4.2.5": { + "type": "npm", + "name": "npm:minipass@4.2.5", + "data": { + "version": "4.2.5", + "packageName": "minipass", + "hash": "sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==" + } + }, + "npm:minipass@5.0.0": { + "type": "npm", + "name": "npm:minipass@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + } + }, + "npm:minipass@6.0.2": { + "type": "npm", + "name": "npm:minipass@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "minipass", + "hash": "sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==" + } + }, + "npm:minipass@7.0.1": { + "type": "npm", + "name": "npm:minipass@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "minipass", + "hash": "sha512-NQ8MCKimInjVlaIqx51RKJJB7mINVkLTJbsZKmto4UAAOC/CWXES8PGaOgoBZyqoUsUA/U3DToGK7GJkkHbjJw==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:mkdirp@0.5.5": { + "type": "npm", + "name": "npm:mkdirp@0.5.5", + "data": { + "version": "0.5.5", + "packageName": "mkdirp", + "hash": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:mocha@8.4.0": { + "type": "npm", + "name": "npm:mocha@8.4.0", + "data": { + "version": "8.4.0", + "packageName": "mocha", + "hash": "sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==" + } + }, + "npm:modify-values": { + "type": "npm", + "name": "npm:modify-values", + "data": { + "version": "1.0.1", + "packageName": "modify-values", + "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" + } + }, + "npm:monaco-editor@0.40.0": { + "type": "npm", + "name": "npm:monaco-editor@0.40.0", + "data": { + "version": "0.40.0", + "packageName": "monaco-editor", + "hash": "sha512-1wymccLEuFSMBvCk/jT1YDW/GuxMLYwnFwF9CDyYCxoTw2Pt379J3FUhwy9c43j51JdcxVPjwk0jm0EVDsBS2g==" + } + }, + "npm:ms@2.0.0": { + "type": "npm", + "name": "npm:ms@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ms", + "hash": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + }, + "npm:ms@2.1.2": { + "type": "npm", + "name": "npm:ms@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "ms", + "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "7.2.4", + "packageName": "multicast-dns", + "hash": "sha512-XkCYOU+rr2Ft3LI6w4ye51M3VK31qJXFIxu0XLw169PtKG0Zx47OrXeVW/GCYOfpC9s1yyyf1S+L8/4LY0J9Zw==" + } + }, + "npm:multimatch": { + "type": "npm", + "name": "npm:multimatch", + "data": { + "version": "5.0.0", + "packageName": "multimatch", + "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" + } + }, + "npm:mute-stream@0.0.8": { + "type": "npm", + "name": "npm:mute-stream@0.0.8", + "data": { + "version": "0.0.8", + "packageName": "mute-stream", + "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "1.0.0", + "packageName": "mute-stream", + "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" + } + }, + "npm:nanoid@3.1.20": { + "type": "npm", + "name": "npm:nanoid@3.1.20", + "data": { + "version": "3.1.20", + "packageName": "nanoid", + "hash": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==" + } + }, + "npm:nanoid@3.3.6": { + "type": "npm", + "name": "npm:nanoid@3.3.6", + "data": { + "version": "3.3.6", + "packageName": "nanoid", + "hash": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + } + }, + "npm:natural-compare-lite@1.4.0": { + "type": "npm", + "name": "npm:natural-compare-lite@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "natural-compare-lite", + "hash": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + } + }, + "npm:ncp": { + "type": "npm", + "name": "npm:ncp", + "data": { + "version": "2.0.0", + "packageName": "ncp", + "hash": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:netlify": { + "type": "npm", + "name": "npm:netlify", + "data": { + "version": "13.1.10", + "packageName": "netlify", + "hash": "sha512-ByFz8S08HWVKd9r/lkTahZX7xSq4IRyPCUvuaduI4GHyQaSWEdVNK1krC05vlhL9W0SzDn8Yjowh0Ru4PKrOYw==" + } + }, + "npm:nise": { + "type": "npm", + "name": "npm:nise", + "data": { + "version": "5.1.4", + "packageName": "nise", + "hash": "sha512-8+Ib8rRJ4L0o3kfmyVCL7gzrohyDe0cMFTBa2d364yIrEGMEoetznKJx899YxjybU6bL9SQkYPSBBs1gyYs8Xg==" + } + }, + "npm:no-case": { + "type": "npm", + "name": "npm:no-case", + "data": { + "version": "3.0.4", + "packageName": "no-case", + "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + } + }, + "npm:node-addon-api": { + "type": "npm", + "name": "npm:node-addon-api", + "data": { + "version": "3.2.1", + "packageName": "node-addon-api", + "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" + } + }, + "npm:node-domexception": { + "type": "npm", + "name": "npm:node-domexception", + "data": { + "version": "1.0.0", + "packageName": "node-domexception", + "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" + } + }, + "npm:node-emoji": { + "type": "npm", + "name": "npm:node-emoji", + "data": { + "version": "1.11.0", + "packageName": "node-emoji", + "hash": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==" + } + }, + "npm:node-fetch@2.6.7": { + "type": "npm", + "name": "npm:node-fetch@2.6.7", + "data": { + "version": "2.6.7", + "packageName": "node-fetch", + "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" + } + }, + "npm:node-fetch@2.6.12": { + "type": "npm", + "name": "npm:node-fetch@2.6.12", + "data": { + "version": "2.6.12", + "packageName": "node-fetch", + "hash": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==" + } + }, + "npm:node-fetch@3.3.1": { + "type": "npm", + "name": "npm:node-fetch@3.3.1", + "data": { + "version": "3.3.1", + "packageName": "node-fetch", + "hash": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.3.0", + "packageName": "node-gyp-build", + "hash": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==" + } + }, + "npm:node-gyp@9.0.0": { + "type": "npm", + "name": "npm:node-gyp@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "node-gyp", + "hash": "sha512-Ma6p4s+XCTPxCuAMrOA/IJRmVy16R8Sdhtwl4PrCr7IBlj4cPawF0vg/l7nOT1jPbuNS7lIRJpBSvVsXwEZuzw==" + } + }, + "npm:node-int64": { + "type": "npm", + "name": "npm:node-int64", + "data": { + "version": "0.4.0", + "packageName": "node-int64", + "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + } + }, + "npm:node-machine-id": { + "type": "npm", + "name": "npm:node-machine-id", + "data": { + "version": "1.1.12", + "packageName": "node-machine-id", + "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.13", + "packageName": "node-releases", + "hash": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + } + }, + "npm:nopt@5.0.0": { + "type": "npm", + "name": "npm:nopt@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "nopt", + "hash": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==" + } + }, + "npm:normalize-package-data@2.5.0": { + "type": "npm", + "name": "npm:normalize-package-data@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "normalize-package-data", + "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + } + }, + "npm:normalize-package-data": { + "type": "npm", + "name": "npm:normalize-package-data", + "data": { + "version": "3.0.3", + "packageName": "normalize-package-data", + "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" + } + }, + "npm:normalize-package-data@5.0.0": { + "type": "npm", + "name": "npm:normalize-package-data@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:normalize-range": { + "type": "npm", + "name": "npm:normalize-range", + "data": { + "version": "0.1.2", + "packageName": "normalize-range", + "hash": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + } + }, + "npm:normalize-url@4.5.1": { + "type": "npm", + "name": "npm:normalize-url@4.5.1", + "data": { + "version": "4.5.1", + "packageName": "normalize-url", + "hash": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:npm-bundled": { + "type": "npm", + "name": "npm:npm-bundled", + "data": { + "version": "1.1.2", + "packageName": "npm-bundled", + "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" + } + }, + "npm:npm-bundled@3.0.0": { + "type": "npm", + "name": "npm:npm-bundled@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "npm-bundled", + "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" + } + }, + "npm:npm-install-checks": { + "type": "npm", + "name": "npm:npm-install-checks", + "data": { + "version": "6.1.0", + "packageName": "npm-install-checks", + "hash": "sha512-udSGENih/5xKh3Ex+L0PtZcOt0Pa+6ppDLnpG5D49/EhMja3LupaY9E/DtJTxyFBwE09ot7Fc+H4DywnZNWTVA==" + } + }, + "npm:npm-normalize-package-bin@1.0.1": { + "type": "npm", + "name": "npm:npm-normalize-package-bin@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + } + }, + "npm:npm-normalize-package-bin": { + "type": "npm", + "name": "npm:npm-normalize-package-bin", + "data": { + "version": "3.0.0", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==" + } + }, + "npm:npm-package-arg@8.1.1": { + "type": "npm", + "name": "npm:npm-package-arg@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "npm-package-arg", + "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "10.1.0", + "packageName": "npm-package-arg", + "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" + } + }, + "npm:npm-packlist": { + "type": "npm", + "name": "npm:npm-packlist", + "data": { + "version": "5.1.1", + "packageName": "npm-packlist", + "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" + } + }, + "npm:npm-packlist@7.0.4": { + "type": "npm", + "name": "npm:npm-packlist@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "npm-packlist", + "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" + } + }, + "npm:npm-pick-manifest": { + "type": "npm", + "name": "npm:npm-pick-manifest", + "data": { + "version": "8.0.1", + "packageName": "npm-pick-manifest", + "hash": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==" + } + }, + "npm:npm-registry-fetch": { + "type": "npm", + "name": "npm:npm-registry-fetch", + "data": { + "version": "14.0.5", + "packageName": "npm-registry-fetch", + "hash": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:npm-run-path@5.1.0": { + "type": "npm", + "name": "npm:npm-run-path@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "npm-run-path", + "hash": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==" + } + }, + "npm:npm-to-yarn": { + "type": "npm", + "name": "npm:npm-to-yarn", + "data": { + "version": "2.0.0", + "packageName": "npm-to-yarn", + "hash": "sha512-/IbjiJ7vqbxfxJxAZ+QI9CCRjnIbvGxn5KQcSY9xHh0lMKc/Sgqmm7yp7KPmd6TiTZX5/KiSBKlkGHo59ucZbg==" + } + }, + "npm:npmlog": { + "type": "npm", + "name": "npm:npmlog", + "data": { + "version": "6.0.2", + "packageName": "npmlog", + "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" + } + }, + "npm:nprogress": { + "type": "npm", + "name": "npm:nprogress", + "data": { + "version": "0.2.0", + "packageName": "nprogress", + "hash": "sha1-y480xTIT2JVyP8urkH6UIq28r7E=" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, + "npm:nx-cloud": { + "type": "npm", + "name": "npm:nx-cloud", + "data": { + "version": "16.1.1", + "packageName": "nx-cloud", + "hash": "sha512-Rq7ynvkYzAJ67N3pDqU6cMqwvWP7WXJGP4EFjLxgUrRHNCccqDPggeAqePodfk3nZEUrZB8F5QBKZuuw1DR3oA==" + } + }, + "npm:nx@16.5.3": { + "type": "npm", + "name": "npm:nx@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "nx", + "hash": "sha512-VxhOijTT3evTsKEa2qsBqSroaFj/tSvRKOc1K7MPlhokB5wLEedehzbwICCjIkicPHLImiKExjPs0l290DJLwA==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + } + }, + "npm:object-inspect@1.12.3": { + "type": "npm", + "name": "npm:object-inspect@1.12.3", + "data": { + "version": "1.12.3", + "packageName": "object-inspect", + "hash": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + } + }, + "npm:object-is": { + "type": "npm", + "name": "npm:object-is", + "data": { + "version": "1.1.5", + "packageName": "object-is", + "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.4", + "packageName": "object.assign", + "hash": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==" + } + }, + "npm:object.entries": { + "type": "npm", + "name": "npm:object.entries", + "data": { + "version": "1.1.6", + "packageName": "object.entries", + "hash": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==" + } + }, + "npm:object.fromentries@2.0.6": { + "type": "npm", + "name": "npm:object.fromentries@2.0.6", + "data": { + "version": "2.0.6", + "packageName": "object.fromentries", + "hash": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==" + } + }, + "npm:object.groupby@1.0.0": { + "type": "npm", + "name": "npm:object.groupby@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "object.groupby", + "hash": "sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==" + } + }, + "npm:object.hasown": { + "type": "npm", + "name": "npm:object.hasown", + "data": { + "version": "1.1.2", + "packageName": "object.hasown", + "hash": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==" + } + }, + "npm:object.values@1.1.6": { + "type": "npm", + "name": "npm:object.values@1.1.6", + "data": { + "version": "1.1.6", + "packageName": "object.values", + "hash": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==" + } + }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, + "npm:omit.js": { + "type": "npm", + "name": "npm:omit.js", + "data": { + "version": "2.0.2", + "packageName": "omit.js", + "hash": "sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:onetime@6.0.0": { + "type": "npm", + "name": "npm:onetime@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "onetime", + "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" + } + }, + "npm:open@7.4.2": { + "type": "npm", + "name": "npm:open@7.4.2", + "data": { + "version": "7.4.2", + "packageName": "open", + "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "npm:opener": { + "type": "npm", + "name": "npm:opener", + "data": { + "version": "1.5.2", + "packageName": "opener", + "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.9.3", + "packageName": "optionator", + "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" + } + }, + "npm:ora@5.4.1": { + "type": "npm", + "name": "npm:ora@5.4.1", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + } + }, + "npm:p-cancelable": { + "type": "npm", + "name": "npm:p-cancelable", + "data": { + "version": "1.1.0", + "packageName": "p-cancelable", + "hash": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + } + }, + "npm:p-limit@1.3.0": { + "type": "npm", + "name": "npm:p-limit@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "p-limit", + "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-locate@2.0.0": { + "type": "npm", + "name": "npm:p-locate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "p-locate", + "hash": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" + } + }, + "npm:p-locate@3.0.0": { + "type": "npm", + "name": "npm:p-locate@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-locate", + "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:p-locate@5.0.0": { + "type": "npm", + "name": "npm:p-locate@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-map-series": { + "type": "npm", + "name": "npm:p-map-series", + "data": { + "version": "2.1.0", + "packageName": "p-map-series", + "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + } + }, + "npm:p-pipe": { + "type": "npm", + "name": "npm:p-pipe", + "data": { + "version": "3.1.0", + "packageName": "p-pipe", + "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" + } + }, + "npm:p-queue": { + "type": "npm", + "name": "npm:p-queue", + "data": { + "version": "6.6.2", + "packageName": "p-queue", + "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" + } + }, + "npm:p-reduce": { + "type": "npm", + "name": "npm:p-reduce", + "data": { + "version": "2.1.0", + "packageName": "p-reduce", + "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.1", + "packageName": "p-retry", + "hash": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==" + } + }, + "npm:p-timeout": { + "type": "npm", + "name": "npm:p-timeout", + "data": { + "version": "3.2.0", + "packageName": "p-timeout", + "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" + } + }, + "npm:p-timeout@5.1.0": { + "type": "npm", + "name": "npm:p-timeout@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "p-timeout", + "hash": "sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==" + } + }, + "npm:p-try@1.0.0": { + "type": "npm", + "name": "npm:p-try@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "p-try", + "hash": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:p-wait-for": { + "type": "npm", + "name": "npm:p-wait-for", + "data": { + "version": "4.1.0", + "packageName": "p-wait-for", + "hash": "sha512-i8nE5q++9h8oaQHWltS1Tnnv4IoMDOlqN7C0KFG2OdbK0iFJIt6CROZ8wfBM+K4Pxqfnq4C4lkkpXqTEpB5DZw==" + } + }, + "npm:p-waterfall": { + "type": "npm", + "name": "npm:p-waterfall", + "data": { + "version": "2.1.1", + "packageName": "p-waterfall", + "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" + } + }, + "npm:package-json": { + "type": "npm", + "name": "npm:package-json", + "data": { + "version": "6.5.0", + "packageName": "package-json", + "hash": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==" + } + }, + "npm:pacote": { + "type": "npm", + "name": "npm:pacote", + "data": { + "version": "15.2.0", + "packageName": "pacote", + "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" + } + }, + "npm:param-case": { + "type": "npm", + "name": "npm:param-case", + "data": { + "version": "3.0.4", + "packageName": "param-case", + "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:parent-module@2.0.0": { + "type": "npm", + "name": "npm:parent-module@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "parent-module", + "hash": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==" + } + }, + "npm:parse-entities": { + "type": "npm", + "name": "npm:parse-entities", + "data": { + "version": "2.0.0", + "packageName": "parse-entities", + "hash": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==" + } + }, + "npm:parse-json@4.0.0": { + "type": "npm", + "name": "npm:parse-json@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse-json", + "hash": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:parse-numeric-range": { + "type": "npm", + "name": "npm:parse-numeric-range", + "data": { + "version": "1.3.0", + "packageName": "parse-numeric-range", + "hash": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" + } + }, + "npm:parse-path": { + "type": "npm", + "name": "npm:parse-path", + "data": { + "version": "7.0.0", + "packageName": "parse-path", + "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" + } + }, + "npm:parse-url": { + "type": "npm", + "name": "npm:parse-url", + "data": { + "version": "8.1.0", + "packageName": "parse-url", + "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" + } + }, + "npm:parse5-htmlparser2-tree-adapter": { + "type": "npm", + "name": "npm:parse5-htmlparser2-tree-adapter", + "data": { + "version": "7.0.0", + "packageName": "parse5-htmlparser2-tree-adapter", + "hash": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==" + } + }, + "npm:parse5@6.0.1": { + "type": "npm", + "name": "npm:parse5@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "parse5", + "hash": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.0.0", + "packageName": "parse5", + "hash": "sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:pascal-case": { + "type": "npm", + "name": "npm:pascal-case", + "data": { + "version": "3.1.2", + "packageName": "pascal-case", + "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" + } + }, + "npm:patch-package": { + "type": "npm", + "name": "npm:patch-package", + "data": { + "version": "8.0.0", + "packageName": "patch-package", + "hash": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-is-absolute": { + "type": "npm", + "name": "npm:path-is-absolute", + "data": { + "version": "1.0.1", + "packageName": "path-is-absolute", + "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + } + }, + "npm:path-is-inside": { + "type": "npm", + "name": "npm:path-is-inside", + "data": { + "version": "1.0.2", + "packageName": "path-is-inside", + "hash": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:path-key@4.0.0": { + "type": "npm", + "name": "npm:path-key@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-key", + "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.10.1", + "packageName": "path-scurry", + "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" + } + }, + "npm:path-to-regexp@0.1.7": { + "type": "npm", + "name": "npm:path-to-regexp@0.1.7", + "data": { + "version": "0.1.7", + "packageName": "path-to-regexp", + "hash": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + } + }, + "npm:path-to-regexp@2.2.1": { + "type": "npm", + "name": "npm:path-to-regexp@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "path-to-regexp", + "hash": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "1.8.0", + "packageName": "path-to-regexp", + "hash": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" + } + }, + "npm:path-type@3.0.0": { + "type": "npm", + "name": "npm:path-type@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-type", + "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" + } + }, + "npm:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:pathval": { + "type": "npm", + "name": "npm:pathval", + "data": { + "version": "1.1.1", + "packageName": "pathval", + "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.0.0", + "packageName": "picocolors", + "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.6.0", + "packageName": "pidtree", + "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" + } + }, + "npm:pify@5.0.0": { + "type": "npm", + "name": "npm:pify@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "pify", + "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" + } + }, + "npm:pify@2.3.0": { + "type": "npm", + "name": "npm:pify@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "3.0.0", + "packageName": "pify", + "hash": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.6", + "packageName": "pirates", + "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:pkg-up": { + "type": "npm", + "name": "npm:pkg-up", + "data": { + "version": "3.1.0", + "packageName": "pkg-up", + "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + } + }, + "npm:playwright-core@1.36.2": { + "type": "npm", + "name": "npm:playwright-core@1.36.2", + "data": { + "version": "1.36.2", + "packageName": "playwright-core", + "hash": "sha512-sQYZt31dwkqxOrP7xy2ggDfEzUxM1lodjhsQ3NMMv5uGTRDsLxU0e4xf4wwMkF2gplIxf17QMBCodSFgm6bFVQ==" + } + }, + "npm:pluralize": { + "type": "npm", + "name": "npm:pluralize", + "data": { + "version": "8.0.0", + "packageName": "pluralize", + "hash": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + } + }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "8.2.4", + "packageName": "postcss-calc", + "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "5.3.0", + "packageName": "postcss-colormin", + "hash": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "5.1.2", + "packageName": "postcss-convert-values", + "hash": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "5.1.2", + "packageName": "postcss-discard-comments", + "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "5.1.1", + "packageName": "postcss-discard-empty", + "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-overridden", + "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" + } + }, + "npm:postcss-discard-unused": { + "type": "npm", + "name": "npm:postcss-discard-unused", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-unused", + "hash": "sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==" + } + }, + "npm:postcss-loader": { + "type": "npm", + "name": "npm:postcss-loader", + "data": { + "version": "7.0.0", + "packageName": "postcss-loader", + "hash": "sha512-IDyttebFzTSY6DI24KuHUcBjbAev1i+RyICoPEWcAstZsj03r533uMXtDn506l6/wlsRYiS5XBdx7TpccCsyUg==" + } + }, + "npm:postcss-merge-idents": { + "type": "npm", + "name": "npm:postcss-merge-idents", + "data": { + "version": "5.1.1", + "packageName": "postcss-merge-idents", + "hash": "sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "5.1.6", + "packageName": "postcss-merge-longhand", + "hash": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "5.1.2", + "packageName": "postcss-merge-rules", + "hash": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-minify-font-values", + "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "5.1.1", + "packageName": "postcss-minify-gradients", + "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "5.1.3", + "packageName": "postcss-minify-params", + "hash": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "5.2.1", + "packageName": "postcss-minify-selectors", + "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-scope", + "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-charset", + "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-positions", + "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-string", + "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-url", + "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-ordered-values", + "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" + } + }, + "npm:postcss-reduce-idents": { + "type": "npm", + "name": "npm:postcss-reduce-idents", + "data": { + "version": "5.2.0", + "packageName": "postcss-reduce-idents", + "hash": "sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "5.1.0", + "packageName": "postcss-reduce-initial", + "hash": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "5.1.0", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" + } + }, + "npm:postcss-resolve-nested-selector": { + "type": "npm", + "name": "npm:postcss-resolve-nested-selector", + "data": { + "version": "0.1.1", + "packageName": "postcss-resolve-nested-selector", + "hash": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==" + } + }, + "npm:postcss-safe-parser": { + "type": "npm", + "name": "npm:postcss-safe-parser", + "data": { + "version": "6.0.0", + "packageName": "postcss-safe-parser", + "hash": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.0.13", + "packageName": "postcss-selector-parser", + "hash": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==" + } + }, + "npm:postcss-sort-media-queries": { + "type": "npm", + "name": "npm:postcss-sort-media-queries", + "data": { + "version": "4.2.1", + "packageName": "postcss-sort-media-queries", + "hash": "sha512-9VYekQalFZ3sdgcTjXMa0dDjsfBVHXlraYJEMiOJ/2iMmI2JGCMavP16z3kWOaRu8NSaJCTgVpB/IVpH5yT9YQ==" + } + }, + "npm:postcss-sorting": { + "type": "npm", + "name": "npm:postcss-sorting", + "data": { + "version": "8.0.2", + "packageName": "postcss-sorting", + "hash": "sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "5.1.0", + "packageName": "postcss-svgo", + "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "5.1.1", + "packageName": "postcss-unique-selectors", + "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:postcss-zindex": { + "type": "npm", + "name": "npm:postcss-zindex", + "data": { + "version": "5.1.0", + "packageName": "postcss-zindex", + "hash": "sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==" + } + }, + "npm:postcss@8.4.27": { + "type": "npm", + "name": "npm:postcss@8.4.27", + "data": { + "version": "8.4.27", + "packageName": "postcss", + "hash": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:prepend-http": { + "type": "npm", + "name": "npm:prepend-http", + "data": { + "version": "2.0.0", + "packageName": "prepend-http", + "hash": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" + } + }, + "npm:prettier@2.8.4": { + "type": "npm", + "name": "npm:prettier@2.8.4", + "data": { + "version": "2.8.4", + "packageName": "prettier", + "hash": "sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==" + } + }, + "npm:pretty-bytes": { + "type": "npm", + "name": "npm:pretty-bytes", + "data": { + "version": "5.6.0", + "packageName": "pretty-bytes", + "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + } + }, + "npm:pretty-error": { + "type": "npm", + "name": "npm:pretty-error", + "data": { + "version": "4.0.0", + "packageName": "pretty-error", + "hash": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==" + } + }, + "npm:pretty-format@29.6.2": { + "type": "npm", + "name": "npm:pretty-format@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "pretty-format", + "hash": "sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==" + } + }, + "npm:pretty-time": { + "type": "npm", + "name": "npm:pretty-time", + "data": { + "version": "1.1.0", + "packageName": "pretty-time", + "hash": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==" + } + }, + "npm:prism-react-renderer": { + "type": "npm", + "name": "npm:prism-react-renderer", + "data": { + "version": "1.3.5", + "packageName": "prism-react-renderer", + "hash": "sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==" + } + }, + "npm:prismjs": { + "type": "npm", + "name": "npm:prismjs", + "data": { + "version": "1.28.0", + "packageName": "prismjs", + "hash": "sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw==" + } + }, + "npm:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "3.0.0", + "packageName": "proc-log", + "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" + } + }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" + } + }, + "npm:promise": { + "type": "npm", + "name": "npm:promise", + "data": { + "version": "7.3.1", + "packageName": "promise", + "hash": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:promzard": { + "type": "npm", + "name": "npm:promzard", + "data": { + "version": "1.0.0", + "packageName": "promzard", + "hash": "sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==" + } + }, + "npm:prop-types": { + "type": "npm", + "name": "npm:prop-types", + "data": { + "version": "15.8.1", + "packageName": "prop-types", + "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" + } + }, + "npm:property-information": { + "type": "npm", + "name": "npm:property-information", + "data": { + "version": "5.6.0", + "packageName": "property-information", + "hash": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==" + } + }, + "npm:protocols": { + "type": "npm", + "name": "npm:protocols", + "data": { + "version": "2.0.1", + "packageName": "protocols", + "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.0", + "packageName": "pump", + "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + } + }, + "npm:punycode@1.4.1": { + "type": "npm", + "name": "npm:punycode@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "punycode", + "hash": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.3.0", + "packageName": "punycode", + "hash": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + } + }, + "npm:pupa": { + "type": "npm", + "name": "npm:pupa", + "data": { + "version": "2.1.1", + "packageName": "pupa", + "hash": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==" + } + }, + "npm:pure-color": { + "type": "npm", + "name": "npm:pure-color", + "data": { + "version": "1.3.0", + "packageName": "pure-color", + "hash": "sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4=" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.0.2", + "packageName": "pure-rand", + "hash": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.10.3", + "packageName": "qs", + "hash": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==" + } + }, + "npm:qs@6.11.2": { + "type": "npm", + "name": "npm:qs@6.11.2", + "data": { + "version": "6.11.2", + "packageName": "qs", + "hash": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==" + } + }, + "npm:queue-microtask": { + "type": "npm", + "name": "npm:queue-microtask", + "data": { + "version": "1.2.3", + "packageName": "queue-microtask", + "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + } + }, + "npm:queue": { + "type": "npm", + "name": "npm:queue", + "data": { + "version": "6.0.2", + "packageName": "queue", + "hash": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==" + } + }, + "npm:quick-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "4.0.1", + "packageName": "quick-lru", + "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" + } + }, + "npm:quick-lru@5.1.1": { + "type": "npm", + "name": "npm:quick-lru@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "quick-lru", + "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "npm:range-parser@1.2.0": { + "type": "npm", + "name": "npm:range-parser@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "range-parser", + "hash": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "2.5.1", + "packageName": "raw-body", + "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" + } + }, + "npm:raw-loader": { + "type": "npm", + "name": "npm:raw-loader", + "data": { + "version": "4.0.2", + "packageName": "raw-loader", + "hash": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:react-base16-styling": { + "type": "npm", + "name": "npm:react-base16-styling", + "data": { + "version": "0.6.0", + "packageName": "react-base16-styling", + "hash": "sha1-7yFW1mz0E5aVyKFniGy2nqZgeSw=" + } + }, + "npm:react-dev-utils": { + "type": "npm", + "name": "npm:react-dev-utils", + "data": { + "version": "12.0.1", + "packageName": "react-dev-utils", + "hash": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==" + } + }, + "npm:react-dom": { + "type": "npm", + "name": "npm:react-dom", + "data": { + "version": "18.2.0", + "packageName": "react-dom", + "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" + } + }, + "npm:react-error-overlay": { + "type": "npm", + "name": "npm:react-error-overlay", + "data": { + "version": "6.0.11", + "packageName": "react-error-overlay", + "hash": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + } + }, + "npm:react-fast-compare": { + "type": "npm", + "name": "npm:react-fast-compare", + "data": { + "version": "3.2.0", + "packageName": "react-fast-compare", + "hash": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" + } + }, + "npm:react-helmet-async": { + "type": "npm", + "name": "npm:react-helmet-async", + "data": { + "version": "1.3.0", + "packageName": "react-helmet-async", + "hash": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "16.13.1", + "packageName": "react-is", + "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + }, + "npm:react-is@18.2.0": { + "type": "npm", + "name": "npm:react-is@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, + "npm:react-json-view": { + "type": "npm", + "name": "npm:react-json-view", + "data": { + "version": "1.21.3", + "packageName": "react-json-view", + "hash": "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==" + } + }, + "npm:react-lifecycles-compat": { + "type": "npm", + "name": "npm:react-lifecycles-compat", + "data": { + "version": "3.0.4", + "packageName": "react-lifecycles-compat", + "hash": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + } + }, + "npm:react-loadable-ssr-addon-v5-slorber": { + "type": "npm", + "name": "npm:react-loadable-ssr-addon-v5-slorber", + "data": { + "version": "1.0.1", + "packageName": "react-loadable-ssr-addon-v5-slorber", + "hash": "sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==" + } + }, + "npm:react-router-config": { + "type": "npm", + "name": "npm:react-router-config", + "data": { + "version": "5.1.1", + "packageName": "react-router-config", + "hash": "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==" + } + }, + "npm:react-router-dom": { + "type": "npm", + "name": "npm:react-router-dom", + "data": { + "version": "5.3.3", + "packageName": "react-router-dom", + "hash": "sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng==" + } + }, + "npm:react-router": { + "type": "npm", + "name": "npm:react-router", + "data": { + "version": "5.3.3", + "packageName": "react-router", + "hash": "sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w==" + } + }, + "npm:react-split-pane@0.1.92": { + "type": "npm", + "name": "npm:react-split-pane@0.1.92", + "data": { + "version": "0.1.92", + "packageName": "react-split-pane", + "hash": "sha512-GfXP1xSzLMcLJI5BM36Vh7GgZBpy+U/X0no+VM3fxayv+p1Jly5HpMofZJraeaMl73b3hvlr+N9zJKvLB/uz9w==" + } + }, + "npm:react-style-proptype@3.2.2": { + "type": "npm", + "name": "npm:react-style-proptype@3.2.2", + "data": { + "version": "3.2.2", + "packageName": "react-style-proptype", + "hash": "sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==" + } + }, + "npm:react-textarea-autosize": { + "type": "npm", + "name": "npm:react-textarea-autosize", + "data": { + "version": "8.3.3", + "packageName": "react-textarea-autosize", + "hash": "sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==" + } + }, + "npm:react": { + "type": "npm", + "name": "npm:react", + "data": { + "version": "18.2.0", + "packageName": "react", + "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" + } + }, + "npm:read-cmd-shim": { + "type": "npm", + "name": "npm:read-cmd-shim", + "data": { + "version": "4.0.0", + "packageName": "read-cmd-shim", + "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "3.0.2", + "packageName": "read-package-json-fast", + "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" + } + }, + "npm:read-package-json": { + "type": "npm", + "name": "npm:read-package-json", + "data": { + "version": "6.0.4", + "packageName": "read-package-json", + "hash": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==" + } + }, + "npm:read-pkg-up@3.0.0": { + "type": "npm", + "name": "npm:read-pkg-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "read-pkg-up", + "hash": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=" + } + }, + "npm:read-pkg-up": { + "type": "npm", + "name": "npm:read-pkg-up", + "data": { + "version": "7.0.1", + "packageName": "read-pkg-up", + "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" + } + }, + "npm:read-pkg-up@8.0.0": { + "type": "npm", + "name": "npm:read-pkg-up@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "read-pkg-up", + "hash": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==" + } + }, + "npm:read-pkg": { + "type": "npm", + "name": "npm:read-pkg", + "data": { + "version": "3.0.0", + "packageName": "read-pkg", + "hash": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=" + } + }, + "npm:read-pkg@5.2.0": { + "type": "npm", + "name": "npm:read-pkg@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "read-pkg", + "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" + } + }, + "npm:read-pkg@6.0.0": { + "type": "npm", + "name": "npm:read-pkg@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "read-pkg", + "hash": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==" + } + }, + "npm:read": { + "type": "npm", + "name": "npm:read", + "data": { + "version": "2.1.0", + "packageName": "read", + "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" + } + }, + "npm:readable-stream@2.3.7": { + "type": "npm", + "name": "npm:readable-stream@2.3.7", + "data": { + "version": "2.3.7", + "packageName": "readable-stream", + "hash": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.0", + "packageName": "readable-stream", + "hash": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + } + }, + "npm:readdirp@3.5.0": { + "type": "npm", + "name": "npm:readdirp@3.5.0", + "data": { + "version": "3.5.0", + "packageName": "readdirp", + "hash": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:reading-time": { + "type": "npm", + "name": "npm:reading-time", + "data": { + "version": "1.5.0", + "packageName": "reading-time", + "hash": "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==" + } + }, + "npm:rechoir": { + "type": "npm", + "name": "npm:rechoir", + "data": { + "version": "0.6.2", + "packageName": "rechoir", + "hash": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=" + } + }, + "npm:recursive-readdir": { + "type": "npm", + "name": "npm:recursive-readdir", + "data": { + "version": "2.2.2", + "packageName": "recursive-readdir", + "hash": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==" + } + }, + "npm:redent": { + "type": "npm", + "name": "npm:redent", + "data": { + "version": "3.0.0", + "packageName": "redent", + "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" + } + }, + "npm:redent@4.0.0": { + "type": "npm", + "name": "npm:redent@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "redent", + "hash": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==" + } + }, + "npm:regenerate-unicode-properties": { + "type": "npm", + "name": "npm:regenerate-unicode-properties", + "data": { + "version": "10.1.0", + "packageName": "regenerate-unicode-properties", + "hash": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==" + } + }, + "npm:regenerate": { + "type": "npm", + "name": "npm:regenerate", + "data": { + "version": "1.4.2", + "packageName": "regenerate", + "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + } + }, + "npm:regenerator-runtime@0.13.11": { + "type": "npm", + "name": "npm:regenerator-runtime@0.13.11", + "data": { + "version": "0.13.11", + "packageName": "regenerator-runtime", + "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + } + }, + "npm:regenerator-transform@0.15.1": { + "type": "npm", + "name": "npm:regenerator-transform@0.15.1", + "data": { + "version": "0.15.1", + "packageName": "regenerator-transform", + "hash": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==" + } + }, + "npm:regexp-tree": { + "type": "npm", + "name": "npm:regexp-tree", + "data": { + "version": "0.1.27", + "packageName": "regexp-tree", + "hash": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==" + } + }, + "npm:regexp.prototype.flags@1.5.0": { + "type": "npm", + "name": "npm:regexp.prototype.flags@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "regexp.prototype.flags", + "hash": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==" + } + }, + "npm:regexpu-core": { + "type": "npm", + "name": "npm:regexpu-core", + "data": { + "version": "5.3.2", + "packageName": "regexpu-core", + "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" + } + }, + "npm:registry-auth-token": { + "type": "npm", + "name": "npm:registry-auth-token", + "data": { + "version": "4.2.1", + "packageName": "registry-auth-token", + "hash": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==" + } + }, + "npm:registry-url": { + "type": "npm", + "name": "npm:registry-url", + "data": { + "version": "5.1.0", + "packageName": "registry-url", + "hash": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==" + } + }, + "npm:regjsparser@0.10.0": { + "type": "npm", + "name": "npm:regjsparser@0.10.0", + "data": { + "version": "0.10.0", + "packageName": "regjsparser", + "hash": "sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==" + } + }, + "npm:regjsparser": { + "type": "npm", + "name": "npm:regjsparser", + "data": { + "version": "0.9.1", + "packageName": "regjsparser", + "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" + } + }, + "npm:relateurl": { + "type": "npm", + "name": "npm:relateurl", + "data": { + "version": "0.2.7", + "packageName": "relateurl", + "hash": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + } + }, + "npm:remark-docusaurus-tabs": { + "type": "npm", + "name": "npm:remark-docusaurus-tabs", + "data": { + "version": "0.2.0", + "packageName": "remark-docusaurus-tabs", + "hash": "sha512-Xl8FkeQAdDqlhf7EurBxCkT7cfA5QK2PN8eoFr94g1OOuc7XsgVk897zf8yhNNnpQYR8nd/XC6JaXTZxHxX4mA==" + } + }, + "npm:remark-emoji": { + "type": "npm", + "name": "npm:remark-emoji", + "data": { + "version": "2.2.0", + "packageName": "remark-emoji", + "hash": "sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==" + } + }, + "npm:remark-footnotes": { + "type": "npm", + "name": "npm:remark-footnotes", + "data": { + "version": "2.0.0", + "packageName": "remark-footnotes", + "hash": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==" + } + }, + "npm:remark-mdx": { + "type": "npm", + "name": "npm:remark-mdx", + "data": { + "version": "1.6.22", + "packageName": "remark-mdx", + "hash": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==" + } + }, + "npm:remark-parse": { + "type": "npm", + "name": "npm:remark-parse", + "data": { + "version": "8.0.3", + "packageName": "remark-parse", + "hash": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==" + } + }, + "npm:remark-squeeze-paragraphs": { + "type": "npm", + "name": "npm:remark-squeeze-paragraphs", + "data": { + "version": "4.0.0", + "packageName": "remark-squeeze-paragraphs", + "hash": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==" + } + }, + "npm:renderkid": { + "type": "npm", + "name": "npm:renderkid", + "data": { + "version": "3.0.0", + "packageName": "renderkid", + "hash": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==" + } + }, + "npm:repeat-string": { + "type": "npm", + "name": "npm:repeat-string", + "data": { + "version": "1.6.1", + "packageName": "repeat-string", + "hash": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:require-like": { + "type": "npm", + "name": "npm:require-like", + "data": { + "version": "0.1.2", + "packageName": "require-like", + "hash": "sha1-rW8wwTvs15cBDEaK+ndcDAprR/o=" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + } + }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-global@1.0.0": { + "type": "npm", + "name": "npm:resolve-global@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "resolve-global", + "hash": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==" + } + }, + "npm:resolve-pathname": { + "type": "npm", + "name": "npm:resolve-pathname", + "data": { + "version": "3.0.0", + "packageName": "resolve-pathname", + "hash": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + } + }, + "npm:resolve.exports@1.1.0": { + "type": "npm", + "name": "npm:resolve.exports@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "resolve.exports", + "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:resolve@1.22.3": { + "type": "npm", + "name": "npm:resolve@1.22.3", + "data": { + "version": "1.22.3", + "packageName": "resolve", + "hash": "sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==" + } + }, + "npm:resolve@2.0.0-next.4": { + "type": "npm", + "name": "npm:resolve@2.0.0-next.4", + "data": { + "version": "2.0.0-next.4", + "packageName": "resolve", + "hash": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==" + } + }, + "npm:resolve@1.19.0": { + "type": "npm", + "name": "npm:resolve@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "resolve", + "hash": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==" + } + }, + "npm:responselike": { + "type": "npm", + "name": "npm:responselike", + "data": { + "version": "1.0.2", + "packageName": "responselike", + "hash": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + } + }, + "npm:retry@0.13.1": { + "type": "npm", + "name": "npm:retry@0.13.1", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.0.4", + "packageName": "reusify", + "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.3.0", + "packageName": "rfdc", + "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + } + }, + "npm:rimraf@5.0.1": { + "type": "npm", + "name": "npm:rimraf@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "rimraf", + "hash": "sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==" + } + }, + "npm:rimraf@2.7.1": { + "type": "npm", + "name": "npm:rimraf@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "rimraf", + "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + } + }, + "npm:rimraf@3.0.2": { + "type": "npm", + "name": "npm:rimraf@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:rimraf@4.4.1": { + "type": "npm", + "name": "npm:rimraf@4.4.1", + "data": { + "version": "4.4.1", + "packageName": "rimraf", + "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" + } + }, + "npm:rollup-plugin-terser": { + "type": "npm", + "name": "npm:rollup-plugin-terser", + "data": { + "version": "7.0.2", + "packageName": "rollup-plugin-terser", + "hash": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==" + } + }, + "npm:rollup": { + "type": "npm", + "name": "npm:rollup", + "data": { + "version": "2.79.1", + "packageName": "rollup", + "hash": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==" + } + }, + "npm:rtl-detect": { + "type": "npm", + "name": "npm:rtl-detect", + "data": { + "version": "1.0.4", + "packageName": "rtl-detect", + "hash": "sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==" + } + }, + "npm:rtlcss": { + "type": "npm", + "name": "npm:rtlcss", + "data": { + "version": "3.5.0", + "packageName": "rtlcss", + "hash": "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==" + } + }, + "npm:run-async": { + "type": "npm", + "name": "npm:run-async", + "data": { + "version": "2.4.1", + "packageName": "run-async", + "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + } + }, + "npm:run-con@1.2.11": { + "type": "npm", + "name": "npm:run-con@1.2.11", + "data": { + "version": "1.2.11", + "packageName": "run-con", + "hash": "sha512-NEMGsUT+cglWkzEr4IFK21P4Jca45HqiAbIIZIBdX5+UZTB24Mb/21iNGgz9xZa8tL6vbW7CXmq7MFN42+VjNQ==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.2.0", + "packageName": "run-parallel", + "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + } + }, + "npm:rxjs": { + "type": "npm", + "name": "npm:rxjs", + "data": { + "version": "7.8.1", + "packageName": "rxjs", + "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" + } + }, + "npm:safe-array-concat@1.0.0": { + "type": "npm", + "name": "npm:safe-array-concat@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "safe-array-concat", + "hash": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==" + } + }, + "npm:safe-buffer@5.1.2": { + "type": "npm", + "name": "npm:safe-buffer@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.0.0", + "packageName": "safe-regex-test", + "hash": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.2.4", + "packageName": "sax", + "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + } + }, + "npm:scheduler": { + "type": "npm", + "name": "npm:scheduler", + "data": { + "version": "0.23.0", + "packageName": "scheduler", + "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" + } + }, + "npm:schema-utils@2.7.0": { + "type": "npm", + "name": "npm:schema-utils@2.7.0", + "data": { + "version": "2.7.0", + "packageName": "schema-utils", + "hash": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==" + } + }, + "npm:schema-utils@2.7.1": { + "type": "npm", + "name": "npm:schema-utils@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "schema-utils", + "hash": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "npm:schema-utils@4.0.0": { + "type": "npm", + "name": "npm:schema-utils@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "schema-utils", + "hash": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==" + } + }, + "npm:section-matter": { + "type": "npm", + "name": "npm:section-matter", + "data": { + "version": "1.0.0", + "packageName": "section-matter", + "hash": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==" + } + }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.0.1", + "packageName": "selfsigned", + "hash": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==" + } + }, + "npm:semver-diff": { + "type": "npm", + "name": "npm:semver-diff", + "data": { + "version": "3.1.1", + "packageName": "semver-diff", + "hash": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==" + } + }, + "npm:semver@5.7.1": { + "type": "npm", + "name": "npm:semver@5.7.1", + "data": { + "version": "5.7.1", + "packageName": "semver", + "hash": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:semver@6.3.1": { + "type": "npm", + "name": "npm:semver@6.3.1", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.18.0", + "packageName": "send", + "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" + } + }, + "npm:serialize-javascript@5.0.1": { + "type": "npm", + "name": "npm:serialize-javascript@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==" + } + }, + "npm:serialize-javascript@4.0.0": { + "type": "npm", + "name": "npm:serialize-javascript@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "serialize-javascript", + "hash": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==" + } + }, + "npm:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "6.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" + } + }, + "npm:serve-handler": { + "type": "npm", + "name": "npm:serve-handler", + "data": { + "version": "6.1.3", + "packageName": "serve-handler", + "hash": "sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.15.0", + "packageName": "serve-static", + "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + } + }, + "npm:set-blocking": { + "type": "npm", + "name": "npm:set-blocking", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + } + }, + "npm:setimmediate": { + "type": "npm", + "name": "npm:setimmediate", + "data": { + "version": "1.0.5", + "packageName": "setimmediate", + "hash": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:shallowequal": { + "type": "npm", + "name": "npm:shallowequal", + "data": { + "version": "1.1.0", + "packageName": "shallowequal", + "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.7.3", + "packageName": "shell-quote", + "hash": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==" + } + }, + "npm:shelljs": { + "type": "npm", + "name": "npm:shelljs", + "data": { + "version": "0.8.5", + "packageName": "shelljs", + "hash": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.4", + "packageName": "side-channel", + "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:signal-exit@4.0.2": { + "type": "npm", + "name": "npm:signal-exit@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "signal-exit", + "hash": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==" + } + }, + "npm:sigstore": { + "type": "npm", + "name": "npm:sigstore", + "data": { + "version": "1.6.0", + "packageName": "sigstore", + "hash": "sha512-QODKff/qW/TXOZI6V/Clqu74xnInAS6it05mufj4/fSewexLtfEntgLZZcBtUK44CDQyUE5TUXYy1ARYzlfG9g==" + } + }, + "npm:sinon@11.1.2": { + "type": "npm", + "name": "npm:sinon@11.1.2", + "data": { + "version": "11.1.2", + "packageName": "sinon", + "hash": "sha512-59237HChms4kg7/sXhiRcUzdSkKuydDeTiamT/jesUVHshBgL8XAmhgFo0GfK6RruMDM/iRSij1EybmMog9cJw==" + } + }, + "npm:sirv": { + "type": "npm", + "name": "npm:sirv", + "data": { + "version": "1.0.18", + "packageName": "sirv", + "hash": "sha512-f2AOPogZmXgJ9Ma2M22ZEhc1dNtRIzcEkiflMFeVTRq+OViOZMvH1IPMVOwrKaxpSaHioBJiDR0SluRqGa7atA==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:sitemap": { + "type": "npm", + "name": "npm:sitemap", + "data": { + "version": "7.1.1", + "packageName": "sitemap", + "hash": "sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:slash@2.0.0": { + "type": "npm", + "name": "npm:slash@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "slash", + "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:slice-ansi@3.0.0": { + "type": "npm", + "name": "npm:slice-ansi@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "slice-ansi", + "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" + } + }, + "npm:slice-ansi@4.0.0": { + "type": "npm", + "name": "npm:slice-ansi@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slice-ansi", + "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "data": { + "version": "5.0.0", + "packageName": "slice-ansi", + "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" + } + }, + "npm:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + } + }, + "npm:socks-proxy-agent@6.2.0": { + "type": "npm", + "name": "npm:socks-proxy-agent@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "socks-proxy-agent", + "hash": "sha512-wWqJhjb32Q6GsrUqzuFkukxb/zzide5quXYcMVpIjxalDBBYy2nqKCFQ/9+Ie4dvOYSQdOk3hUlZSdzZOd3zMQ==" + } + }, + "npm:socks-proxy-agent": { + "type": "npm", + "name": "npm:socks-proxy-agent", + "data": { + "version": "7.0.0", + "packageName": "socks-proxy-agent", + "hash": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==" + } + }, + "npm:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.6.2", + "packageName": "socks", + "hash": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==" + } + }, + "npm:sort-css-media-queries": { + "type": "npm", + "name": "npm:sort-css-media-queries", + "data": { + "version": "2.0.4", + "packageName": "sort-css-media-queries", + "hash": "sha512-PAIsEK/XupCQwitjv7XxoMvYhT7EAfyzI3hsy/MyDgTvc+Ft55ctdkctJLOy6cQejaIC+zjpUL4djFVm2ivOOw==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "2.0.0", + "packageName": "sort-keys", + "hash": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.0.2", + "packageName": "source-map-js", + "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + } + }, + "npm:source-map-support@0.5.13": { + "type": "npm", + "name": "npm:source-map-support@0.5.13", + "data": { + "version": "0.5.13", + "packageName": "source-map-support", + "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" + } + }, + "npm:source-map-support@0.5.19": { + "type": "npm", + "name": "npm:source-map-support@0.5.19", + "data": { + "version": "0.5.19", + "packageName": "source-map-support", + "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:source-map@0.5.7": { + "type": "npm", + "name": "npm:source-map@0.5.7", + "data": { + "version": "0.5.7", + "packageName": "source-map", + "hash": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:source-map@0.8.0-beta.0": { + "type": "npm", + "name": "npm:source-map@0.8.0-beta.0", + "data": { + "version": "0.8.0-beta.0", + "packageName": "source-map", + "hash": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==" + } + }, + "npm:sourcemap-codec": { + "type": "npm", + "name": "npm:sourcemap-codec", + "data": { + "version": "1.4.8", + "packageName": "sourcemap-codec", + "hash": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + } + }, + "npm:space-separated-tokens": { + "type": "npm", + "name": "npm:space-separated-tokens", + "data": { + "version": "1.1.5", + "packageName": "space-separated-tokens", + "hash": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==" + } + }, + "npm:spdx-correct": { + "type": "npm", + "name": "npm:spdx-correct", + "data": { + "version": "3.2.0", + "packageName": "spdx-correct", + "hash": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==" + } + }, + "npm:spdx-exceptions": { + "type": "npm", + "name": "npm:spdx-exceptions", + "data": { + "version": "2.3.0", + "packageName": "spdx-exceptions", + "hash": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + } + }, + "npm:spdx-expression-parse": { + "type": "npm", + "name": "npm:spdx-expression-parse", + "data": { + "version": "3.0.1", + "packageName": "spdx-expression-parse", + "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" + } + }, + "npm:spdx-license-ids": { + "type": "npm", + "name": "npm:spdx-license-ids", + "data": { + "version": "3.0.13", + "packageName": "spdx-license-ids", + "hash": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "3.2.2", + "packageName": "split2", + "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" + } + }, + "npm:split": { + "type": "npm", + "name": "npm:split", + "data": { + "version": "1.0.1", + "packageName": "split", + "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "10.0.1", + "packageName": "ssri", + "hash": "sha512-WVy6di9DlPOeBWEjMScpNipeSX2jIZBGEn5Uuo8Q7aIuFEuDX0pw8RxcOjlD1TWP4obi24ki7m/13+nFpcbXrw==" + } + }, + "npm:ssri@9.0.1": { + "type": "npm", + "name": "npm:ssri@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "ssri", + "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" + } + }, + "npm:stable": { + "type": "npm", + "name": "npm:stable", + "data": { + "version": "0.1.8", + "packageName": "stable", + "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.6", + "packageName": "stack-utils", + "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" + } + }, + "npm:state-toggle": { + "type": "npm", + "name": "npm:state-toggle", + "data": { + "version": "1.0.3", + "packageName": "state-toggle", + "hash": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + } + }, + "npm:std-env": { + "type": "npm", + "name": "npm:std-env", + "data": { + "version": "3.0.1", + "packageName": "std-env", + "hash": "sha512-mC1Ps9l77/97qeOZc+HrOL7TIaOboHqMZ24dGVQrlxFcpPpfCHpH+qfUT7Dz+6mlG8+JPA1KfBQo19iC/+Ngcw==" + } + }, + "npm:stop-iteration-iterator": { + "type": "npm", + "name": "npm:stop-iteration-iterator", + "data": { + "version": "1.0.0", + "packageName": "stop-iteration-iterator", + "hash": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==" + } + }, + "npm:string-argv@0.3.1": { + "type": "npm", + "name": "npm:string-argv@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "string-argv", + "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@^4.2.0", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width@2.1.1": { + "type": "npm", + "name": "npm:string-width@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "string-width", + "hash": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:string.prototype.matchall": { + "type": "npm", + "name": "npm:string.prototype.matchall", + "data": { + "version": "4.0.8", + "packageName": "string.prototype.matchall", + "hash": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==" + } + }, + "npm:string.prototype.trim@1.2.7": { + "type": "npm", + "name": "npm:string.prototype.trim@1.2.7", + "data": { + "version": "1.2.7", + "packageName": "string.prototype.trim", + "hash": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==" + } + }, + "npm:string.prototype.trimend@1.0.6": { + "type": "npm", + "name": "npm:string.prototype.trimend@1.0.6", + "data": { + "version": "1.0.6", + "packageName": "string.prototype.trimend", + "hash": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==" + } + }, + "npm:string.prototype.trimstart@1.0.6": { + "type": "npm", + "name": "npm:string.prototype.trimstart@1.0.6", + "data": { + "version": "1.0.6", + "packageName": "string.prototype.trimstart", + "hash": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:string_decoder@1.1.1": { + "type": "npm", + "name": "npm:string_decoder@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:stringify-object": { + "type": "npm", + "name": "npm:stringify-object", + "data": { + "version": "3.3.0", + "packageName": "stringify-object", + "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@^6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi@4.0.0": { + "type": "npm", + "name": "npm:strip-ansi@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-ansi", + "hash": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==" + } + }, + "npm:strip-ansi@7.0.1": { + "type": "npm", + "name": "npm:strip-ansi@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "strip-ansi", + "hash": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==" + } + }, + "npm:strip-bom-string": { + "type": "npm", + "name": "npm:strip-bom-string", + "data": { + "version": "1.0.0", + "packageName": "strip-bom-string", + "hash": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:strip-bom@4.0.0": { + "type": "npm", + "name": "npm:strip-bom@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + }, + "npm:strip-comments": { + "type": "npm", + "name": "npm:strip-comments", + "data": { + "version": "2.0.1", + "packageName": "strip-comments", + "hash": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==" + } + }, + "npm:strip-final-newline@2.0.0": { + "type": "npm", + "name": "npm:strip-final-newline@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "3.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + } + }, + "npm:strip-indent": { + "type": "npm", + "name": "npm:strip-indent", + "data": { + "version": "3.0.0", + "packageName": "strip-indent", + "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" + } + }, + "npm:strip-indent@4.0.0": { + "type": "npm", + "name": "npm:strip-indent@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-indent", + "hash": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + } + }, + "npm:strong-log-transformer": { + "type": "npm", + "name": "npm:strong-log-transformer", + "data": { + "version": "2.1.0", + "packageName": "strong-log-transformer", + "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" + } + }, + "npm:style-search": { + "type": "npm", + "name": "npm:style-search", + "data": { + "version": "0.1.0", + "packageName": "style-search", + "hash": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==" + } + }, + "npm:style-to-object": { + "type": "npm", + "name": "npm:style-to-object", + "data": { + "version": "0.3.0", + "packageName": "style-to-object", + "hash": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "5.1.0", + "packageName": "stylehacks", + "hash": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==" + } + }, + "npm:stylelint-config-recommended": { + "type": "npm", + "name": "npm:stylelint-config-recommended", + "data": { + "version": "13.0.0", + "packageName": "stylelint-config-recommended", + "hash": "sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==" + } + }, + "npm:stylelint-config-standard": { + "type": "npm", + "name": "npm:stylelint-config-standard", + "data": { + "version": "34.0.0", + "packageName": "stylelint-config-standard", + "hash": "sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==" + } + }, + "npm:stylelint-order": { + "type": "npm", + "name": "npm:stylelint-order", + "data": { + "version": "6.0.3", + "packageName": "stylelint-order", + "hash": "sha512-1j1lOb4EU/6w49qZeT2SQVJXm0Ht+Qnq9GMfUa3pMwoyojIWfuA+JUDmoR97Bht1RLn4ei0xtLGy87M7d29B1w==" + } + }, + "npm:stylelint@15.10.2": { + "type": "npm", + "name": "npm:stylelint@15.10.2", + "data": { + "version": "15.10.2", + "packageName": "stylelint", + "hash": "sha512-UxqSb3hB74g4DTO45QhUHkJMjKKU//lNUAOWyvPBVPZbCknJ5HjOWWZo+UDuhHa9FLeVdHBZXxu43eXkjyIPWg==" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "8.1.1", + "packageName": "supports-color", + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + } + }, + "npm:supports-color@5.5.0": { + "type": "npm", + "name": "npm:supports-color@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "supports-color", + "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + } + }, + "npm:supports-color@7.2.0": { + "type": "npm", + "name": "npm:supports-color@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:supports-hyperlinks": { + "type": "npm", + "name": "npm:supports-hyperlinks", + "data": { + "version": "3.0.0", + "packageName": "supports-hyperlinks", + "hash": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:svg-parser": { + "type": "npm", + "name": "npm:svg-parser", + "data": { + "version": "2.0.4", + "packageName": "svg-parser", + "hash": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + } + }, + "npm:svg-tags": { + "type": "npm", + "name": "npm:svg-tags", + "data": { + "version": "1.0.0", + "packageName": "svg-tags", + "hash": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" + } + }, + "npm:svgo": { + "type": "npm", + "name": "npm:svgo", + "data": { + "version": "2.8.0", + "packageName": "svgo", + "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" + } + }, + "npm:table": { + "type": "npm", + "name": "npm:table", + "data": { + "version": "6.8.1", + "packageName": "table", + "hash": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==" + } + }, + "npm:tapable@1.1.3": { + "type": "npm", + "name": "npm:tapable@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "tapable", + "hash": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:tar-stream": { + "type": "npm", + "name": "npm:tar-stream", + "data": { + "version": "2.2.0", + "packageName": "tar-stream", + "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.1.11", + "packageName": "tar", + "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "1.0.0", + "packageName": "temp-dir", + "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" + } + }, + "npm:temp-dir@2.0.0": { + "type": "npm", + "name": "npm:temp-dir@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "temp-dir", + "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" + } + }, + "npm:tempy": { + "type": "npm", + "name": "npm:tempy", + "data": { + "version": "0.6.0", + "packageName": "tempy", + "hash": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.7", + "packageName": "terser-webpack-plugin", + "hash": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.18.0", + "packageName": "terser", + "hash": "sha512-pdL757Ig5a0I+owA42l6tIuEycRuM7FPY4n62h44mRLRfnOxJkkOHd6i89dOpwZlpF6JXBwaAHF6yWzFrt+QyA==" + } + }, + "npm:test-exclude": { + "type": "npm", + "name": "npm:test-exclude", + "data": { + "version": "6.0.0", + "packageName": "test-exclude", + "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + } + }, + "npm:text-extensions": { + "type": "npm", + "name": "npm:text-extensions", + "data": { + "version": "1.9.0", + "packageName": "text-extensions", + "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + } + }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.1.0", + "packageName": "thunky", + "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + } + }, + "npm:tiny-invariant": { + "type": "npm", + "name": "npm:tiny-invariant", + "data": { + "version": "1.2.0", + "packageName": "tiny-invariant", + "hash": "sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg==" + } + }, + "npm:tiny-warning": { + "type": "npm", + "name": "npm:tiny-warning", + "data": { + "version": "1.0.3", + "packageName": "tiny-warning", + "hash": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + } + }, + "npm:title-case": { + "type": "npm", + "name": "npm:title-case", + "data": { + "version": "3.0.3", + "packageName": "title-case", + "hash": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.2.1", + "packageName": "tmp", + "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" + } + }, + "npm:tmp@0.0.33": { + "type": "npm", + "name": "npm:tmp@0.0.33", + "data": { + "version": "0.0.33", + "packageName": "tmp", + "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" + } + }, + "npm:tmpl": { + "type": "npm", + "name": "npm:tmpl", + "data": { + "version": "1.0.5", + "packageName": "tmpl", + "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + } + }, + "npm:to-fast-properties": { + "type": "npm", + "name": "npm:to-fast-properties", + "data": { + "version": "2.0.0", + "packageName": "to-fast-properties", + "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + } + }, + "npm:to-readable-stream": { + "type": "npm", + "name": "npm:to-readable-stream", + "data": { + "version": "1.0.0", + "packageName": "to-readable-stream", + "hash": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:totalist": { + "type": "npm", + "name": "npm:totalist", + "data": { + "version": "1.1.0", + "packageName": "totalist", + "hash": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==" + } + }, + "npm:tr46@1.0.1": { + "type": "npm", + "name": "npm:tr46@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "tr46", + "hash": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:trim-newlines": { + "type": "npm", + "name": "npm:trim-newlines", + "data": { + "version": "3.0.1", + "packageName": "trim-newlines", + "hash": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==" + } + }, + "npm:trim-newlines@4.1.1": { + "type": "npm", + "name": "npm:trim-newlines@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "trim-newlines", + "hash": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==" + } + }, + "npm:trim-trailing-lines": { + "type": "npm", + "name": "npm:trim-trailing-lines", + "data": { + "version": "1.1.4", + "packageName": "trim-trailing-lines", + "hash": "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==" + } + }, + "npm:trim": { + "type": "npm", + "name": "npm:trim", + "data": { + "version": "0.0.1", + "packageName": "trim", + "hash": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" + } + }, + "npm:trough": { + "type": "npm", + "name": "npm:trough", + "data": { + "version": "1.0.5", + "packageName": "trough", + "hash": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" + } + }, + "npm:ts-api-utils@1.0.1": { + "type": "npm", + "name": "npm:ts-api-utils@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "ts-api-utils", + "hash": "sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==" + } + }, + "npm:ts-essentials": { + "type": "npm", + "name": "npm:ts-essentials", + "data": { + "version": "2.0.12", + "packageName": "ts-essentials", + "hash": "sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==" + } + }, + "npm:ts-node@10.9.1": { + "type": "npm", + "name": "npm:ts-node@10.9.1", + "data": { + "version": "10.9.1", + "packageName": "ts-node", + "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" + } + }, + "npm:ts-node": { + "type": "npm", + "name": "npm:ts-node", + "data": { + "version": "10.7.0", + "packageName": "ts-node", + "hash": "sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==" + } + }, + "npm:tsconfig-paths@3.14.2": { + "type": "npm", + "name": "npm:tsconfig-paths@3.14.2", + "data": { + "version": "3.14.2", + "packageName": "tsconfig-paths", + "hash": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==" + } + }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.1.2", + "packageName": "tsconfig-paths", + "hash": "sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==" + } + }, + "npm:tslib@1.14.1": { + "type": "npm", + "name": "npm:tslib@1.14.1", + "data": { + "version": "1.14.1", + "packageName": "tslib", + "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.6.1", + "packageName": "tslib", + "hash": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" + } + }, + "npm:tslint": { + "type": "npm", + "name": "npm:tslint", + "data": { + "version": "6.1.3", + "packageName": "tslint", + "hash": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==" + } + }, + "npm:tsutils@2.29.0": { + "type": "npm", + "name": "npm:tsutils@2.29.0", + "data": { + "version": "2.29.0", + "packageName": "tsutils", + "hash": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==" + } + }, + "npm:tsutils": { + "type": "npm", + "name": "npm:tsutils", + "data": { + "version": "3.21.0", + "packageName": "tsutils", + "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + } + }, + "npm:tsx@3.12.7": { + "type": "npm", + "name": "npm:tsx@3.12.7", + "data": { + "version": "3.12.7", + "packageName": "tsx", + "hash": "sha512-C2Ip+jPmqKd1GWVQDvz/Eyc6QJbGfE7NrR3fx5BpEHMZsEHoIxHL1j+lKdGobr8ovEyqeNkPLSKp6SCSOt7gmw==" + } + }, + "npm:tuf-js": { + "type": "npm", + "name": "npm:tuf-js", + "data": { + "version": "1.1.5", + "packageName": "tuf-js", + "hash": "sha512-inqodgxdsmuxrtQVbu6tPNgRKWD1Boy3VB6GO7KczJZpAHiTukwhSzXUSzvDcw5pE2Jo8ua+e1ykpHv7VdPVlQ==" + } + }, + "npm:tunnel": { + "type": "npm", + "name": "npm:tunnel", + "data": { + "version": "0.0.6", + "packageName": "tunnel", + "hash": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:type-detect": { + "type": "npm", + "name": "npm:type-detect", + "data": { + "version": "4.0.8", + "packageName": "type-detect", + "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + } + }, + "npm:type-fest@0.16.0": { + "type": "npm", + "name": "npm:type-fest@0.16.0", + "data": { + "version": "0.16.0", + "packageName": "type-fest", + "hash": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" + } + }, + "npm:type-fest@0.18.1": { + "type": "npm", + "name": "npm:type-fest@0.18.1", + "data": { + "version": "0.18.1", + "packageName": "type-fest", + "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" + } + }, + "npm:type-fest@0.20.2": { + "type": "npm", + "name": "npm:type-fest@0.20.2", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:type-fest@0.21.3": { + "type": "npm", + "name": "npm:type-fest@0.21.3", + "data": { + "version": "0.21.3", + "packageName": "type-fest", + "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + }, + "npm:type-fest@0.4.1": { + "type": "npm", + "name": "npm:type-fest@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "type-fest", + "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" + } + }, + "npm:type-fest@0.6.0": { + "type": "npm", + "name": "npm:type-fest@0.6.0", + "data": { + "version": "0.6.0", + "packageName": "type-fest", + "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + }, + "npm:type-fest@0.8.1": { + "type": "npm", + "name": "npm:type-fest@0.8.1", + "data": { + "version": "0.8.1", + "packageName": "type-fest", + "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "1.4.0", + "packageName": "type-fest", + "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" + } + }, + "npm:type-fest@2.12.1": { + "type": "npm", + "name": "npm:type-fest@2.12.1", + "data": { + "version": "2.12.1", + "packageName": "type-fest", + "hash": "sha512-AiknQSEqKVGDDjtZqeKrUoTlcj7FKhupmnVUgz6KoOKtvMwRGE6hUNJ/nVear+h7fnUPO1q/htSkYKb1pyntkQ==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "1.6.18", + "packageName": "type-is", + "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.0", + "packageName": "typed-array-buffer", + "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-length", + "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-offset", + "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.4", + "packageName": "typed-array-length", + "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" + } + }, + "npm:typedarray-to-buffer": { + "type": "npm", + "name": "npm:typedarray-to-buffer", + "data": { + "version": "3.1.5", + "packageName": "typedarray-to-buffer", + "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" + } + }, + "npm:typedarray": { + "type": "npm", + "name": "npm:typedarray", + "data": { + "version": "0.0.6", + "packageName": "typedarray", + "hash": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + } + }, + "npm:typescript@5.1.6": { + "type": "npm", + "name": "npm:typescript@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "typescript", + "hash": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==" + } + }, + "npm:ua-parser-js": { + "type": "npm", + "name": "npm:ua-parser-js", + "data": { + "version": "0.7.31", + "packageName": "ua-parser-js", + "hash": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==" + } + }, + "npm:uc.micro": { + "type": "npm", + "name": "npm:uc.micro", + "data": { + "version": "1.0.6", + "packageName": "uc.micro", + "hash": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" + } + }, + "npm:uglify-js": { + "type": "npm", + "name": "npm:uglify-js", + "data": { + "version": "3.14.2", + "packageName": "uglify-js", + "hash": "sha512-rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.2", + "packageName": "unbox-primitive", + "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" + } + }, + "npm:unherit": { + "type": "npm", + "name": "npm:unherit", + "data": { + "version": "1.1.3", + "packageName": "unherit", + "hash": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==" + } + }, + "npm:unicode-canonical-property-names-ecmascript": { + "type": "npm", + "name": "npm:unicode-canonical-property-names-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-canonical-property-names-ecmascript", + "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + } + }, + "npm:unicode-match-property-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-match-property-ecmascript", + "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + } + }, + "npm:unicode-match-property-value-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-value-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-match-property-value-ecmascript", + "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + } + }, + "npm:unicode-property-aliases-ecmascript": { + "type": "npm", + "name": "npm:unicode-property-aliases-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-property-aliases-ecmascript", + "hash": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==" + } + }, + "npm:unified": { + "type": "npm", + "name": "npm:unified", + "data": { + "version": "9.2.0", + "packageName": "unified", + "hash": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==" + } + }, + "npm:unified@9.2.2": { + "type": "npm", + "name": "npm:unified@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "unified", + "hash": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==" + } + }, + "npm:unique-filename@1.1.1": { + "type": "npm", + "name": "npm:unique-filename@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "unique-filename", + "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "3.0.0", + "packageName": "unique-filename", + "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" + } + }, + "npm:unique-slug@2.0.2": { + "type": "npm", + "name": "npm:unique-slug@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "unique-slug", + "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "4.0.0", + "packageName": "unique-slug", + "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" + } + }, + "npm:unique-string": { + "type": "npm", + "name": "npm:unique-string", + "data": { + "version": "2.0.0", + "packageName": "unique-string", + "hash": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" + } + }, + "npm:unist-builder": { + "type": "npm", + "name": "npm:unist-builder", + "data": { + "version": "2.0.3", + "packageName": "unist-builder", + "hash": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==" + } + }, + "npm:unist-util-generated": { + "type": "npm", + "name": "npm:unist-util-generated", + "data": { + "version": "1.1.6", + "packageName": "unist-util-generated", + "hash": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==" + } + }, + "npm:unist-util-is": { + "type": "npm", + "name": "npm:unist-util-is", + "data": { + "version": "4.1.0", + "packageName": "unist-util-is", + "hash": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==" + } + }, + "npm:unist-util-position": { + "type": "npm", + "name": "npm:unist-util-position", + "data": { + "version": "3.1.0", + "packageName": "unist-util-position", + "hash": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==" + } + }, + "npm:unist-util-remove-position": { + "type": "npm", + "name": "npm:unist-util-remove-position", + "data": { + "version": "2.0.1", + "packageName": "unist-util-remove-position", + "hash": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==" + } + }, + "npm:unist-util-remove": { + "type": "npm", + "name": "npm:unist-util-remove", + "data": { + "version": "2.1.0", + "packageName": "unist-util-remove", + "hash": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==" + } + }, + "npm:unist-util-stringify-position": { + "type": "npm", + "name": "npm:unist-util-stringify-position", + "data": { + "version": "2.0.3", + "packageName": "unist-util-stringify-position", + "hash": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==" + } + }, + "npm:unist-util-visit-parents": { + "type": "npm", + "name": "npm:unist-util-visit-parents", + "data": { + "version": "3.1.1", + "packageName": "unist-util-visit-parents", + "hash": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==" + } + }, + "npm:unist-util-visit": { + "type": "npm", + "name": "npm:unist-util-visit", + "data": { + "version": "2.0.3", + "packageName": "unist-util-visit", + "hash": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==" + } + }, + "npm:universal-user-agent": { + "type": "npm", + "name": "npm:universal-user-agent", + "data": { + "version": "6.0.0", + "packageName": "universal-user-agent", + "hash": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==" + } + }, + "npm:universalify@0.1.2": { + "type": "npm", + "name": "npm:universalify@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.0", + "packageName": "universalify", + "hash": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + } + }, + "npm:upath": { + "type": "npm", + "name": "npm:upath", + "data": { + "version": "2.0.1", + "packageName": "upath", + "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" + } + }, + "npm:upath@1.2.0": { + "type": "npm", + "name": "npm:upath@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "upath", + "hash": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.0.11", + "packageName": "update-browserslist-db", + "hash": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==" + } + }, + "npm:update-notifier": { + "type": "npm", + "name": "npm:update-notifier", + "data": { + "version": "5.1.0", + "packageName": "update-notifier", + "hash": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-loader": { + "type": "npm", + "name": "npm:url-loader", + "data": { + "version": "4.1.1", + "packageName": "url-loader", + "hash": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" + } + }, + "npm:url-parse-lax": { + "type": "npm", + "name": "npm:url-parse-lax", + "data": { + "version": "3.0.0", + "packageName": "url-parse-lax", + "hash": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=" + } + }, + "npm:use-composed-ref": { + "type": "npm", + "name": "npm:use-composed-ref", + "data": { + "version": "1.1.0", + "packageName": "use-composed-ref", + "hash": "sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==" + } + }, + "npm:use-isomorphic-layout-effect": { + "type": "npm", + "name": "npm:use-isomorphic-layout-effect", + "data": { + "version": "1.1.1", + "packageName": "use-isomorphic-layout-effect", + "hash": "sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==" + } + }, + "npm:use-latest": { + "type": "npm", + "name": "npm:use-latest", + "data": { + "version": "1.2.0", + "packageName": "use-latest", + "hash": "sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==" + } + }, + "npm:use-sync-external-store": { + "type": "npm", + "name": "npm:use-sync-external-store", + "data": { + "version": "1.2.0", + "packageName": "use-sync-external-store", + "hash": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + } + }, + "npm:utila": { + "type": "npm", + "name": "npm:utila", + "data": { + "version": "0.4.0", + "packageName": "utila", + "hash": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + } + }, + "npm:utility-types": { + "type": "npm", + "name": "npm:utility-types", + "data": { + "version": "3.10.0", + "packageName": "utility-types", + "hash": "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==" + } + }, + "npm:utils-merge": { + "type": "npm", + "name": "npm:utils-merge", + "data": { + "version": "1.0.1", + "packageName": "utils-merge", + "hash": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + } + }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, + "npm:uuid@9.0.0": { + "type": "npm", + "name": "npm:uuid@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "uuid", + "hash": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" + } + }, + "npm:v8-compile-cache-lib": { + "type": "npm", + "name": "npm:v8-compile-cache-lib", + "data": { + "version": "3.0.1", + "packageName": "v8-compile-cache-lib", + "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" + } + }, + "npm:v8-compile-cache": { + "type": "npm", + "name": "npm:v8-compile-cache", + "data": { + "version": "2.3.0", + "packageName": "v8-compile-cache", + "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.1.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==" + } + }, + "npm:validate-npm-package-license": { + "type": "npm", + "name": "npm:validate-npm-package-license", + "data": { + "version": "3.0.4", + "packageName": "validate-npm-package-license", + "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "5.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" + } + }, + "npm:validate-npm-package-name@3.0.0": { + "type": "npm", + "name": "npm:validate-npm-package-name@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=" + } + }, + "npm:validator": { + "type": "npm", + "name": "npm:validator", + "data": { + "version": "13.7.0", + "packageName": "validator", + "hash": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" + } + }, + "npm:value-equal": { + "type": "npm", + "name": "npm:value-equal", + "data": { + "version": "1.0.1", + "packageName": "value-equal", + "hash": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + } + }, + "npm:vfile-location": { + "type": "npm", + "name": "npm:vfile-location", + "data": { + "version": "3.2.0", + "packageName": "vfile-location", + "hash": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==" + } + }, + "npm:vfile-message": { + "type": "npm", + "name": "npm:vfile-message", + "data": { + "version": "2.0.4", + "packageName": "vfile-message", + "hash": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==" + } + }, + "npm:vfile": { + "type": "npm", + "name": "npm:vfile", + "data": { + "version": "4.2.1", + "packageName": "vfile", + "hash": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==" + } + }, + "npm:vscode-languageserver-textdocument@1.0.8": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument@1.0.8", + "data": { + "version": "1.0.8", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==" + } + }, + "npm:vscode-uri@3.0.7": { + "type": "npm", + "name": "npm:vscode-uri@3.0.7", + "data": { + "version": "3.0.7", + "packageName": "vscode-uri", + "hash": "sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==" + } + }, + "npm:wait-on": { + "type": "npm", + "name": "npm:wait-on", + "data": { + "version": "6.0.1", + "packageName": "wait-on", + "hash": "sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==" + } + }, + "npm:walker": { + "type": "npm", + "name": "npm:walker", + "data": { + "version": "1.0.8", + "packageName": "walker", + "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" + } + }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.0", + "packageName": "watchpack", + "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=" + } + }, + "npm:web-namespaces": { + "type": "npm", + "name": "npm:web-namespaces", + "data": { + "version": "1.1.4", + "packageName": "web-namespaces", + "hash": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==" + } + }, + "npm:web-streams-polyfill": { + "type": "npm", + "name": "npm:web-streams-polyfill", + "data": { + "version": "3.2.1", + "packageName": "web-streams-polyfill", + "hash": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + }, + "npm:webidl-conversions@4.0.2": { + "type": "npm", + "name": "npm:webidl-conversions@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "webidl-conversions", + "hash": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + } + }, + "npm:webpack-bundle-analyzer": { + "type": "npm", + "name": "npm:webpack-bundle-analyzer", + "data": { + "version": "4.5.0", + "packageName": "webpack-bundle-analyzer", + "hash": "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "5.3.1", + "packageName": "webpack-dev-middleware", + "hash": "sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "4.9.3", + "packageName": "webpack-dev-server", + "hash": "sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.8.0", + "packageName": "webpack-merge", + "hash": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:webpack@5.88.2": { + "type": "npm", + "name": "npm:webpack@5.88.2", + "data": { + "version": "5.88.2", + "packageName": "webpack", + "hash": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==" + } + }, + "npm:webpackbar": { + "type": "npm", + "name": "npm:webpackbar", + "data": { + "version": "5.0.2", + "packageName": "webpackbar", + "hash": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "npm:whatwg-url@7.1.0": { + "type": "npm", + "name": "npm:whatwg-url@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "whatwg-url", + "hash": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.0.2", + "packageName": "which-boxed-primitive", + "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + } + }, + "npm:which-collection": { + "type": "npm", + "name": "npm:which-collection", + "data": { + "version": "1.0.1", + "packageName": "which-collection", + "hash": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==" + } + }, + "npm:which-typed-array@1.1.11": { + "type": "npm", + "name": "npm:which-typed-array@1.1.11", + "data": { + "version": "1.1.11", + "packageName": "which-typed-array", + "hash": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==" + } + }, + "npm:which@2.0.2": { + "type": "npm", + "name": "npm:which@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:which@1.3.1": { + "type": "npm", + "name": "npm:which@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "which", + "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "3.0.0", + "packageName": "which", + "hash": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==" + } + }, + "npm:wide-align@1.1.3": { + "type": "npm", + "name": "npm:wide-align@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "wide-align", + "hash": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==" + } + }, + "npm:wide-align": { + "type": "npm", + "name": "npm:wide-align", + "data": { + "version": "1.1.5", + "packageName": "wide-align", + "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" + } + }, + "npm:widest-line@3.1.0": { + "type": "npm", + "name": "npm:widest-line@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "widest-line", + "hash": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" + } + }, + "npm:widest-line": { + "type": "npm", + "name": "npm:widest-line", + "data": { + "version": "4.0.1", + "packageName": "widest-line", + "hash": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==" + } + }, + "npm:wildcard": { + "type": "npm", + "name": "npm:wildcard", + "data": { + "version": "2.0.0", + "packageName": "wildcard", + "hash": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==" + } + }, + "npm:wordwrap": { + "type": "npm", + "name": "npm:wordwrap", + "data": { + "version": "1.0.0", + "packageName": "wordwrap", + "hash": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + } + }, + "npm:workbox-background-sync": { + "type": "npm", + "name": "npm:workbox-background-sync", + "data": { + "version": "6.5.4", + "packageName": "workbox-background-sync", + "hash": "sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==" + } + }, + "npm:workbox-broadcast-update": { + "type": "npm", + "name": "npm:workbox-broadcast-update", + "data": { + "version": "6.5.4", + "packageName": "workbox-broadcast-update", + "hash": "sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==" + } + }, + "npm:workbox-build": { + "type": "npm", + "name": "npm:workbox-build", + "data": { + "version": "6.5.4", + "packageName": "workbox-build", + "hash": "sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==" + } + }, + "npm:workbox-cacheable-response": { + "type": "npm", + "name": "npm:workbox-cacheable-response", + "data": { + "version": "6.5.4", + "packageName": "workbox-cacheable-response", + "hash": "sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==" + } + }, + "npm:workbox-core": { + "type": "npm", + "name": "npm:workbox-core", + "data": { + "version": "6.5.4", + "packageName": "workbox-core", + "hash": "sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==" + } + }, + "npm:workbox-expiration": { + "type": "npm", + "name": "npm:workbox-expiration", + "data": { + "version": "6.5.4", + "packageName": "workbox-expiration", + "hash": "sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==" + } + }, + "npm:workbox-google-analytics": { + "type": "npm", + "name": "npm:workbox-google-analytics", + "data": { + "version": "6.5.4", + "packageName": "workbox-google-analytics", + "hash": "sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==" + } + }, + "npm:workbox-navigation-preload": { + "type": "npm", + "name": "npm:workbox-navigation-preload", + "data": { + "version": "6.5.4", + "packageName": "workbox-navigation-preload", + "hash": "sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==" + } + }, + "npm:workbox-precaching": { + "type": "npm", + "name": "npm:workbox-precaching", + "data": { + "version": "6.5.4", + "packageName": "workbox-precaching", + "hash": "sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==" + } + }, + "npm:workbox-range-requests": { + "type": "npm", + "name": "npm:workbox-range-requests", + "data": { + "version": "6.5.4", + "packageName": "workbox-range-requests", + "hash": "sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==" + } + }, + "npm:workbox-recipes": { + "type": "npm", + "name": "npm:workbox-recipes", + "data": { + "version": "6.5.4", + "packageName": "workbox-recipes", + "hash": "sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==" + } + }, + "npm:workbox-routing": { + "type": "npm", + "name": "npm:workbox-routing", + "data": { + "version": "6.5.4", + "packageName": "workbox-routing", + "hash": "sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==" + } + }, + "npm:workbox-strategies": { + "type": "npm", + "name": "npm:workbox-strategies", + "data": { + "version": "6.5.4", + "packageName": "workbox-strategies", + "hash": "sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==" + } + }, + "npm:workbox-streams": { + "type": "npm", + "name": "npm:workbox-streams", + "data": { + "version": "6.5.4", + "packageName": "workbox-streams", + "hash": "sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==" + } + }, + "npm:workbox-sw": { + "type": "npm", + "name": "npm:workbox-sw", + "data": { + "version": "6.5.4", + "packageName": "workbox-sw", + "hash": "sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==" + } + }, + "npm:workbox-window": { + "type": "npm", + "name": "npm:workbox-window", + "data": { + "version": "6.5.4", + "packageName": "workbox-window", + "hash": "sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==" + } + }, + "npm:workerpool@6.1.0": { + "type": "npm", + "name": "npm:workerpool@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "workerpool", + "hash": "sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@^7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi@6.2.0": { + "type": "npm", + "name": "npm:wrap-ansi@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "wrap-ansi", + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "5.0.1", + "packageName": "write-file-atomic", + "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" + } + }, + "npm:write-file-atomic@2.4.3": { + "type": "npm", + "name": "npm:write-file-atomic@2.4.3", + "data": { + "version": "2.4.3", + "packageName": "write-file-atomic", + "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" + } + }, + "npm:write-file-atomic@3.0.3": { + "type": "npm", + "name": "npm:write-file-atomic@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "write-file-atomic", + "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" + } + }, + "npm:write-file-atomic@4.0.2": { + "type": "npm", + "name": "npm:write-file-atomic@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:write-json-file": { + "type": "npm", + "name": "npm:write-json-file", + "data": { + "version": "3.2.0", + "packageName": "write-json-file", + "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" + } + }, + "npm:write-pkg": { + "type": "npm", + "name": "npm:write-pkg", + "data": { + "version": "4.0.0", + "packageName": "write-pkg", + "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "7.5.5", + "packageName": "ws", + "hash": "sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==" + } + }, + "npm:ws@8.5.0": { + "type": "npm", + "name": "npm:ws@8.5.0", + "data": { + "version": "8.5.0", + "packageName": "ws", + "hash": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==" + } + }, + "npm:xdg-basedir": { + "type": "npm", + "name": "npm:xdg-basedir", + "data": { + "version": "4.0.0", + "packageName": "xdg-basedir", + "hash": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" + } + }, + "npm:xml-js": { + "type": "npm", + "name": "npm:xml-js", + "data": { + "version": "1.6.11", + "packageName": "xml-js", + "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" + } + }, + "npm:xtend": { + "type": "npm", + "name": "npm:xtend", + "data": { + "version": "4.0.2", + "packageName": "xtend", + "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "npm:yallist@3.1.1": { + "type": "npm", + "name": "npm:yallist@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:yaml@2.3.1": { + "type": "npm", + "name": "npm:yaml@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "yaml", + "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" + } + }, + "npm:yargs-parser@20.2.4": { + "type": "npm", + "name": "npm:yargs-parser@20.2.4", + "data": { + "version": "20.2.4", + "packageName": "yargs-parser", + "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:yargs-parser@20.2.9": { + "type": "npm", + "name": "npm:yargs-parser@20.2.9", + "data": { + "version": "20.2.9", + "packageName": "yargs-parser", + "hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + } + }, + "npm:yargs-unparser": { + "type": "npm", + "name": "npm:yargs-unparser", + "data": { + "version": "2.0.0", + "packageName": "yargs-unparser", + "hash": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "16.2.0", + "packageName": "yargs", + "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" + } + }, + "npm:yargs@17.7.1": { + "type": "npm", + "name": "npm:yargs@17.7.1", + "data": { + "version": "17.7.1", + "packageName": "yargs", + "hash": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==" + } + }, + "npm:yn": { + "type": "npm", + "name": "npm:yn", + "data": { + "version": "3.1.1", + "packageName": "yn", + "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:z-schema": { + "type": "npm", + "name": "npm:z-schema", + "data": { + "version": "5.0.2", + "packageName": "z-schema", + "hash": "sha512-40TH47ukMHq5HrzkeVE40Ad7eIDKaRV2b+Qpi2prLc9X9eFJFzV7tMe5aH12e6avaSS/u5l653EQOv+J9PirPw==" + } + }, + "npm:zwitch": { + "type": "npm", + "name": "npm:zwitch", + "data": { + "version": "1.0.5", + "packageName": "zwitch", + "hash": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" + } + } + }, + "dependencies": [ + { + "source": "npm:@actions/core@1.10.0", + "target": "npm:@actions/http-client@2.1.0", + "type": "static" + }, + { + "source": "npm:@actions/core@1.10.0", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@actions/github@5.1.1", + "target": "npm:@actions/http-client@2.1.0", + "type": "static" + }, + { + "source": "npm:@actions/github@5.1.1", + "target": "npm:@octokit/core@3.6.0", + "type": "static" + }, + { + "source": "npm:@actions/github@5.1.1", + "target": "npm:@octokit/plugin-paginate-rest@2.21.3", + "type": "static" + }, + { + "source": "npm:@actions/github@5.1.1", + "target": "npm:@octokit/plugin-rest-endpoint-methods@5.16.2", + "type": "static" + }, + { + "source": "npm:@actions/http-client@2.1.0", + "target": "npm:tunnel", + "type": "static" + }, + { + "source": "npm:@algolia/autocomplete-core", + "target": "npm:@algolia/autocomplete-shared", + "type": "static" + }, + { + "source": "npm:@algolia/autocomplete-preset-algolia", + "target": "npm:@algolia/autocomplete-shared", + "type": "static" + }, + { + "source": "npm:@algolia/cache-browser-local-storage", + "target": "npm:@algolia/cache-common", + "type": "static" + }, + { + "source": "npm:@algolia/cache-in-memory", + "target": "npm:@algolia/cache-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-account", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-account", + "target": "npm:@algolia/client-search", + "type": "static" + }, + { + "source": "npm:@algolia/client-account", + "target": "npm:@algolia/transporter", + "type": "static" + }, + { + "source": "npm:@algolia/client-analytics", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-analytics", + "target": "npm:@algolia/client-search", + "type": "static" + }, + { + "source": "npm:@algolia/client-analytics", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-analytics", + "target": "npm:@algolia/transporter", + "type": "static" + }, + { + "source": "npm:@algolia/client-common", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-common", + "target": "npm:@algolia/transporter", + "type": "static" + }, + { + "source": "npm:@algolia/client-personalization", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-personalization", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-personalization", + "target": "npm:@algolia/transporter", + "type": "static" + }, + { + "source": "npm:@algolia/client-search", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-search", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-search", + "target": "npm:@algolia/transporter", + "type": "static" + }, + { + "source": "npm:@algolia/logger-console", + "target": "npm:@algolia/logger-common", + "type": "static" + }, + { + "source": "npm:@algolia/requester-browser-xhr", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/requester-node-http", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/transporter", + "target": "npm:@algolia/cache-common", + "type": "static" + }, + { + "source": "npm:@algolia/transporter", + "target": "npm:@algolia/logger-common", + "type": "static" + }, + { + "source": "npm:@algolia/transporter", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@apideck/better-ajv-errors@0.3.6", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:@apideck/better-ajv-errors@0.3.6", + "target": "npm:jsonpointer", + "type": "static" + }, + { + "source": "npm:@apideck/better-ajv-errors@0.3.6", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:@axe-core/playwright@4.7.3", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.22.5", + "target": "npm:@babel/highlight@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.22.5", + "target": "npm:@babel/highlight@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.22.5", + "target": "npm:@babel/highlight@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.22.5", + "target": "npm:@babel/highlight@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.22.5", + "target": "npm:@babel/highlight@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.22.5", + "target": "npm:@babel/highlight@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.22.5", + "target": "npm:@babel/highlight@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:@babel/eslint-parser@7.22.9", + "target": "npm:@nicolo-ribaudo/eslint-scope-5-internals", + "type": "static" + }, + { + "source": "npm:@babel/eslint-parser@7.22.9", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:@babel/eslint-parser@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/eslint-parser@7.22.9", + "target": "npm:@nicolo-ribaudo/eslint-scope-5-internals", + "type": "static" + }, + { + "source": "npm:@babel/eslint-parser@7.22.9", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:@babel/eslint-parser@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:jsesc@2.5.2", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:jsesc@2.5.2", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:jsesc@2.5.2", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:jsesc@2.5.2", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:jsesc@2.5.2", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure@7.18.6", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9", + "target": "npm:@babel/helper-explode-assignable-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-optimise-call-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-replace-supers@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-optimise-call-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-replace-supers@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-explode-assignable-expression@7.18.6", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-optimise-call-expression@7.18.6", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "target": "npm:@babel/helper-wrap-function@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-optimise-call-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-optimise-call-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-optimise-call-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function@7.18.9", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function@7.18.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function@7.18.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function@7.18.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helpers@7.22.6", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helpers@7.22.6", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/helpers@7.22.6", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helpers@7.22.6", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helpers@7.22.6", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/helpers@7.22.6", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.22.5", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.22.5", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "target": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "target": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/helper-replace-supers@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/plugin-syntax-decorators@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "target": "npm:@babel/plugin-transform-parameters@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/plugin-transform-parameters@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-decorators@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-assertions@7.20.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx@7.12.1", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-arrow-functions@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "target": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoped-functions@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoping@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-optimise-call-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-replace-supers@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring@7.21.3", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-duplicate-keys@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name@7.18.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name@7.18.9", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-literals@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-member-expression-literals@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-new-target@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super@7.18.6", + "target": "npm:@babel/helper-replace-supers@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters@7.21.3", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters@7.21.3", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters@7.21.3", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-property-literals@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-constant-elements", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator@7.21.5", + "target": "npm:regenerator-transform@0.15.1", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-reserved-words@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-shorthand-properties@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread@7.20.7", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-sticky-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typeof-symbol@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript@7.18.8", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript@7.18.8", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript@7.18.8", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-escapes@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-assertions@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-arrow-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoped-functions@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoping@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-classes@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-destructuring@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-duplicate-keys@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-for-of@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-function-name@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-member-expression-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-new-target@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-object-super@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-parameters@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-property-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-regenerator@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-reserved-words@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-shorthand-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-sticky-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-template-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-typeof-symbol@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-escapes@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/preset-modules@0.1.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:core-js-compat@3.25.4", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-assertions@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-arrow-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoped-functions@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoping@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-classes@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-destructuring@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-duplicate-keys@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-for-of@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-function-name@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-member-expression-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-new-target@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-object-super@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-parameters@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-property-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-regenerator@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-reserved-words@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-shorthand-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-sticky-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-template-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-typeof-symbol@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-escapes@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/preset-modules@0.1.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:core-js-compat@3.25.4", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-assertions@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-arrow-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoped-functions@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoping@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-classes@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-destructuring@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-duplicate-keys@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-for-of@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-function-name@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-member-expression-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-new-target@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-object-super@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-parameters@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-property-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-regenerator@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-reserved-words@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-shorthand-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-sticky-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-template-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-typeof-symbol@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-escapes@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/preset-modules@0.1.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:core-js-compat@3.25.4", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-assertions@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-arrow-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoped-functions@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoping@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-classes@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-destructuring@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-duplicate-keys@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-for-of@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-function-name@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-member-expression-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-new-target@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-object-super@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-parameters@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-property-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-regenerator@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-reserved-words@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-shorthand-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-sticky-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-template-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-typeof-symbol@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-escapes@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/preset-modules@0.1.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:core-js-compat@3.25.4", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript@7.18.6", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript@7.18.6", + "target": "npm:@babel/plugin-transform-typescript@7.18.8", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript@7.18.6", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript@7.18.6", + "target": "npm:@babel/plugin-transform-typescript@7.18.8", + "type": "static" + }, + { + "source": "npm:@babel/runtime-corejs3", + "target": "npm:core-js-pure", + "type": "static" + }, + { + "source": "npm:@babel/runtime-corejs3", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-ada@4.0.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-aws@3.0.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-bash@4.1.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-companies@3.0.17", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-cpp@5.0.3", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-cryptocurrencies@3.0.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-csharp", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-css@4.0.6", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-dart@2.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-django", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-docker@1.1.6", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-dotnet", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-elixir", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-en-common-misspellings", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-en-gb", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-en_us@4.3.4", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-filetypes", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-fonts@3.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-fullstack", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-gaming-terms", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-git", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-golang@6.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-haskell", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-html@4.0.3", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-html-symbol-entities", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-java@5.0.5", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-k8s", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-latex", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-lorem-ipsum@3.0.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-lua@4.0.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-node@4.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-npm@5.0.7", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-php@4.0.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-powershell", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-public-licenses@2.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-python@4.1.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-r", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-ruby@5.0.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-rust", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-scala", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-software-terms@3.2.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-sql@2.1.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-svelte", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-swift", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-typescript@3.1.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-vue", + "type": "static" + }, + { + "source": "npm:@cspell/dict-python@4.1.2", + "target": "npm:@cspell/dict-data-science@1.0.7", + "type": "static" + }, + { + "source": "npm:@cspell/dynamic-import@6.31.1", + "target": "npm:import-meta-resolve@2.2.2", + "type": "static" + }, + { + "source": "npm:@cspotcode/source-map-support@0.7.0", + "target": "npm:@cspotcode/source-map-consumer", + "type": "static" + }, + { + "source": "npm:@cspotcode/source-map-support", + "target": "npm:@jridgewell/trace-mapping@0.3.9", + "type": "static" + }, + { + "source": "npm:@docsearch/react", + "target": "npm:@algolia/autocomplete-core", + "type": "static" + }, + { + "source": "npm:@docsearch/react", + "target": "npm:@algolia/autocomplete-preset-algolia", + "type": "static" + }, + { + "source": "npm:@docsearch/react", + "target": "npm:@docsearch/css", + "type": "static" + }, + { + "source": "npm:@docsearch/react", + "target": "npm:algoliasearch", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/plugin-transform-runtime@7.21.4", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/preset-typescript@7.18.6", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/runtime-corejs3", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/cssnano-preset@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@slorber/static-site-generator-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@svgr/webpack", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:babel-plugin-dynamic-import-node", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:boxen", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:combine-promises", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:del", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:eta", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:html-tags", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:html-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:postcss-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-dev-utils", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-loadable-ssr-addon-v5-slorber", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-router", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-router-dom", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:rtl-detect", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:serve-handler", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:shelljs", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:update-notifier", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:url-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:wait-on", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack-bundle-analyzer", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpackbar", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/plugin-transform-runtime@7.21.4", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/preset-typescript@7.18.6", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/runtime-corejs3", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/cssnano-preset@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@slorber/static-site-generator-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@svgr/webpack", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:babel-plugin-dynamic-import-node", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:boxen", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:combine-promises", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:del", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:eta", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:html-tags", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:html-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:postcss-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-dev-utils", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-loadable-ssr-addon-v5-slorber", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-router", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-router-dom", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:rtl-detect", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:serve-handler", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:shelljs", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:update-notifier", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:url-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:wait-on", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack-bundle-analyzer", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpackbar", + "type": "static" + }, + { + "source": "npm:@docusaurus/cssnano-preset@2.4.1", + "target": "npm:cssnano-preset-advanced", + "type": "static" + }, + { + "source": "npm:@docusaurus/cssnano-preset@2.4.1", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:@docusaurus/cssnano-preset@2.4.1", + "target": "npm:postcss-sort-media-queries", + "type": "static" + }, + { + "source": "npm:@docusaurus/cssnano-preset@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/logger@2.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/logger@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@mdx-js/mdx", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:remark-emoji", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:stringify-object", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:unified@9.2.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:url-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@docusaurus/react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/react-router-dom", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@docusaurus/react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/react-router-dom", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:cheerio", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:feed", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:reading-time", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/module-type-aliases@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@types/react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:combine-promises", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:react-json-view", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/theme-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/theme-translations@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:clsx@1.2.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:workbox-build", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:workbox-precaching", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:workbox-window", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:sitemap", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-blog@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-docs@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-pages@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-debug@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-sitemap@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/theme-classic@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/theme-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/theme-search-algolia@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/react-loadable", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/react-loadable", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-loadable", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:react-loadable", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1", + "target": "npm:npm-to-yarn", + "type": "static" + }, + { + "source": "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/module-type-aliases@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-blog@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-docs@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-pages@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/theme-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/theme-translations@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@mdx-js/react", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:clsx@1.2.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:copy-text-to-clipboard", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:infima", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:nprogress", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:prism-react-renderer", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:prismjs", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:react-router-dom", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:rtlcss", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/module-type-aliases@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/plugin-content-blog@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/plugin-content-docs@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/plugin-content-pages@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@types/react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:clsx@1.2.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:parse-numeric-range", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:prism-react-renderer", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:use-sync-external-store", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/module-type-aliases@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/plugin-content-blog@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/plugin-content-docs@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/plugin-content-pages@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@types/react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:clsx@1.2.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:parse-numeric-range", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:prism-react-renderer", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:use-sync-external-store", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docsearch/react", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/plugin-content-docs@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/theme-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/theme-translations@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:algoliasearch", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:algoliasearch-helper", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:clsx@1.2.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:eta", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-translations@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-translations@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:joi", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-common@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:joi", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:@svgr/webpack", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:github-slugger", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:gray-matter", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:resolve-pathname", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:shelljs", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:url-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/cjs-loader@2.4.2", + "target": "npm:@esbuild-kit/core-utils@3.1.0", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/cjs-loader@2.4.2", + "target": "npm:get-tsconfig@4.5.0", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/core-utils@3.1.0", + "target": "npm:esbuild@0.17.19", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/core-utils@3.1.0", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/esm-loader@2.5.5", + "target": "npm:@esbuild-kit/core-utils@3.1.0", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/esm-loader@2.5.5", + "target": "npm:get-tsconfig@4.5.0", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:globals@13.20.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:@hapi/topo", + "target": "npm:@hapi/hoek", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:@humanwhocodes/object-schema", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:camelcase@5.3.1", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/reporters@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-changed-files@29.5.0", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-config@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-resolve-dependencies@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-runner@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-runtime@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-watcher@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/create-cache-key-function@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/create-cache-key-function@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/environment@29.6.2", + "target": "npm:@jest/fake-timers@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/environment@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/environment@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/environment@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/expect-utils@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:@jest/expect@29.6.2", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/expect@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/globals@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/globals@29.6.2", + "target": "npm:@jest/expect@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/globals@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/globals@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-worker@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:v8-to-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-worker@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:v8-to-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-worker@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:v8-to-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/schemas@29.6.0", + "target": "npm:@sinclair/typebox", + "type": "static" + }, + { + "source": "npm:@jest/source-map@29.6.0", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jest/source-map@29.6.0", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:@jest/source-map@29.6.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:write-file-atomic@4.0.2", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@jest/schemas@29.6.0", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@types/yargs", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/resolve-uri@3.1.0", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/resolve-uri@3.1.0", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/sourcemap-codec@1.4.14", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/resolve-uri@3.1.0", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/sourcemap-codec@1.4.14", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/resolve-uri@3.1.0", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/sourcemap-codec@1.4.14", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/resolve-uri@3.1.0", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/sourcemap-codec@1.4.14", + "type": "static" + }, + { + "source": "npm:@lerna/child-process@7.1.4", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@lerna/child-process@7.1.4", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/child-process@7.1.4", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:@lerna/child-process@7.1.4", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:pify@5.0.0", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/core@7.12.9", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-jsx@7.12.1", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-extract-import-names", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:camelcase-css", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:detab", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:hast-util-raw", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:mdast-util-to-hast", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-footnotes", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-mdx", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-parse", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-squeeze-paragraphs", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unified", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-builder", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model@7.27.5", + "target": "npm:@microsoft/tsdoc", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model@7.27.5", + "target": "npm:@microsoft/tsdoc-config", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model@7.27.5", + "target": "npm:@rushstack/node-core-library@3.59.6", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@microsoft/api-extractor-model@7.27.5", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@microsoft/tsdoc", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@microsoft/tsdoc-config", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@rushstack/node-core-library@3.59.6", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@rushstack/rig-package@0.4.0", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@rushstack/ts-command-line@4.15.1", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:typescript@5.1.6", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:@microsoft/tsdoc@0.14.1", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:resolve@1.19.0", + "type": "static" + }, + { + "source": "npm:@nicolo-ribaudo/eslint-scope-5-internals", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + }, + { + "source": "npm:@npmcli/fs@2.1.0", + "target": "npm:@gar/promisify@1.1.3", + "type": "static" + }, + { + "source": "npm:@npmcli/fs@2.1.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/fs", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled@3.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file@2.0.0", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file@2.0.0", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp@9.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp@9.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:@nrwl/devkit@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nrwl/jest@16.5.3", + "target": "npm:@nx/jest@16.5.3", + "type": "static" + }, + { + "source": "npm:@nrwl/js@16.5.3", + "target": "npm:@nx/js@16.5.3", + "type": "static" + }, + { + "source": "npm:@nrwl/linter@16.5.3", + "target": "npm:@nx/linter@16.5.3", + "type": "static" + }, + { + "source": "npm:@nrwl/nx-cloud", + "target": "npm:nx-cloud", + "type": "static" + }, + { + "source": "npm:@nrwl/tao@16.5.3", + "target": "npm:nx@16.5.3", + "type": "static" + }, + { + "source": "npm:@nrwl/workspace@16.5.3", + "target": "npm:@nx/workspace@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:@nrwl/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:@nrwl/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@jest/reporters@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@nrwl/jest@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@nx/js@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:dotenv@10.0.0", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:identity-obj-proxy", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:jest-config@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:resolve.exports@1.1.0", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/plugin-proposal-decorators@7.21.0", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/plugin-transform-runtime@7.21.4", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/preset-typescript@7.18.6", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@nrwl/js@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@nx/workspace@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:babel-plugin-const-enum", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:babel-plugin-transform-typescript-metadata", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:fast-glob@3.2.7", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:source-map-support@0.5.19", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:@nrwl/linter@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:@nx/js@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:@nrwl/workspace@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:dotenv@10.0.0", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:nx@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:yargs@17.7.1", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:@octokit/auth-token@2.5.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/auth-token@3.0.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/auth-token@2.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/graphql@4.8.0", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/request@5.6.3", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/request-error@2.1.0", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/auth-token@3.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/graphql@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request@6.2.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request-error@3.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/types@9.3.2", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@6.0.12", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@6.0.12", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@6.0.12", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.0", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.0", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@4.8.0", + "target": "npm:@octokit/request@5.6.3", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@4.8.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@4.8.0", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.0", + "target": "npm:@octokit/request@6.2.0", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.0", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest@2.21.3", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/tsconfig", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types@9.3.2", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods@5.16.2", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods@5.16.2", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:@octokit/types@10.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@2.1.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@2.1.0", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@2.1.0", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@2.1.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@2.1.0", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@2.1.0", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.0", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.0", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:@octokit/endpoint@6.0.12", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:@octokit/request-error@2.1.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:node-fetch@2.6.12", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:@octokit/endpoint@6.0.12", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:@octokit/request-error@2.1.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:node-fetch@2.6.12", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:@octokit/endpoint@7.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:@octokit/request-error@3.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:node-fetch@2.6.12", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:universal-user-agent", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + }, + { + "source": "npm:@octokit/types@10.0.0", + "target": "npm:@octokit/openapi-types", + "type": "static" + }, + { + "source": "npm:@octokit/types@6.40.0", + "target": "npm:@octokit/openapi-types@12.10.1", + "type": "static" + }, + { + "source": "npm:@octokit/types@6.40.0", + "target": "npm:@octokit/openapi-types@12.10.1", + "type": "static" + }, + { + "source": "npm:@octokit/types@6.40.0", + "target": "npm:@octokit/openapi-types@12.10.1", + "type": "static" + }, + { + "source": "npm:@octokit/types@6.40.0", + "target": "npm:@octokit/openapi-types@12.10.1", + "type": "static" + }, + { + "source": "npm:@octokit/types@9.3.2", + "target": "npm:@octokit/openapi-types", + "type": "static" + }, + { + "source": "npm:@octokit/types@9.3.2", + "target": "npm:@octokit/openapi-types", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-gyp-build", + "type": "static" + }, + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:@playwright/test@1.36.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@playwright/test@1.36.2", + "target": "npm:playwright-core@1.36.2", + "type": "static" + }, + { + "source": "npm:@playwright/test@1.36.2", + "target": "npm:fsevents@2.3.2", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-babel", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-babel", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:@types/resolve", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:builtin-modules", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:is-module", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-replace", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-replace", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:@types/estree@0.0.0", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:import-lazy", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:z-schema", + "type": "static" + }, + { + "source": "npm:@rushstack/rig-package@0.4.0", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@rushstack/rig-package@0.4.0", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line@4.15.1", + "target": "npm:@types/argparse", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line@4.15.1", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line@4.15.1", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line@4.15.1", + "target": "npm:string-argv@0.3.1", + "type": "static" + }, + { + "source": "npm:@sideway/address", + "target": "npm:@hapi/hoek", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:tuf-js", + "type": "static" + }, + { + "source": "npm:@sinonjs/commons@1.8.6", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:@sinonjs/commons@1.8.6", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:@sinonjs/commons@1.8.6", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:@sinonjs/commons@2.0.0", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:@sinonjs/commons", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:@sinonjs/fake-timers", + "target": "npm:@sinonjs/commons", + "type": "static" + }, + { + "source": "npm:@sinonjs/fake-timers@7.1.2", + "target": "npm:@sinonjs/commons@1.8.6", + "type": "static" + }, + { + "source": "npm:@sinonjs/samsam@6.1.3", + "target": "npm:@sinonjs/commons@1.8.6", + "type": "static" + }, + { + "source": "npm:@sinonjs/samsam@6.1.3", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:@sinonjs/samsam@6.1.3", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:@slorber/static-site-generator-webpack-plugin", + "target": "npm:eval", + "type": "static" + }, + { + "source": "npm:@slorber/static-site-generator-webpack-plugin", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:@slorber/static-site-generator-webpack-plugin", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:@surma/rollup-plugin-off-main-thread", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@surma/rollup-plugin-off-main-thread", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@surma/rollup-plugin-off-main-thread", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@surma/rollup-plugin-off-main-thread", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-add-jsx-attribute", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-svg-dynamic-title", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-svg-em-dimensions", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-transform-react-native-svg", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-transform-svg-component", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:@svgr/plugin-jsx", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:cosmiconfig@7.0.1", + "type": "static" + }, + { + "source": "npm:@svgr/hast-util-to-babel-ast", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@svgr/hast-util-to-babel-ast", + "target": "npm:entities@3.0.1", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/babel-preset", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/hast-util-to-babel-ast", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:svg-parser", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:cosmiconfig@7.0.1", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:svgo", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/plugin-transform-react-constant-elements", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-typescript@7.18.6", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/core", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/plugin-jsx", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/plugin-svgo", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-darwin-arm64@1.3.74", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-darwin-x64@1.3.74", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-arm-gnueabihf@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-arm64-gnu@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-arm64-musl@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-x64-gnu@1.3.74", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-x64-musl@1.3.74", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-win32-arm64-msvc@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-win32-ia32-msvc@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-win32-x64-msvc@1.3.74", + "type": "static" + }, + { + "source": "npm:@swc/jest@0.2.27", + "target": "npm:@jest/create-cache-key-function@29.6.2", + "type": "static" + }, + { + "source": "npm:@swc/jest@0.2.27", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:@szmarczak/http-timer", + "target": "npm:defer-to-connect", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:@tufjs/canonical-json", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/connect", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/debug@4.1.8", + "target": "npm:@types/ms", + "type": "static" + }, + { + "source": "npm:@types/debug@4.1.8", + "target": "npm:@types/ms", + "type": "static" + }, + { + "source": "npm:@types/eslint-visitor-keys", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch@5.1.2", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/hast", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@types/jest-specific-snapshot@0.5.6", + "target": "npm:@types/jest@29.5.3", + "type": "static" + }, + { + "source": "npm:@types/jest@29.5.3", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:@types/jest@29.5.3", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:@types/jest@29.5.3", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:@types/jest@29.5.3", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:@types/lodash.merge@4.6.7", + "target": "npm:@types/lodash@4.14.192", + "type": "static" + }, + { + "source": "npm:@types/mdast", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:@types/ncp@2.0.5", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/react-helmet@6.1.6", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@types/react-router-config", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router-config", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@types/react-router-config", + "target": "npm:@types/react-router", + "type": "static" + }, + { + "source": "npm:@types/react-router-config", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router-config", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@types/react-router-config", + "target": "npm:@types/react-router", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react-router", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react-router", + "type": "static" + }, + { + "source": "npm:@types/react-router", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@types/react@18.2.18", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react@18.2.18", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react@18.2.18", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/react@18.2.18", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react@18.2.18", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react@18.2.18", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/resolve", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/sax", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/ws", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@5.62.0", + "target": "npm:@typescript-eslint/types@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@5.62.0", + "target": "npm:@typescript-eslint/visitor-keys@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:@typescript-eslint/types@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:@typescript-eslint/visitor-keys@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@types/semver@7.5.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@typescript-eslint/scope-manager@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@typescript-eslint/types@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@typescript-eslint/typescript-estree@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@types/semver@7.5.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@typescript-eslint/scope-manager@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@typescript-eslint/types@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@typescript-eslint/typescript-estree@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.62.0", + "target": "npm:@typescript-eslint/types@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.62.0", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:humanize-ms", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:ajv-formats@2.1.1", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:ajv-keywords@5.1.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:algoliasearch-helper", + "target": "npm:@algolia/events", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/cache-browser-local-storage", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/cache-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/cache-in-memory", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-account", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-analytics", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-personalization", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-search", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/logger-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/logger-console", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/requester-browser-xhr", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/requester-node-http", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/transporter", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/cache-browser-local-storage", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/cache-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/cache-in-memory", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-account", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-analytics", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-personalization", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-search", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/logger-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/logger-console", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/requester-browser-xhr", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/requester-node-http", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/transporter", + "type": "static" + }, + { + "source": "npm:ansi-align", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:ansi-align", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.21.3", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.21.3", + "type": "static" + }, + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:ansi-styles", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:ansi-styles", + "target": "npm:color-convert@2.0.1", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:argparse@1.0.10", + "target": "npm:sprintf-js", + "type": "static" + }, + { + "source": "npm:argparse@1.0.10", + "target": "npm:sprintf-js", + "type": "static" + }, + { + "source": "npm:aria-query", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:array-includes@3.1.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array-includes@3.1.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes@3.1.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array-includes@3.1.6", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:array-includes@3.1.6", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:array.prototype.flat@1.3.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array.prototype.flat@1.3.1", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat@1.3.1", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array.prototype.flat@1.3.1", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap@1.3.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap@1.3.1", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap@1.3.1", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap@1.3.1", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:axios@1.1.3", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios@1.1.3", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:axios@1.1.3", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:axios@1.1.3", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios@1.1.3", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:axios@1.1.3", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:axios@0.25.0", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axobject-query", + "target": "npm:deep-equal", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:@types/babel__core@7.20.1", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:babel-preset-jest@29.5.0", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils@2.7.1", + "type": "static" + }, + { + "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:babel-plugin-dynamic-import-node", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:babel-plugin-extract-import-names", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist@29.5.0", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist@29.5.0", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist@29.5.0", + "target": "npm:@types/babel__core@7.20.1", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist@29.5.0", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "target": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "target": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "target": "npm:core-js-compat@3.25.4", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "target": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "type": "static" + }, + { + "source": "npm:babel-plugin-transform-typescript-metadata", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-bigint", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:babel-preset-jest@29.5.0", + "target": "npm:babel-plugin-jest-hoist@29.5.0", + "type": "static" + }, + { + "source": "npm:babel-preset-jest@29.5.0", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:bytes@3.1.2", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:dns-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:multicast-dns", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:ansi-align", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:cli-boxes@2.2.1", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:type-fest@0.20.2", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:widest-line@3.1.0", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:ansi-align", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:cli-boxes", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:type-fest@2.12.1", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:widest-line", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:concat-map", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium@1.4.477", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium@1.4.477", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium@1.4.477", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium@1.4.477", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium@1.4.477", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium@1.4.477", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium@1.4.477", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:bser", + "target": "npm:node-int64", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:builtins", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:@npmcli/fs@2.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:@npmcli/move-file@2.0.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:infer-owner@1.0.4", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:unique-filename@1.1.1", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob@9.3.5", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:clone-response", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:keyv@3.1.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:lowercase-keys@2.0.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:normalize-url@4.5.1", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:responselike", + "type": "static" + }, + { + "source": "npm:call-bind@1.0.2", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:call-bind@1.0.2", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:call-bind@1.0.2", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:call-bind@1.0.2", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:camel-case", + "target": "npm:pascal-case", + "type": "static" + }, + { + "source": "npm:camel-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:camelcase@5.3.1", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:camelcase-keys@7.0.2", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:camelcase-keys@7.0.2", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:camelcase-keys@7.0.2", + "target": "npm:quick-lru@5.1.1", + "type": "static" + }, + { + "source": "npm:camelcase-keys@7.0.2", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:assertion-error", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:check-error@1.0.2", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:deep-eql", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:get-func-name@2.0.0", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:loupe@2.3.6", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:pathval", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:chalk@4.1.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.0", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:css-select@5.1.0", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:cheerio-select", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:htmlparser2@8.0.1", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:parse5-htmlparser2-tree-adapter", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:readdirp@3.5.0", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:fsevents@2.3.2", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.2", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.2", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.2", + "type": "static" + }, + { + "source": "npm:clean-css", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:clean-css", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:clean-regexp", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:clear-module", + "target": "npm:parent-module@2.0.0", + "type": "static" + }, + { + "source": "npm:clear-module", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + }, + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + }, + { + "source": "npm:cli-truncate@2.1.0", + "target": "npm:slice-ansi@3.0.0", + "type": "static" + }, + { + "source": "npm:cli-truncate@2.1.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object@2.0.4", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object@2.0.4", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + }, + { + "source": "npm:clone-response", + "target": "npm:mimic-response", + "type": "static" + }, + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:array-timsort", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:has-own-prop", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:array-ify", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:dot-prop", + "type": "static" + }, + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:typedarray", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:dot-prop", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:unique-string", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:write-file-atomic@3.0.3", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:xdg-basedir", + "type": "static" + }, + { + "source": "npm:content-disposition@0.5.4", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:conventional-changelog-angular", + "target": "npm:compare-func", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-changelog-writer", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:get-pkg-repo", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-remote-origin-url", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg-up@3.0.0", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:split", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter", + "target": "npm:lodash.ismatch", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter", + "target": "npm:modify-values", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-changelog-preset-loader", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby@13.1.1", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:core-js-compat@3.25.4", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cross-fetch", + "target": "npm:node-fetch@2.6.12", + "type": "static" + }, + { + "source": "npm:cross-fetch", + "target": "npm:node-fetch@2.6.12", + "type": "static" + }, + { + "source": "npm:cross-fetch@3.1.5", + "target": "npm:node-fetch@2.6.7", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:cspell-trie-lib@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:fast-equals", + "type": "static" + }, + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:gensequence@5.0.2", + "type": "static" + }, + { + "source": "npm:cspell-gitignore@6.31.2", + "target": "npm:cspell-glob@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell-gitignore@6.31.2", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:cspell-glob@6.31.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:cspell-grammar@6.31.1", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-grammar@6.31.1", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-io@6.31.2", + "target": "npm:@cspell/cspell-service-bus@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-io@6.31.2", + "target": "npm:node-fetch@2.6.12", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:@cspell/strong-weak-map@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:clear-module", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:comment-json", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:configstore@5.0.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cosmiconfig@8.0.0", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-dictionary@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-glob@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-grammar@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-io@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-trie-lib@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:fast-equals", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:gensequence@5.0.2", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:resolve-global@1.0.0", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:vscode-languageserver-textdocument@1.0.8", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:vscode-uri@3.0.7", + "type": "static" + }, + { + "source": "npm:cspell-trie-lib@6.31.1", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-trie-lib@6.31.1", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-trie-lib@6.31.1", + "target": "npm:gensequence@5.0.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:@cspell/dynamic-import@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:commander@10.0.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:cspell-gitignore@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:cspell-glob@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:cspell-io@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:cspell-lib@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:file-entry-cache@6.0.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:get-stdin@8.0.0", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:vscode-uri@3.0.7", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what@5.1.0", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler@4.2.2", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils@2.8.0", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:mdn-data@2.0.14", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:mdn-data@2.0.14", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:css-tree@2.3.1", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree@2.3.1", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:postcss-discard-unused", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:postcss-merge-idents", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:postcss-reduce-idents", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:postcss-zindex", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:csso", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug@4.3.1", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:decamelize-keys", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:decamelize-keys", + "target": "npm:map-obj@1.0.1", + "type": "static" + }, + { + "source": "npm:decompress-response", + "target": "npm:mimic-response", + "type": "static" + }, + { + "source": "npm:deep-eql", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:es-get-iterator", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:regexp.prototype.flags@1.5.0", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:which-collection", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:which-typed-array@1.1.11", + "type": "static" + }, + { + "source": "npm:default-gateway", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:detab", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:detect-port-alt", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port-alt", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:dns-packet", + "target": "npm:@leichtgewicht/ip-codec", + "type": "static" + }, + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:doctrine@3.0.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:dom-converter", + "target": "npm:utila", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:domhandler@4.2.2", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:entities@2.2.0", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:domhandler@4.2.2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler@4.2.2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils@2.8.0", + "target": "npm:dom-serializer@1.3.2", + "type": "static" + }, + { + "source": "npm:domutils@2.8.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils@2.8.0", + "target": "npm:domhandler@4.2.2", + "type": "static" + }, + { + "source": "npm:domutils@2.8.0", + "target": "npm:dom-serializer@1.3.2", + "type": "static" + }, + { + "source": "npm:domutils@2.8.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils@2.8.0", + "target": "npm:domhandler@4.2.2", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:dot-prop", + "target": "npm:is-obj", + "type": "static" + }, + { + "source": "npm:dot-prop", + "target": "npm:is-obj", + "type": "static" + }, + { + "source": "npm:downlevel-dts", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:downlevel-dts", + "target": "npm:shelljs", + "type": "static" + }, + { + "source": "npm:downlevel-dts", + "target": "npm:typescript@5.1.6", + "type": "static" + }, + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + }, + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + }, + { + "source": "npm:encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + }, + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:arraybuffer.prototype.slice@1.0.1", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:function.prototype.name@1.1.5", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object-inspect@1.12.3", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:regexp.prototype.flags@1.5.0", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:safe-array-concat@1.0.0", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trim@1.2.7", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trimend@1.0.6", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trimstart@1.0.6", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:which-typed-array@1.1.11", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:arraybuffer.prototype.slice@1.0.1", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:function.prototype.name@1.1.5", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object-inspect@1.12.3", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:regexp.prototype.flags@1.5.0", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:safe-array-concat@1.0.0", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trim@1.2.7", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trimend@1.0.6", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trimstart@1.0.6", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:which-typed-array@1.1.11", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:arraybuffer.prototype.slice@1.0.1", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:function.prototype.name@1.1.5", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object-inspect@1.12.3", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:regexp.prototype.flags@1.5.0", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:safe-array-concat@1.0.0", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trim@1.2.7", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trimend@1.0.6", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trimstart@1.0.6", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:which-typed-array@1.1.11", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:stop-iteration-iterator", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:es-shim-unscopables", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/android-arm@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/android-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/android-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/darwin-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/darwin-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/freebsd-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/freebsd-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-arm@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-ia32@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-loong64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-mips64el@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-ppc64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-riscv64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-s390x@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/netbsd-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/openbsd-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/sunos-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/win32-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/win32-ia32@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/win32-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/android-arm@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/android-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/android-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/darwin-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/darwin-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/freebsd-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/freebsd-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-arm@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-ia32@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-loong64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-mips64el@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-ppc64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-riscv64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-s390x@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/netbsd-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/openbsd-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/sunos-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/win32-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/win32-ia32@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/win32-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node@0.3.7", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node@0.3.7", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node@0.3.7", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation@1.5.0", + "target": "npm:@typescript-eslint/utils@5.62.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation@1.5.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation@1.5.0", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-plugin", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-plugin", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:array-includes@3.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:array.prototype.findlastindex@1.2.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:array.prototype.flat@1.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:array.prototype.flatmap@1.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:eslint-import-resolver-node@0.3.7", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:object.fromentries@2.0.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:object.groupby@1.0.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:object.values@1.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:tsconfig-paths@3.14.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jest@27.2.3", + "target": "npm:@typescript-eslint/utils@5.62.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:array-includes@3.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:array.prototype.flatmap@1.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:ast-types-flow", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axobject-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:damerau-levenshtein", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:language-tags", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:object.fromentries@2.0.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:array-includes@3.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:array.prototype.flatmap@1.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:array.prototype.tosorted", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:object.fromentries@2.0.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:object.values@1.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:resolve@2.0.0-next.4", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:clean-regexp", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:is-builtin-module", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:jsesc@3.0.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:pluralize", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:regexp-tree", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:regjsparser@0.10.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:strip-indent", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.3.0", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.3.0", + "type": "static" + }, + { + "source": "npm:eslint-scope@7.2.2", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@7.2.2", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-utils", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint-community/regexpp@4.6.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint/eslintrc@2.1.1", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint/js@8.46.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@humanwhocodes/config-array", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:doctrine@3.0.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:eslint-scope@7.2.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:file-entry-cache@6.0.1", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:globals@13.20.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint-community/regexpp@4.6.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint/eslintrc@2.1.1", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint/js@8.46.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@humanwhocodes/config-array", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:doctrine@3.0.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:eslint-scope@7.2.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:file-entry-cache@6.0.1", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:globals@13.20.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eval", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:eval", + "target": "npm:require-like", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals@4.3.1", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals@4.3.1", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals@4.3.1", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:strip-final-newline@2.0.0", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:strip-final-newline@2.0.0", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:@jest/expect-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:@jest/expect-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten@1.1.1", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition@0.5.4", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp@0.1.7", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:extend-shallow", + "target": "npm:is-extendable", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:chardet", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:tmp@0.0.33", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-url-parser", + "target": "npm:punycode@1.4.1", + "type": "static" + }, + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + }, + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + }, + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + }, + { + "source": "npm:fbemitter", + "target": "npm:fbjs", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:cross-fetch@3.1.5", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:fbjs-css-vars", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:promise", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:setimmediate", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:ua-parser-js", + "type": "static" + }, + { + "source": "npm:feed", + "target": "npm:xml-js", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:node-domexception", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:web-streams-polyfill", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:node-domexception", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:web-streams-polyfill", + "type": "static" + }, + { + "source": "npm:figures", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:figures", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:file-entry-cache@6.0.1", + "target": "npm:flat-cache@3.0.4", + "type": "static" + }, + { + "source": "npm:file-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:file-loader", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:filelist", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:locate-path@6.0.0", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:locate-path@6.0.0", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", + "type": "static" + }, + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-yarn-workspace-root@2.0.0", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:flat-cache@3.0.4", + "target": "npm:flatted@3.2.7", + "type": "static" + }, + { + "source": "npm:flat-cache@3.0.4", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:flux", + "target": "npm:fbemitter", + "type": "static" + }, + { + "source": "npm:flux", + "target": "npm:fbjs", + "type": "static" + }, + { + "source": "npm:for-each", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.0.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable@1.1.3", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:formdata-polyfill", + "target": "npm:fetch-blob", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:jsonfile@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:universalify@0.1.2", + "type": "static" + }, + { + "source": "npm:fs-minipass@2.1.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:fs-minipass@2.1.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:fs-minipass", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:function.prototype.name@1.1.5", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:function.prototype.name@1.1.5", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name@1.1.5", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:function.prototype.name@1.1.5", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:wide-align", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:@hutson/parse-repository-url", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:get-stream@4.1.0", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:dargs", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:git-remote-origin-url", + "target": "npm:gitconfiglocal", + "type": "static" + }, + { + "source": "npm:git-remote-origin-url", + "target": "npm:pify@2.3.0", + "type": "static" + }, + { + "source": "npm:git-semver-tags", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:git-semver-tags", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:git-up", + "target": "npm:is-ssh", + "type": "static" + }, + { + "source": "npm:git-up", + "target": "npm:parse-url", + "type": "static" + }, + { + "source": "npm:git-url-parse", + "target": "npm:git-up", + "type": "static" + }, + { + "source": "npm:gitconfiglocal", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:jackspeak@2.2.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minipass@7.0.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:jackspeak@2.2.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minipass@7.0.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:jackspeak@2.2.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minipass@7.0.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:jackspeak@2.2.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minipass@7.0.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minimatch@8.0.3", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minimatch@8.0.3", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:glob@10.2.7", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.2.7", + "target": "npm:jackspeak@2.2.1", + "type": "static" + }, + { + "source": "npm:glob@10.2.7", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.2.7", + "target": "npm:minipass@6.0.2", + "type": "static" + }, + { + "source": "npm:glob@10.2.7", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:global-dirs@0.1.1", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:global-dirs@3.0.0", + "target": "npm:ini@2.0.0", + "type": "static" + }, + { + "source": "npm:global-modules", + "target": "npm:global-prefix", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:which@1.3.1", + "type": "static" + }, + { + "source": "npm:globals@13.20.0", + "target": "npm:type-fest@0.20.2", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby@13.1.1", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@13.1.1", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@13.1.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@13.1.1", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@13.1.1", + "target": "npm:slash@4.0.0", + "type": "static" + }, + { + "source": "npm:gopd", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:duplexer3", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:get-stream@4.1.0", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:mimic-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:to-readable-stream", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:url-parse-lax", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:section-matter", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:strip-bom-string", + "type": "static" + }, + { + "source": "npm:gzip-size", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + }, + { + "source": "npm:has-property-descriptors", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:has", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:space-separated-tokens", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:@types/parse5", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:hastscript", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:vfile-location", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:@types/hast", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:hast-util-from-parse5", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:hast-util-to-parse5", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:html-void-elements", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:parse5@6.0.1", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:unist-util-position", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:zwitch", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:hast-to-hyperscript", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:zwitch", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:@types/hast", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:hast-util-parse-selector", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:space-separated-tokens", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:resolve-pathname", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:value-equal", + "type": "static" + }, + { + "source": "npm:hoist-non-react-statics", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:hosted-git-info@3.0.8", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:hosted-git-info@6.1.1", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream@2.3.7", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:camel-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:commander@8.3.0", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:param-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:relateurl", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:camel-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:commander@8.3.0", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:param-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:relateurl", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:@types/html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:pretty-error", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler@4.2.2", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils@2.8.0", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities@2.2.0", + "type": "static" + }, + { + "source": "npm:htmlparser2@8.0.1", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2@8.0.1", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:htmlparser2@8.0.1", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2@8.0.1", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.5.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:@tootallnate/once", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj@3.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:humanize-ms", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:identity-obj-proxy", + "target": "npm:harmony-reflect", + "type": "static" + }, + { + "source": "npm:ignore-walk", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:ignore-walk@6.0.2", + "target": "npm:minimatch@7.4.3", + "type": "static" + }, + { + "source": "npm:image-size", + "target": "npm:queue", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:promzard", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:mute-stream@0.0.8", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:ora@5.4.1", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:invariant", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:is-alphanumerical", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:is-alphanumerical", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:is-arguments", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-arguments", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-builtin-module", + "target": "npm:builtin-modules", + "type": "static" + }, + { + "source": "npm:is-ci", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:is-ci@2.0.0", + "target": "npm:ci-info@2.0.0", + "type": "static" + }, + { + "source": "npm:is-core-module@2.12.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module@2.12.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module@2.12.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module@2.12.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module@2.12.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module@2.12.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-core-module@2.12.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:global-dirs@3.0.0", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:is-number-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-plain-object@2.0.4", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-shared-array-buffer", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-ssh", + "target": "npm:protocols", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-text-path", + "target": "npm:text-extensions", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array@1.1.11", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array@1.1.11", + "type": "static" + }, + { + "source": "npm:is-weakref", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:jackspeak@2.2.1", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak@2.2.1", + "target": "npm:@pkgjs/parseargs", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:jest-changed-files@29.5.0", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:jest-changed-files@29.5.0", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@jest/expect@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:dedent@1.5.0", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:is-generator-fn", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-each@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-runtime@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:stack-utils", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:@jest/core@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:jest-config@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:yargs@17.7.1", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@jest/test-sequencer@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:babel-jest@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-circus@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-environment-node@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-runner@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@jest/test-sequencer@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:babel-jest@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-circus@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-environment-node@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-runner@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@jest/test-sequencer@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:babel-jest@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-circus@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-environment-node@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-runner@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:diff-sequences@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:diff-sequences@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:diff-sequences@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:diff-sequences@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-docblock@29.4.3", + "target": "npm:detect-newline", + "type": "static" + }, + { + "source": "npm:jest-each@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-each@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-each@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-each@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-each@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:@jest/fake-timers@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:jest-worker@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:fsevents@2.3.2", + "type": "static" + }, + { + "source": "npm:jest-leak-detector@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-leak-detector@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@29.6.2", + "target": "npm:jest-diff@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:stack-utils", + "type": "static" + }, + { + "source": "npm:jest-mock@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-mock@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-mock@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-docblock@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-environment-node@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-leak-detector@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-runtime@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-watcher@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-worker@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:source-map-support@0.5.13", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/fake-timers@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/globals@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/source-map@29.6.0", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:strip-bom@4.0.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/expect-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-diff@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/expect-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-diff@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/expect-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-diff@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/expect-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-diff@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:jest-specific-snapshot", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-specific-snapshot", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:jest-worker@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-worker@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-worker@29.6.2", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@29.6.2", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:jest@29.6.2", + "target": "npm:@jest/core@29.6.2", + "type": "static" + }, + { + "source": "npm:jest@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest@29.6.2", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest@29.6.2", + "target": "npm:jest-cli@29.6.2", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@hapi/hoek", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@hapi/topo", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/address", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/formula", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/pinpoint", + "type": "static" + }, + { + "source": "npm:js-yaml@4.0.0", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:json-stable-stringify@1.0.2", + "target": "npm:jsonify@0.0.1", + "type": "static" + }, + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:jsonfile@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes@3.1.6", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array.prototype.flat@1.3.1", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.values@1.1.6", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes@3.1.6", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array.prototype.flat@1.3.1", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.values@1.1.6", + "type": "static" + }, + { + "source": "npm:keyv@3.1.0", + "target": "npm:json-buffer@3.0.0", + "type": "static" + }, + { + "source": "npm:klaw-sync@6.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:konamimojisplosion", + "target": "npm:emojisplosion", + "type": "static" + }, + { + "source": "npm:konamimojisplosion", + "target": "npm:konami-code-js", + "type": "static" + }, + { + "source": "npm:language-tags", + "target": "npm:language-subtag-registry", + "type": "static" + }, + { + "source": "npm:latest-version", + "target": "npm:package-json", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@lerna/child-process@7.1.4", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@lerna/create@7.1.4", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@octokit/plugin-enterprise-rest", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@octokit/rest", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:byte-size", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:conventional-changelog-core", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:conventional-recommended-bump", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:execa@5.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:get-stream@6.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:is-stream@2.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:jest-diff@29.6.2", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:libnpmaccess", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:libnpmpublish", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:node-fetch@2.6.7", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:nx@16.5.3", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-map-series", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-pipe", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-queue", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-waterfall", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:pify@5.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:read-cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:rimraf@4.4.1", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:typescript@5.1.6", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:upath", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:uuid@9.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:write-pkg", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:libnpmaccess", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmaccess", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:linkify-it", + "target": "npm:uc.micro", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:chalk@5.2.0", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:commander@10.0.1", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:listr2@5.0.8", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:object-inspect@1.12.3", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:pidtree", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:string-argv@0.3.1", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:yaml@2.3.1", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:cli-truncate@2.1.0", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:log-update@4.0.0", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:strip-bom@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:type-fest@0.6.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:p-locate@2.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:p-locate@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + }, + { + "source": "npm:locate-path@6.0.0", + "target": "npm:p-locate@5.0.0", + "type": "static" + }, + { + "source": "npm:log-symbols@4.0.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:log-update@4.0.0", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:log-update@4.0.0", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:log-update@4.0.0", + "target": "npm:slice-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:log-update@4.0.0", + "target": "npm:wrap-ansi@6.2.0", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loupe@2.3.6", + "target": "npm:get-func-name@2.0.0", + "type": "static" + }, + { + "source": "npm:lower-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:lru-cache@5.1.1", + "target": "npm:yallist@3.1.1", + "type": "static" + }, + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:magic-string", + "target": "npm:sourcemap-codec", + "type": "static" + }, + { + "source": "npm:magic-string", + "target": "npm:sourcemap-codec", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:make-dir@3.1.0", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:make-dir@3.1.0", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:make-dir@3.1.0", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:make-dir@3.1.0", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:cacache@16.1.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass-fetch@2.1.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:socks-proxy-agent@6.2.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + }, + { + "source": "npm:markdown-it", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:markdown-it", + "target": "npm:entities@3.0.1", + "type": "static" + }, + { + "source": "npm:markdown-it", + "target": "npm:linkify-it", + "type": "static" + }, + { + "source": "npm:markdown-it", + "target": "npm:mdurl", + "type": "static" + }, + { + "source": "npm:markdown-it", + "target": "npm:uc.micro", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:commander@11.0.0", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:get-stdin", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:glob@10.2.7", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:markdownlint@0.29.0", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:run-con@1.2.11", + "type": "static" + }, + { + "source": "npm:markdownlint@0.29.0", + "target": "npm:markdown-it", + "type": "static" + }, + { + "source": "npm:markdownlint@0.29.0", + "target": "npm:markdownlint-micromark@0.1.5", + "type": "static" + }, + { + "source": "npm:mdast-squeeze-paragraphs", + "target": "npm:unist-util-remove", + "type": "static" + }, + { + "source": "npm:mdast-util-definitions", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:mdast-util-definitions", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:mdurl", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-builder", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-generated", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-position", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + }, + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:camelcase-keys@7.0.2", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:decamelize@5.0.1", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:read-pkg-up@8.0.0", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:redent@4.0.0", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:trim-newlines@4.1.1", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:camelcase-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:trim-newlines", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:type-fest@0.18.1", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:mime-types@2.1.18", + "target": "npm:mime-db@1.33.0", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mini-create-react-context", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:mini-create-react-context", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:minimatch@3.0.4", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch@3.0.5", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@7.4.3", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@8.0.3", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:arrify", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:is-plain-obj@1.1.0", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.0", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.0", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.0", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:minipass-flush", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-sized", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:mkdirp@0.5.5", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:@ungap/promise-all-settled@1.1.2", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:browser-stdout", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:chokidar@3.5.1", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:debug@4.3.1", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:diff@5.0.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:growl@1.10.5", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:js-yaml@4.0.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:log-symbols@4.0.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:minimatch@3.0.4", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:nanoid@3.1.20", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:serialize-javascript@5.0.1", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:wide-align@1.1.3", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:workerpool@6.1.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:yargs-unparser", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-differ", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:arrify@2.0.1", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:@netlify/open-api", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:micro-api-client", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:node-fetch@3.3.1", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:omit.js", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:p-wait-for", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:qs@6.11.2", + "type": "static" + }, + { + "source": "npm:nise", + "target": "npm:@sinonjs/commons@2.0.0", + "type": "static" + }, + { + "source": "npm:nise", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:nise", + "target": "npm:@sinonjs/text-encoding", + "type": "static" + }, + { + "source": "npm:nise", + "target": "npm:just-extend", + "type": "static" + }, + { + "source": "npm:nise", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:node-emoji", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:node-fetch@2.6.7", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:node-fetch@2.6.12", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:node-fetch@2.6.12", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:node-fetch@2.6.12", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:data-uri-to-buffer", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:fetch-blob", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:formdata-polyfill", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:make-fetch-happen@10.1.5", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:nopt@5.0.0", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:nopt@5.0.0", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin@1.0.1", + "type": "static" + }, + { + "source": "npm:npm-bundled@3.0.0", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-install-checks", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:hosted-git-info@3.0.8", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:validate-npm-package-name@3.0.0", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-normalize-package-bin@1.0.1", + "type": "static" + }, + { + "source": "npm:npm-packlist@7.0.4", + "target": "npm:ignore-walk@6.0.2", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-run-path", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:npm-run-path@5.1.0", + "target": "npm:path-key@4.0.0", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:are-we-there-yet", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:gauge", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:are-we-there-yet", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:gauge", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:@nrwl/nx-cloud", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:axios@1.1.3", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:dotenv@10.0.0", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:node-machine-id", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nrwl/tao@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:axios@1.1.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:dotenv@10.0.0", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:fast-glob@3.2.7", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:yargs@17.7.1", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-darwin-arm64@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-darwin-x64@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-freebsd-x64@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-arm64-gnu@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-arm64-musl@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-x64-gnu@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-x64-musl@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-win32-arm64-msvc@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-win32-x64-msvc@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nrwl/tao@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:axios@1.1.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:dotenv@10.0.0", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:fast-glob@3.2.7", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:yargs@17.7.1", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-darwin-arm64@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-darwin-x64@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-freebsd-x64@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-arm64-gnu@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-arm64-musl@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-x64-gnu@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-x64-musl@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-win32-arm64-msvc@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-win32-x64-msvc@16.5.3", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:object.fromentries@2.0.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.fromentries@2.0.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries@2.0.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:object.groupby@1.0.0", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.groupby@1.0.0", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.groupby@1.0.0", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:object.groupby@1.0.0", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:object.values@1.1.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.values@1.1.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values@1.1.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + }, + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + }, + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:@aashutoshrathi/word-wrap", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-spinners@2.7.0", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:p-limit@1.3.0", + "target": "npm:p-try@1.0.0", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-locate@2.0.0", + "target": "npm:p-limit@1.3.0", + "type": "static" + }, + { + "source": "npm:p-locate@3.0.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:p-locate", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:p-locate@5.0.0", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:p-queue", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:p-queue", + "target": "npm:p-timeout", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry@0.13.1", + "type": "static" + }, + { + "source": "npm:p-timeout", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:p-wait-for", + "target": "npm:p-timeout@5.1.0", + "type": "static" + }, + { + "source": "npm:p-waterfall", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:registry-auth-token", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:registry-url", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-packlist@7.0.4", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:param-case", + "target": "npm:dot-case", + "type": "static" + }, + { + "source": "npm:param-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:parent-module@2.0.0", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-entities", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-entities-legacy", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-reference-invalid", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-alphanumerical", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-hexadecimal", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + }, + { + "source": "npm:parse-path", + "target": "npm:protocols", + "type": "static" + }, + { + "source": "npm:parse-url", + "target": "npm:parse-path", + "type": "static" + }, + { + "source": "npm:parse5-htmlparser2-tree-adapter", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:parse5-htmlparser2-tree-adapter", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:parse5", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:pascal-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:pascal-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:find-yarn-workspace-root@2.0.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:json-stable-stringify@1.0.2", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:klaw-sync@6.0.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:slash@2.0.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:tmp@0.0.33", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:yaml@2.3.1", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.0.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@7.0.1", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.0.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@7.0.1", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.0.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@7.0.1", + "type": "static" + }, + { + "source": "npm:path-to-regexp", + "target": "npm:isarray@0.0.1", + "type": "static" + }, + { + "source": "npm:path-type@3.0.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:pkg-dir", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:pkg-dir", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:pkg-up", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-discard-unused", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig@7.0.1", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:postcss-merge-idents", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-idents", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-reduce-idents", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-sort-media-queries", + "target": "npm:sort-css-media-queries", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:nanoid@3.3.6", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:nanoid@3.3.6", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:nanoid@3.3.6", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:nanoid@3.3.6", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:nanoid@3.3.6", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:nanoid@3.3.6", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:pretty-error", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:pretty-error", + "target": "npm:renderkid", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:@jest/schemas@29.6.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:@jest/schemas@29.6.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:@jest/schemas@29.6.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:@jest/schemas@29.6.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:@jest/schemas@29.6.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry", + "type": "static" + }, + { + "source": "npm:promise", + "target": "npm:asap", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:promzard", + "target": "npm:read", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:property-information", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:property-information", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:pupa", + "target": "npm:escape-goat", + "type": "static" + }, + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:qs@6.11.2", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:queue", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:bytes@3.1.2", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:raw-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:raw-loader", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:react-base16-styling", + "target": "npm:base16", + "type": "static" + }, + { + "source": "npm:react-base16-styling", + "target": "npm:lodash.curry", + "type": "static" + }, + { + "source": "npm:react-base16-styling", + "target": "npm:lodash.flow", + "type": "static" + }, + { + "source": "npm:react-base16-styling", + "target": "npm:pure-color", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:detect-port-alt", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:filesize", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:global-modules", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:gzip-size", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:immer", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:is-root", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:loader-utils@3.2.0", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:pkg-up", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:react-error-overlay", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:recursive-readdir", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:scheduler", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:react-fast-compare", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:react-fast-compare", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:react-json-view", + "target": "npm:flux", + "type": "static" + }, + { + "source": "npm:react-json-view", + "target": "npm:react-base16-styling", + "type": "static" + }, + { + "source": "npm:react-json-view", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:react-json-view", + "target": "npm:react-textarea-autosize", + "type": "static" + }, + { + "source": "npm:react-loadable-ssr-addon-v5-slorber", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-router-config", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:history", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:react-router", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:history", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:mini-create-react-context", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:history", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:mini-create-react-context", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:react-split-pane@0.1.92", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-split-pane@0.1.92", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:react-split-pane@0.1.92", + "target": "npm:react-style-proptype@3.2.2", + "type": "static" + }, + { + "source": "npm:react-style-proptype@3.2.2", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:use-composed-ref", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:use-latest", + "type": "static" + }, + { + "source": "npm:react", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:read-pkg-up@3.0.0", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up@3.0.0", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg@5.2.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:type-fest@0.8.1", + "type": "static" + }, + { + "source": "npm:read-pkg-up@8.0.0", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:read-pkg-up@8.0.0", + "target": "npm:read-pkg@6.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up@8.0.0", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:load-json-file@4.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:path-type@3.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:type-fest@0.6.0", + "type": "static" + }, + { + "source": "npm:read-pkg@6.0.0", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@6.0.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@6.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:read-pkg@6.0.0", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:read", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readdirp@3.5.0", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:readdirp", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:rechoir", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:recursive-readdir", + "target": "npm:minimatch@3.0.4", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:strip-indent", + "type": "static" + }, + { + "source": "npm:redent@4.0.0", + "target": "npm:indent-string@5.0.0", + "type": "static" + }, + { + "source": "npm:redent@4.0.0", + "target": "npm:strip-indent@4.0.0", + "type": "static" + }, + { + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regenerator-transform@0.15.1", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags@1.5.0", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags@1.5.0", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags@1.5.0", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags@1.5.0", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags@1.5.0", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags@1.5.0", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regjsparser", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", + "type": "static" + }, + { + "source": "npm:registry-auth-token", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:registry-url", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:regjsparser@0.10.0", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:regjsparser", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:remark-docusaurus-tabs", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:remark-docusaurus-tabs", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:remark-emoji", + "target": "npm:emoticon", + "type": "static" + }, + { + "source": "npm:remark-emoji", + "target": "npm:node-emoji", + "type": "static" + }, + { + "source": "npm:remark-emoji", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/core@7.12.9", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/plugin-syntax-jsx@7.12.1", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:remark-parse", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:unified", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:ccount", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:collapse-white-space", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-whitespace-character", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-word-character", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:markdown-escapes", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:parse-entities", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:state-toggle", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:trim", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:trim-trailing-lines", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:unherit", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:unist-util-remove-position", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:vfile-location", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:remark-squeeze-paragraphs", + "target": "npm:mdast-squeeze-paragraphs", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:dom-converter", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:resolve-global@1.0.0", + "target": "npm:global-dirs@0.1.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.4", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.4", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.4", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.19.0", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.19.0", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:responselike", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:rimraf@5.0.1", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:rimraf@5.0.1", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:rimraf@3.0.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:rimraf@3.0.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:rimraf@4.4.1", + "target": "npm:glob@9.3.5", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:jest-worker@26.6.2", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:serialize-javascript@4.0.0", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:rollup", + "target": "npm:fsevents@2.3.2", + "type": "static" + }, + { + "source": "npm:rtlcss", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:rtlcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:rtlcss", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:rtlcss", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:run-con@1.2.11", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:run-con@1.2.11", + "target": "npm:ini@3.0.1", + "type": "static" + }, + { + "source": "npm:run-con@1.2.11", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:run-con@1.2.11", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:run-parallel", + "target": "npm:queue-microtask", + "type": "static" + }, + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:safe-array-concat@1.0.0", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:safe-array-concat@1.0.0", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:safe-array-concat@1.0.0", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:safe-array-concat@1.0.0", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:scheduler", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv-formats@2.1.1", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv-keywords@5.1.0", + "type": "static" + }, + { + "source": "npm:section-matter", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:section-matter", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + }, + { + "source": "npm:semver-diff", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime@1.6.0", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:serialize-javascript@5.0.1", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serialize-javascript@4.0.0", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:fast-url-parser", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:mime-types@2.1.18", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:minimatch@3.0.4", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:path-is-inside", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:path-to-regexp@2.2.1", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:range-parser@1.2.0", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:shallow-clone", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:rechoir", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:rechoir", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect@1.12.3", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:tuf-js", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:tuf-js", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:@sinonjs/commons@1.8.6", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:@sinonjs/fake-timers@7.1.2", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:@sinonjs/samsam@6.1.3", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:diff@5.1.0", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:nise", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:@polka/url", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:totalist", + "type": "static" + }, + { + "source": "npm:sitemap", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:sitemap", + "target": "npm:@types/sax", + "type": "static" + }, + { + "source": "npm:sitemap", + "target": "npm:arg@5.0.1", + "type": "static" + }, + { + "source": "npm:sitemap", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point@4.0.0", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@6.2.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@6.2.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@6.2.0", + "target": "npm:socks", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:socks", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + }, + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj@1.1.0", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map@0.8.0-beta.0", + "target": "npm:whatwg-url@7.1.0", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-license-ids", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + }, + { + "source": "npm:split2", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:split", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:ssri", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:ssri", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:ssri@9.0.1", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:ssri@9.0.1", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + }, + { + "source": "npm:stop-iteration-iterator", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:strip-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags@1.5.0", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags@1.5.0", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:string.prototype.trim@1.2.7", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:string.prototype.trim@1.2.7", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim@1.2.7", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend@1.0.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend@1.0.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend@1.0.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart@1.0.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart@1.0.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart@1.0.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:string_decoder@1.1.1", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:get-own-enumerable-property-symbols", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-obj@1.0.1", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-regexp", + "type": "static" + }, + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi@4.0.0", + "target": "npm:ansi-regex@3.0.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@7.0.1", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + }, + { + "source": "npm:strip-indent", + "target": "npm:min-indent", + "type": "static" + }, + { + "source": "npm:strip-indent@4.0.0", + "target": "npm:min-indent", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:style-to-object", + "target": "npm:inline-style-parser", + "type": "static" + }, + { + "source": "npm:style-to-object", + "target": "npm:inline-style-parser", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:stylelint-config-standard", + "target": "npm:stylelint-config-recommended", + "type": "static" + }, + { + "source": "npm:stylelint-order", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:stylelint-order", + "target": "npm:postcss-sorting", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:@csstools/css-parser-algorithms@2.3.0", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:@csstools/css-tokenizer@2.1.1", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:@csstools/media-query-list-parser@2.1.2", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:@csstools/selector-specificity", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:balanced-match@2.0.0", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:css-functions-list@3.2.0", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:css-tree@2.3.1", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:fastest-levenshtein", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:file-entry-cache@6.0.1", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:global-modules", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:globjoin", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:html-tags", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:import-lazy", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:known-css-properties@0.27.0", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:mathml-tag-names", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:meow@10.1.5", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss-resolve-nested-selector", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss-safe-parser", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:style-search", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:supports-hyperlinks", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:svg-tags", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:table", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + }, + { + "source": "npm:supports-color@7.2.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color@7.2.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color@7.2.0", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:supports-color@7.2.0", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:lodash.truncate", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:slice-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:temp-dir@2.0.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:type-fest@0.16.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:unique-string", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:readable-stream@2.3.7", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:title-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:tmp", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:tmp", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:tmp", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:tmp@0.0.33", + "target": "npm:os-tmpdir", + "type": "static" + }, + { + "source": "npm:to-regex-range", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:tr46@1.0.1", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@tsconfig/node10", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@tsconfig/node12", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@tsconfig/node14", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@tsconfig/node16", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:create-require", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:v8-compile-cache-lib", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:yn", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@cspotcode/source-map-support@0.7.0", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node10", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node12", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node14", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node16", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:create-require", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:v8-compile-cache-lib", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:yn", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:builtin-modules@1.1.1", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:mkdirp@0.5.5", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:tsutils@2.29.0", + "type": "static" + }, + { + "source": "npm:tsutils@2.29.0", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tsx@3.12.7", + "target": "npm:@esbuild-kit/cjs-loader@2.4.2", + "type": "static" + }, + { + "source": "npm:tsx@3.12.7", + "target": "npm:@esbuild-kit/core-utils@3.1.0", + "type": "static" + }, + { + "source": "npm:tsx@3.12.7", + "target": "npm:@esbuild-kit/esm-loader@2.5.5", + "type": "static" + }, + { + "source": "npm:tsx@3.12.7", + "target": "npm:fsevents@2.3.2", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:@tufjs/models", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typedarray-to-buffer", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:unherit", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:unherit", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-canonical-property-names-ecmascript", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-property-aliases-ecmascript", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:bail", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:trough", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:bail", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:trough", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:unique-filename@1.1.1", + "target": "npm:unique-slug@2.0.2", + "type": "static" + }, + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + }, + { + "source": "npm:unique-slug@2.0.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unique-string", + "target": "npm:crypto-random-string@2.0.0", + "type": "static" + }, + { + "source": "npm:unist-util-remove-position", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:unist-util-remove", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-stringify-position", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-visit-parents", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-visit-parents", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-visit-parents", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:boxen@5.1.2", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:configstore@5.0.1", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:has-yarn", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:import-lazy@2.1.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-ci@2.0.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-installed-globally", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-npm", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-yarn-global", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:latest-version", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:pupa", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:semver-diff", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:xdg-basedir", + "type": "static" + }, + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:url-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:url-loader", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:url-loader", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:url-parse-lax", + "target": "npm:prepend-http", + "type": "static" + }, + { + "source": "npm:use-composed-ref", + "target": "npm:ts-essentials", + "type": "static" + }, + { + "source": "npm:use-latest", + "target": "npm:use-isomorphic-layout-effect", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name@3.0.0", + "target": "npm:builtins@1.0.3", + "type": "static" + }, + { + "source": "npm:vfile-message", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:vfile-message", + "target": "npm:unist-util-stringify-position", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:unist-util-stringify-position", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:vfile-message", + "type": "static" + }, + { + "source": "npm:wait-on", + "target": "npm:axios@0.25.0", + "type": "static" + }, + { + "source": "npm:wait-on", + "target": "npm:joi", + "type": "static" + }, + { + "source": "npm:wait-on", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:wait-on", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:wait-on", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + }, + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:gzip-size", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:opener", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:sirv", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour-service", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:default-gateway", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js@2.0.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws@8.5.0", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@types/eslint-scope@0.0.0", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@types/estree@0.0.0", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@types/eslint-scope@0.0.0", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@types/estree@0.0.0", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:webpackbar", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:webpackbar", + "target": "npm:consola", + "type": "static" + }, + { + "source": "npm:webpackbar", + "target": "npm:pretty-time", + "type": "static" + }, + { + "source": "npm:webpackbar", + "target": "npm:std-env", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.1.0", + "target": "npm:lodash.sortby", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.1.0", + "target": "npm:tr46@1.0.1", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.1.0", + "target": "npm:webidl-conversions@4.0.2", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakmap", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakset", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which@2.0.2", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which@2.0.2", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which@2.0.2", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which@1.3.1", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:wide-align@1.1.3", + "target": "npm:string-width@2.1.1", + "type": "static" + }, + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:widest-line@3.1.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:widest-line", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:workbox-background-sync", + "target": "npm:idb", + "type": "static" + }, + { + "source": "npm:workbox-background-sync", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-broadcast-update", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@apideck/better-ajv-errors@0.3.6", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@rollup/plugin-babel", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@rollup/plugin-node-resolve", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@rollup/plugin-replace", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@surma/rollup-plugin-off-main-thread", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:common-tags", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:rollup", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:rollup-plugin-terser", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:source-map@0.8.0-beta.0", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:stringify-object", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:strip-comments", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:tempy", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:upath@1.2.0", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-background-sync", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-broadcast-update", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-cacheable-response", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-expiration", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-google-analytics", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-navigation-preload", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-precaching", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-range-requests", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-recipes", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-strategies", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-streams", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-sw", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-window", + "type": "static" + }, + { + "source": "npm:workbox-cacheable-response", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-expiration", + "target": "npm:idb", + "type": "static" + }, + { + "source": "npm:workbox-expiration", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-google-analytics", + "target": "npm:workbox-background-sync", + "type": "static" + }, + { + "source": "npm:workbox-google-analytics", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-google-analytics", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-google-analytics", + "target": "npm:workbox-strategies", + "type": "static" + }, + { + "source": "npm:workbox-navigation-preload", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-precaching", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-precaching", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-precaching", + "target": "npm:workbox-strategies", + "type": "static" + }, + { + "source": "npm:workbox-precaching", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-precaching", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-precaching", + "target": "npm:workbox-strategies", + "type": "static" + }, + { + "source": "npm:workbox-range-requests", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-cacheable-response", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-expiration", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-precaching", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-strategies", + "type": "static" + }, + { + "source": "npm:workbox-routing", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-strategies", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-streams", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-streams", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-window", + "target": "npm:@types/trusted-types", + "type": "static" + }, + { + "source": "npm:workbox-window", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-window", + "target": "npm:@types/trusted-types", + "type": "static" + }, + { + "source": "npm:workbox-window", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit@4.0.2", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit@4.0.2", + "type": "static" + }, + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:typedarray-to-buffer", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:detect-indent", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:write-file-atomic@2.4.3", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:type-fest@0.4.1", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:write-json-file", + "type": "static" + }, + { + "source": "npm:xml-js", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:decamelize@4.0.0", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:commander", + "type": "static" + } + ] +} diff --git a/.nx/cache/project-graph.json b/.nx/cache/project-graph.json new file mode 100644 index 000000000000..ce083d4b34c0 --- /dev/null +++ b/.nx/cache/project-graph.json @@ -0,0 +1,44633 @@ +{ + "nodes": { + "rule-schema-to-typescript-types": { + "name": "rule-schema-to-typescript-types", + "type": "lib", + "data": { + "root": "packages/rule-schema-to-typescript-types", + "name": "rule-schema-to-typescript-types", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "generate-contributors": { + "executor": "nx:run-script", + "options": { + "script": "generate-contributors" + }, + "configurations": {} + }, + "generate-sponsors": { + "executor": "nx:run-script", + "options": { + "script": "generate-sponsors" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nrwl/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/rule-schema-to-typescript-types/**/*.{mts,cts,ts,tsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "postinstall-script": { + "executor": "nx:run-script", + "options": { + "script": "postinstall-script" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/rule-schema-to-typescript-types", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "eslint-plugin-internal": { + "name": "eslint-plugin-internal", + "type": "lib", + "data": { + "root": "packages/eslint-plugin-internal", + "name": "eslint-plugin-internal", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/eslint-plugin-internal/**/*.{mts,cts,ts,tsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/eslint-plugin-internal", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "eslint-plugin-tslint": { + "name": "eslint-plugin-tslint", + "type": "lib", + "data": { + "root": "packages/eslint-plugin-tslint", + "name": "eslint-plugin-tslint", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/eslint-plugin-tslint/**/*.{mts,cts,ts,tsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/eslint-plugin-tslint", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "integration-tests": { + "name": "integration-tests", + "type": "lib", + "data": { + "root": "packages/integration-tests", + "name": "integration-tests", + "targets": { + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nrwl/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/integration-tests/**/*.{mts,cts,ts,tsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/integration-tests", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "typescript-estree": { + "name": "typescript-estree", + "type": "lib", + "data": { + "root": "packages/typescript-estree", + "name": "typescript-estree", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "postbuild": { + "executor": "nx:run-script", + "options": { + "script": "postbuild" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/typescript-estree/**/*.{mts,cts,ts,tsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/typescript-estree", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": ["types"], + "tags": [] + } + }, + "website-eslint": { + "name": "website-eslint", + "type": "lib", + "data": { + "root": "packages/website-eslint", + "name": "website-eslint", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nrwl/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/website-eslint/**/*.{mts,cts,ts,tsx}", + "packages/website-eslint/**/*.{mjs,cjs,js,jsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/website-eslint", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "eslint-plugin": { + "name": "eslint-plugin", + "type": "lib", + "data": { + "root": "packages/eslint-plugin", + "name": "eslint-plugin", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "check-docs": { + "executor": "nx:run-script", + "options": { + "script": "check-docs" + }, + "configurations": {} + }, + "check-configs": { + "executor": "nx:run-script", + "options": { + "script": "check-configs" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "generate:breaking-changes": { + "executor": "nx:run-script", + "options": { + "script": "generate:breaking-changes" + }, + "configurations": {} + }, + "generate:configs": { + "executor": "nx:run-script", + "options": { + "script": "generate:configs" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/eslint-plugin/**/*.{mts,cts,ts,tsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "test-single": { + "executor": "nx:run-script", + "options": { + "script": "test-single" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/eslint-plugin", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "scope-manager": { + "name": "scope-manager", + "type": "lib", + "data": { + "root": "packages/scope-manager", + "name": "scope-manager", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-commands", + "outputs": ["{projectRoot}/dist", "{projectRoot}/_ts4.3"], + "options": { + "parallel": false, + "cwd": "packages/scope-manager", + "commands": [ + "rimraf _ts4.3", + "tsc -b tsconfig.build.json", + "downlevel-dts dist _ts4.3/dist --to=4.3" + ] + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-commands", + "options": { + "parallel": false, + "cwd": "packages/scope-manager", + "commands": [ + "tsc -b tsconfig.build.json --clean", + "rimraf dist", + "rimraf _ts4.3", + "rimraf coverage" + ] + }, + "configurations": {} + }, + "clean-fixtures": { + "executor": "nx:run-commands", + "options": { + "parallel": false, + "cwd": "packages/scope-manager", + "commands": ["rimraf -g \"./src/**/fixtures/**/snapshots\""] + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "generate-lib": { + "executor": "nx:run-commands", + "options": { + "parallel": false, + "cwd": "packages/scope-manager", + "commands": ["yarn tsx tools/generate-lib.ts"] + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/scope-manager/**/*.{mts,cts,ts,tsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "@nx/jest:jest", + "options": { + "jestConfig": "packages/scope-manager/jest.config.js", + "passWithNoTests": true + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-commands", + "options": { + "parallel": true, + "cwd": "packages/scope-manager", + "commands": [ + "tsc -p tsconfig.build.json --noEmit", + "tsc -p tsconfig.spec.json --noEmit" + ] + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/scope-manager/src", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "tags": [], + "implicitDependencies": [] + } + }, + "visitor-keys": { + "name": "visitor-keys", + "type": "lib", + "data": { + "root": "packages/visitor-keys", + "name": "visitor-keys", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "postbuild": { + "executor": "nx:run-script", + "options": { + "script": "postbuild" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/visitor-keys/**/*.{mts,cts,ts,tsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/visitor-keys", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "rule-tester": { + "name": "rule-tester", + "type": "lib", + "data": { + "root": "packages/rule-tester", + "name": "rule-tester", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "postbuild": { + "executor": "nx:run-script", + "options": { + "script": "postbuild" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": ["packages/rule-tester/**/*.ts"] + }, + "configurations": {} + }, + "pretest-eslint-base": { + "executor": "nx:run-script", + "options": { + "script": "pretest-eslint-base" + }, + "configurations": {} + }, + "test-eslint-base": { + "executor": "nx:run-script", + "options": { + "script": "test-eslint-base" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/rule-tester", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "repo-tools": { + "name": "repo-tools", + "type": "lib", + "data": { + "root": "packages/repo-tools", + "name": "repo-tools", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "generate-contributors": { + "executor": "nx:run-script", + "options": { + "script": "generate-contributors" + }, + "configurations": {} + }, + "generate-sponsors": { + "executor": "nx:run-script", + "options": { + "script": "generate-sponsors" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nrwl/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": ["packages/repo-tools/**/*.{mts,cts,ts,tsx}"], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "postinstall-script": { + "executor": "nx:run-script", + "options": { + "script": "postinstall-script" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/repo-tools", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "type-utils": { + "name": "type-utils", + "type": "lib", + "data": { + "root": "packages/type-utils", + "name": "type-utils", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "postbuild": { + "executor": "nx:run-script", + "options": { + "script": "postbuild" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": ["packages/type-utils/**/*.{mts,cts,ts,tsx}"], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/type-utils", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "ast-spec": { + "name": "ast-spec", + "type": "lib", + "data": { + "root": "packages/ast-spec", + "name": "ast-spec", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-commands", + "options": { + "cwd": "packages/ast-spec", + "commands": ["yarn build"] + }, + "outputs": ["{projectRoot}/dist/**/*.ts"], + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "clean-fixtures": { + "executor": "nx:run-script", + "options": { + "script": "clean-fixtures" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": ["packages/ast-spec/**/*.{mts,cts,ts,tsx}"], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/ast-spec", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "website": { + "name": "website", + "type": "lib", + "data": { + "root": "packages/website", + "name": "website", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "clear": { + "executor": "nx:run-script", + "options": { + "script": "clear" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "generate-website-dts": { + "executor": "nx:run-script", + "options": { + "script": "generate-website-dts" + }, + "configurations": {} + }, + "stylelint": { + "executor": "nx:run-script", + "options": { + "script": "stylelint" + }, + "configurations": {} + }, + "stylelint:fix": { + "executor": "nx:run-script", + "options": { + "script": "stylelint:fix" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": [ + "packages/website/**/*.{mts,cts,ts,tsx}", + "packages/website/**/*.{mjs,cjs,js,jsx}" + ], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "serve": { + "executor": "nx:run-script", + "options": { + "script": "serve" + }, + "configurations": {} + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "configurations": {} + }, + "swizzle": { + "executor": "nx:run-script", + "options": { + "script": "swizzle" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/website", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "parser": { + "name": "parser", + "type": "lib", + "data": { + "root": "packages/parser", + "name": "parser", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "postbuild": { + "executor": "nx:run-script", + "options": { + "script": "postbuild" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": ["packages/parser/**/*.{mts,cts,ts,tsx}"], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/parser", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + }, + "types": { + "name": "types", + "type": "lib", + "data": { + "root": "packages/types", + "targets": { + "copy-ast-spec": { + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + } + ], + "outputs": ["packages/types/src/generated"], + "executor": "nx:run-script", + "options": { + "script": "copy-ast-spec" + }, + "configurations": {} + }, + "build": { + "dependsOn": [ + { + "target": "build", + "projects": "dependencies" + }, + { + "target": "copy-ast-spec", + "projects": "self" + } + ], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "postbuild": { + "executor": "nx:run-script", + "options": { + "script": "postbuild" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "generate-lib": { + "executor": "nx:run-script", + "options": { + "script": "generate-lib" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": ["packages/types/**/*.{mts,cts,ts,tsx}"], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "name": "types", + "sourceRoot": "packages/types", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": ["ast-spec"], + "tags": [] + } + }, + "utils": { + "name": "utils", + "type": "lib", + "data": { + "root": "packages/utils", + "name": "utils", + "targets": { + "build": { + "dependsOn": ["^build"], + "inputs": ["production", "^production"], + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "configurations": {} + }, + "postbuild": { + "executor": "nx:run-script", + "options": { + "script": "postbuild" + }, + "configurations": {} + }, + "clean": { + "executor": "nx:run-script", + "options": { + "script": "clean" + }, + "configurations": {} + }, + "postclean": { + "executor": "nx:run-script", + "options": { + "script": "postclean" + }, + "configurations": {} + }, + "format": { + "executor": "nx:run-script", + "options": { + "script": "format" + }, + "configurations": {} + }, + "lint": { + "inputs": [ + "default", + "{workspaceRoot}/.eslintrc.js", + "{workspaceRoot}/yarn.lock", + "{workspaceRoot}/.eslintignore" + ], + "executor": "@nx/linter:eslint", + "outputs": ["{options.outputFile}"], + "options": { + "lintFilePatterns": ["packages/utils/**/*.{mts,cts,ts,tsx}"], + "ignorePath": ".eslintignore" + }, + "configurations": {} + }, + "test": { + "inputs": [ + "default", + "{workspaceRoot}/jest.config.js", + "{workspaceRoot}/jest.config.base.js" + ], + "outputs": ["{projectRoot}/coverage"], + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "configurations": {} + }, + "typecheck": { + "executor": "nx:run-script", + "options": { + "script": "typecheck" + }, + "configurations": {} + }, + "nx-release-publish": { + "dependsOn": ["^nx-release-publish"], + "executor": "@nx/js:release-publish", + "options": {}, + "configurations": {} + } + }, + "sourceRoot": "packages/utils", + "projectType": "library", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "type": "library", + "implicitDependencies": [], + "tags": [] + } + } + }, + "externalNodes": { + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" + } + }, + "npm:js-yaml@3.14.1": { + "type": "npm", + "name": "npm:js-yaml@3.14.1", + "data": { + "version": "3.14.1", + "packageName": "js-yaml", + "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + } + }, + "npm:@cspell/dict-en-common-misspellings": { + "type": "npm", + "name": "npm:@cspell/dict-en-common-misspellings", + "data": { + "version": "1.0.2", + "packageName": "@cspell/dict-en-common-misspellings", + "hash": "sha512-jg7ZQZpZH7+aAxNBlcAG4tGhYF6Ksy+QS5Df73Oo+XyckBjC9QS+PrRwLTeYoFIgXy5j3ICParK5r3MSSoL4gw==" + } + }, + "npm:jest-worker@29.6.2": { + "type": "npm", + "name": "npm:jest-worker@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-worker", + "hash": "sha512-l3ccBOabTdkng8I/ORCkADz4eSMKejTYv1vB/Z83UiubqhC1oQ5Li6dWCyqOIvSifGjUBxuvxvlm6KGK2DtuAQ==" + } + }, + "npm:axe-core": { + "type": "npm", + "name": "npm:axe-core", + "data": { + "version": "4.7.2", + "packageName": "axe-core", + "hash": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==" + } + }, + "npm:diff@5.1.0": { + "type": "npm", + "name": "npm:diff@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "diff", + "hash": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==" + } + }, + "npm:@babel/helper-module-transforms@7.22.9": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==" + } + }, + "npm:escape-string-regexp@4.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + } + }, + "npm:extend": { + "type": "npm", + "name": "npm:extend", + "data": { + "version": "3.0.2", + "packageName": "extend", + "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + } + }, + "npm:@babel/preset-react": { + "type": "npm", + "name": "npm:@babel/preset-react", + "data": { + "version": "7.18.6", + "packageName": "@babel/preset-react", + "hash": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==" + } + }, + "npm:cli-boxes@2.2.1": { + "type": "npm", + "name": "npm:cli-boxes@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "cli-boxes", + "hash": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==" + } + }, + "npm:@docusaurus/plugin-google-tag-manager@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-google-tag-manager", + "hash": "sha512-Zg4Ii9CMOLfpeV2nG74lVTWNtisFaH9QNtEw48R5QE1KIwDBdTVaiSA18G1EujZjrzJJzXN79VhINSbOJO/r3g==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.10.0", + "packageName": "acorn", + "hash": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" + } + }, + "npm:@types/scheduler": { + "type": "npm", + "name": "npm:@types/scheduler", + "data": { + "version": "0.16.3", + "packageName": "@types/scheduler", + "hash": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.21.10", + "packageName": "browserslist", + "hash": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==" + } + }, + "npm:@tsconfig/node10": { + "type": "npm", + "name": "npm:@tsconfig/node10", + "data": { + "version": "1.0.8", + "packageName": "@tsconfig/node10", + "hash": "sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:babel-plugin-extract-import-names": { + "type": "npm", + "name": "npm:babel-plugin-extract-import-names", + "data": { + "version": "1.6.22", + "packageName": "babel-plugin-extract-import-names", + "hash": "sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==" + } + }, + "npm:tiny-warning": { + "type": "npm", + "name": "npm:tiny-warning", + "data": { + "version": "1.0.3", + "packageName": "tiny-warning", + "hash": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.9.3", + "packageName": "optionator", + "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + } + }, + "npm:find-yarn-workspace-root@2.0.0": { + "type": "npm", + "name": "npm:find-yarn-workspace-root@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "find-yarn-workspace-root", + "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" + } + }, + "npm:cli-table3": { + "type": "npm", + "name": "npm:cli-table3", + "data": { + "version": "0.6.2", + "packageName": "cli-table3", + "hash": "sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==" + } + }, + "npm:scheduler": { + "type": "npm", + "name": "npm:scheduler", + "data": { + "version": "0.23.0", + "packageName": "scheduler", + "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" + } + }, + "npm:is-plain-object": { + "type": "npm", + "name": "npm:is-plain-object", + "data": { + "version": "5.0.0", + "packageName": "is-plain-object", + "hash": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" + } + }, + "npm:@nrwl/devkit@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/devkit@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/devkit", + "hash": "sha512-a/XtuamF0PbiW8glJwI91Tx234qNYCF0PULyk2tjqp/idefiJlbb1eIkPz3kTWvZUG6tvPLdmwzpdHOqqH13Aw==" + } + }, + "npm:@swc/core-android-arm-eabi@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-android-arm-eabi@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-android-arm-eabi", + "hash": "355329406115563300" + } + }, + "npm:postcss-zindex": { + "type": "npm", + "name": "npm:postcss-zindex", + "data": { + "version": "5.1.0", + "packageName": "postcss-zindex", + "hash": "sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==" + } + }, + "npm:use-sync-external-store": { + "type": "npm", + "name": "npm:use-sync-external-store", + "data": { + "version": "1.2.0", + "packageName": "use-sync-external-store", + "hash": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.0.11", + "packageName": "update-browserslist-db", + "hash": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==" + } + }, + "npm:@tufjs/models": { + "type": "npm", + "name": "npm:@tufjs/models", + "data": { + "version": "1.0.4", + "packageName": "@tufjs/models", + "hash": "sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==" + } + }, + "npm:@esbuild/linux-ia32@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==" + } + }, + "npm:path-key@4.0.0": { + "type": "npm", + "name": "npm:path-key@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-key", + "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "0.5.2", + "packageName": "fresh", + "hash": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + } + }, + "npm:ignore-walk": { + "type": "npm", + "name": "npm:ignore-walk", + "data": { + "version": "5.0.1", + "packageName": "ignore-walk", + "hash": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==" + } + }, + "npm:hast-util-to-parse5": { + "type": "npm", + "name": "npm:hast-util-to-parse5", + "data": { + "version": "6.0.0", + "packageName": "hast-util-to-parse5", + "hash": "sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:@jest/reporters@29.6.2": { + "type": "npm", + "name": "npm:@jest/reporters@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/reporters", + "hash": "sha512-sWtijrvIav8LgfJZlrGCdN0nP2EWbakglJY49J1Y5QihcQLfy7ovyxxjJBRXMNltgt4uPtEcFmIMbVshEDfFWw==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.0", + "packageName": "get-symbol-description", + "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" + } + }, + "npm:joi": { + "type": "npm", + "name": "npm:joi", + "data": { + "version": "17.6.0", + "packageName": "joi", + "hash": "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.7", + "packageName": "terser-webpack-plugin", + "hash": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==" + } + }, + "npm:map-obj": { + "type": "npm", + "name": "npm:map-obj", + "data": { + "version": "4.3.0", + "packageName": "map-obj", + "hash": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==" + } + }, + "npm:prettier@2.8.4": { + "type": "npm", + "name": "npm:prettier@2.8.4", + "data": { + "version": "2.8.4", + "packageName": "prettier", + "hash": "sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==" + } + }, + "npm:@babel/plugin-transform-react-pure-annotations": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-pure-annotations", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-react-pure-annotations", + "hash": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==" + } + }, + "npm:has-own-prop": { + "type": "npm", + "name": "npm:has-own-prop", + "data": { + "version": "2.0.0", + "packageName": "has-own-prop", + "hash": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + } + }, + "npm:relateurl": { + "type": "npm", + "name": "npm:relateurl", + "data": { + "version": "0.2.7", + "packageName": "relateurl", + "hash": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + } + }, + "npm:@babel/helper-compilation-targets@7.22.9": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==" + } + }, + "npm:@humanwhocodes/config-array": { + "type": "npm", + "name": "npm:@humanwhocodes/config-array", + "data": { + "version": "0.11.10", + "packageName": "@humanwhocodes/config-array", + "hash": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==" + } + }, + "npm:onetime@6.0.0": { + "type": "npm", + "name": "npm:onetime@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "onetime", + "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" + } + }, + "npm:remark-docusaurus-tabs": { + "type": "npm", + "name": "npm:remark-docusaurus-tabs", + "data": { + "version": "0.2.0", + "packageName": "remark-docusaurus-tabs", + "hash": "sha512-Xl8FkeQAdDqlhf7EurBxCkT7cfA5QK2PN8eoFr94g1OOuc7XsgVk897zf8yhNNnpQYR8nd/XC6JaXTZxHxX4mA==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.2.0", + "packageName": "define-properties", + "hash": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==" + } + }, + "npm:regexp.prototype.flags@1.5.0": { + "type": "npm", + "name": "npm:regexp.prototype.flags@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "regexp.prototype.flags", + "hash": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==" + } + }, + "npm:minipass@4.2.5": { + "type": "npm", + "name": "npm:minipass@4.2.5", + "data": { + "version": "4.2.5", + "packageName": "minipass", + "hash": "sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==" + } + }, + "npm:wrap-ansi@6.2.0": { + "type": "npm", + "name": "npm:wrap-ansi@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "wrap-ansi", + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + } + }, + "npm:yargs-parser@20.2.9": { + "type": "npm", + "name": "npm:yargs-parser@20.2.9", + "data": { + "version": "20.2.9", + "packageName": "yargs-parser", + "hash": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + } + }, + "npm:latest-version": { + "type": "npm", + "name": "npm:latest-version", + "data": { + "version": "5.1.0", + "packageName": "latest-version", + "hash": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.0", + "packageName": "has-tostringtag", + "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + } + }, + "npm:libnpmpublish": { + "type": "npm", + "name": "npm:libnpmpublish", + "data": { + "version": "7.3.0", + "packageName": "libnpmpublish", + "hash": "sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==" + } + }, + "npm:postcss-sort-media-queries": { + "type": "npm", + "name": "npm:postcss-sort-media-queries", + "data": { + "version": "4.2.1", + "packageName": "postcss-sort-media-queries", + "hash": "sha512-9VYekQalFZ3sdgcTjXMa0dDjsfBVHXlraYJEMiOJ/2iMmI2JGCMavP16z3kWOaRu8NSaJCTgVpB/IVpH5yT9YQ==" + } + }, + "npm:damerau-levenshtein": { + "type": "npm", + "name": "npm:damerau-levenshtein", + "data": { + "version": "1.0.8", + "packageName": "damerau-levenshtein", + "hash": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + } + }, + "npm:@babel/plugin-syntax-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-logical-assignment-operators", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-logical-assignment-operators", + "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + } + }, + "npm:@babel/plugin-transform-typescript@7.18.8": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typescript@7.18.8", + "data": { + "version": "7.18.8", + "packageName": "@babel/plugin-transform-typescript", + "hash": "sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.8.5", + "packageName": "jake", + "hash": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==" + } + }, + "npm:@algolia/transporter": { + "type": "npm", + "name": "npm:@algolia/transporter", + "data": { + "version": "4.13.1", + "packageName": "@algolia/transporter", + "hash": "sha512-pICnNQN7TtrcYJqqPEXByV8rJ8ZRU2hCiIKLTLRyNpghtQG3VAFk6fVtdzlNfdUGZcehSKGarPIZEHlQXnKjgw==" + } + }, + "npm:@surma/rollup-plugin-off-main-thread": { + "type": "npm", + "name": "npm:@surma/rollup-plugin-off-main-thread", + "data": { + "version": "2.2.3", + "packageName": "@surma/rollup-plugin-off-main-thread", + "hash": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.18.0", + "packageName": "send", + "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" + } + }, + "npm:argparse@1.0.10": { + "type": "npm", + "name": "npm:argparse@1.0.10", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-positions", + "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" + } + }, + "npm:fastest-levenshtein": { + "type": "npm", + "name": "npm:fastest-levenshtein", + "data": { + "version": "1.0.16", + "packageName": "fastest-levenshtein", + "hash": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==" + } + }, + "npm:rechoir": { + "type": "npm", + "name": "npm:rechoir", + "data": { + "version": "0.6.2", + "packageName": "rechoir", + "hash": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=" + } + }, + "npm:@esbuild/linux-s390x@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==" + } + }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, + "npm:utility-types": { + "type": "npm", + "name": "npm:utility-types", + "data": { + "version": "3.10.0", + "packageName": "utility-types", + "hash": "sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==" + } + }, + "npm:playwright-core@1.36.2": { + "type": "npm", + "name": "npm:playwright-core@1.36.2", + "data": { + "version": "1.36.2", + "packageName": "playwright-core", + "hash": "sha512-sQYZt31dwkqxOrP7xy2ggDfEzUxM1lodjhsQ3NMMv5uGTRDsLxU0e4xf4wwMkF2gplIxf17QMBCodSFgm6bFVQ==" + } + }, + "npm:@esbuild/linux-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==" + } + }, + "npm:@cspell/dict-php@4.0.1": { + "type": "npm", + "name": "npm:@cspell/dict-php@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-php", + "hash": "sha512-XaQ/JkSyq2c07MfRG54DjLi2CV+HHwS99DDCAao9Fq2JfkWroTQsUeek7wYZXJATrJVOULoV3HKih12x905AtQ==" + } + }, + "npm:axobject-query": { + "type": "npm", + "name": "npm:axobject-query", + "data": { + "version": "3.1.1", + "packageName": "axobject-query", + "hash": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==" + } + }, + "npm:@esbuild/darwin-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.3", + "packageName": "fs-monkey", + "hash": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + } + }, + "npm:language-tags": { + "type": "npm", + "name": "npm:language-tags", + "data": { + "version": "1.0.5", + "packageName": "language-tags", + "hash": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==" + } + }, + "npm:workbox-routing": { + "type": "npm", + "name": "npm:workbox-routing", + "data": { + "version": "6.5.4", + "packageName": "workbox-routing", + "hash": "sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==" + } + }, + "npm:istanbul-lib-report": { + "type": "npm", + "name": "npm:istanbul-lib-report", + "data": { + "version": "3.0.1", + "packageName": "istanbul-lib-report", + "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" + } + }, + "npm:downlevel-dts": { + "type": "npm", + "name": "npm:downlevel-dts", + "data": { + "version": "0.11.0", + "packageName": "downlevel-dts", + "hash": "sha512-vo835pntK7kzYStk7xUHDifiYJvXxVhUapt85uk2AI94gUUAQX9HNRtrcMHNSc3YHJUEHGbYIGsM99uIbgAtxw==" + } + }, + "npm:which-typed-array@1.1.11": { + "type": "npm", + "name": "npm:which-typed-array@1.1.11", + "data": { + "version": "1.1.11", + "packageName": "which-typed-array", + "hash": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==" + } + }, + "npm:trim-newlines@4.1.1": { + "type": "npm", + "name": "npm:trim-newlines@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "trim-newlines", + "hash": "sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==" + } + }, + "npm:eval": { + "type": "npm", + "name": "npm:eval", + "data": { + "version": "0.1.8", + "packageName": "eval", + "hash": "sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==" + } + }, + "npm:object.fromentries@2.0.6": { + "type": "npm", + "name": "npm:object.fromentries@2.0.6", + "data": { + "version": "2.0.6", + "packageName": "object.fromentries", + "hash": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=" + } + }, + "npm:@babel/plugin-proposal-class-properties@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-class-properties", + "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:collapse-white-space": { + "type": "npm", + "name": "npm:collapse-white-space", + "data": { + "version": "1.0.6", + "packageName": "collapse-white-space", + "hash": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==" + } + }, + "npm:@esbuild/darwin-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==" + } + }, + "npm:@babel/plugin-transform-shorthand-properties@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-shorthand-properties@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-shorthand-properties", + "hash": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==" + } + }, + "npm:temp-dir@2.0.0": { + "type": "npm", + "name": "npm:temp-dir@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "temp-dir", + "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + } + }, + "npm:jest@29.6.2": { + "type": "npm", + "name": "npm:jest@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest", + "hash": "sha512-8eQg2mqFbaP7CwfsTpCxQ+sHzw1WuNWL5UUvjnWP4hx2riGz9fPSzYOaU5q8/GqWn1TfgZIVTqYJygbGbWAANg==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" + } + }, + "npm:lodash-es": { + "type": "npm", + "name": "npm:lodash-es", + "data": { + "version": "4.17.21", + "packageName": "lodash-es", + "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + } + }, + "npm:npm-to-yarn": { + "type": "npm", + "name": "npm:npm-to-yarn", + "data": { + "version": "2.0.0", + "packageName": "npm-to-yarn", + "hash": "sha512-/IbjiJ7vqbxfxJxAZ+QI9CCRjnIbvGxn5KQcSY9xHh0lMKc/Sgqmm7yp7KPmd6TiTZX5/KiSBKlkGHo59ucZbg==" + } + }, + "npm:strip-ansi@4.0.0": { + "type": "npm", + "name": "npm:strip-ansi@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-ansi", + "hash": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.0.1", + "packageName": "has-proto", + "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + } + }, + "npm:flat-cache@3.0.4": { + "type": "npm", + "name": "npm:flat-cache@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "flat-cache", + "hash": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" + } + }, + "npm:style-search": { + "type": "npm", + "name": "npm:style-search", + "data": { + "version": "0.1.0", + "packageName": "style-search", + "hash": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==" + } + }, + "npm:yn": { + "type": "npm", + "name": "npm:yn", + "data": { + "version": "3.1.1", + "packageName": "yn", + "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + } + }, + "npm:@actions/core@1.10.0": { + "type": "npm", + "name": "npm:@actions/core@1.10.0", + "data": { + "version": "1.10.0", + "packageName": "@actions/core", + "hash": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==" + } + }, + "npm:postcss-loader": { + "type": "npm", + "name": "npm:postcss-loader", + "data": { + "version": "7.0.0", + "packageName": "postcss-loader", + "hash": "sha512-IDyttebFzTSY6DI24KuHUcBjbAev1i+RyICoPEWcAstZsj03r533uMXtDn506l6/wlsRYiS5XBdx7TpccCsyUg==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.0.7", + "packageName": "is-number-object", + "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + } + }, + "npm:@babel/plugin-transform-destructuring@7.21.3": { + "type": "npm", + "name": "npm:@babel/plugin-transform-destructuring@7.21.3", + "data": { + "version": "7.21.3", + "packageName": "@babel/plugin-transform-destructuring", + "hash": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==" + } + }, + "npm:assertion-error": { + "type": "npm", + "name": "npm:assertion-error", + "data": { + "version": "1.1.0", + "packageName": "assertion-error", + "hash": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==" + } + }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "2.1.0", + "packageName": "array-union", + "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + } + }, + "npm:cssnano-preset-advanced": { + "type": "npm", + "name": "npm:cssnano-preset-advanced", + "data": { + "version": "5.3.8", + "packageName": "cssnano-preset-advanced", + "hash": "sha512-xUlLLnEB1LjpEik+zgRNlk8Y/koBPPtONZjp7JKbXigeAmCrFvq9H0pXW5jJV45bQWAlmJ0sKy+IMr0XxLYQZg==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "npm:npm-package-arg@8.1.1": { + "type": "npm", + "name": "npm:npm-package-arg@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "npm-package-arg", + "hash": "sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:eslint-visitor-keys@3.4.2": { + "type": "npm", + "name": "npm:eslint-visitor-keys@3.4.2", + "data": { + "version": "3.4.2", + "packageName": "eslint-visitor-keys", + "hash": "sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==" + } + }, + "npm:jest-resolve-dependencies@29.6.2": { + "type": "npm", + "name": "npm:jest-resolve-dependencies@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-LGqjDWxg2fuQQm7ypDxduLu/m4+4Lb4gczc13v51VMZbVP5tSBILqVx8qfWcsdP8f0G7aIqByIALDB0R93yL+w==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "6.0.0", + "packageName": "lru-cache", + "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + } + }, + "npm:regjsparser@0.10.0": { + "type": "npm", + "name": "npm:regjsparser@0.10.0", + "data": { + "version": "0.10.0", + "packageName": "regjsparser", + "hash": "sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==" + } + }, + "npm:is-plain-object@2.0.4": { + "type": "npm", + "name": "npm:is-plain-object@2.0.4", + "data": { + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + } + }, + "npm:@nrwl/jest@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/jest@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/jest", + "hash": "sha512-QwClOTlcVf8uD17vPUlnmAl/6Ul8t9EEPbwtUXZb6QZSJ3Ihn/7EphmKhz77lJ2Em8XHpdkPdBTVXg665J/CmA==" + } + }, + "npm:string-argv@0.3.1": { + "type": "npm", + "name": "npm:string-argv@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "string-argv", + "hash": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:tr46@1.0.1": { + "type": "npm", + "name": "npm:tr46@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "tr46", + "hash": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==" + } + }, + "npm:mdurl": { + "type": "npm", + "name": "npm:mdurl", + "data": { + "version": "1.0.1", + "packageName": "mdurl", + "hash": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + } + }, + "npm:is-arguments": { + "type": "npm", + "name": "npm:is-arguments", + "data": { + "version": "1.1.1", + "packageName": "is-arguments", + "hash": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==" + } + }, + "npm:@cspell/cspell-bundled-dicts@6.31.2": { + "type": "npm", + "name": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "@cspell/cspell-bundled-dicts", + "hash": "sha512-rQ5y/U1Ah5AaduIh3NU2z371hRrOr1cmNdhhP8oiuz2E4VqmcoVHflXIct9DgY8uIJpwsSCdR6ypOQWZYXYnwA==" + } + }, + "npm:@esbuild/android-arm@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/android-arm", + "hash": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:remark-mdx": { + "type": "npm", + "name": "npm:remark-mdx", + "data": { + "version": "1.6.22", + "packageName": "remark-mdx", + "hash": "sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==" + } + }, + "npm:@types/parse-json": { + "type": "npm", + "name": "npm:@types/parse-json", + "data": { + "version": "4.0.0", + "packageName": "@types/parse-json", + "hash": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + } + }, + "npm:find-up@3.0.0": { + "type": "npm", + "name": "npm:find-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "find-up", + "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + } + }, + "npm:@babel/helper-function-name": { + "type": "npm", + "name": "npm:@babel/helper-function-name", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-function-name", + "hash": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==" + } + }, + "npm:mdast-util-definitions": { + "type": "npm", + "name": "npm:mdast-util-definitions", + "data": { + "version": "4.0.0", + "packageName": "mdast-util-definitions", + "hash": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:registry-url": { + "type": "npm", + "name": "npm:registry-url", + "data": { + "version": "5.1.0", + "packageName": "registry-url", + "hash": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==" + } + }, + "npm:@mdx-js/mdx": { + "type": "npm", + "name": "npm:@mdx-js/mdx", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/mdx", + "hash": "sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==" + } + }, + "npm:pretty-bytes": { + "type": "npm", + "name": "npm:pretty-bytes", + "data": { + "version": "5.6.0", + "packageName": "pretty-bytes", + "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + } + }, + "npm:cross-fetch": { + "type": "npm", + "name": "npm:cross-fetch", + "data": { + "version": "4.0.0", + "packageName": "cross-fetch", + "hash": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==" + } + }, + "npm:camelcase@5.3.1": { + "type": "npm", + "name": "npm:camelcase@5.3.1", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:hosted-git-info@2.8.9": { + "type": "npm", + "name": "npm:hosted-git-info@2.8.9", + "data": { + "version": "2.8.9", + "packageName": "hosted-git-info", + "hash": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + } + }, + "npm:fsevents@2.3.2": { + "type": "npm", + "name": "npm:fsevents@2.3.2", + "data": { + "version": "2.3.2", + "packageName": "fsevents", + "hash": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" + } + }, + "npm:stylelint-order": { + "type": "npm", + "name": "npm:stylelint-order", + "data": { + "version": "6.0.3", + "packageName": "stylelint-order", + "hash": "sha512-1j1lOb4EU/6w49qZeT2SQVJXm0Ht+Qnq9GMfUa3pMwoyojIWfuA+JUDmoR97Bht1RLn4ei0xtLGy87M7d29B1w==" + } + }, + "npm:@docusaurus/module-type-aliases@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/module-type-aliases@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/module-type-aliases", + "hash": "sha512-gLBuIFM8Dp2XOCWffUDSjtxY7jQgKvYujt7Mx5s4FCTfoL5dN1EVbnrn+O2Wvh8b0a77D57qoIDY7ghgmatR1A==" + } + }, + "npm:babel-plugin-istanbul": { + "type": "npm", + "name": "npm:babel-plugin-istanbul", + "data": { + "version": "6.1.1", + "packageName": "babel-plugin-istanbul", + "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" + } + }, + "npm:workbox-range-requests": { + "type": "npm", + "name": "npm:workbox-range-requests", + "data": { + "version": "6.5.4", + "packageName": "workbox-range-requests", + "hash": "sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "npm:concat-stream": { + "type": "npm", + "name": "npm:concat-stream", + "data": { + "version": "2.0.0", + "packageName": "concat-stream", + "hash": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==" + } + }, + "npm:ip": { + "type": "npm", + "name": "npm:ip", + "data": { + "version": "1.1.5", + "packageName": "ip", + "hash": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + } + }, + "npm:@esbuild/win32-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==" + } + }, + "npm:@types/html-minifier-terser": { + "type": "npm", + "name": "npm:@types/html-minifier-terser", + "data": { + "version": "6.0.0", + "packageName": "@types/html-minifier-terser", + "hash": "sha512-NZwaaynfs1oIoLAV1vg18e7QMVDvw+6SQrdJc8w3BwUaoroVSf6EBj/Sk4PBWGxsq0dzhA2drbsuMC1/6C6KgQ==" + } + }, + "npm:queue": { + "type": "npm", + "name": "npm:queue", + "data": { + "version": "6.0.2", + "packageName": "queue", + "hash": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + } + }, + "npm:@cspell/cspell-pipe@6.31.1": { + "type": "npm", + "name": "npm:@cspell/cspell-pipe@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/cspell-pipe", + "hash": "sha512-zk1olZi4dr6GLm5PAjvsiZ01HURNSruUYFl1qSicGnTwYN8GaN4RhAwannAytcJ7zJPIcyXlid0YsB58nJf3wQ==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:tuf-js": { + "type": "npm", + "name": "npm:tuf-js", + "data": { + "version": "1.1.5", + "packageName": "tuf-js", + "hash": "sha512-inqodgxdsmuxrtQVbu6tPNgRKWD1Boy3VB6GO7KczJZpAHiTukwhSzXUSzvDcw5pE2Jo8ua+e1ykpHv7VdPVlQ==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.0.4", + "packageName": "is-symbol", + "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" + } + }, + "npm:jsonify@0.0.1": { + "type": "npm", + "name": "npm:jsonify@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "jsonify", + "hash": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==" + } + }, + "npm:@types/eslint@0.0.0": { + "type": "npm", + "name": "npm:@types/eslint@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@types/eslint", + "hash": "2556809010878089521" + } + }, + "npm:depd@1.1.2": { + "type": "npm", + "name": "npm:depd@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + } + }, + "npm:unified": { + "type": "npm", + "name": "npm:unified", + "data": { + "version": "9.2.0", + "packageName": "unified", + "hash": "sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.4", + "packageName": "deep-is", + "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:conventional-commits-filter": { + "type": "npm", + "name": "npm:conventional-commits-filter", + "data": { + "version": "3.0.0", + "packageName": "conventional-commits-filter", + "hash": "sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==" + } + }, + "npm:@lerna/create@7.1.4": { + "type": "npm", + "name": "npm:@lerna/create@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "@lerna/create", + "hash": "sha512-D5YWXsXIxWb1aGqcbtttczg86zMzkNhcs00/BleFNxdNYlTRdjLIReELOGBGrq3Hij05UN+7Dv9EKnPFJVbqAw==" + } + }, + "npm:mimic-fn@4.0.0": { + "type": "npm", + "name": "npm:mimic-fn@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "mimic-fn", + "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.6", + "packageName": "stack-utils", + "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" + } + }, + "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/remark-plugin-npm2yarn", + "hash": "sha512-RTX4hGCrwibqjDVf6edWVNwdvWHjx+YmfKwxqXxfhNnYjypTCXWTAyKeIfCUW2DNdtqAI2ZM0zFhB1maua2JbQ==" + } + }, + "npm:@cspell/dict-dotnet": { + "type": "npm", + "name": "npm:@cspell/dict-dotnet", + "data": { + "version": "5.0.0", + "packageName": "@cspell/dict-dotnet", + "hash": "sha512-EOwGd533v47aP5QYV8GlSSKkmM9Eq8P3G/eBzSpH3Nl2+IneDOYOBLEUraHuiCtnOkNsz0xtZHArYhAB2bHWAw==" + } + }, + "npm:@types/semver@7.5.0": { + "type": "npm", + "name": "npm:@types/semver@7.5.0", + "data": { + "version": "7.5.0", + "packageName": "@types/semver", + "hash": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:@swc/core-linux-arm64-musl@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-musl@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-linux-arm64-musl", + "hash": "8641085442062639021" + } + }, + "npm:@algolia/autocomplete-shared": { + "type": "npm", + "name": "npm:@algolia/autocomplete-shared", + "data": { + "version": "1.7.1", + "packageName": "@algolia/autocomplete-shared", + "hash": "sha512-eTmGVqY3GeyBTT8IWiB2K5EuURAqhnumfktAEoHxfDY2o7vg2rSnO16ZtIG0fMgt3py28Vwgq42/bVEuaQV7pg==" + } + }, + "npm:@swc/core-win32-x64-msvc@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-win32-x64-msvc@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-win32-x64-msvc", + "hash": "sha512-S3YAvvLprTnPRwQuy9Dkwubb5SRLpVK3JJsqYDbGfgj8PGQyKHZcVJ5X3nfFsoWLy3j9B/3Os2nawprRSzeC5A==" + } + }, + "npm:@microsoft/tsdoc-config": { + "type": "npm", + "name": "npm:@microsoft/tsdoc-config", + "data": { + "version": "0.16.1", + "packageName": "@microsoft/tsdoc-config", + "hash": "sha512-2RqkwiD4uN6MLnHFljqBlZIXlt/SaUT6cuogU1w2ARw4nKuuppSmR0+s+NC+7kXBQykd9zzu0P4HtBpZT5zBpQ==" + } + }, + "npm:@types/minimist": { + "type": "npm", + "name": "npm:@types/minimist", + "data": { + "version": "1.2.2", + "packageName": "@types/minimist", + "hash": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==" + } + }, + "npm:decamelize@4.0.0": { + "type": "npm", + "name": "npm:decamelize@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "decamelize", + "hash": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:@types/react-router": { + "type": "npm", + "name": "npm:@types/react-router", + "data": { + "version": "5.1.17", + "packageName": "@types/react-router", + "hash": "sha512-RNSXOyb3VyRs/EOGmjBhhGKTbnN6fHWvy5FNLzWfOWOGjgVUKqJZXfpKzLmgoU8h6Hj8mpALj/mbXQASOb92wQ==" + } + }, + "npm:npm-install-checks": { + "type": "npm", + "name": "npm:npm-install-checks", + "data": { + "version": "6.1.0", + "packageName": "npm-install-checks", + "hash": "sha512-udSGENih/5xKh3Ex+L0PtZcOt0Pa+6ppDLnpG5D49/EhMja3LupaY9E/DtJTxyFBwE09ot7Fc+H4DywnZNWTVA==" + } + }, + "npm:get-func-name@2.0.0": { + "type": "npm", + "name": "npm:get-func-name@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "get-func-name", + "hash": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==" + } + }, + "npm:@octokit/core@3.6.0": { + "type": "npm", + "name": "npm:@octokit/core@3.6.0", + "data": { + "version": "3.6.0", + "packageName": "@octokit/core", + "hash": "sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==" + } + }, + "npm:@swc/core-linux-x64-musl@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-musl@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-linux-x64-musl", + "hash": "sha512-sxsFctbFMZEFmDE7CmYljG0dMumH8XBTwwtGr8s6z0fYAzXBGNq2AFPcmEh2np9rPWkt7pE1m0ByESD+dMkbxQ==" + } + }, + "npm:@cspell/dict-filetypes": { + "type": "npm", + "name": "npm:@cspell/dict-filetypes", + "data": { + "version": "3.0.1", + "packageName": "@cspell/dict-filetypes", + "hash": "sha512-8z8mY1IbrTyTRumx2vvD9yzRhNMk9SajM/GtI5hdMM2pPpNSp25bnuauzjRf300eqlqPY2MNb5MmhBFO014DJw==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:cli-spinners@2.7.0": { + "type": "npm", + "name": "npm:cli-spinners@2.7.0", + "data": { + "version": "2.7.0", + "packageName": "cli-spinners", + "hash": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==" + } + }, + "npm:infer-owner@1.0.4": { + "type": "npm", + "name": "npm:infer-owner@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "infer-owner", + "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + } + }, + "npm:parse-path": { + "type": "npm", + "name": "npm:parse-path", + "data": { + "version": "7.0.0", + "packageName": "parse-path", + "hash": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==" + } + }, + "npm:promzard": { + "type": "npm", + "name": "npm:promzard", + "data": { + "version": "1.0.0", + "packageName": "promzard", + "hash": "sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig==" + } + }, + "npm:glob@7.1.6": { + "type": "npm", + "name": "npm:glob@7.1.6", + "data": { + "version": "7.1.6", + "packageName": "glob", + "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" + } + }, + "npm:strip-comments": { + "type": "npm", + "name": "npm:strip-comments", + "data": { + "version": "2.0.1", + "packageName": "strip-comments", + "hash": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==" + } + }, + "npm:strip-indent@4.0.0": { + "type": "npm", + "name": "npm:strip-indent@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-indent", + "hash": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==" + } + }, + "npm:husky": { + "type": "npm", + "name": "npm:husky", + "data": { + "version": "8.0.3", + "packageName": "husky", + "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" + } + }, + "npm:punycode@1.4.1": { + "type": "npm", + "name": "npm:punycode@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "punycode", + "hash": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + } + }, + "npm:modify-values": { + "type": "npm", + "name": "npm:modify-values", + "data": { + "version": "1.0.1", + "packageName": "modify-values", + "hash": "sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==" + } + }, + "npm:@babel/generator@7.22.9": { + "type": "npm", + "name": "npm:@babel/generator@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/generator", + "hash": "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==" + } + }, + "npm:jest-each@29.6.2": { + "type": "npm", + "name": "npm:jest-each@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-each", + "hash": "sha512-MsrsqA0Ia99cIpABBc3izS1ZYoYfhIy0NNWqPSE0YXbQjwchyt6B1HD2khzyPe1WiJA7hbxXy77ZoUQxn8UlSw==" + } + }, + "npm:@types/parse5": { + "type": "npm", + "name": "npm:@types/parse5", + "data": { + "version": "5.0.3", + "packageName": "@types/parse5", + "hash": "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==" + } + }, + "npm:natural-compare-lite@1.4.0": { + "type": "npm", + "name": "npm:natural-compare-lite@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "natural-compare-lite", + "hash": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "5.2.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" + } + }, + "npm:decamelize@5.0.1": { + "type": "npm", + "name": "npm:decamelize@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "decamelize", + "hash": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==" + } + }, + "npm:ws@8.5.0": { + "type": "npm", + "name": "npm:ws@8.5.0", + "data": { + "version": "8.5.0", + "packageName": "ws", + "hash": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==" + } + }, + "npm:@types/node@20.4.8": { + "type": "npm", + "name": "npm:@types/node@20.4.8", + "data": { + "version": "20.4.8", + "packageName": "@types/node", + "hash": "sha512-0mHckf6D2DiIAzh8fM8f3HQCvMKDpK94YQ0DSVkfWTG9BZleYIWudw9cJxX8oCk9bM+vAkDyujDV6dmKHbvQpg==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.13", + "packageName": "@types/express", + "hash": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==" + } + }, + "npm:fbjs-css-vars": { + "type": "npm", + "name": "npm:fbjs-css-vars", + "data": { + "version": "1.0.2", + "packageName": "fbjs-css-vars", + "hash": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.3.0", + "packageName": "rfdc", + "hash": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + } + }, + "npm:glob@7.1.4": { + "type": "npm", + "name": "npm:glob@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "glob", + "hash": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==" + } + }, + "npm:infima": { + "type": "npm", + "name": "npm:infima", + "data": { + "version": "0.2.0-alpha.43", + "packageName": "infima", + "hash": "sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==" + } + }, + "npm:@csstools/css-parser-algorithms@2.3.0": { + "type": "npm", + "name": "npm:@csstools/css-parser-algorithms@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "@csstools/css-parser-algorithms", + "hash": "sha512-dTKSIHHWc0zPvcS5cqGP+/TPFUJB0ekJ9dGKvMAFoNuBFhDPBt9OMGNZiIA5vTiNdGHHBeScYPXIGBMnVOahsA==" + } + }, + "npm:eslint-utils": { + "type": "npm", + "name": "npm:eslint-utils", + "data": { + "version": "3.0.0", + "packageName": "eslint-utils", + "hash": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==" + } + }, + "npm:@types/eslint-scope@0.0.0": { + "type": "npm", + "name": "npm:@types/eslint-scope@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@types/eslint-scope", + "hash": "11208898128428895389" + } + }, + "npm:diff": { + "type": "npm", + "name": "npm:diff", + "data": { + "version": "4.0.2", + "packageName": "diff", + "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" + } + }, + "npm:axios@1.1.3": { + "type": "npm", + "name": "npm:axios@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "axios", + "hash": "sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + } + }, + "npm:byte-size": { + "type": "npm", + "name": "npm:byte-size", + "data": { + "version": "8.1.1", + "packageName": "byte-size", + "hash": "sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==" + } + }, + "npm:@octokit/auth-token@2.5.0": { + "type": "npm", + "name": "npm:@octokit/auth-token@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "@octokit/auth-token", + "hash": "sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "6.1.0", + "packageName": "cacheable-request", + "hash": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==" + } + }, + "npm:mini-create-react-context": { + "type": "npm", + "name": "npm:mini-create-react-context", + "data": { + "version": "0.4.1", + "packageName": "mini-create-react-context", + "hash": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==" + } + }, + "npm:defer-to-connect": { + "type": "npm", + "name": "npm:defer-to-connect", + "data": { + "version": "1.1.3", + "packageName": "defer-to-connect", + "hash": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" + } + }, + "npm:stylelint-config-recommended": { + "type": "npm", + "name": "npm:stylelint-config-recommended", + "data": { + "version": "13.0.0", + "packageName": "stylelint-config-recommended", + "hash": "sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:@octokit/request-error@3.0.0": { + "type": "npm", + "name": "npm:@octokit/request-error@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@octokit/request-error", + "hash": "sha512-WBtpzm9lR8z4IHIMtOqr6XwfkGvMOOILNLxsWvDwtzm/n7f5AWuqJTXQXdDtOvPfTDrH4TPhEvW2qMlR4JFA2w==" + } + }, + "npm:babel-plugin-macros": { + "type": "npm", + "name": "npm:babel-plugin-macros", + "data": { + "version": "2.8.0", + "packageName": "babel-plugin-macros", + "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" + } + }, + "npm:array.prototype.findlastindex@1.2.2": { + "type": "npm", + "name": "npm:array.prototype.findlastindex@1.2.2", + "data": { + "version": "1.2.2", + "packageName": "array.prototype.findlastindex", + "hash": "sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==" + } + }, + "npm:chai@4.3.7": { + "type": "npm", + "name": "npm:chai@4.3.7", + "data": { + "version": "4.3.7", + "packageName": "chai", + "hash": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==" + } + }, + "npm:queue-microtask": { + "type": "npm", + "name": "npm:queue-microtask", + "data": { + "version": "1.2.3", + "packageName": "queue-microtask", + "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + } + }, + "npm:source-map@0.5.7": { + "type": "npm", + "name": "npm:source-map@0.5.7", + "data": { + "version": "0.5.7", + "packageName": "source-map", + "hash": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.6.1", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==" + } + }, + "npm:run-con@1.2.11": { + "type": "npm", + "name": "npm:run-con@1.2.11", + "data": { + "version": "1.2.11", + "packageName": "run-con", + "hash": "sha512-NEMGsUT+cglWkzEr4IFK21P4Jca45HqiAbIIZIBdX5+UZTB24Mb/21iNGgz9xZa8tL6vbW7CXmq7MFN42+VjNQ==" + } + }, + "npm:vscode-uri@3.0.7": { + "type": "npm", + "name": "npm:vscode-uri@3.0.7", + "data": { + "version": "3.0.7", + "packageName": "vscode-uri", + "hash": "sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==" + } + }, + "npm:@esbuild/linux-mips64el@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.6.1", + "packageName": "tslib", + "hash": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==" + } + }, + "npm:mkdirp@0.5.5": { + "type": "npm", + "name": "npm:mkdirp@0.5.5", + "data": { + "version": "0.5.5", + "packageName": "mkdirp", + "hash": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.0.2", + "packageName": "has-bigints", + "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + } + }, + "npm:@octokit/plugin-enterprise-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-enterprise-rest", + "data": { + "version": "6.0.1", + "packageName": "@octokit/plugin-enterprise-rest", + "hash": "sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + } + }, + "npm:webpack-merge": { + "type": "npm", + "name": "npm:webpack-merge", + "data": { + "version": "5.8.0", + "packageName": "webpack-merge", + "hash": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==" + } + }, + "npm:@nx/nx-freebsd-x64@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-FyJ2xUBPifO0y9LoVuS0CjwN+GGsYSy+O1y541eh8j4Y86/xcPx0j+fhHhh3MDnKA9ftjbq+vrqgs84NHmIAAw==" + } + }, + "npm:eslint-plugin-eslint-comments": { + "type": "npm", + "name": "npm:eslint-plugin-eslint-comments", + "data": { + "version": "3.2.0", + "packageName": "eslint-plugin-eslint-comments", + "hash": "sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "5.1.3", + "packageName": "postcss-minify-params", + "hash": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.4", + "packageName": "content-type", + "hash": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + } + }, + "npm:@cspell/dict-public-licenses@2.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-public-licenses@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "@cspell/dict-public-licenses", + "hash": "sha512-baKkbs/WGEV2lCWZoL0KBPh3uiPcul5GSDwmXEBAsR5McEW52LF94/b7xWM0EmSAc/y8ODc5LnPYC7RDRLi6LQ==" + } + }, + "npm:@docusaurus/plugin-google-analytics@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-google-analytics", + "hash": "sha512-dyZJdJiCoL+rcfnm0RPkLt/o732HvLiEwmtoNzOoz9MSZz117UH2J6U2vUDtzUzwtFLIf32KkeyzisbwUCgcaQ==" + } + }, + "npm:char-regex": { + "type": "npm", + "name": "npm:char-regex", + "data": { + "version": "1.0.2", + "packageName": "char-regex", + "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + } + }, + "npm:dedent@1.5.0": { + "type": "npm", + "name": "npm:dedent@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "dedent", + "hash": "sha512-3sSQTYoWKGcRHmHl6Y6opLpRJH55bxeGQ0Y1LCI5pZzUXvokVkj0FC4bi7uEwazxA9FQZ0Nv067Zt5kSUvXxEA==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:core-js-compat@3.25.4": { + "type": "npm", + "name": "npm:core-js-compat@3.25.4", + "data": { + "version": "3.25.4", + "packageName": "core-js-compat", + "hash": "sha512-gCEcIEEqCR6230WroNunK/653CWKhqyCKJ9b+uESqOt/WFJA8B4lTnnQFdpYY5vmBcwJAA90Bo5vXs+CVsf6iA==" + } + }, + "npm:@cspell/dict-typescript@3.1.1": { + "type": "npm", + "name": "npm:@cspell/dict-typescript@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "@cspell/dict-typescript", + "hash": "sha512-N9vNJZoOXmmrFPR4ir3rGvnqqwmQGgOYoL1+y6D4oIhyr7FhaYiyF/d7QT61RmjZQcATMa6PSL+ZisCeRLx9+A==" + } + }, + "npm:ora@5.4.1": { + "type": "npm", + "name": "npm:ora@5.4.1", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:string.prototype.trimend@1.0.6": { + "type": "npm", + "name": "npm:string.prototype.trimend@1.0.6", + "data": { + "version": "1.0.6", + "packageName": "string.prototype.trimend", + "hash": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==" + } + }, + "npm:markdown-it": { + "type": "npm", + "name": "npm:markdown-it", + "data": { + "version": "13.0.1", + "packageName": "markdown-it", + "hash": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "2.0.1", + "packageName": "@types/stack-utils", + "hash": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.0.5", + "packageName": "is-date-object", + "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" + } + }, + "npm:read-pkg@5.2.0": { + "type": "npm", + "name": "npm:read-pkg@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "read-pkg", + "hash": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.8", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "2.0.3", + "packageName": "lines-and-columns", + "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" + } + }, + "npm:@rushstack/node-core-library@3.59.6": { + "type": "npm", + "name": "npm:@rushstack/node-core-library@3.59.6", + "data": { + "version": "3.59.6", + "packageName": "@rushstack/node-core-library", + "hash": "sha512-bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg==" + } + }, + "npm:@npmcli/installed-package-contents": { + "type": "npm", + "name": "npm:@npmcli/installed-package-contents", + "data": { + "version": "2.0.2", + "packageName": "@npmcli/installed-package-contents", + "hash": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==" + } + }, + "npm:@slorber/static-site-generator-webpack-plugin": { + "type": "npm", + "name": "npm:@slorber/static-site-generator-webpack-plugin", + "data": { + "version": "4.0.7", + "packageName": "@slorber/static-site-generator-webpack-plugin", + "hash": "sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==" + } + }, + "npm:detab": { + "type": "npm", + "name": "npm:detab", + "data": { + "version": "2.0.4", + "packageName": "detab", + "hash": "sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:@babel/plugin-proposal-json-strings@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-json-strings", + "hash": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==" + } + }, + "npm:workerpool@6.1.0": { + "type": "npm", + "name": "npm:workerpool@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "workerpool", + "hash": "sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==" + } + }, + "npm:@esbuild/sunos-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==" + } + }, + "npm:strong-log-transformer": { + "type": "npm", + "name": "npm:strong-log-transformer", + "data": { + "version": "2.1.0", + "packageName": "strong-log-transformer", + "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" + } + }, + "npm:@babel/plugin-syntax-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-typescript", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==" + } + }, + "npm:@cspell/strong-weak-map@6.31.1": { + "type": "npm", + "name": "npm:@cspell/strong-weak-map@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/strong-weak-map", + "hash": "sha512-z8AuWvUuSnugFKJOA9Ke0aiFuehcqLFqia9bk8XaQNEWr44ahPVn3sEWnAncTxPbpWuUw5UajoJa0egRAE1CCg==" + } + }, + "npm:function.prototype.name@1.1.5": { + "type": "npm", + "name": "npm:function.prototype.name@1.1.5", + "data": { + "version": "1.1.5", + "packageName": "function.prototype.name", + "hash": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==" + } + }, + "npm:regenerate-unicode-properties": { + "type": "npm", + "name": "npm:regenerate-unicode-properties", + "data": { + "version": "10.1.0", + "packageName": "regenerate-unicode-properties", + "hash": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==" + } + }, + "npm:clone-response": { + "type": "npm", + "name": "npm:clone-response", + "data": { + "version": "1.0.2", + "packageName": "clone-response", + "hash": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=" + } + }, + "npm:@babel/plugin-proposal-dynamic-import@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-dynamic-import", + "hash": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.1.2", + "packageName": "minimatch", + "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + } + }, + "npm:@gar/promisify@1.1.3": { + "type": "npm", + "name": "npm:@gar/promisify@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "@gar/promisify", + "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + } + }, + "npm:@svgr/babel-plugin-replace-jsx-attribute-value": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-replace-jsx-attribute-value", + "hash": "sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:@esbuild/linux-loong64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "17.0.5", + "packageName": "cacache", + "hash": "sha512-Y/PRQevNSsjAPWykl9aeGz8Pr+OI6BYM9fYDNMvOkuUiG9IhG4LEmaYrZZZvioMUEQ+cBCxT0v8wrnCURccyKA==" + } + }, + "npm:ts-node": { + "type": "npm", + "name": "npm:ts-node", + "data": { + "version": "10.7.0", + "packageName": "ts-node", + "hash": "sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==" + } + }, + "npm:wildcard": { + "type": "npm", + "name": "npm:wildcard", + "data": { + "version": "2.0.0", + "packageName": "wildcard", + "hash": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:@types/prop-types": { + "type": "npm", + "name": "npm:@types/prop-types", + "data": { + "version": "15.7.5", + "packageName": "@types/prop-types", + "hash": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + } + }, + "npm:json-parse-even-better-errors@3.0.0": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==" + } + }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + } + }, + "npm:@docusaurus/cssnano-preset@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/cssnano-preset@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/cssnano-preset", + "hash": "sha512-ka+vqXwtcW1NbXxWsh6yA1Ckii1klY9E53cJ4O9J09nkMBgrNX3iEFED1fWdv8wf4mJjvGi5RLZ2p9hJNjsLyQ==" + } + }, + "npm:minipass@6.0.2": { + "type": "npm", + "name": "npm:minipass@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "minipass", + "hash": "sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, + "npm:spdx-license-ids": { + "type": "npm", + "name": "npm:spdx-license-ids", + "data": { + "version": "3.0.13", + "packageName": "spdx-license-ids", + "hash": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==" + } + }, + "npm:@sinonjs/samsam@6.1.3": { + "type": "npm", + "name": "npm:@sinonjs/samsam@6.1.3", + "data": { + "version": "6.1.3", + "packageName": "@sinonjs/samsam", + "hash": "sha512-nhOb2dWPeb1sd3IQXL/dVPnKHDOAFfvichtBf4xV00/rU1QbPCQqKMbvIheIjqwVjh7qIgf2AHTHi391yMOMpQ==" + } + }, + "npm:prepend-http": { + "type": "npm", + "name": "npm:prepend-http", + "data": { + "version": "2.0.0", + "packageName": "prepend-http", + "hash": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" + } + }, + "npm:mime-types@2.1.18": { + "type": "npm", + "name": "npm:mime-types@2.1.18", + "data": { + "version": "2.1.18", + "packageName": "mime-types", + "hash": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.22.9", + "packageName": "@babel/compat-data", + "hash": "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==" + } + }, + "npm:collect-v8-coverage": { + "type": "npm", + "name": "npm:collect-v8-coverage", + "data": { + "version": "1.0.2", + "packageName": "collect-v8-coverage", + "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "3.0.1", + "packageName": "domutils", + "hash": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==" + } + }, + "npm:@docusaurus/react-loadable": { + "type": "npm", + "name": "npm:@docusaurus/react-loadable", + "data": { + "version": "5.5.2", + "packageName": "@docusaurus/react-loadable", + "hash": "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==" + } + }, + "npm:omit.js": { + "type": "npm", + "name": "npm:omit.js", + "data": { + "version": "2.0.2", + "packageName": "omit.js", + "hash": "sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:pify@2.3.0": { + "type": "npm", + "name": "npm:pify@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.17.28", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==" + } + }, + "npm:react-split-pane@0.1.92": { + "type": "npm", + "name": "npm:react-split-pane@0.1.92", + "data": { + "version": "0.1.92", + "packageName": "react-split-pane", + "hash": "sha512-GfXP1xSzLMcLJI5BM36Vh7GgZBpy+U/X0no+VM3fxayv+p1Jly5HpMofZJraeaMl73b3hvlr+N9zJKvLB/uz9w==" + } + }, + "npm:esbuild@0.17.19": { + "type": "npm", + "name": "npm:esbuild@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "esbuild", + "hash": "sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==" + } + }, + "npm:nprogress": { + "type": "npm", + "name": "npm:nprogress", + "data": { + "version": "0.2.0", + "packageName": "nprogress", + "hash": "sha1-y480xTIT2JVyP8urkH6UIq28r7E=" + } + }, + "npm:core-js-pure": { + "type": "npm", + "name": "npm:core-js-pure", + "data": { + "version": "3.21.1", + "packageName": "core-js-pure", + "hash": "sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + } + }, + "npm:@babel/plugin-syntax-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-private-property-in-object", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-private-property-in-object", + "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + } + }, + "npm:@typescript-eslint/scope-manager@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==" + } + }, + "npm:@babel/preset-modules@0.1.5": { + "type": "npm", + "name": "npm:@babel/preset-modules@0.1.5", + "data": { + "version": "0.1.5", + "packageName": "@babel/preset-modules", + "hash": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==" + } + }, + "npm:@babel/traverse@7.22.8": { + "type": "npm", + "name": "npm:@babel/traverse@7.22.8", + "data": { + "version": "7.22.8", + "packageName": "@babel/traverse", + "hash": "sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==" + } + }, + "npm:@axe-core/playwright@4.7.3": { + "type": "npm", + "name": "npm:@axe-core/playwright@4.7.3", + "data": { + "version": "4.7.3", + "packageName": "@axe-core/playwright", + "hash": "sha512-v2PRgAyGvop7bamrTpNJtc5b1R7giAPnMzZXrS/VDZBCY5+uwVYtCNgDvBsqp5P1QMZxUMoBN+CERJUTMjFN0A==" + } + }, + "npm:@octokit/tsconfig": { + "type": "npm", + "name": "npm:@octokit/tsconfig", + "data": { + "version": "1.0.2", + "packageName": "@octokit/tsconfig", + "hash": "sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==" + } + }, + "npm:core-js": { + "type": "npm", + "name": "npm:core-js", + "data": { + "version": "3.24.0", + "packageName": "core-js", + "hash": "sha512-IeOyT8A6iK37Ep4kZDD423mpi6JfPRoPUdQwEWYiGolvn4o6j2diaRzNfDfpTdu3a5qMbrGUzKUpYpRY8jXCkQ==" + } + }, + "npm:recursive-readdir": { + "type": "npm", + "name": "npm:recursive-readdir", + "data": { + "version": "2.2.2", + "packageName": "recursive-readdir", + "hash": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==" + } + }, + "npm:@mdx-js/react": { + "type": "npm", + "name": "npm:@mdx-js/react", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/react", + "hash": "sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.13.10", + "packageName": "@types/serve-static", + "hash": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==" + } + }, + "npm:compare-func": { + "type": "npm", + "name": "npm:compare-func", + "data": { + "version": "2.0.0", + "packageName": "compare-func", + "hash": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:slice-ansi@3.0.0": { + "type": "npm", + "name": "npm:slice-ansi@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "slice-ansi", + "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" + } + }, + "npm:inquirer": { + "type": "npm", + "name": "npm:inquirer", + "data": { + "version": "8.2.4", + "packageName": "inquirer", + "hash": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==" + } + }, + "npm:loose-envify": { + "type": "npm", + "name": "npm:loose-envify", + "data": { + "version": "1.4.0", + "packageName": "loose-envify", + "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + } + }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, + "npm:@cspell/dict-r": { + "type": "npm", + "name": "npm:@cspell/dict-r", + "data": { + "version": "2.0.1", + "packageName": "@cspell/dict-r", + "hash": "sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + } + }, + "npm:@babel/plugin-transform-async-to-generator@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-transform-async-to-generator", + "hash": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.6.0", + "packageName": "pidtree", + "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" + } + }, + "npm:@esbuild/linux-arm@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==" + } + }, + "npm:@rollup/plugin-babel": { + "type": "npm", + "name": "npm:@rollup/plugin-babel", + "data": { + "version": "5.3.1", + "packageName": "@rollup/plugin-babel", + "hash": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:@babel/regjsgen": { + "type": "npm", + "name": "npm:@babel/regjsgen", + "data": { + "version": "0.8.0", + "packageName": "@babel/regjsgen", + "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "4.0.0", + "packageName": "unique-slug", + "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.5", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + } + }, + "npm:clear-module": { + "type": "npm", + "name": "npm:clear-module", + "data": { + "version": "4.1.2", + "packageName": "clear-module", + "hash": "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==" + } + }, + "npm:@cspell/dict-en_us@4.3.4": { + "type": "npm", + "name": "npm:@cspell/dict-en_us@4.3.4", + "data": { + "version": "4.3.4", + "packageName": "@cspell/dict-en_us", + "hash": "sha512-mR2yqWmFip1zTKja2SqyVMbzuqEThqkEJk9M32bMDziPJpEyOIPvLA0UPmj3cyRKJkRuVF0bhDCE33O+at38hw==" + } + }, + "npm:ini@3.0.1": { + "type": "npm", + "name": "npm:ini@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "ini", + "hash": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==" + } + }, + "npm:workbox-recipes": { + "type": "npm", + "name": "npm:workbox-recipes", + "data": { + "version": "6.5.4", + "packageName": "workbox-recipes", + "hash": "sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==" + } + }, + "npm:@octokit/request@6.2.0": { + "type": "npm", + "name": "npm:@octokit/request@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "@octokit/request", + "hash": "sha512-7IAmHnaezZrgUqtRShMlByJK33MT9ZDnMRgZjnRrRV9a/jzzFwKGz0vxhFU6i7VMLraYcQ1qmcAOin37Kryq+Q==" + } + }, + "npm:cli-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "3.0.0", + "packageName": "cli-width", + "hash": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" + } + }, + "npm:node-machine-id": { + "type": "npm", + "name": "npm:node-machine-id", + "data": { + "version": "1.1.12", + "packageName": "node-machine-id", + "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" + } + }, + "npm:@istanbuljs/schema": { + "type": "npm", + "name": "npm:@istanbuljs/schema", + "data": { + "version": "0.1.3", + "packageName": "@istanbuljs/schema", + "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + } + }, + "npm:type-fest@2.12.1": { + "type": "npm", + "name": "npm:type-fest@2.12.1", + "data": { + "version": "2.12.1", + "packageName": "type-fest", + "hash": "sha512-AiknQSEqKVGDDjtZqeKrUoTlcj7FKhupmnVUgz6KoOKtvMwRGE6hUNJ/nVear+h7fnUPO1q/htSkYKb1pyntkQ==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods", + "data": { + "version": "7.2.3", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.3.2", + "packageName": "html-entities", + "hash": "sha512-c3Ab/url5ksaT0WyleslpBEthOzWhrjQbg75y7XUsfSzi3Dgzt0l8w5e7DylRn15MTlMMD58dTfzddNS2kcAjQ==" + } + }, + "npm:@jest/test-result@29.6.2": { + "type": "npm", + "name": "npm:@jest/test-result@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/test-result", + "hash": "sha512-3VKFXzcV42EYhMCsJQURptSqnyjqCGbtLuX5Xxb6Pm6gUf1wIRIl+mandIRGJyWKgNKYF9cnstti6Ls5ekduqw==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.2.0", + "packageName": "run-parallel", + "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:js-yaml@4.0.0": { + "type": "npm", + "name": "npm:js-yaml@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "js-yaml", + "hash": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==" + } + }, + "npm:@cspell/dict-vue": { + "type": "npm", + "name": "npm:@cspell/dict-vue", + "data": { + "version": "3.0.0", + "packageName": "@cspell/dict-vue", + "hash": "sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==" + } + }, + "npm:formdata-polyfill": { + "type": "npm", + "name": "npm:formdata-polyfill", + "data": { + "version": "4.0.10", + "packageName": "formdata-polyfill", + "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" + } + }, + "npm:ansi-align": { + "type": "npm", + "name": "npm:ansi-align", + "data": { + "version": "3.0.1", + "packageName": "ansi-align", + "hash": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.4", + "packageName": "@types/range-parser", + "hash": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + } + }, + "npm:@babel/helper-validator-identifier@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + } + }, + "npm:slice-ansi@4.0.0": { + "type": "npm", + "name": "npm:slice-ansi@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slice-ansi", + "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + } + }, + "npm:@babel/plugin-syntax-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-namespace-from", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-export-namespace-from", + "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.3", + "packageName": "@jridgewell/source-map", + "hash": "sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==" + } + }, + "npm:indent-string@5.0.0": { + "type": "npm", + "name": "npm:indent-string@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "indent-string", + "hash": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==" + } + }, + "npm:is-plain-obj@1.1.0": { + "type": "npm", + "name": "npm:is-plain-obj@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + } + }, + "npm:builtin-modules": { + "type": "npm", + "name": "npm:builtin-modules", + "data": { + "version": "3.3.0", + "packageName": "builtin-modules", + "hash": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==" + } + }, + "npm:normalize-range": { + "type": "npm", + "name": "npm:normalize-range", + "data": { + "version": "0.1.2", + "packageName": "normalize-range", + "hash": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:dns-equal": { + "type": "npm", + "name": "npm:dns-equal", + "data": { + "version": "1.0.0", + "packageName": "dns-equal", + "hash": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "1.0.0", + "packageName": "temp-dir", + "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "5.1.1", + "packageName": "postcss-unique-selectors", + "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" + } + }, + "npm:markdownlint-micromark@0.1.5": { + "type": "npm", + "name": "npm:markdownlint-micromark@0.1.5", + "data": { + "version": "0.1.5", + "packageName": "markdownlint-micromark", + "hash": "sha512-HvofNU4QCvfUCWnocQP1IAWaqop5wpWrB0mKB6SSh0fcpV0PdmQNS6tdUuFew1utpYlUvYYzz84oDkrD76GB9A==" + } + }, + "npm:prop-types": { + "type": "npm", + "name": "npm:prop-types", + "data": { + "version": "15.8.1", + "packageName": "prop-types", + "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" + } + }, + "npm:algoliasearch": { + "type": "npm", + "name": "npm:algoliasearch", + "data": { + "version": "4.13.1", + "packageName": "algoliasearch", + "hash": "sha512-dtHUSE0caWTCE7liE1xaL+19AFf6kWEcyn76uhcitWpntqvicFHXKFoZe5JJcv9whQOTRM6+B8qJz6sFj+rDJA==" + } + }, + "npm:@types/react-router-dom": { + "type": "npm", + "name": "npm:@types/react-router-dom", + "data": { + "version": "5.3.3", + "packageName": "@types/react-router-dom", + "hash": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==" + } + }, + "npm:@cspotcode/source-map-consumer": { + "type": "npm", + "name": "npm:@cspotcode/source-map-consumer", + "data": { + "version": "0.8.0", + "packageName": "@cspotcode/source-map-consumer", + "hash": "sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==" + } + }, + "npm:@lerna/child-process@7.1.4": { + "type": "npm", + "name": "npm:@lerna/child-process@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "@lerna/child-process", + "hash": "sha512-cSiMDx9oI9vvVT+V/WHcbqrksNoc9PIPFiks1lPS7zrVWkEbgA6REQyYmRd2H71kihzqhX5TJ20f2dWv6oEPdA==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "8.1.1", + "packageName": "supports-color", + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + } + }, + "npm:tsx@3.12.7": { + "type": "npm", + "name": "npm:tsx@3.12.7", + "data": { + "version": "3.12.7", + "packageName": "tsx", + "hash": "sha512-C2Ip+jPmqKd1GWVQDvz/Eyc6QJbGfE7NrR3fx5BpEHMZsEHoIxHL1j+lKdGobr8ovEyqeNkPLSKp6SCSOt7gmw==" + } + }, + "npm:@npmcli/move-file@2.0.0": { + "type": "npm", + "name": "npm:@npmcli/move-file@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@npmcli/move-file", + "hash": "sha512-UR6D5f4KEGWJV6BGPH3Qb2EtgH+t+1XQ1Tt85c7qicN6cezzuHPdZwwAxqZr4JLtnQu0LZsTza/5gmNmSl8XLg==" + } + }, + "npm:registry-auth-token": { + "type": "npm", + "name": "npm:registry-auth-token", + "data": { + "version": "4.2.1", + "packageName": "registry-auth-token", + "hash": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==" + } + }, + "npm:builtin-modules@1.1.1": { + "type": "npm", + "name": "npm:builtin-modules@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "builtin-modules", + "hash": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" + } + }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + }, + "npm:webpack@5.88.2": { + "type": "npm", + "name": "npm:webpack@5.88.2", + "data": { + "version": "5.88.2", + "packageName": "webpack", + "hash": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==" + } + }, + "npm:graphemer": { + "type": "npm", + "name": "npm:graphemer", + "data": { + "version": "1.4.0", + "packageName": "graphemer", + "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + } + }, + "npm:load-json-file@4.0.0": { + "type": "npm", + "name": "npm:load-json-file@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "load-json-file", + "hash": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=" + } + }, + "npm:@babel/helper-annotate-as-pure@7.18.6": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==" + } + }, + "npm:is-stream@3.0.0": { + "type": "npm", + "name": "npm:is-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-stream", + "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + } + }, + "npm:lodash.sortby": { + "type": "npm", + "name": "npm:lodash.sortby", + "data": { + "version": "4.7.0", + "packageName": "lodash.sortby", + "hash": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:@cspell/dict-powershell": { + "type": "npm", + "name": "npm:@cspell/dict-powershell", + "data": { + "version": "5.0.2", + "packageName": "@cspell/dict-powershell", + "hash": "sha512-IHfWLme3FXE7vnOmMncSBxOsMTdNWd1Vcyhag03WS8oANSgX8IZ+4lMI00mF0ptlgchf16/OU8WsV4pZfikEFw==" + } + }, + "npm:gzip-size": { + "type": "npm", + "name": "npm:gzip-size", + "data": { + "version": "6.0.0", + "packageName": "gzip-size", + "hash": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==" + } + }, + "npm:redent@4.0.0": { + "type": "npm", + "name": "npm:redent@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "redent", + "hash": "sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==" + } + }, + "npm:run-async": { + "type": "npm", + "name": "npm:run-async", + "data": { + "version": "2.4.1", + "packageName": "run-async", + "hash": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.2.4", + "packageName": "ignore", + "hash": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + } + }, + "npm:@octokit/plugin-paginate-rest": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest", + "data": { + "version": "6.1.2", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==" + } + }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.6", + "packageName": "http-proxy-middleware", + "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + } + }, + "npm:sinon@11.1.2": { + "type": "npm", + "name": "npm:sinon@11.1.2", + "data": { + "version": "11.1.2", + "packageName": "sinon", + "hash": "sha512-59237HChms4kg7/sXhiRcUzdSkKuydDeTiamT/jesUVHshBgL8XAmhgFo0GfK6RruMDM/iRSij1EybmMog9cJw==" + } + }, + "npm:hast-util-raw": { + "type": "npm", + "name": "npm:hast-util-raw", + "data": { + "version": "6.0.1", + "packageName": "hast-util-raw", + "hash": "sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==" + } + }, + "npm:is-lambda": { + "type": "npm", + "name": "npm:is-lambda", + "data": { + "version": "1.0.1", + "packageName": "is-lambda", + "hash": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=" + } + }, + "npm:minipass@5.0.0": { + "type": "npm", + "name": "npm:minipass@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + } + }, + "npm:ignore-walk@6.0.2": { + "type": "npm", + "name": "npm:ignore-walk@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "ignore-walk", + "hash": "sha512-ezmQ1Dg2b3jVZh2Dh+ar6Eu2MqNSTkyb32HU2MAQQQX9tKM3q/UQ/9lf03lQ5hW+fOeoMnwxwkleZ0xcNp0/qg==" + } + }, + "npm:columnify": { + "type": "npm", + "name": "npm:columnify", + "data": { + "version": "1.6.0", + "packageName": "columnify", + "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "npm:@jridgewell/resolve-uri@3.1.0": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" + } + }, + "npm:brace-expansion@1.1.11": { + "type": "npm", + "name": "npm:brace-expansion@1.1.11", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "npm:split": { + "type": "npm", + "name": "npm:split", + "data": { + "version": "1.0.1", + "packageName": "split", + "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" + } + }, + "npm:ansi-styles@3.2.1": { + "type": "npm", + "name": "npm:ansi-styles@3.2.1", + "data": { + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + } + }, + "npm:table": { + "type": "npm", + "name": "npm:table", + "data": { + "version": "6.8.1", + "packageName": "table", + "hash": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "4.9.3", + "packageName": "webpack-dev-server", + "hash": "sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==" + } + }, + "npm:execa@5.0.0": { + "type": "npm", + "name": "npm:execa@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "execa", + "hash": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==" + } + }, + "npm:string_decoder@1.1.1": { + "type": "npm", + "name": "npm:string_decoder@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:@babel/types@7.22.5": { + "type": "npm", + "name": "npm:@babel/types@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/types", + "hash": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.0.1", + "packageName": "selfsigned", + "hash": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==" + } + }, + "npm:pascal-case": { + "type": "npm", + "name": "npm:pascal-case", + "data": { + "version": "3.1.2", + "packageName": "pascal-case", + "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" + } + }, + "npm:@esbuild/android-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==" + } + }, + "npm:@eslint-community/regexpp@4.6.2": { + "type": "npm", + "name": "npm:@eslint-community/regexpp@4.6.2", + "data": { + "version": "4.6.2", + "packageName": "@eslint-community/regexpp", + "hash": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==" + } + }, + "npm:git-url-parse": { + "type": "npm", + "name": "npm:git-url-parse", + "data": { + "version": "13.1.0", + "packageName": "git-url-parse", + "hash": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==" + } + }, + "npm:ssri@9.0.1": { + "type": "npm", + "name": "npm:ssri@9.0.1", + "data": { + "version": "9.0.1", + "packageName": "ssri", + "hash": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" + } + }, + "npm:yargs-unparser": { + "type": "npm", + "name": "npm:yargs-unparser", + "data": { + "version": "2.0.0", + "packageName": "yargs-unparser", + "hash": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==" + } + }, + "npm:postcss-safe-parser": { + "type": "npm", + "name": "npm:postcss-safe-parser", + "data": { + "version": "6.0.0", + "packageName": "postcss-safe-parser", + "hash": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==" + } + }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=" + } + }, + "npm:locate-path@2.0.0": { + "type": "npm", + "name": "npm:locate-path@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "locate-path", + "hash": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:react-helmet-async": { + "type": "npm", + "name": "npm:react-helmet-async", + "data": { + "version": "1.3.0", + "packageName": "react-helmet-async", + "hash": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + } + }, + "npm:lru-cache@10.0.0": { + "type": "npm", + "name": "npm:lru-cache@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "lru-cache", + "hash": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:@esbuild-kit/cjs-loader@2.4.2": { + "type": "npm", + "name": "npm:@esbuild-kit/cjs-loader@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "@esbuild-kit/cjs-loader", + "hash": "sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==" + } + }, + "npm:nanoid@3.3.6": { + "type": "npm", + "name": "npm:nanoid@3.3.6", + "data": { + "version": "3.3.6", + "packageName": "nanoid", + "hash": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + } + }, + "npm:ms@2.1.2": { + "type": "npm", + "name": "npm:ms@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "ms", + "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + }, + "npm:@swc/jest@0.2.27": { + "type": "npm", + "name": "npm:@swc/jest@0.2.27", + "data": { + "version": "0.2.27", + "packageName": "@swc/jest", + "hash": "sha512-Xt8EJ6Wy0NYVL8KDPcDMsuUSzyV2UAByamyy28x2iDZCJw2eVz3acedCGBYxxlPR/DNr6QbA35OSymuXhC9QVA==" + } + }, + "npm:make-fetch-happen@10.1.5": { + "type": "npm", + "name": "npm:make-fetch-happen@10.1.5", + "data": { + "version": "10.1.5", + "packageName": "make-fetch-happen", + "hash": "sha512-mucOj2H0Jn/ax7H9K9T1bf0p1nn/mBFa551Os7ed9xRfLEx20aZhZeLslmRYfAaAqXZUGipcs+m5KOKvOH0XKA==" + } + }, + "npm:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + } + }, + "npm:@algolia/events": { + "type": "npm", + "name": "npm:@algolia/events", + "data": { + "version": "4.0.1", + "packageName": "@algolia/events", + "hash": "sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.0.1", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + } + }, + "npm:acorn-import-assertions": { + "type": "npm", + "name": "npm:acorn-import-assertions", + "data": { + "version": "1.9.0", + "packageName": "acorn-import-assertions", + "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" + } + }, + "npm:growl@1.10.5": { + "type": "npm", + "name": "npm:growl@1.10.5", + "data": { + "version": "1.10.5", + "packageName": "growl", + "hash": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:@npmcli/promise-spawn": { + "type": "npm", + "name": "npm:@npmcli/promise-spawn", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/promise-spawn", + "hash": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==" + } + }, + "npm:@types/json5": { + "type": "npm", + "name": "npm:@types/json5", + "data": { + "version": "0.0.29", + "packageName": "@types/json5", + "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + } + }, + "npm:type-fest@0.4.1": { + "type": "npm", + "name": "npm:type-fest@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "type-fest", + "hash": "sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==" + } + }, + "npm:cli-truncate@2.1.0": { + "type": "npm", + "name": "npm:cli-truncate@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "cli-truncate", + "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" + } + }, + "npm:conventional-changelog-angular": { + "type": "npm", + "name": "npm:conventional-changelog-angular", + "data": { + "version": "6.0.0", + "packageName": "conventional-changelog-angular", + "hash": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:@microsoft/tsdoc@0.14.1": { + "type": "npm", + "name": "npm:@microsoft/tsdoc@0.14.1", + "data": { + "version": "0.14.1", + "packageName": "@microsoft/tsdoc", + "hash": "sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==" + } + }, + "npm:eslint-plugin-eslint-plugin": { + "type": "npm", + "name": "npm:eslint-plugin-eslint-plugin", + "data": { + "version": "5.1.1", + "packageName": "eslint-plugin-eslint-plugin", + "hash": "sha512-4MGDsG505Ot2TSDSYxFL0cpDo4Y+t6hKB8cfZw9Jx484VjXWDfiYC/A6cccWFtWoOOC0j+wGgQIIb11cdIAMBg==" + } + }, + "npm:@types/lodash.merge@4.6.7": { + "type": "npm", + "name": "npm:@types/lodash.merge@4.6.7", + "data": { + "version": "4.6.7", + "packageName": "@types/lodash.merge", + "hash": "sha512-OwxUJ9E50gw3LnAefSHJPHaBLGEKmQBQ7CZe/xflHkyy/wH2zVyEIAKReHvVrrn7zKdF58p16We9kMfh7v0RRQ==" + } + }, + "npm:@types/react-helmet@6.1.6": { + "type": "npm", + "name": "npm:@types/react-helmet@6.1.6", + "data": { + "version": "6.1.6", + "packageName": "@types/react-helmet", + "hash": "sha512-ZKcoOdW/Tg+kiUbkFCBtvDw0k3nD4HJ/h/B9yWxN4uDO8OkRksWTO+EL+z/Qu3aHTeTll3Ro0Cc/8UhwBCMG5A==" + } + }, + "npm:html-minifier-terser": { + "type": "npm", + "name": "npm:html-minifier-terser", + "data": { + "version": "6.1.0", + "packageName": "html-minifier-terser", + "hash": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + }, + "npm:minipass-fetch@2.1.0": { + "type": "npm", + "name": "npm:minipass-fetch@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "minipass-fetch", + "hash": "sha512-H9U4UVBGXEyyWJnqYDCLp1PwD8XIkJ4akNHp1aGVI+2Ym7wQMlxDKi4IB4JbmyU+pl9pEs/cVrK6cOuvmbK4Sg==" + } + }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.1.2", + "packageName": "tsconfig-paths", + "hash": "sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==" + } + }, + "npm:gray-matter": { + "type": "npm", + "name": "npm:gray-matter", + "data": { + "version": "4.0.3", + "packageName": "gray-matter", + "hash": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==" + } + }, + "npm:character-entities": { + "type": "npm", + "name": "npm:character-entities", + "data": { + "version": "1.2.4", + "packageName": "character-entities", + "hash": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==" + } + }, + "npm:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "npm:pacote": { + "type": "npm", + "name": "npm:pacote", + "data": { + "version": "15.2.0", + "packageName": "pacote", + "hash": "sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "1.0.0", + "packageName": "mute-stream", + "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" + } + }, + "npm:read-package-json": { + "type": "npm", + "name": "npm:read-package-json", + "data": { + "version": "6.0.4", + "packageName": "read-package-json", + "hash": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==" + } + }, + "npm:jsonc-parser": { + "type": "npm", + "name": "npm:jsonc-parser", + "data": { + "version": "3.2.0", + "packageName": "jsonc-parser", + "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" + } + }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, + "npm:es-shim-unscopables": { + "type": "npm", + "name": "npm:es-shim-unscopables", + "data": { + "version": "1.0.0", + "packageName": "es-shim-unscopables", + "hash": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==" + } + }, + "npm:get-intrinsic@1.2.1": { + "type": "npm", + "name": "npm:get-intrinsic@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "get-intrinsic", + "hash": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==" + } + }, + "npm:@rushstack/rig-package@0.4.0": { + "type": "npm", + "name": "npm:@rushstack/rig-package@0.4.0", + "data": { + "version": "0.4.0", + "packageName": "@rushstack/rig-package", + "hash": "sha512-FnM1TQLJYwSiurP6aYSnansprK5l8WUK8VG38CmAaZs29ZeL1msjK0AP1VS4ejD33G0kE/2cpsPsS9jDenBMxw==" + } + }, + "npm:workbox-sw": { + "type": "npm", + "name": "npm:workbox-sw", + "data": { + "version": "6.5.4", + "packageName": "workbox-sw", + "hash": "sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==" + } + }, + "npm:shallowequal": { + "type": "npm", + "name": "npm:shallowequal", + "data": { + "version": "1.1.0", + "packageName": "shallowequal", + "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + } + }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "1.3.2", + "packageName": "@types/mime", + "hash": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, + "npm:@tufjs/canonical-json": { + "type": "npm", + "name": "npm:@tufjs/canonical-json", + "data": { + "version": "1.0.0", + "packageName": "@tufjs/canonical-json", + "hash": "sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==" + } + }, + "npm:jackspeak@2.2.1": { + "type": "npm", + "name": "npm:jackspeak@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "jackspeak", + "hash": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==" + } + }, + "npm:wordwrap": { + "type": "npm", + "name": "npm:wordwrap", + "data": { + "version": "1.0.0", + "packageName": "wordwrap", + "hash": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=" + } + }, + "npm:global-modules": { + "type": "npm", + "name": "npm:global-modules", + "data": { + "version": "2.0.0", + "packageName": "global-modules", + "hash": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + } + }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=" + } + }, + "npm:@babel/plugin-transform-typeof-symbol@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typeof-symbol@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-typeof-symbol", + "hash": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:@jest/create-cache-key-function@29.6.2": { + "type": "npm", + "name": "npm:@jest/create-cache-key-function@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/create-cache-key-function", + "hash": "sha512-oGVRMr8na9h1vUiem1E/Uoxb/NR9BdfKb7IBZ+pNWxJQmTYSbDF0dsVBAGqNU7MBQwYJDyRx0H7H/0itiqAgQg==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" + } + }, + "npm:@nx/nx-linux-x64-musl@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-jM2igA26dd0YVj9w/Pv2x3ZUUziVP4H3rFzYDAd80sQqLYWqELr6Fljyvj/2C+o+mOfVcw85+yfessjlPz8K8Q==" + } + }, + "npm:lerna@7.1.4": { + "type": "npm", + "name": "npm:lerna@7.1.4", + "data": { + "version": "7.1.4", + "packageName": "lerna", + "hash": "sha512-/cabvmTTkmayyALIZx7OpHRex72i8xSOkiJchEkrKxAZHoLNaGSwqwKkj+x6WtmchhWl/gLlqwQXGRuxrJKiBw==" + } + }, + "npm:trim-trailing-lines": { + "type": "npm", + "name": "npm:trim-trailing-lines", + "data": { + "version": "1.1.4", + "packageName": "trim-trailing-lines", + "hash": "sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==" + } + }, + "npm:global-prefix": { + "type": "npm", + "name": "npm:global-prefix", + "data": { + "version": "3.0.0", + "packageName": "global-prefix", + "hash": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + } + }, + "npm:@esbuild/win32-ia32@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==" + } + }, + "npm:@docusaurus/theme-common@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/theme-common@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/theme-common", + "hash": "sha512-G7Zau1W5rQTaFFB3x3soQoZpkgMbl/SYNG8PfMFIjKa3M3q8n0m/GRf5/H/e5BqOvt8c+ZWIXGCiz+kUCSHovA==" + } + }, + "npm:@esbuild-kit/core-utils@3.1.0": { + "type": "npm", + "name": "npm:@esbuild-kit/core-utils@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "@esbuild-kit/core-utils", + "hash": "sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==" + } + }, + "npm:@svgr/babel-plugin-svg-dynamic-title": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-svg-dynamic-title", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-svg-dynamic-title", + "hash": "sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==" + } + }, + "npm:regjsparser": { + "type": "npm", + "name": "npm:regjsparser", + "data": { + "version": "0.9.1", + "packageName": "regjsparser", + "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" + } + }, + "npm:@types/minimatch@5.1.2": { + "type": "npm", + "name": "npm:@types/minimatch@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "@types/minimatch", + "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + } + }, + "npm:meow": { + "type": "npm", + "name": "npm:meow", + "data": { + "version": "8.1.2", + "packageName": "meow", + "hash": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.0.0", + "packageName": "picocolors", + "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } + }, + "npm:upath@1.2.0": { + "type": "npm", + "name": "npm:upath@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "upath", + "hash": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:redent": { + "type": "npm", + "name": "npm:redent", + "data": { + "version": "3.0.0", + "packageName": "redent", + "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" + } + }, + "npm:mdast-util-to-string": { + "type": "npm", + "name": "npm:mdast-util-to-string", + "data": { + "version": "2.0.0", + "packageName": "mdast-util-to-string", + "hash": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "9.6.1", + "packageName": "espree", + "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" + } + }, + "npm:@docusaurus/plugin-debug@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-debug@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-debug", + "hash": "sha512-7Yu9UPzRShlrH/G8btOpR0e6INFZr0EegWplMjOqelIwAcx3PKyR8mgPTxGTxcqiYj6hxSCRN0D8R7YrzImwNA==" + } + }, + "npm:is-obj": { + "type": "npm", + "name": "npm:is-obj", + "data": { + "version": "2.0.0", + "packageName": "is-obj", + "hash": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + }, + "npm:babel-plugin-polyfill-corejs2@0.3.3": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "data": { + "version": "0.3.3", + "packageName": "babel-plugin-polyfill-corejs2", + "hash": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==" + } + }, + "npm:dom-serializer@1.3.2": { + "type": "npm", + "name": "npm:dom-serializer@1.3.2", + "data": { + "version": "1.3.2", + "packageName": "dom-serializer", + "hash": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==" + } + }, + "npm:@octokit/endpoint@7.0.0": { + "type": "npm", + "name": "npm:@octokit/endpoint@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "@octokit/endpoint", + "hash": "sha512-Kz/mIkOTjs9rV50hf/JK9pIDl4aGwAtT8pry6Rpy+hVXkAPhXanNQRxMoq6AeRgDCZR6t/A1zKniY2V1YhrzlQ==" + } + }, + "npm:@esbuild/freebsd-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:trough": { + "type": "npm", + "name": "npm:trough", + "data": { + "version": "1.0.5", + "packageName": "trough", + "hash": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==" + } + }, + "npm:object.values@1.1.6": { + "type": "npm", + "name": "npm:object.values@1.1.6", + "data": { + "version": "1.1.6", + "packageName": "object.values", + "hash": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==" + } + }, + "npm:loupe@2.3.6": { + "type": "npm", + "name": "npm:loupe@2.3.6", + "data": { + "version": "2.3.6", + "packageName": "loupe", + "hash": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "https-proxy-agent", + "hash": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==" + } + }, + "npm:mdast-squeeze-paragraphs": { + "type": "npm", + "name": "npm:mdast-squeeze-paragraphs", + "data": { + "version": "4.0.0", + "packageName": "mdast-squeeze-paragraphs", + "hash": "sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==" + } + }, + "npm:wide-align@1.1.3": { + "type": "npm", + "name": "npm:wide-align@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "wide-align", + "hash": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "3.2.2", + "packageName": "split2", + "hash": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==" + } + }, + "npm:color-name@1.1.4": { + "type": "npm", + "name": "npm:color-name@1.1.4", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:@csstools/selector-specificity": { + "type": "npm", + "name": "npm:@csstools/selector-specificity", + "data": { + "version": "3.0.0", + "packageName": "@csstools/selector-specificity", + "hash": "sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==" + } + }, + "npm:schema-utils@2.7.1": { + "type": "npm", + "name": "npm:schema-utils@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "schema-utils", + "hash": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + } + }, + "npm:object.groupby@1.0.0": { + "type": "npm", + "name": "npm:object.groupby@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "object.groupby", + "hash": "sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==" + } + }, + "npm:sort-css-media-queries": { + "type": "npm", + "name": "npm:sort-css-media-queries", + "data": { + "version": "2.0.4", + "packageName": "sort-css-media-queries", + "hash": "sha512-PAIsEK/XupCQwitjv7XxoMvYhT7EAfyzI3hsy/MyDgTvc+Ft55ctdkctJLOy6cQejaIC+zjpUL4djFVm2ivOOw==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:@babel/plugin-transform-function-name@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-function-name@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-function-name", + "hash": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==" + } + }, + "npm:@algolia/cache-in-memory": { + "type": "npm", + "name": "npm:@algolia/cache-in-memory", + "data": { + "version": "4.13.1", + "packageName": "@algolia/cache-in-memory", + "hash": "sha512-pZzybCDGApfA/nutsFK1P0Sbsq6fYJU3DwIvyKg4pURerlJM4qZbB9bfLRef0FkzfQu7W11E4cVLCIOWmyZeuQ==" + } + }, + "npm:@esbuild/android-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==" + } + }, + "npm:@playwright/test@1.36.2": { + "type": "npm", + "name": "npm:@playwright/test@1.36.2", + "data": { + "version": "1.36.2", + "packageName": "@playwright/test", + "hash": "sha512-2rVZeyPRjxfPH6J0oGJqE8YxiM1IBRyM8hyrXYK7eSiAqmbNhxwcLa7dZ7fy9Kj26V7FYia5fh9XJRq4Dqme+g==" + } + }, + "npm:@esbuild/linux-ia32@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.20.1", + "packageName": "@types/babel__traverse", + "hash": "sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:react-router-dom": { + "type": "npm", + "name": "npm:react-router-dom", + "data": { + "version": "5.3.3", + "packageName": "react-router-dom", + "hash": "sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.8.1", + "packageName": "envinfo", + "hash": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" + } + }, + "npm:minimatch@8.0.3": { + "type": "npm", + "name": "npm:minimatch@8.0.3", + "data": { + "version": "8.0.3", + "packageName": "minimatch", + "hash": "sha512-tEEvU9TkZgnFDCtpnrEYnPsjT7iUx42aXfs4bzmQ5sMA09/6hZY0jeZcGkXyDagiBOvkUjNo8Viom+Me6+2x7g==" + } + }, + "npm:@cspell/dict-csharp": { + "type": "npm", + "name": "npm:@cspell/dict-csharp", + "data": { + "version": "4.0.2", + "packageName": "@cspell/dict-csharp", + "hash": "sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.1.2", + "packageName": "@jridgewell/set-array", + "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-offset", + "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.12", + "packageName": "is-typed-array", + "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" + } + }, + "npm:@types/eslint-visitor-keys": { + "type": "npm", + "name": "npm:@types/eslint-visitor-keys", + "data": { + "version": "3.3.0", + "packageName": "@types/eslint-visitor-keys", + "hash": "sha512-Occsmzv0PEJYna7gJdHg28/LNm/Ur+ivQRqvN12bfUiAuNKtUzMzGl/nzc59IJfjRbng4eul/0mEYyMDpaWKBw==" + } + }, + "npm:deep-equal": { + "type": "npm", + "name": "npm:deep-equal", + "data": { + "version": "2.2.0", + "packageName": "deep-equal", + "hash": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==" + } + }, + "npm:duplexer": { + "type": "npm", + "name": "npm:duplexer", + "data": { + "version": "0.1.2", + "packageName": "duplexer", + "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + } + }, + "npm:glob@8.1.0": { + "type": "npm", + "name": "npm:glob@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "glob", + "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" + } + }, + "npm:klaw-sync@6.0.0": { + "type": "npm", + "name": "npm:klaw-sync@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "klaw-sync", + "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" + } + }, + "npm:schema-utils@2.7.0": { + "type": "npm", + "name": "npm:schema-utils@2.7.0", + "data": { + "version": "2.7.0", + "packageName": "schema-utils", + "hash": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==" + } + }, + "npm:is-plain-obj@3.0.0": { + "type": "npm", + "name": "npm:is-plain-obj@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.3", + "packageName": "http-parser-js", + "hash": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:yallist@3.1.1": { + "type": "npm", + "name": "npm:yallist@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:@babel/plugin-syntax-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-static-block", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-class-static-block", + "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + } + }, + "npm:tmpl": { + "type": "npm", + "name": "npm:tmpl", + "data": { + "version": "1.0.5", + "packageName": "tmpl", + "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + } + }, + "npm:@octokit/openapi-types@12.10.1": { + "type": "npm", + "name": "npm:@octokit/openapi-types@12.10.1", + "data": { + "version": "12.10.1", + "packageName": "@octokit/openapi-types", + "hash": "sha512-P+SukKanjFY0ZhsK6wSVnQmxTP2eVPPE8OPSNuxaMYtgVzwJZgfGdwlYjf4RlRU4vLEw4ts2fsE2icG4nZ5ddQ==" + } + }, + "npm:@docusaurus/theme-translations@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/theme-translations@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/theme-translations", + "hash": "sha512-T1RAGP+f86CA1kfE8ejZ3T3pUU3XcyvrGMfC/zxCtc2BsnoexuNI9Vk2CmuKCb+Tacvhxjv5unhxXce0+NKyvA==" + } + }, + "npm:@esbuild/darwin-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==" + } + }, + "npm:@cspell/dict-cpp@5.0.3": { + "type": "npm", + "name": "npm:@cspell/dict-cpp@5.0.3", + "data": { + "version": "5.0.3", + "packageName": "@cspell/dict-cpp", + "hash": "sha512-7sx/RFsf0hB3q8chx8OHYl9Kd+g0pqA1laphwaAQ+/jPwoAreYT3kNQWbJ3bIt/rMoORetFSQxckSbaJXwwqpw==" + } + }, + "npm:strip-bom-string": { + "type": "npm", + "name": "npm:strip-bom-string", + "data": { + "version": "1.0.0", + "packageName": "strip-bom-string", + "hash": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" + } + }, + "npm:workbox-precaching": { + "type": "npm", + "name": "npm:workbox-precaching", + "data": { + "version": "6.5.4", + "packageName": "workbox-precaching", + "hash": "sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-charset", + "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:konamimojisplosion": { + "type": "npm", + "name": "npm:konamimojisplosion", + "data": { + "version": "0.5.2", + "packageName": "konamimojisplosion", + "hash": "sha512-gPZ+0a720xl9OcfJOUw549fnij0xsP78GupIhl0irnJF6wwIhHSjHEp75qrXNVJb2p9Rtui5yOeJQoUcLy1lvQ==" + } + }, + "npm:@typescript-eslint/types@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/types@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" + } + }, + "npm:zwitch": { + "type": "npm", + "name": "npm:zwitch", + "data": { + "version": "1.0.5", + "packageName": "zwitch", + "hash": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==" + } + }, + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "hash": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==" + } + }, + "npm:lodash.flow": { + "type": "npm", + "name": "npm:lodash.flow", + "data": { + "version": "3.5.0", + "packageName": "lodash.flow", + "hash": "sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o=" + } + }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "8.2.5", + "packageName": "babel-loader", + "hash": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==" + } + }, + "npm:array-flatten": { + "type": "npm", + "name": "npm:array-flatten", + "data": { + "version": "2.1.2", + "packageName": "array-flatten", + "hash": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + }, + "npm:type-fest@0.20.2": { + "type": "npm", + "name": "npm:type-fest@0.20.2", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, + "npm:fs-extra@11.1.1": { + "type": "npm", + "name": "npm:fs-extra@11.1.1", + "data": { + "version": "11.1.1", + "packageName": "fs-extra", + "hash": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==" + } + }, + "npm:array.prototype.tosorted": { + "type": "npm", + "name": "npm:array.prototype.tosorted", + "data": { + "version": "1.1.1", + "packageName": "array.prototype.tosorted", + "hash": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==" + } + }, + "npm:mimic-response": { + "type": "npm", + "name": "npm:mimic-response", + "data": { + "version": "1.0.1", + "packageName": "mimic-response", + "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + } + }, + "npm:stylelint@15.10.2": { + "type": "npm", + "name": "npm:stylelint@15.10.2", + "data": { + "version": "15.10.2", + "packageName": "stylelint", + "hash": "sha512-UxqSb3hB74g4DTO45QhUHkJMjKKU//lNUAOWyvPBVPZbCknJ5HjOWWZo+UDuhHa9FLeVdHBZXxu43eXkjyIPWg==" + } + }, + "npm:xdg-basedir": { + "type": "npm", + "name": "npm:xdg-basedir", + "data": { + "version": "4.0.0", + "packageName": "xdg-basedir", + "hash": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" + } + }, + "npm:path-is-inside": { + "type": "npm", + "name": "npm:path-is-inside", + "data": { + "version": "1.0.2", + "packageName": "path-is-inside", + "hash": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + } + }, + "npm:markdown-escapes": { + "type": "npm", + "name": "npm:markdown-escapes", + "data": { + "version": "1.0.4", + "packageName": "markdown-escapes", + "hash": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + } + }, + "npm:@babel/plugin-syntax-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", + "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + } + }, + "npm:@types/debug@4.1.8": { + "type": "npm", + "name": "npm:@types/debug@4.1.8", + "data": { + "version": "4.1.8", + "packageName": "@types/debug", + "hash": "sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "5.0.3", + "packageName": "domhandler", + "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + } + }, + "npm:@babel/plugin-transform-exponentiation-operator@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-exponentiation-operator", + "hash": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==" + } + }, + "npm:@babel/plugin-transform-react-jsx-development": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-development", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-react-jsx-development", + "hash": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==" + } + }, + "npm:@babel/plugin-syntax-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-dynamic-import", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-dynamic-import", + "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + } + }, + "npm:@cspell/dict-fonts@3.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-fonts@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "@cspell/dict-fonts", + "hash": "sha512-Z5QdbgEI7DV+KPXrAeDA6dDm/vTzyaW53SGlKqz6PI5VhkOjgkBXv3YtZjnxMZ4dY2ZIqq+RUK6qa9Pi8rQdGQ==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:@esbuild-kit/esm-loader@2.5.5": { + "type": "npm", + "name": "npm:@esbuild-kit/esm-loader@2.5.5", + "data": { + "version": "2.5.5", + "packageName": "@esbuild-kit/esm-loader", + "hash": "sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==" + } + }, + "npm:@babel/plugin-transform-modules-umd@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-modules-umd", + "hash": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==" + } + }, + "npm:parse-entities": { + "type": "npm", + "name": "npm:parse-entities", + "data": { + "version": "2.0.0", + "packageName": "parse-entities", + "hash": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:typedarray": { + "type": "npm", + "name": "npm:typedarray", + "data": { + "version": "0.0.6", + "packageName": "typedarray", + "hash": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + } + }, + "npm:comma-separated-tokens": { + "type": "npm", + "name": "npm:comma-separated-tokens", + "data": { + "version": "1.0.8", + "packageName": "comma-separated-tokens", + "hash": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==" + } + }, + "npm:ejs": { + "type": "npm", + "name": "npm:ejs", + "data": { + "version": "3.1.8", + "packageName": "ejs", + "hash": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==" + } + }, + "npm:@babel/helper-hoist-variables": { + "type": "npm", + "name": "npm:@babel/helper-hoist-variables", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-hoist-variables", + "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" + } + }, + "npm:jest-docblock@29.4.3": { + "type": "npm", + "name": "npm:jest-docblock@29.4.3", + "data": { + "version": "29.4.3", + "packageName": "jest-docblock", + "hash": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.1.0", + "packageName": "css-what", + "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "6.7.1", + "packageName": "css-loader", + "hash": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "5.1.2", + "packageName": "postcss-discard-comments", + "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" + } + }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "4.2.0", + "packageName": "fraction.js", + "hash": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + } + }, + "npm:data-uri-to-buffer": { + "type": "npm", + "name": "npm:data-uri-to-buffer", + "data": { + "version": "4.0.1", + "packageName": "data-uri-to-buffer", + "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" + } + }, + "npm:@nrwl/nx-cloud": { + "type": "npm", + "name": "npm:@nrwl/nx-cloud", + "data": { + "version": "16.1.1", + "packageName": "@nrwl/nx-cloud", + "hash": "sha512-iJIPP46+saFZK748FKU4u4YZH+Sv3ZvZPbMwGVMhwqhOYcrlO5aSa0lpilyoN8WuhooKNqcCfiqshx6V577fTg==" + } + }, + "npm:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.2.1", + "packageName": "@ampproject/remapping", + "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" + } + }, + "npm:@esbuild/openbsd-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==" + } + }, + "npm:@cspell/dict-django": { + "type": "npm", + "name": "npm:@cspell/dict-django", + "data": { + "version": "4.1.0", + "packageName": "@cspell/dict-django", + "hash": "sha512-bKJ4gPyrf+1c78Z0Oc4trEB9MuhcB+Yg+uTTWsvhY6O2ncFYbB/LbEZfqhfmmuK/XJJixXfI1laF2zicyf+l0w==" + } + }, + "npm:@cspotcode/source-map-support": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support", + "data": { + "version": "0.8.1", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "17.0.24", + "packageName": "@types/yargs", + "hash": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==" + } + }, + "npm:normalize-package-data": { + "type": "npm", + "name": "npm:normalize-package-data", + "data": { + "version": "3.0.3", + "packageName": "normalize-package-data", + "hash": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==" + } + }, + "npm:env-paths": { + "type": "npm", + "name": "npm:env-paths", + "data": { + "version": "2.2.1", + "packageName": "env-paths", + "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + } + }, + "npm:sigstore": { + "type": "npm", + "name": "npm:sigstore", + "data": { + "version": "1.6.0", + "packageName": "sigstore", + "hash": "sha512-QODKff/qW/TXOZI6V/Clqu74xnInAS6it05mufj4/fSewexLtfEntgLZZcBtUK44CDQyUE5TUXYy1ARYzlfG9g==" + } + }, + "npm:yargs-parser@20.2.4": { + "type": "npm", + "name": "npm:yargs-parser@20.2.4", + "data": { + "version": "20.2.4", + "packageName": "yargs-parser", + "hash": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==" + } + }, + "npm:@svgr/babel-plugin-add-jsx-attribute": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-add-jsx-attribute", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-add-jsx-attribute", + "hash": "sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "npm:chalk@4.1.0": { + "type": "npm", + "name": "npm:chalk@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "chalk", + "hash": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" + } + }, + "npm:space-separated-tokens": { + "type": "npm", + "name": "npm:space-separated-tokens", + "data": { + "version": "1.1.5", + "packageName": "space-separated-tokens", + "hash": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==" + } + }, + "npm:tapable@1.1.3": { + "type": "npm", + "name": "npm:tapable@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "tapable", + "hash": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + } + }, + "npm:@algolia/requester-common": { + "type": "npm", + "name": "npm:@algolia/requester-common", + "data": { + "version": "4.13.1", + "packageName": "@algolia/requester-common", + "hash": "sha512-eGVf0ID84apfFEuXsaoSgIxbU3oFsIbz4XiotU3VS8qGCJAaLVUC5BUJEkiFENZIhon7hIB4d0RI13HY4RSA+w==" + } + }, + "npm:deprecation": { + "type": "npm", + "name": "npm:deprecation", + "data": { + "version": "2.3.1", + "packageName": "deprecation", + "hash": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" + } + }, + "npm:is-alphabetical": { + "type": "npm", + "name": "npm:is-alphabetical", + "data": { + "version": "1.0.4", + "packageName": "is-alphabetical", + "hash": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==" + } + }, + "npm:@babel/template@7.22.5": { + "type": "npm", + "name": "npm:@babel/template@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/template", + "hash": "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==" + } + }, + "npm:p-wait-for": { + "type": "npm", + "name": "npm:p-wait-for", + "data": { + "version": "4.1.0", + "packageName": "p-wait-for", + "hash": "sha512-i8nE5q++9h8oaQHWltS1Tnnv4IoMDOlqN7C0KFG2OdbK0iFJIt6CROZ8wfBM+K4Pxqfnq4C4lkkpXqTEpB5DZw==" + } + }, + "npm:pathval": { + "type": "npm", + "name": "npm:pathval", + "data": { + "version": "1.1.1", + "packageName": "pathval", + "hash": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + } + }, + "npm:arraybuffer.prototype.slice@1.0.1": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==" + } + }, + "npm:tsutils@2.29.0": { + "type": "npm", + "name": "npm:tsutils@2.29.0", + "data": { + "version": "2.29.0", + "packageName": "tsutils", + "hash": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==" + } + }, + "npm:babel-plugin-polyfill-corejs3@0.6.0": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "data": { + "version": "0.6.0", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.7", + "packageName": "is-callable", + "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.3.0", + "packageName": "entities", + "hash": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + } + }, + "npm:@babel/plugin-syntax-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-properties", + "data": { + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.0.4", + "packageName": "reusify", + "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + } + }, + "npm:object-is": { + "type": "npm", + "name": "npm:object-is", + "data": { + "version": "1.1.5", + "packageName": "object-is", + "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + } + }, + "npm:require-like": { + "type": "npm", + "name": "npm:require-like", + "data": { + "version": "0.1.2", + "packageName": "require-like", + "hash": "sha1-rW8wwTvs15cBDEaK+ndcDAprR/o=" + } + }, + "npm:@esbuild/linux-arm@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==" + } + }, + "npm:type-detect": { + "type": "npm", + "name": "npm:type-detect", + "data": { + "version": "4.0.8", + "packageName": "type-detect", + "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + } + }, + "npm:@types/react@18.2.18": { + "type": "npm", + "name": "npm:@types/react@18.2.18", + "data": { + "version": "18.2.18", + "packageName": "@types/react", + "hash": "sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ==" + } + }, + "npm:emoticon": { + "type": "npm", + "name": "npm:emoticon", + "data": { + "version": "3.2.0", + "packageName": "emoticon", + "hash": "sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==" + } + }, + "npm:minimatch@3.0.4": { + "type": "npm", + "name": "npm:minimatch@3.0.4", + "data": { + "version": "3.0.4", + "packageName": "minimatch", + "hash": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:type-fest@0.16.0": { + "type": "npm", + "name": "npm:type-fest@0.16.0", + "data": { + "version": "0.16.0", + "packageName": "type-fest", + "hash": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" + } + }, + "npm:is-ci": { + "type": "npm", + "name": "npm:is-ci", + "data": { + "version": "3.0.1", + "packageName": "is-ci", + "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "2.1.0", + "packageName": "lilconfig", + "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + } + }, + "npm:@cspell/dict-cryptocurrencies@3.0.1": { + "type": "npm", + "name": "npm:@cspell/dict-cryptocurrencies@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "@cspell/dict-cryptocurrencies", + "hash": "sha512-Tdlr0Ahpp5yxtwM0ukC13V6+uYCI0p9fCRGMGZt36rWv8JQZHIuHfehNl7FB/Qc09NCF7p5ep0GXbL+sVTd/+w==" + } + }, + "npm:@babel/plugin-transform-unicode-regex@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-unicode-regex", + "hash": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==" + } + }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.22.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" + } + }, + "npm:get-stream@6.0.0": { + "type": "npm", + "name": "npm:get-stream@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "get-stream", + "hash": "sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==" + } + }, + "npm:reading-time": { + "type": "npm", + "name": "npm:reading-time", + "data": { + "version": "1.5.0", + "packageName": "reading-time", + "hash": "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==" + } + }, + "npm:@algolia/client-common": { + "type": "npm", + "name": "npm:@algolia/client-common", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-common", + "hash": "sha512-LcDoUE0Zz3YwfXJL6lJ2OMY2soClbjrrAKB6auYVMNJcoKZZ2cbhQoFR24AYoxnGUYBER/8B+9sTBj5bj/Gqbg==" + } + }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, + "npm:@babel/helper-create-class-features-plugin@7.21.8": { + "type": "npm", + "name": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "data": { + "version": "7.21.8", + "packageName": "@babel/helper-create-class-features-plugin", + "hash": "sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "5.1.0", + "packageName": "postcss-reduce-initial", + "hash": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==" + } + }, + "npm:@cspell/dict-data-science@1.0.7": { + "type": "npm", + "name": "npm:@cspell/dict-data-science@1.0.7", + "data": { + "version": "1.0.7", + "packageName": "@cspell/dict-data-science", + "hash": "sha512-Q9VUFaarUpqM6CAmR8peP4o9alk0XQ4rgVoE2R2XalpC2cqPI8Hmg6QwMU2UPioSUcWMJCqLc/KzJti0gBMuxA==" + } + }, + "npm:css-what@5.1.0": { + "type": "npm", + "name": "npm:css-what@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "css-what", + "hash": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==" + } + }, + "npm:@nx/workspace@16.5.3": { + "type": "npm", + "name": "npm:@nx/workspace@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/workspace", + "hash": "sha512-nviDIJdNJ1K9K8g6Ug+NqHBHILm/J5Uqr4sPTOvNAfkUpqS6gN2aKUJ09iXIwA+/cu+3hrVjIyNhvQ3xHfMCBg==" + } + }, + "npm:@cspell/dict-swift": { + "type": "npm", + "name": "npm:@cspell/dict-swift", + "data": { + "version": "2.0.1", + "packageName": "@cspell/dict-swift", + "hash": "sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==" + } + }, + "npm:@esbuild/linux-riscv64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==" + } + }, + "npm:@babel/plugin-transform-block-scoped-functions@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoped-functions@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-block-scoped-functions", + "hash": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==" + } + }, + "npm:emojisplosion": { + "type": "npm", + "name": "npm:emojisplosion", + "data": { + "version": "2.6.1", + "packageName": "emojisplosion", + "hash": "sha512-a+yvHzHHP9R8qvt7ZeZS8yReuHjwXvbBbSxJHVMMWs4+sf0eOE/v/+Iz6fQq0CdF8G04jsJMF1MNDlrIBCC1pw==" + } + }, + "npm:@esbuild/sunos-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==" + } + }, + "npm:eslint-module-utils": { + "type": "npm", + "name": "npm:eslint-module-utils", + "data": { + "version": "2.8.0", + "packageName": "eslint-module-utils", + "hash": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==" + } + }, + "npm:@jest/expect@29.6.2": { + "type": "npm", + "name": "npm:@jest/expect@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/expect", + "hash": "sha512-m6DrEJxVKjkELTVAztTLyS/7C92Y2b0VYqmDROYKLLALHn8T/04yPs70NADUYPrV3ruI+H3J0iUIuhkjp7vkfg==" + } + }, + "npm:ccount": { + "type": "npm", + "name": "npm:ccount", + "data": { + "version": "1.1.0", + "packageName": "ccount", + "hash": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.18", + "packageName": "compressible", + "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + } + }, + "npm:@babel/helper-wrap-function@7.18.9": { + "type": "npm", + "name": "npm:@babel/helper-wrap-function@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/helper-wrap-function", + "hash": "sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==" + } + }, + "npm:gauge": { + "type": "npm", + "name": "npm:gauge", + "data": { + "version": "4.0.4", + "packageName": "gauge", + "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" + } + }, + "npm:@babel/helper-module-imports@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-module-imports@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "0.5.2", + "packageName": "content-disposition", + "hash": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "1.8.0", + "packageName": "path-to-regexp", + "hash": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" + } + }, + "npm:eslint-plugin-simple-import-sort": { + "type": "npm", + "name": "npm:eslint-plugin-simple-import-sort", + "data": { + "version": "10.0.0", + "packageName": "eslint-plugin-simple-import-sort", + "hash": "sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==" + } + }, + "npm:validate-npm-package-license": { + "type": "npm", + "name": "npm:validate-npm-package-license", + "data": { + "version": "3.0.4", + "packageName": "validate-npm-package-license", + "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" + } + }, + "npm:@babel/eslint-parser@7.22.9": { + "type": "npm", + "name": "npm:@babel/eslint-parser@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/eslint-parser", + "hash": "sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:humanize-ms": { + "type": "npm", + "name": "npm:humanize-ms", + "data": { + "version": "1.2.1", + "packageName": "humanize-ms", + "hash": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=" + } + }, + "npm:workbox-broadcast-update": { + "type": "npm", + "name": "npm:workbox-broadcast-update", + "data": { + "version": "6.5.4", + "packageName": "workbox-broadcast-update", + "hash": "sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.4.0", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.4", + "packageName": "is-bigint", + "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:@docusaurus/preset-classic@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/preset-classic@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/preset-classic", + "hash": "sha512-P4//+I4zDqQJ+UDgoFrjIFaQ1MeS9UD1cvxVQaI6O7iBmiHQm0MGROP1TbE7HlxlDPXFJjZUK3x3cAoK63smGQ==" + } + }, + "npm:@babel/plugin-syntax-import-assertions@7.20.0": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-assertions@7.20.0", + "data": { + "version": "7.20.0", + "packageName": "@babel/plugin-syntax-import-assertions", + "hash": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==" + } + }, + "npm:@babel/helper-explode-assignable-expression@7.18.6": { + "type": "npm", + "name": "npm:@babel/helper-explode-assignable-expression@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-explode-assignable-expression", + "hash": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==" + } + }, + "npm:@docusaurus/plugin-content-docs@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-content-docs@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-content-docs", + "hash": "sha512-Lo7lSIcpswa2Kv4HEeUcGYqaasMUQNpjTXpV0N8G6jXgZaQurqp7E8NGYeGbDXnb48czmHWbzDL4S3+BbK0VzA==" + } + }, + "npm:@babel/plugin-syntax-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-catch-binding", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-catch-binding", + "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + } + }, + "npm:svgo": { + "type": "npm", + "name": "npm:svgo", + "data": { + "version": "2.8.0", + "packageName": "svgo", + "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.2", + "packageName": "is-array-buffer", + "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.1", + "packageName": "loader-utils", + "hash": "sha512-g4miPa9uUrZz4iElkaVJgDFwKJGh8aQGM7pUL4ejXl6cu7kSb30seQOVGNMP6sW8j7DW77X68hJZ+GM7UGhXeQ==" + } + }, + "npm:istanbul-lib-coverage": { + "type": "npm", + "name": "npm:istanbul-lib-coverage", + "data": { + "version": "3.2.0", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" + } + }, + "npm:pretty-time": { + "type": "npm", + "name": "npm:pretty-time", + "data": { + "version": "1.1.0", + "packageName": "pretty-time", + "hash": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "8.2.0", + "packageName": "cosmiconfig", + "hash": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==" + } + }, + "npm:react-textarea-autosize": { + "type": "npm", + "name": "npm:react-textarea-autosize", + "data": { + "version": "8.3.3", + "packageName": "react-textarea-autosize", + "hash": "sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==" + } + }, + "npm:semver-diff": { + "type": "npm", + "name": "npm:semver-diff", + "data": { + "version": "3.1.1", + "packageName": "semver-diff", + "hash": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:serialize-javascript@5.0.1": { + "type": "npm", + "name": "npm:serialize-javascript@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "5.1.0", + "packageName": "stylehacks", + "hash": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==" + } + }, + "npm:debug@2.6.9": { + "type": "npm", + "name": "npm:debug@2.6.9", + "data": { + "version": "2.6.9", + "packageName": "debug", + "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-ordered-values", + "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" + } + }, + "npm:identity-obj-proxy": { + "type": "npm", + "name": "npm:identity-obj-proxy", + "data": { + "version": "3.0.0", + "packageName": "identity-obj-proxy", + "hash": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=" + } + }, + "npm:gitconfiglocal": { + "type": "npm", + "name": "npm:gitconfiglocal", + "data": { + "version": "1.0.0", + "packageName": "gitconfiglocal", + "hash": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=" + } + }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.1.0", + "packageName": "detect-node", + "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + } + }, + "npm:@babel/core@7.22.9": { + "type": "npm", + "name": "npm:@babel/core@7.22.9", + "data": { + "version": "7.22.9", + "packageName": "@babel/core", + "hash": "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:@cspell/dict-aws@3.0.0": { + "type": "npm", + "name": "npm:@cspell/dict-aws@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@cspell/dict-aws", + "hash": "sha512-O1W6nd5y3Z00AMXQMzfiYrIJ1sTd9fB1oLr+xf/UD7b3xeHeMeYE2OtcWbt9uyeHim4tk+vkSTcmYEBKJgS5bQ==" + } + }, + "npm:@babel/plugin-transform-template-literals@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-template-literals@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-template-literals", + "hash": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==" + } + }, + "npm:cspell-dictionary@6.31.1": { + "type": "npm", + "name": "npm:cspell-dictionary@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "cspell-dictionary", + "hash": "sha512-7+K7aQGarqbpucky26wled7QSCJeg6VkLUWS+hLjyf0Cqc9Zew5xsLa4QjReExWUJx+a97jbiflITZNuWxgMrg==" + } + }, + "npm:cosmiconfig@6.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + } + }, + "npm:@types/babel__code-frame@7.0.3": { + "type": "npm", + "name": "npm:@types/babel__code-frame@7.0.3", + "data": { + "version": "7.0.3", + "packageName": "@types/babel__code-frame", + "hash": "sha512-2TN6oiwtNjOezilFVl77zwdNPwQWaDBBCCWWxyo1ctiO3vAtd7H/aB/CBJdw9+kqq3+latD0SXoedIuHySSZWw==" + } + }, + "npm:read-pkg-up@8.0.0": { + "type": "npm", + "name": "npm:read-pkg-up@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "read-pkg-up", + "hash": "sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==" + } + }, + "npm:@cspell/dict-html-symbol-entities": { + "type": "npm", + "name": "npm:@cspell/dict-html-symbol-entities", + "data": { + "version": "4.0.0", + "packageName": "@cspell/dict-html-symbol-entities", + "hash": "sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==" + } + }, + "npm:@swc/core-android-arm64@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-android-arm64@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-android-arm64", + "hash": "7573237705184640318" + } + }, + "npm:colors": { + "type": "npm", + "name": "npm:colors", + "data": { + "version": "1.2.5", + "packageName": "colors", + "hash": "sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==" + } + }, + "npm:rimraf@3.0.2": { + "type": "npm", + "name": "npm:rimraf@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:jsesc@2.5.2": { + "type": "npm", + "name": "npm:jsesc@2.5.2", + "data": { + "version": "2.5.2", + "packageName": "jsesc", + "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + }, + "npm:monaco-editor@0.40.0": { + "type": "npm", + "name": "npm:monaco-editor@0.40.0", + "data": { + "version": "0.40.0", + "packageName": "monaco-editor", + "hash": "sha512-1wymccLEuFSMBvCk/jT1YDW/GuxMLYwnFwF9CDyYCxoTw2Pt379J3FUhwy9c43j51JdcxVPjwk0jm0EVDsBS2g==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:@cspell/dict-elixir": { + "type": "npm", + "name": "npm:@cspell/dict-elixir", + "data": { + "version": "4.0.3", + "packageName": "@cspell/dict-elixir", + "hash": "sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "1.9.0", + "packageName": "convert-source-map", + "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + } + }, + "npm:is-alphanumerical": { + "type": "npm", + "name": "npm:is-alphanumerical", + "data": { + "version": "1.0.4", + "packageName": "is-alphanumerical", + "hash": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==" + } + }, + "npm:@svgr/babel-plugin-transform-react-native-svg": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-transform-react-native-svg", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-transform-react-native-svg", + "hash": "sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==" + } + }, + "npm:@octokit/graphql@5.0.0": { + "type": "npm", + "name": "npm:@octokit/graphql@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "@octokit/graphql", + "hash": "sha512-1ZZ8tX4lUEcLPvHagfIVu5S2xpHYXAmgN0+95eAOPoaVPzCfUXJtA5vASafcpWcO86ze0Pzn30TAx72aB2aguQ==" + } + }, + "npm:deep-eql": { + "type": "npm", + "name": "npm:deep-eql", + "data": { + "version": "4.1.3", + "packageName": "deep-eql", + "hash": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "2.6.0", + "packageName": "mime", + "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "5.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" + } + }, + "npm:is-decimal": { + "type": "npm", + "name": "npm:is-decimal", + "data": { + "version": "1.0.4", + "packageName": "is-decimal", + "hash": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==" + } + }, + "npm:@types/babel__core@7.20.1": { + "type": "npm", + "name": "npm:@types/babel__core@7.20.1", + "data": { + "version": "7.20.1", + "packageName": "@types/babel__core", + "hash": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==" + } + }, + "npm:@nx/nx-linux-arm64-gnu@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-ACUhKWHe7C7IopyIwXAoHx/phaZudBOu+pZwzVDaRy2xn78tdzJQrOySsQ7YmBGoGSXEAd5+3pVVXnXcRNJ2aA==" + } + }, + "npm:@babel/plugin-transform-react-constant-elements": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-constant-elements", + "data": { + "version": "7.17.12", + "packageName": "@babel/plugin-transform-react-constant-elements", + "hash": "sha512-maEkX2xs2STuv2Px8QuqxqjhV2LsFobT1elCgyU5704fcyTu9DyD/bJXxD/mrRiVyhpHweOQ00OJ5FKhHq9oEw==" + } + }, + "npm:@babel/preset-typescript@7.18.6": { + "type": "npm", + "name": "npm:@babel/preset-typescript@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/preset-typescript", + "hash": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==" + } + }, + "npm:ajv-keywords@5.1.0": { + "type": "npm", + "name": "npm:ajv-keywords@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:harmony-reflect": { + "type": "npm", + "name": "npm:harmony-reflect", + "data": { + "version": "1.6.2", + "packageName": "harmony-reflect", + "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + } + }, + "npm:p-reduce": { + "type": "npm", + "name": "npm:p-reduce", + "data": { + "version": "2.1.0", + "packageName": "p-reduce", + "hash": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==" + } + }, + "npm:to-readable-stream": { + "type": "npm", + "name": "npm:to-readable-stream", + "data": { + "version": "1.0.0", + "packageName": "to-readable-stream", + "hash": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.7.3", + "packageName": "shell-quote", + "hash": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==" + } + }, + "npm:fs-constants": { + "type": "npm", + "name": "npm:fs-constants", + "data": { + "version": "1.0.0", + "packageName": "fs-constants", + "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + } + }, + "npm:get-package-type": { + "type": "npm", + "name": "npm:get-package-type", + "data": { + "version": "0.1.0", + "packageName": "get-package-type", + "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + } + }, + "npm:walker": { + "type": "npm", + "name": "npm:walker", + "data": { + "version": "1.0.8", + "packageName": "walker", + "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" + } + }, + "npm:@algolia/requester-node-http": { + "type": "npm", + "name": "npm:@algolia/requester-node-http", + "data": { + "version": "4.13.1", + "packageName": "@algolia/requester-node-http", + "hash": "sha512-7C0skwtLdCz5heKTVe/vjvrqgL/eJxmiEjHqXdtypcE5GCQCYI15cb+wC4ytYioZDMiuDGeVYmCYImPoEgUGPw==" + } + }, + "npm:@babel/plugin-proposal-export-namespace-from@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-proposal-export-namespace-from", + "hash": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.18.0", + "packageName": "terser", + "hash": "sha512-pdL757Ig5a0I+owA42l6tIuEycRuM7FPY4n62h44mRLRfnOxJkkOHd6i89dOpwZlpF6JXBwaAHF6yWzFrt+QyA==" + } + }, + "npm:markdownlint@0.29.0": { + "type": "npm", + "name": "npm:markdownlint@0.29.0", + "data": { + "version": "0.29.0", + "packageName": "markdownlint", + "hash": "sha512-ASAzqpODstu/Qsk0xW5BPgWnK/qjpBQ4e7IpsSvvFXcfYIjanLTdwFRJK1SIEEh0fGSMKXcJf/qhaZYHyME0wA==" + } + }, + "npm:lodash.get": { + "type": "npm", + "name": "npm:lodash.get", + "data": { + "version": "4.4.2", + "packageName": "lodash.get", + "hash": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" + } + }, + "npm:@cspell/dict-gaming-terms": { + "type": "npm", + "name": "npm:@cspell/dict-gaming-terms", + "data": { + "version": "1.0.4", + "packageName": "@cspell/dict-gaming-terms", + "hash": "sha512-hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg==" + } + }, + "npm:external-editor": { + "type": "npm", + "name": "npm:external-editor", + "data": { + "version": "3.1.0", + "packageName": "external-editor", + "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "2.0.0", + "packageName": "sort-keys", + "hash": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=" + } + }, + "npm:@octokit/core": { + "type": "npm", + "name": "npm:@octokit/core", + "data": { + "version": "4.2.4", + "packageName": "@octokit/core", + "hash": "sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==" + } + }, + "npm:@babel/helper-create-regexp-features-plugin@7.21.8": { + "type": "npm", + "name": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "data": { + "version": "7.21.8", + "packageName": "@babel/helper-create-regexp-features-plugin", + "hash": "sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==" + } + }, + "npm:@cspell/dict-lua@4.0.1": { + "type": "npm", + "name": "npm:@cspell/dict-lua@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-lua", + "hash": "sha512-j0MFmeCouSoC6EdZTbvGe1sJ9V+ruwKSeF+zRkNNNload7R72Co5kX1haW2xLHGdlq0kqSy1ODRZKdVl0e+7hg==" + } + }, + "npm:@svgr/webpack": { + "type": "npm", + "name": "npm:@svgr/webpack", + "data": { + "version": "6.2.1", + "packageName": "@svgr/webpack", + "hash": "sha512-h09ngMNd13hnePwgXa+Y5CgOjzlCvfWLHg+MBnydEedAnuLRzUHUJmGS3o2OsrhxTOOqEsPOFt5v/f6C5Qulcw==" + } + }, + "npm:array-timsort": { + "type": "npm", + "name": "npm:array-timsort", + "data": { + "version": "1.0.3", + "packageName": "array-timsort", + "hash": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==" + } + }, + "npm:pretty-format@29.6.2": { + "type": "npm", + "name": "npm:pretty-format@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "pretty-format", + "hash": "sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.0", + "packageName": "readable-stream", + "hash": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.1.1", + "packageName": "escalade", + "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:@docusaurus/utils-validation@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/utils-validation@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/utils-validation", + "hash": "sha512-unII3hlJlDwZ3w8U+pMO3Lx3RhI4YEbY3YNsQj4yzrkZzlpqZOLuAiZK2JyULnD+TKbceKU0WyWkQXtYbLNDFA==" + } + }, + "npm:has": { + "type": "npm", + "name": "npm:has", + "data": { + "version": "1.0.3", + "packageName": "has", + "hash": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" + } + }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.1.0", + "packageName": "thunky", + "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:@npmcli/git": { + "type": "npm", + "name": "npm:@npmcli/git", + "data": { + "version": "4.0.4", + "packageName": "@npmcli/git", + "hash": "sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg==" + } + }, + "npm:is-builtin-module": { + "type": "npm", + "name": "npm:is-builtin-module", + "data": { + "version": "3.2.1", + "packageName": "is-builtin-module", + "hash": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==" + } + }, + "npm:@types/glob": { + "type": "npm", + "name": "npm:@types/glob", + "data": { + "version": "8.1.0", + "packageName": "@types/glob", + "hash": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==" + } + }, + "npm:@svgr/hast-util-to-babel-ast": { + "type": "npm", + "name": "npm:@svgr/hast-util-to-babel-ast", + "data": { + "version": "6.2.1", + "packageName": "@svgr/hast-util-to-babel-ast", + "hash": "sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==" + } + }, + "npm:import-meta-resolve@2.2.2": { + "type": "npm", + "name": "npm:import-meta-resolve@2.2.2", + "data": { + "version": "2.2.2", + "packageName": "import-meta-resolve", + "hash": "sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==" + } + }, + "npm:@cspell/dict-svelte": { + "type": "npm", + "name": "npm:@cspell/dict-svelte", + "data": { + "version": "1.0.2", + "packageName": "@cspell/dict-svelte", + "hash": "sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==" + } + }, + "npm:get-tsconfig@4.5.0": { + "type": "npm", + "name": "npm:get-tsconfig@4.5.0", + "data": { + "version": "4.5.0", + "packageName": "get-tsconfig", + "hash": "sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==" + } + }, + "npm:ts-api-utils@1.0.1": { + "type": "npm", + "name": "npm:ts-api-utils@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "ts-api-utils", + "hash": "sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==" + } + }, + "npm:uuid@9.0.0": { + "type": "npm", + "name": "npm:uuid@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "uuid", + "hash": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" + } + }, + "npm:estree-walker": { + "type": "npm", + "name": "npm:estree-walker", + "data": { + "version": "1.0.1", + "packageName": "estree-walker", + "hash": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + } + }, + "npm:@cspell/dict-java@5.0.5": { + "type": "npm", + "name": "npm:@cspell/dict-java@5.0.5", + "data": { + "version": "5.0.5", + "packageName": "@cspell/dict-java", + "hash": "sha512-X19AoJgWIBwJBSWGFqSgHaBR/FEykBHTMjL6EqOnhIGEyE9nvuo32tsSHjXNJ230fQxQptEvRZoaldNLtKxsRg==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:unist-util-remove-position": { + "type": "npm", + "name": "npm:unist-util-remove-position", + "data": { + "version": "2.0.1", + "packageName": "unist-util-remove-position", + "hash": "sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.3.5", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==" + } + }, + "npm:mocha@8.4.0": { + "type": "npm", + "name": "npm:mocha@8.4.0", + "data": { + "version": "8.4.0", + "packageName": "mocha", + "hash": "sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:diff-sequences@29.4.3": { + "type": "npm", + "name": "npm:diff-sequences@29.4.3", + "data": { + "version": "29.4.3", + "packageName": "diff-sequences", + "hash": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.13", + "packageName": "node-releases", + "hash": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + } + }, + "npm:is-core-module@2.12.1": { + "type": "npm", + "name": "npm:is-core-module@2.12.1", + "data": { + "version": "2.12.1", + "packageName": "is-core-module", + "hash": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==" + } + }, + "npm:@nx/nx-darwin-x64@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-3QEZkliJy+rk5UrcBsMnExBIAXmjqd4dHBDGH1eo0w85/3Bih3Z9QxU/n+3tEewvUCCx4o4kg+bya/hVz23V6g==" + } + }, + "npm:keyv@3.1.0": { + "type": "npm", + "name": "npm:keyv@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "keyv", + "hash": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==" + } + }, + "npm:resolve@1.22.3": { + "type": "npm", + "name": "npm:resolve@1.22.3", + "data": { + "version": "1.22.3", + "packageName": "resolve", + "hash": "sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==" + } + }, + "npm:@cspell/dict-ada@4.0.1": { + "type": "npm", + "name": "npm:@cspell/dict-ada@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-ada", + "hash": "sha512-/E9o3nHrXOhYmQE43deKbxZcR3MIJAsa+66IzP9TXGHheKEx8b9dVMVVqydDDH8oom1H0U20NRPtu6KRVbT9xw==" + } + }, + "npm:p-map-series": { + "type": "npm", + "name": "npm:p-map-series", + "data": { + "version": "2.1.0", + "packageName": "p-map-series", + "hash": "sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==" + } + }, + "npm:@babel/helper-remap-async-to-generator@7.18.9": { + "type": "npm", + "name": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/helper-remap-async-to-generator", + "hash": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==" + } + }, + "npm:react-router": { + "type": "npm", + "name": "npm:react-router", + "data": { + "version": "5.3.3", + "packageName": "react-router", + "hash": "sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w==" + } + }, + "npm:@docsearch/react": { + "type": "npm", + "name": "npm:@docsearch/react", + "data": { + "version": "3.1.1", + "packageName": "@docsearch/react", + "hash": "sha512-cfoql4qvtsVRqBMYxhlGNpvyy/KlCoPqjIsJSZYqYf9AplZncKjLBTcwBu6RXFMVCe30cIFljniI4OjqAU67pQ==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.0.2", + "packageName": "is-weakref", + "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" + } + }, + "npm:fs-extra@9.1.0": { + "type": "npm", + "name": "npm:fs-extra@9.1.0", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:title-case": { + "type": "npm", + "name": "npm:title-case", + "data": { + "version": "3.0.3", + "packageName": "title-case", + "hash": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==" + } + }, + "npm:ajv@8.12.0": { + "type": "npm", + "name": "npm:ajv@8.12.0", + "data": { + "version": "8.12.0", + "packageName": "ajv", + "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" + } + }, + "npm:unique-filename@1.1.1": { + "type": "npm", + "name": "npm:unique-filename@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "unique-filename", + "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" + } + }, + "npm:detect-port": { + "type": "npm", + "name": "npm:detect-port", + "data": { + "version": "1.5.1", + "packageName": "detect-port", + "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.0.1", + "packageName": "es-set-tostringtag", + "hash": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==" + } + }, + "npm:lowercase-keys": { + "type": "npm", + "name": "npm:lowercase-keys", + "data": { + "version": "1.0.1", + "packageName": "lowercase-keys", + "hash": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" + } + }, + "npm:dotenv@10.0.0": { + "type": "npm", + "name": "npm:dotenv@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "dotenv", + "hash": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.4", + "packageName": "object.assign", + "hash": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==" + } + }, + "npm:array-differ": { + "type": "npm", + "name": "npm:array-differ", + "data": { + "version": "3.0.0", + "packageName": "array-differ", + "hash": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "5.1.1", + "packageName": "postcss-discard-empty", + "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.1.11", + "packageName": "tar", + "hash": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==" + } + }, + "npm:lru-cache@7.18.3": { + "type": "npm", + "name": "npm:lru-cache@7.18.3", + "data": { + "version": "7.18.3", + "packageName": "lru-cache", + "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" + } + }, + "npm:arg@5.0.1": { + "type": "npm", + "name": "npm:arg@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "arg", + "hash": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" + } + }, + "npm:@types/history": { + "type": "npm", + "name": "npm:@types/history", + "data": { + "version": "4.7.11", + "packageName": "@types/history", + "hash": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, + "npm:normalize-url@4.5.1": { + "type": "npm", + "name": "npm:normalize-url@4.5.1", + "data": { + "version": "4.5.1", + "packageName": "normalize-url", + "hash": "sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + } + }, + "npm:webidl-conversions@4.0.2": { + "type": "npm", + "name": "npm:webidl-conversions@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "webidl-conversions", + "hash": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.15.0", + "packageName": "serve-static", + "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + } + }, + "npm:@babel/plugin-proposal-decorators@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-decorators@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.1.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==" + } + }, + "npm:nopt@5.0.0": { + "type": "npm", + "name": "npm:nopt@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "nopt", + "hash": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==" + } + }, + "npm:jest-specific-snapshot": { + "type": "npm", + "name": "npm:jest-specific-snapshot", + "data": { + "version": "8.0.0", + "packageName": "jest-specific-snapshot", + "hash": "sha512-PjK0cqPbN3ZGU1pdP78YBEFMsS1AsV28hIHg249E0v/bTtGAJqDm7lNDLj0Cs0O26P2sulbXbgEQU9xLm34WmA==" + } + }, + "npm:react-dom": { + "type": "npm", + "name": "npm:react-dom", + "data": { + "version": "18.2.0", + "packageName": "react-dom", + "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" + } + }, + "npm:@actions/github@5.1.1": { + "type": "npm", + "name": "npm:@actions/github@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "@actions/github", + "hash": "sha512-Nk59rMDoJaV+mHCOJPXuvB1zIbomlKS0dmSIqPGxd0enAXBnOfn4VWF+CGtRCwXZG9Epa54tZA7VIRlJDS8A6g==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:supports-hyperlinks": { + "type": "npm", + "name": "npm:supports-hyperlinks", + "data": { + "version": "3.0.0", + "packageName": "supports-hyperlinks", + "hash": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==" + } + }, + "npm:universal-user-agent": { + "type": "npm", + "name": "npm:universal-user-agent", + "data": { + "version": "6.0.0", + "packageName": "universal-user-agent", + "hash": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.3", + "packageName": "chrome-trace-event", + "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "3.1.0", + "packageName": "cssnano-utils", + "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" + } + }, + "npm:unist-builder": { + "type": "npm", + "name": "npm:unist-builder", + "data": { + "version": "2.0.3", + "packageName": "unist-builder", + "hash": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==" + } + }, + "npm:fs-extra@7.0.1": { + "type": "npm", + "name": "npm:fs-extra@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "fs-extra", + "hash": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:@svgr/core": { + "type": "npm", + "name": "npm:@svgr/core", + "data": { + "version": "6.2.1", + "packageName": "@svgr/core", + "hash": "sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA==" + } + }, + "npm:log-update@4.0.0": { + "type": "npm", + "name": "npm:log-update@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "log-update", + "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.33", + "packageName": "@types/sockjs", + "hash": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.0", + "packageName": "universalify", + "hash": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, + "npm:jest-diff@29.6.2": { + "type": "npm", + "name": "npm:jest-diff@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-diff", + "hash": "sha512-t+ST7CB9GX5F2xKwhwCf0TAR17uNDiaPTZnVymP9lw0lssa9vG+AFyDZoeIHStU3WowFFwT+ky+er0WVl2yGhA==" + } + }, + "npm:rollup-plugin-terser": { + "type": "npm", + "name": "npm:rollup-plugin-terser", + "data": { + "version": "7.0.2", + "packageName": "rollup-plugin-terser", + "hash": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==" + } + }, + "npm:cspell-lib@6.31.2": { + "type": "npm", + "name": "npm:cspell-lib@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell-lib", + "hash": "sha512-LqaB2ZfVfQHKL5aZzYoKU6/UxxAtWeXAYwpC9l+satXmajYyXtAh4kWmuW+y7kKRH2jA79rJQS3QE6ToeSqgQQ==" + } + }, + "npm:conventional-changelog-preset-loader": { + "type": "npm", + "name": "npm:conventional-changelog-preset-loader", + "data": { + "version": "3.0.0", + "packageName": "conventional-changelog-preset-loader", + "hash": "sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:caniuse-lite@1.0.30001517": { + "type": "npm", + "name": "npm:caniuse-lite@1.0.30001517", + "data": { + "version": "1.0.30001517", + "packageName": "caniuse-lite", + "hash": "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==" + } + }, + "npm:@babel/plugin-syntax-decorators@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-decorators@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-syntax-decorators", + "hash": "sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==" + } + }, + "npm:which-collection": { + "type": "npm", + "name": "npm:which-collection", + "data": { + "version": "1.0.1", + "packageName": "which-collection", + "hash": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:tiny-invariant": { + "type": "npm", + "name": "npm:tiny-invariant", + "data": { + "version": "1.2.0", + "packageName": "tiny-invariant", + "hash": "sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg==" + } + }, + "npm:string-width@2.1.1": { + "type": "npm", + "name": "npm:string-width@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "string-width", + "hash": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==" + } + }, + "npm:@sinonjs/commons@1.8.6": { + "type": "npm", + "name": "npm:@sinonjs/commons@1.8.6", + "data": { + "version": "1.8.6", + "packageName": "@sinonjs/commons", + "hash": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==" + } + }, + "npm:get-pkg-repo": { + "type": "npm", + "name": "npm:get-pkg-repo", + "data": { + "version": "4.2.1", + "packageName": "get-pkg-repo", + "hash": "sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:npm-run-path@5.1.0": { + "type": "npm", + "name": "npm:npm-run-path@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "npm-run-path", + "hash": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==" + } + }, + "npm:@types/argparse": { + "type": "npm", + "name": "npm:@types/argparse", + "data": { + "version": "1.0.38", + "packageName": "@types/argparse", + "hash": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:tmp@0.0.33": { + "type": "npm", + "name": "npm:tmp@0.0.33", + "data": { + "version": "0.0.33", + "packageName": "tmp", + "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" + } + }, + "npm:@esbuild/freebsd-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==" + } + }, + "npm:@jest/fake-timers@29.6.2": { + "type": "npm", + "name": "npm:@jest/fake-timers@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/fake-timers", + "hash": "sha512-euZDmIlWjm1Z0lJ1D0f7a0/y5Kh/koLFMUBE5SUYWrmy8oNhJpbTBDAP6CxKnadcMLDoDf4waRYCe35cH6G6PA==" + } + }, + "npm:unique-slug@2.0.2": { + "type": "npm", + "name": "npm:unique-slug@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "unique-slug", + "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" + } + }, + "npm:arrify": { + "type": "npm", + "name": "npm:arrify", + "data": { + "version": "1.0.1", + "packageName": "arrify", + "hash": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + } + }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.4.7", + "packageName": "autoprefixer", + "hash": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==" + } + }, + "npm:jest-runtime@29.6.2": { + "type": "npm", + "name": "npm:jest-runtime@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-runtime", + "hash": "sha512-2X9dqK768KufGJyIeLmIzToDmsN0m7Iek8QNxRSI/2+iPFYHF0jTwlO3ftn7gdKd98G/VQw9XJCk77rbTGZnJg==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "2.0.1", + "packageName": "brace-expansion", + "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" + } + }, + "npm:tslint": { + "type": "npm", + "name": "npm:tslint", + "data": { + "version": "6.1.3", + "packageName": "tslint", + "hash": "sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg==" + } + }, + "npm:@esbuild/darwin-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==" + } + }, + "npm:commander@8.3.0": { + "type": "npm", + "name": "npm:commander@8.3.0", + "data": { + "version": "8.3.0", + "packageName": "commander", + "hash": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + } + }, + "npm:resolve@1.19.0": { + "type": "npm", + "name": "npm:resolve@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "resolve", + "hash": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==" + } + }, + "npm:array.prototype.flat@1.3.1": { + "type": "npm", + "name": "npm:array.prototype.flat@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "array.prototype.flat", + "hash": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==" + } + }, + "npm:read-pkg-up": { + "type": "npm", + "name": "npm:read-pkg-up", + "data": { + "version": "7.0.1", + "packageName": "read-pkg-up", + "hash": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "3.0.0", + "packageName": "which", + "hash": "sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==" + } + }, + "npm:global-dirs@3.0.0": { + "type": "npm", + "name": "npm:global-dirs@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "global-dirs", + "hash": "sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==" + } + }, + "npm:hast-util-from-parse5": { + "type": "npm", + "name": "npm:hast-util-from-parse5", + "data": { + "version": "6.0.1", + "packageName": "hast-util-from-parse5", + "hash": "sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==" + } + }, + "npm:jsonparse": { + "type": "npm", + "name": "npm:jsonparse", + "data": { + "version": "1.3.1", + "packageName": "jsonparse", + "hash": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" + } + }, + "npm:vfile-message": { + "type": "npm", + "name": "npm:vfile-message", + "data": { + "version": "2.0.4", + "packageName": "vfile-message", + "hash": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==" + } + }, + "npm:@typescript-eslint/utils@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/utils@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==" + } + }, + "npm:github-slugger": { + "type": "npm", + "name": "npm:github-slugger", + "data": { + "version": "1.4.0", + "packageName": "github-slugger", + "hash": "sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "7.5.5", + "packageName": "ws", + "hash": "sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w==" + } + }, + "npm:vfile-location": { + "type": "npm", + "name": "npm:vfile-location", + "data": { + "version": "3.2.0", + "packageName": "vfile-location", + "hash": "sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.4.15", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "1.20.0", + "packageName": "body-parser", + "hash": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-string", + "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" + } + }, + "npm:is-fullwidth-code-point@4.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" + } + }, + "npm:@cspell/dict-latex": { + "type": "npm", + "name": "npm:@cspell/dict-latex", + "data": { + "version": "4.0.0", + "packageName": "@cspell/dict-latex", + "hash": "sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==" + } + }, + "npm:uc.micro": { + "type": "npm", + "name": "npm:uc.micro", + "data": { + "version": "1.0.6", + "packageName": "uc.micro", + "hash": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" + } + }, + "npm:isarray@1.0.0": { + "type": "npm", + "name": "npm:isarray@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:isarray@0.0.1": { + "type": "npm", + "name": "npm:isarray@0.0.1", + "data": { + "version": "0.0.1", + "packageName": "isarray", + "hash": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + } + }, + "npm:rxjs": { + "type": "npm", + "name": "npm:rxjs", + "data": { + "version": "7.8.1", + "packageName": "rxjs", + "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" + } + }, + "npm:caniuse-api": { + "type": "npm", + "name": "npm:caniuse-api", + "data": { + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + } + }, + "npm:git-raw-commits": { + "type": "npm", + "name": "npm:git-raw-commits", + "data": { + "version": "3.0.0", + "packageName": "git-raw-commits", + "hash": "sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==" + } + }, + "npm:@nx/nx-darwin-arm64@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-HS3R/vRVFwOjZ0l1y3h1UMSd7Zfh4NQ2qDe1FSOfA38AXNftyWNCnZ1kkOikVjJKCpwKXls56XcPDu+2hbqSDA==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "1.1.3", + "packageName": "css-tree", + "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" + } + }, + "npm:eslint@8.46.0": { + "type": "npm", + "name": "npm:eslint@8.46.0", + "data": { + "version": "8.46.0", + "packageName": "eslint", + "hash": "sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==" + } + }, + "npm:is-path-cwd": { + "type": "npm", + "name": "npm:is-path-cwd", + "data": { + "version": "2.2.0", + "packageName": "is-path-cwd", + "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + } + }, + "npm:axios@0.25.0": { + "type": "npm", + "name": "npm:axios@0.25.0", + "data": { + "version": "0.25.0", + "packageName": "axios", + "hash": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==" + } + }, + "npm:mime-db@1.33.0": { + "type": "npm", + "name": "npm:mime-db@1.33.0", + "data": { + "version": "1.33.0", + "packageName": "mime-db", + "hash": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + } + }, + "npm:object-inspect@1.12.3": { + "type": "npm", + "name": "npm:object-inspect@1.12.3", + "data": { + "version": "1.12.3", + "packageName": "object-inspect", + "hash": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + } + }, + "npm:resolve-pathname": { + "type": "npm", + "name": "npm:resolve-pathname", + "data": { + "version": "3.0.0", + "packageName": "resolve-pathname", + "hash": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + } + }, + "npm:@cspotcode/source-map-support@0.7.0": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support@0.7.0", + "data": { + "version": "0.7.0", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==" + } + }, + "npm:@tsconfig/node16": { + "type": "npm", + "name": "npm:@tsconfig/node16", + "data": { + "version": "1.0.2", + "packageName": "@tsconfig/node16", + "hash": "sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==" + } + }, + "npm:stylelint-config-standard": { + "type": "npm", + "name": "npm:stylelint-config-standard", + "data": { + "version": "34.0.0", + "packageName": "stylelint-config-standard", + "hash": "sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ==" + } + }, + "npm:spdx-exceptions": { + "type": "npm", + "name": "npm:spdx-exceptions", + "data": { + "version": "2.3.0", + "packageName": "spdx-exceptions", + "hash": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + } + }, + "npm:lodash.isequal": { + "type": "npm", + "name": "npm:lodash.isequal", + "data": { + "version": "4.5.0", + "packageName": "lodash.isequal", + "hash": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + } + }, + "npm:@cspell/dynamic-import@6.31.1": { + "type": "npm", + "name": "npm:@cspell/dynamic-import@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/dynamic-import", + "hash": "sha512-uliIUv9uZlnyYmjUlcw/Dm3p0xJOEnWJNczHAfqAl4Ytg6QZktw0GtUA9b1umbRXLv0KRTPtSC6nMq3cR7rRmQ==" + } + }, + "npm:workbox-background-sync": { + "type": "npm", + "name": "npm:workbox-background-sync", + "data": { + "version": "6.5.4", + "packageName": "workbox-background-sync", + "hash": "sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==" + } + }, + "npm:cheerio": { + "type": "npm", + "name": "npm:cheerio", + "data": { + "version": "1.0.0-rc.12", + "packageName": "cheerio", + "hash": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==" + } + }, + "npm:normalize-package-data@2.5.0": { + "type": "npm", + "name": "npm:normalize-package-data@2.5.0", + "data": { + "version": "2.5.0", + "packageName": "normalize-package-data", + "hash": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + } + }, + "npm:@npmcli/node-gyp": { + "type": "npm", + "name": "npm:@npmcli/node-gyp", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/node-gyp", + "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" + } + }, + "npm:lower-case": { + "type": "npm", + "name": "npm:lower-case", + "data": { + "version": "2.0.2", + "packageName": "lower-case", + "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + } + }, + "npm:dom-converter": { + "type": "npm", + "name": "npm:dom-converter", + "data": { + "version": "0.2.0", + "packageName": "dom-converter", + "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" + } + }, + "npm:@algolia/client-search": { + "type": "npm", + "name": "npm:@algolia/client-search", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-search", + "hash": "sha512-YQKYA83MNRz3FgTNM+4eRYbSmHi0WWpo019s5SeYcL3HUan/i5R09VO9dk3evELDFJYciiydSjbsmhBzbpPP2A==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + }, + "npm:react-lifecycles-compat": { + "type": "npm", + "name": "npm:react-lifecycles-compat", + "data": { + "version": "3.0.4", + "packageName": "react-lifecycles-compat", + "hash": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + } + }, + "npm:set-blocking": { + "type": "npm", + "name": "npm:set-blocking", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "3.0.2", + "packageName": "read-package-json-fast", + "hash": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==" + } + }, + "npm:@docusaurus/plugin-content-blog@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-content-blog@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-content-blog", + "hash": "sha512-E2i7Knz5YIbE1XELI6RlTnZnGgS52cUO4BlCiCUCvQHbR+s1xeIWz4C6BtaVnlug0Ccz7nFSksfwDpVlkujg5Q==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-length", + "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" + } + }, + "npm:unist-util-stringify-position": { + "type": "npm", + "name": "npm:unist-util-stringify-position", + "data": { + "version": "2.0.3", + "packageName": "unist-util-stringify-position", + "hash": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "2.0.0", + "packageName": "http-errors", + "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" + } + }, + "npm:npm-packlist@7.0.4": { + "type": "npm", + "name": "npm:npm-packlist@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "npm-packlist", + "hash": "sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==" + } + }, + "npm:fetch-blob": { + "type": "npm", + "name": "npm:fetch-blob", + "data": { + "version": "3.2.0", + "packageName": "fetch-blob", + "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" + } + }, + "npm:@jest/environment@29.6.2": { + "type": "npm", + "name": "npm:@jest/environment@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/environment", + "hash": "sha512-AEcW43C7huGd/vogTddNNTDRpO6vQ2zaQNrttvWV18ArBx9Z56h7BIsXkNFJVOO4/kblWEQz30ckw0+L3izc+Q==" + } + }, + "npm:react-is@18.2.0": { + "type": "npm", + "name": "npm:react-is@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, + "npm:comment-json": { + "type": "npm", + "name": "npm:comment-json", + "data": { + "version": "4.2.3", + "packageName": "comment-json", + "hash": "sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==" + } + }, + "npm:ajv-formats@2.1.1": { + "type": "npm", + "name": "npm:ajv-formats@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:mathml-tag-names": { + "type": "npm", + "name": "npm:mathml-tag-names", + "data": { + "version": "2.1.3", + "packageName": "mathml-tag-names", + "hash": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==" + } + }, + "npm:react-loadable": { + "type": "npm", + "name": "npm:react-loadable", + "data": { + "version": "npm:@docusaurus/react-loadable@5.5.2", + "packageName": "react-loadable", + "hash": "sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:vscode-languageserver-textdocument@1.0.8": { + "type": "npm", + "name": "npm:vscode-languageserver-textdocument@1.0.8", + "data": { + "version": "1.0.8", + "packageName": "vscode-languageserver-textdocument", + "hash": "sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==" + } + }, + "npm:is-fullwidth-code-point@2.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" + } + }, + "npm:@babel/plugin-transform-reserved-words@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-reserved-words@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-reserved-words", + "hash": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==" + } + }, + "npm:wait-on": { + "type": "npm", + "name": "npm:wait-on", + "data": { + "version": "6.0.1", + "packageName": "wait-on", + "hash": "sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==" + } + }, + "npm:commander@11.0.0": { + "type": "npm", + "name": "npm:commander@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "commander", + "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" + } + }, + "npm:mdast-util-to-hast": { + "type": "npm", + "name": "npm:mdast-util-to-hast", + "data": { + "version": "10.0.1", + "packageName": "mdast-util-to-hast", + "hash": "sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==" + } + }, + "npm:@esbuild/android-arm@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/android-arm", + "hash": "sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==" + } + }, + "npm:regenerate": { + "type": "npm", + "name": "npm:regenerate", + "data": { + "version": "1.4.2", + "packageName": "regenerate", + "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + } + }, + "npm:safe-array-concat@1.0.0": { + "type": "npm", + "name": "npm:safe-array-concat@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "safe-array-concat", + "hash": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.2", + "packageName": "unbox-primitive", + "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==" + } + }, + "npm:listr2@5.0.8": { + "type": "npm", + "name": "npm:listr2@5.0.8", + "data": { + "version": "5.0.8", + "packageName": "listr2", + "hash": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==" + } + }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, + "npm:source-map@0.8.0-beta.0": { + "type": "npm", + "name": "npm:source-map@0.8.0-beta.0", + "data": { + "version": "0.8.0-beta.0", + "packageName": "source-map", + "hash": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==" + } + }, + "npm:@cspell/dict-css@4.0.6": { + "type": "npm", + "name": "npm:@cspell/dict-css@4.0.6", + "data": { + "version": "4.0.6", + "packageName": "@cspell/dict-css", + "hash": "sha512-2Lo8W2ezHmGgY8cWFr4RUwnjbndna5mokpCK/DuxGILQnuajR0J31ANQOXj/8iZM2phFB93ZzMNk/0c04TDfSQ==" + } + }, + "npm:has-flag@3.0.0": { + "type": "npm", + "name": "npm:has-flag@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + } + }, + "npm:human-signals@4.3.1": { + "type": "npm", + "name": "npm:human-signals@4.3.1", + "data": { + "version": "4.3.1", + "packageName": "human-signals", + "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + } + }, + "npm:nise": { + "type": "npm", + "name": "npm:nise", + "data": { + "version": "5.1.4", + "packageName": "nise", + "hash": "sha512-8+Ib8rRJ4L0o3kfmyVCL7gzrohyDe0cMFTBa2d364yIrEGMEoetznKJx899YxjybU6bL9SQkYPSBBs1gyYs8Xg==" + } + }, + "npm:lodash.ismatch": { + "type": "npm", + "name": "npm:lodash.ismatch", + "data": { + "version": "4.4.0", + "packageName": "lodash.ismatch", + "hash": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=" + } + }, + "npm:deepmerge": { + "type": "npm", + "name": "npm:deepmerge", + "data": { + "version": "4.3.1", + "packageName": "deepmerge", + "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + } + }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "8.2.4", + "packageName": "postcss-calc", + "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-scope", + "hash": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==" + } + }, + "npm:text-extensions": { + "type": "npm", + "name": "npm:text-extensions", + "data": { + "version": "1.9.0", + "packageName": "text-extensions", + "hash": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==" + } + }, + "npm:xml-js": { + "type": "npm", + "name": "npm:xml-js", + "data": { + "version": "1.6.11", + "packageName": "xml-js", + "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" + } + }, + "npm:@types/tmp@0.2.3": { + "type": "npm", + "name": "npm:@types/tmp@0.2.3", + "data": { + "version": "0.2.3", + "packageName": "@types/tmp", + "hash": "sha512-dDZH/tXzwjutnuk4UacGgFRwV+JSLaXL1ikvidfJprkb7L9Nx1njcRHHmi3Dsvt7pgqqTEeucQuOrWHPFgzVHA==" + } + }, + "npm:html-void-elements": { + "type": "npm", + "name": "npm:html-void-elements", + "data": { + "version": "1.0.5", + "packageName": "html-void-elements", + "hash": "sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "5.3.1", + "packageName": "dns-packet", + "hash": "sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==" + } + }, + "npm:inline-style-parser": { + "type": "npm", + "name": "npm:inline-style-parser", + "data": { + "version": "0.1.1", + "packageName": "inline-style-parser", + "hash": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + } + }, + "npm:jju": { + "type": "npm", + "name": "npm:jju", + "data": { + "version": "1.4.0", + "packageName": "jju", + "hash": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=" + } + }, + "npm:@nrwl/workspace@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/workspace@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/workspace", + "hash": "sha512-0S7ifuEsDhdSq775vXDEfvjrBIu6ORogesZCe3XLnOzX9u+xsUsYFnT59cnACkdM8IP++dnyuZkfCk0C/xBdYA==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:svg-tags": { + "type": "npm", + "name": "npm:svg-tags", + "data": { + "version": "1.0.0", + "packageName": "svg-tags", + "hash": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" + } + }, + "npm:type-fest@0.6.0": { + "type": "npm", + "name": "npm:type-fest@0.6.0", + "data": { + "version": "0.6.0", + "packageName": "type-fest", + "hash": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + }, + "npm:read": { + "type": "npm", + "name": "npm:read", + "data": { + "version": "2.1.0", + "packageName": "read", + "hash": "sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.1.1", + "packageName": "foreground-child", + "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" + } + }, + "npm:eta": { + "type": "npm", + "name": "npm:eta", + "data": { + "version": "2.0.1", + "packageName": "eta", + "hash": "sha512-46E2qDPDm7QA+usjffUWz9KfXsxVZclPOuKsXs4ZWZdI/X1wpDF7AO424pt7fdYohCzWsIkXAhNGXSlwo5naAg==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.3", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" + } + }, + "npm:iconv-lite@0.6.3": { + "type": "npm", + "name": "npm:iconv-lite@0.6.3", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:readdirp@3.5.0": { + "type": "npm", + "name": "npm:readdirp@3.5.0", + "data": { + "version": "3.5.0", + "packageName": "readdirp", + "hash": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==" + } + }, + "npm:make-dir@2.1.0": { + "type": "npm", + "name": "npm:make-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:@docusaurus/plugin-pwa@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-pwa@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-pwa", + "hash": "sha512-kiD4qu5u3Nhwa6dPFrBDGInJYI/MWu01mbeLJFLk7oFqbkvLrHPKyB6KxrKQQfx/sAJKro79RYejigUDj0Ahig==" + } + }, + "npm:@jest/console@29.6.2": { + "type": "npm", + "name": "npm:@jest/console@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/console", + "hash": "sha512-0N0yZof5hi44HAR2pPS+ikJ3nzKNoZdVu8FffRf3wy47I7Dm7etk/3KetMdRUqzVd16V4O2m2ISpNTbnIuqy1w==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:@csstools/css-tokenizer@2.1.1": { + "type": "npm", + "name": "npm:@csstools/css-tokenizer@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "@csstools/css-tokenizer", + "hash": "sha512-GbrTj2Z8MCTUv+52GE0RbFGM527xuXZ0Xa5g0Z+YN573uveS4G0qi6WNOMyz3yrFM/jaILTTwJ0+umx81EzqfA==" + } + }, + "npm:clsx": { + "type": "npm", + "name": "npm:clsx", + "data": { + "version": "2.0.0", + "packageName": "clsx", + "hash": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==" + } + }, + "npm:parse5-htmlparser2-tree-adapter": { + "type": "npm", + "name": "npm:parse5-htmlparser2-tree-adapter", + "data": { + "version": "7.0.0", + "packageName": "parse5-htmlparser2-tree-adapter", + "hash": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==" + } + }, + "npm:decamelize": { + "type": "npm", + "name": "npm:decamelize", + "data": { + "version": "1.2.0", + "packageName": "decamelize", + "hash": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + } + }, + "npm:jest-mock@29.6.2": { + "type": "npm", + "name": "npm:jest-mock@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-mock", + "hash": "sha512-hoSv3lb3byzdKfwqCuT6uTscan471GUECqgNYykg6ob0yiAw3zYc7OrPnI9Qv8Wwoa4lC7AZ9hyS4AiIx5U2zg==" + } + }, + "npm:load-json-file": { + "type": "npm", + "name": "npm:load-json-file", + "data": { + "version": "6.2.0", + "packageName": "load-json-file", + "hash": "sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==" + } + }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + } + }, + "npm:unicode-property-aliases-ecmascript": { + "type": "npm", + "name": "npm:unicode-property-aliases-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-property-aliases-ecmascript", + "hash": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:@svgr/plugin-jsx": { + "type": "npm", + "name": "npm:@svgr/plugin-jsx", + "data": { + "version": "6.2.1", + "packageName": "@svgr/plugin-jsx", + "hash": "sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g==" + } + }, + "npm:@babel/plugin-syntax-import-meta": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-meta", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-import-meta", + "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + } + }, + "npm:@nx/nx-linux-arm64-musl@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-eNrVa1Oaf42kEiCoJu01NlmGs6hQMzDhHiQ/DBKxMePW1bh4O5FEQUtYp1K/AKPcHH5270VNz0eAl164+fMqpQ==" + } + }, + "npm:@types/istanbul-reports": { + "type": "npm", + "name": "npm:@types/istanbul-reports", + "data": { + "version": "3.0.1", + "packageName": "@types/istanbul-reports", + "hash": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==" + } + }, + "npm:konami-code-js": { + "type": "npm", + "name": "npm:konami-code-js", + "data": { + "version": "0.8.1", + "packageName": "konami-code-js", + "hash": "sha512-bJ0tuWYLYiUueIVTpA0MV4h4Gz1X16uuJggh5TpIWXOQoLv0238SU7Im23z2wYKCCBsOfk5j4HKWB/pqdCgu5Q==" + } + }, + "npm:common-tags": { + "type": "npm", + "name": "npm:common-tags", + "data": { + "version": "1.8.2", + "packageName": "common-tags", + "hash": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.5", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:@rollup/plugin-replace": { + "type": "npm", + "name": "npm:@rollup/plugin-replace", + "data": { + "version": "2.4.2", + "packageName": "@rollup/plugin-replace", + "hash": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "npm:npm-normalize-package-bin@1.0.1": { + "type": "npm", + "name": "npm:npm-normalize-package-bin@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.7.4", + "packageName": "compression", + "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + } + }, + "npm:@babel/plugin-syntax-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-object-rest-spread", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-object-rest-spread", + "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==" + } + }, + "npm:lint-staged@13.2.3": { + "type": "npm", + "name": "npm:lint-staged@13.2.3", + "data": { + "version": "13.2.3", + "packageName": "lint-staged", + "hash": "sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg==" + } + }, + "npm:camel-case": { + "type": "npm", + "name": "npm:camel-case", + "data": { + "version": "4.1.2", + "packageName": "camel-case", + "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" + } + }, + "npm:@babel/preset-env@7.21.5": { + "type": "npm", + "name": "npm:@babel/preset-env@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/preset-env", + "hash": "sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==" + } + }, + "npm:@esbuild/linux-s390x@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==" + } + }, + "npm:p-locate@5.0.0": { + "type": "npm", + "name": "npm:p-locate@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:is-word-character": { + "type": "npm", + "name": "npm:is-word-character", + "data": { + "version": "1.0.4", + "packageName": "is-word-character", + "hash": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==" + } + }, + "npm:pupa": { + "type": "npm", + "name": "npm:pupa", + "data": { + "version": "2.1.1", + "packageName": "pupa", + "hash": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.1.2", + "packageName": "is-boolean-object", + "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" + } + }, + "npm:remark-parse": { + "type": "npm", + "name": "npm:remark-parse", + "data": { + "version": "8.0.3", + "packageName": "remark-parse", + "hash": "sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==" + } + }, + "npm:unicode-match-property-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-match-property-ecmascript", + "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + } + }, + "npm:color-convert@2.0.1": { + "type": "npm", + "name": "npm:color-convert@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:eslint-import-resolver-node@0.3.7": { + "type": "npm", + "name": "npm:eslint-import-resolver-node@0.3.7", + "data": { + "version": "0.3.7", + "packageName": "eslint-import-resolver-node", + "hash": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==" + } + }, + "npm:get-stream@4.1.0": { + "type": "npm", + "name": "npm:get-stream@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "get-stream", + "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + } + }, + "npm:@babel/plugin-proposal-async-generator-functions@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-async-generator-functions", + "hash": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==" + } + }, + "npm:conventional-changelog-core": { + "type": "npm", + "name": "npm:conventional-changelog-core", + "data": { + "version": "5.0.1", + "packageName": "conventional-changelog-core", + "hash": "sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==" + } + }, + "npm:pify@5.0.0": { + "type": "npm", + "name": "npm:pify@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "pify", + "hash": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==" + } + }, + "npm:@babel/plugin-transform-modules-systemjs@7.20.11": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "data": { + "version": "7.20.11", + "packageName": "@babel/plugin-transform-modules-systemjs", + "hash": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==" + } + }, + "npm:@babel/runtime@7.22.6": { + "type": "npm", + "name": "npm:@babel/runtime@7.22.6", + "data": { + "version": "7.22.6", + "packageName": "@babel/runtime", + "hash": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==" + } + }, + "npm:@cspell/dict-golang@6.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-golang@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "@cspell/dict-golang", + "hash": "sha512-5pyZn4AAiYukAW+gVMIMVmUSkIERFrDX2vtPDjg8PLQUhAHWiVeQSDjuOhq9/C5GCCEZU/zWSONkGiwLBBvV9A==" + } + }, + "npm:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:@esbuild/netbsd-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "0.3.0", + "packageName": "media-typer", + "hash": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:console-control-strings": { + "type": "npm", + "name": "npm:console-control-strings", + "data": { + "version": "1.1.0", + "packageName": "console-control-strings", + "hash": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + } + }, + "npm:unist-util-generated": { + "type": "npm", + "name": "npm:unist-util-generated", + "data": { + "version": "1.1.6", + "packageName": "unist-util-generated", + "hash": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==" + } + }, + "npm:write-file-atomic@2.4.3": { + "type": "npm", + "name": "npm:write-file-atomic@2.4.3", + "data": { + "version": "2.4.3", + "packageName": "write-file-atomic", + "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" + } + }, + "npm:http-cache-semantics": { + "type": "npm", + "name": "npm:http-cache-semantics", + "data": { + "version": "4.1.1", + "packageName": "http-cache-semantics", + "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + } + }, + "npm:@babel/plugin-transform-block-scoping@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoping@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-transform-block-scoping", + "hash": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==" + } + }, + "npm:feed": { + "type": "npm", + "name": "npm:feed", + "data": { + "version": "4.2.2", + "packageName": "feed", + "hash": "sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==" + } + }, + "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-optional-catch-binding", + "hash": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" + } + }, + "npm:@jest/source-map@29.6.0": { + "type": "npm", + "name": "npm:@jest/source-map@29.6.0", + "data": { + "version": "29.6.0", + "packageName": "@jest/source-map", + "hash": "sha512-oA+I2SHHQGxDCZpbrsCQSoMLb3Bz547JnM+jUr9qEbuw0vQlWZfpPS7CO9J7XiwKicEz9OFn/IYoLkkiUD7bzA==" + } + }, + "npm:@swc/core-freebsd-x64@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-freebsd-x64@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-freebsd-x64", + "hash": "847188036684439840" + } + }, + "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9": { + "type": "npm", + "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", + "hash": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:npm-normalize-package-bin": { + "type": "npm", + "name": "npm:npm-normalize-package-bin", + "data": { + "version": "3.0.0", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==" + } + }, + "npm:@babel/plugin-syntax-jsx@7.12.1": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx@7.12.1", + "data": { + "version": "7.12.1", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + } + }, + "npm:@cspell/dict-fullstack": { + "type": "npm", + "name": "npm:@cspell/dict-fullstack", + "data": { + "version": "3.1.5", + "packageName": "@cspell/dict-fullstack", + "hash": "sha512-6ppvo1dkXUZ3fbYn/wwzERxCa76RtDDl5Afzv2lijLoijGGUw5yYdLBKJnx8PJBGNLh829X352ftE7BElG4leA==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.3", + "packageName": "anymatch", + "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.2.3", + "packageName": "cjs-module-lexer", + "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" + } + }, + "npm:npm-bundled": { + "type": "npm", + "name": "npm:npm-bundled", + "data": { + "version": "1.1.2", + "packageName": "npm-bundled", + "hash": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "5.0.1", + "packageName": "builtins", + "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "0.5.0", + "packageName": "jsesc", + "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "npm:aria-query": { + "type": "npm", + "name": "npm:aria-query", + "data": { + "version": "5.1.3", + "packageName": "aria-query", + "hash": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==" + } + }, + "npm:jest-environment-node@29.6.2": { + "type": "npm", + "name": "npm:jest-environment-node@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-environment-node", + "hash": "sha512-YGdFeZ3T9a+/612c5mTQIllvWkddPbYcN2v95ZH24oWMbGA4GGS2XdIF92QMhUhvrjjuQWYgUGW2zawOyH63MQ==" + } + }, + "npm:@babel/helper-validator-option@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-validator-option@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==" + } + }, + "npm:@sideway/formula": { + "type": "npm", + "name": "npm:@sideway/formula", + "data": { + "version": "3.0.0", + "packageName": "@sideway/formula", + "hash": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==" + } + }, + "npm:make-dir@3.1.0": { + "type": "npm", + "name": "npm:make-dir@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:retry@0.13.1": { + "type": "npm", + "name": "npm:retry@0.13.1", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:webpack-bundle-analyzer": { + "type": "npm", + "name": "npm:webpack-bundle-analyzer", + "data": { + "version": "4.5.0", + "packageName": "webpack-bundle-analyzer", + "hash": "sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==" + } + }, + "npm:workbox-expiration": { + "type": "npm", + "name": "npm:workbox-expiration", + "data": { + "version": "6.5.4", + "packageName": "workbox-expiration", + "hash": "sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==" + } + }, + "npm:p-locate@2.0.0": { + "type": "npm", + "name": "npm:p-locate@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "p-locate", + "hash": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" + } + }, + "npm:import-lazy@2.1.0": { + "type": "npm", + "name": "npm:import-lazy@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "import-lazy", + "hash": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" + } + }, + "npm:prism-react-renderer": { + "type": "npm", + "name": "npm:prism-react-renderer", + "data": { + "version": "1.3.5", + "packageName": "prism-react-renderer", + "hash": "sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==" + } + }, + "npm:@esbuild/linux-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==" + } + }, + "npm:@esbuild/linux-riscv64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "2.0.0", + "packageName": "astral-regex", + "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:flux": { + "type": "npm", + "name": "npm:flux", + "data": { + "version": "4.0.2", + "packageName": "flux", + "hash": "sha512-u/ucO5ezm3nBvdaSGkWpDlzCePoV+a9x3KHmy13TV/5MzOaCZDN8Mfd94jmf0nOi8ZZay+nOKbBUkOe2VNaupQ==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.5.3", + "packageName": "chokidar", + "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + } + }, + "npm:unherit": { + "type": "npm", + "name": "npm:unherit", + "data": { + "version": "1.1.3", + "packageName": "unherit", + "hash": "sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==" + } + }, + "npm:source-map-support@0.5.13": { + "type": "npm", + "name": "npm:source-map-support@0.5.13", + "data": { + "version": "0.5.13", + "packageName": "source-map-support", + "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" + } + }, + "npm:jsonfile@4.0.0": { + "type": "npm", + "name": "npm:jsonfile@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "jsonfile", + "hash": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" + } + }, + "npm:locate-path@6.0.0": { + "type": "npm", + "name": "npm:locate-path@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:p-limit@1.3.0": { + "type": "npm", + "name": "npm:p-limit@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "p-limit", + "hash": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + } + }, + "npm:add-stream": { + "type": "npm", + "name": "npm:add-stream", + "data": { + "version": "1.0.0", + "packageName": "add-stream", + "hash": "sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=" + } + }, + "npm:ast-types-flow": { + "type": "npm", + "name": "npm:ast-types-flow", + "data": { + "version": "0.0.7", + "packageName": "ast-types-flow", + "hash": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:@types/graceful-fs": { + "type": "npm", + "name": "npm:@types/graceful-fs", + "data": { + "version": "4.1.6", + "packageName": "@types/graceful-fs", + "hash": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==" + } + }, + "npm:to-fast-properties": { + "type": "npm", + "name": "npm:to-fast-properties", + "data": { + "version": "2.0.0", + "packageName": "to-fast-properties", + "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + } + }, + "npm:unicode-match-property-value-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-value-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-match-property-value-ecmascript", + "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.1", + "packageName": "p-retry", + "hash": "sha512-e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==" + } + }, + "npm:@typescript-eslint/typescript-estree@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==" + } + }, + "npm:jest-matcher-utils@29.6.2": { + "type": "npm", + "name": "npm:jest-matcher-utils@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-matcher-utils", + "hash": "sha512-4LiAk3hSSobtomeIAzFTe+N8kL6z0JtF3n6I4fg29iIW7tt99R7ZcIFW34QkX+DuVrf+CUe6wuVOpm7ZKFJzZQ==" + } + }, + "npm:@babel/highlight@7.22.5": { + "type": "npm", + "name": "npm:@babel/highlight@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/highlight", + "hash": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==" + } + }, + "npm:got": { + "type": "npm", + "name": "npm:got", + "data": { + "version": "9.6.0", + "packageName": "got", + "hash": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==" + } + }, + "npm:check-error@1.0.2": { + "type": "npm", + "name": "npm:check-error@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "check-error", + "hash": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==" + } + }, + "npm:@babel/plugin-transform-classes@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-transform-classes@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-transform-classes", + "hash": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==" + } + }, + "npm:@docusaurus/plugin-google-gtag@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-google-gtag", + "hash": "sha512-mKIefK+2kGTQBYvloNEKtDmnRD7bxHLsBcxgnbt4oZwzi2nxCGjPX6+9SQO2KCN5HZbNrYmGo5GJfMgoRvy6uA==" + } + }, + "npm:@octokit/auth-token@3.0.0": { + "type": "npm", + "name": "npm:@octokit/auth-token@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@octokit/auth-token", + "hash": "sha512-MDNFUBcJIptB9At7HiV7VCvU3NcL4GnfCQaP8C5lrxWrRPMJBnemYtehaKSOlaM7AYxeRyj9etenu8LVpSpVaQ==" + } + }, + "npm:@types/istanbul-lib-coverage": { + "type": "npm", + "name": "npm:@types/istanbul-lib-coverage", + "data": { + "version": "2.0.4", + "packageName": "@types/istanbul-lib-coverage", + "hash": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.30", + "packageName": "mdn-data", + "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + } + }, + "npm:schema-utils@4.0.0": { + "type": "npm", + "name": "npm:schema-utils@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "schema-utils", + "hash": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==" + } + }, + "npm:methods": { + "type": "npm", + "name": "npm:methods", + "data": { + "version": "1.1.2", + "packageName": "methods", + "hash": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + } + }, + "npm:@babel/plugin-proposal-private-methods@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-private-methods", + "hash": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "3.0.0", + "packageName": "unique-filename", + "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" + } + }, + "npm:value-equal": { + "type": "npm", + "name": "npm:value-equal", + "data": { + "version": "1.0.1", + "packageName": "value-equal", + "hash": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + } + }, + "npm:csstype": { + "type": "npm", + "name": "npm:csstype", + "data": { + "version": "3.1.2", + "packageName": "csstype", + "hash": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:strip-indent": { + "type": "npm", + "name": "npm:strip-indent", + "data": { + "version": "3.0.0", + "packageName": "strip-indent", + "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" + } + }, + "npm:globby@13.1.1": { + "type": "npm", + "name": "npm:globby@13.1.1", + "data": { + "version": "13.1.1", + "packageName": "globby", + "hash": "sha512-XMzoDZbGZ37tufiv7g0N4F/zp3zkwdFtVbV3EHsVl1KQr4RPLfNoT068/97RPshz2J5xYNEjLKKBKaGHifBd3Q==" + } + }, + "npm:boxen@5.1.2": { + "type": "npm", + "name": "npm:boxen@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "boxen", + "hash": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==" + } + }, + "npm:@types/prettier": { + "type": "npm", + "name": "npm:@types/prettier", + "data": { + "version": "2.7.3", + "packageName": "@types/prettier", + "hash": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==" + } + }, + "npm:lru-cache@5.1.1": { + "type": "npm", + "name": "npm:lru-cache@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:object.hasown": { + "type": "npm", + "name": "npm:object.hasown", + "data": { + "version": "1.1.2", + "packageName": "object.hasown", + "hash": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==" + } + }, + "npm:@babel/plugin-transform-arrow-functions@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-arrow-functions@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-arrow-functions", + "hash": "sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==" + } + }, + "npm:@types/natural-compare@1.4.1": { + "type": "npm", + "name": "npm:@types/natural-compare@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "@types/natural-compare", + "hash": "sha512-9dr4UakpvN0QUvwNefk9+o14Sr1pPPIDWkgCxPkHcg3kyjtc9eKK1ng6dZ23vRwByloCqXYtZ1T5nJxkk3Ib3A==" + } + }, + "npm:validator": { + "type": "npm", + "name": "npm:validator", + "data": { + "version": "13.7.0", + "packageName": "validator", + "hash": "sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==" + } + }, + "npm:which@2.0.2": { + "type": "npm", + "name": "npm:which@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "6.3.0", + "packageName": "css-declaration-sorter", + "hash": "sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:qs@6.11.2": { + "type": "npm", + "name": "npm:qs@6.11.2", + "data": { + "version": "6.11.2", + "packageName": "qs", + "hash": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==" + } + }, + "npm:range-parser@1.2.0": { + "type": "npm", + "name": "npm:range-parser@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "range-parser", + "hash": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" + } + }, + "npm:detect-indent": { + "type": "npm", + "name": "npm:detect-indent", + "data": { + "version": "5.0.0", + "packageName": "detect-indent", + "hash": "sha1-OHHMCmoALow+Wzz38zYmRnXwa50=" + } + }, + "npm:minimatch@7.4.3": { + "type": "npm", + "name": "npm:minimatch@7.4.3", + "data": { + "version": "7.4.3", + "packageName": "minimatch", + "hash": "sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.0", + "packageName": "has-property-descriptors", + "hash": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==" + } + }, + "npm:@cspell/dict-dart@2.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-dart@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "@cspell/dict-dart", + "hash": "sha512-jigcODm7Z4IFZ4vParwwP3IT0fIgRq/9VoxkXfrxBMsLBGGM2QltHBj7pl+joX+c4cOHxfyZktGJK1B1wFtR4Q==" + } + }, + "npm:algoliasearch-helper": { + "type": "npm", + "name": "npm:algoliasearch-helper", + "data": { + "version": "3.10.0", + "packageName": "algoliasearch-helper", + "hash": "sha512-4E4od8qWWDMVvQ3jaRX6Oks/k35ywD011wAA4LbYMMjOtaZV6VWaTjRr4iN2bdaXP2o1BP7SLFMBf3wvnHmd8Q==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "3.0.1", + "packageName": "fs-minipass", + "hash": "sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==" + } + }, + "npm:merge-stream": { + "type": "npm", + "name": "npm:merge-stream", + "data": { + "version": "2.0.0", + "packageName": "merge-stream", + "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + } + }, + "npm:@docusaurus/theme-search-algolia@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/theme-search-algolia@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/theme-search-algolia", + "hash": "sha512-6BcqW2lnLhZCXuMAvPRezFs1DpmEKzXFKlYjruuas+Xy3AQeFzDJKTJFIm49N77WFCTyxff8d3E4Q9pi/+5McQ==" + } + }, + "npm:postcss-sorting": { + "type": "npm", + "name": "npm:postcss-sorting", + "data": { + "version": "8.0.2", + "packageName": "postcss-sorting", + "hash": "sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:path-to-regexp@0.1.7": { + "type": "npm", + "name": "npm:path-to-regexp@0.1.7", + "data": { + "version": "0.1.7", + "packageName": "path-to-regexp", + "hash": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + } + }, + "npm:supports-color@5.5.0": { + "type": "npm", + "name": "npm:supports-color@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "supports-color", + "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + } + }, + "npm:parse5@6.0.1": { + "type": "npm", + "name": "npm:parse5@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "parse5", + "hash": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "1.3.8", + "packageName": "accepts", + "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" + } + }, + "npm:strip-final-newline@2.0.0": { + "type": "npm", + "name": "npm:strip-final-newline@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.2", + "packageName": "fb-watchman", + "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" + } + }, + "npm:@nx/nx-win32-arm64-msvc@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-gEP6ekFXLfvRWezSvQoHxV+vhKavuA/Lhz/AifYAIgdJEmKUPqVdnUtdkYwU0Ygn/a11KqbFh8J4TikXIkVxYw==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "2.0.0", + "packageName": "chownr", + "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + } + }, + "npm:get-stdin": { + "type": "npm", + "name": "npm:get-stdin", + "data": { + "version": "9.0.0", + "packageName": "get-stdin", + "hash": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==" + } + }, + "npm:json-parse-better-errors": { + "type": "npm", + "name": "npm:json-parse-better-errors", + "data": { + "version": "1.0.2", + "packageName": "json-parse-better-errors", + "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + } + }, + "npm:jsonpointer": { + "type": "npm", + "name": "npm:jsonpointer", + "data": { + "version": "5.0.1", + "packageName": "jsonpointer", + "hash": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==" + } + }, + "npm:@microsoft/api-extractor-model@7.27.5": { + "type": "npm", + "name": "npm:@microsoft/api-extractor-model@7.27.5", + "data": { + "version": "7.27.5", + "packageName": "@microsoft/api-extractor-model", + "hash": "sha512-9/tBzYMJitR+o+zkPr1lQh2+e8ClcaTF6eZo7vZGDqRt2O5XmXWPbYJZmxyM3wb5at6lfJNEeGZrQXLjsQ0Nbw==" + } + }, + "npm:balanced-match@2.0.0": { + "type": "npm", + "name": "npm:balanced-match@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "balanced-match", + "hash": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:klona": { + "type": "npm", + "name": "npm:klona", + "data": { + "version": "2.0.5", + "packageName": "klona", + "hash": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" + } + }, + "npm:@babel/plugin-syntax-async-generators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-async-generators", + "data": { + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + } + }, + "npm:@nx/devkit@16.5.3": { + "type": "npm", + "name": "npm:@nx/devkit@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/devkit", + "hash": "sha512-szsBpO4ZYEwilUZMEjpmvg8ritl8C7jEAkAq3k2CxEdwE24cDBPwjXWnbc4YffvYW9gatDt+n93in5XYXWT5CA==" + } + }, + "npm:commander@10.0.1": { + "type": "npm", + "name": "npm:commander@10.0.1", + "data": { + "version": "10.0.1", + "packageName": "commander", + "hash": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==" + } + }, + "npm:@svgr/babel-plugin-transform-svg-component": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-transform-svg-component", + "data": { + "version": "6.2.0", + "packageName": "@svgr/babel-plugin-transform-svg-component", + "hash": "sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==" + } + }, + "npm:is-module": { + "type": "npm", + "name": "npm:is-module", + "data": { + "version": "1.0.0", + "packageName": "is-module", + "hash": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + } + }, + "npm:quick-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "4.0.1", + "packageName": "quick-lru", + "hash": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" + } + }, + "npm:decamelize-keys": { + "type": "npm", + "name": "npm:decamelize-keys", + "data": { + "version": "1.1.0", + "packageName": "decamelize-keys", + "hash": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=" + } + }, + "npm:@jridgewell/sourcemap-codec@1.4.14": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec@1.4.14", + "data": { + "version": "1.4.14", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + } + }, + "npm:nx-cloud": { + "type": "npm", + "name": "npm:nx-cloud", + "data": { + "version": "16.1.1", + "packageName": "nx-cloud", + "hash": "sha512-Rq7ynvkYzAJ67N3pDqU6cMqwvWP7WXJGP4EFjLxgUrRHNCccqDPggeAqePodfk3nZEUrZB8F5QBKZuuw1DR3oA==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:array-includes@3.1.6": { + "type": "npm", + "name": "npm:array-includes@3.1.6", + "data": { + "version": "3.1.6", + "packageName": "array-includes", + "hash": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==" + } + }, + "npm:@typescript-eslint/visitor-keys@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:@leichtgewicht/ip-codec": { + "type": "npm", + "name": "npm:@leichtgewicht/ip-codec", + "data": { + "version": "2.0.4", + "packageName": "@leichtgewicht/ip-codec", + "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + } + }, + "npm:execa@5.1.1": { + "type": "npm", + "name": "npm:execa@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "3.1.6", + "packageName": "minipass", + "hash": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==" + } + }, + "npm:fbemitter": { + "type": "npm", + "name": "npm:fbemitter", + "data": { + "version": "3.0.0", + "packageName": "fbemitter", + "hash": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==" + } + }, + "npm:@nrwl/js@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/js@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/js", + "hash": "sha512-l1mpG5ItfiuMRwTxpHpu0+uNR4Stk3usR4Bhy0MwW1QYk9DtgqCYfTs0/gF2CLKCTXJ211RkSXJ9NHge1m39hA==" + } + }, + "npm:@types/jest-specific-snapshot@0.5.6": { + "type": "npm", + "name": "npm:@types/jest-specific-snapshot@0.5.6", + "data": { + "version": "0.5.6", + "packageName": "@types/jest-specific-snapshot", + "hash": "sha512-AQdUbEyTwO6JR2yZK7PTXDzK32AlkviDZJZEukZnrZtBjITYBtExFh59HTNTZeFSs+k1b1bqCHmWUwj3VHeh/A==" + } + }, + "npm:p-waterfall": { + "type": "npm", + "name": "npm:p-waterfall", + "data": { + "version": "2.1.1", + "packageName": "p-waterfall", + "hash": "sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.0.2", + "packageName": "pure-rand", + "hash": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==" + } + }, + "npm:stringify-object": { + "type": "npm", + "name": "npm:stringify-object", + "data": { + "version": "3.3.0", + "packageName": "stringify-object", + "hash": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + } + }, + "npm:@babel/core@7.12.9": { + "type": "npm", + "name": "npm:@babel/core@7.12.9", + "data": { + "version": "7.12.9", + "packageName": "@babel/core", + "hash": "sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==" + } + }, + "npm:@tsconfig/node14": { + "type": "npm", + "name": "npm:@tsconfig/node14", + "data": { + "version": "1.0.1", + "packageName": "@tsconfig/node14", + "hash": "sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==" + } + }, + "npm:file-entry-cache@6.0.1": { + "type": "npm", + "name": "npm:file-entry-cache@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "file-entry-cache", + "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + } + }, + "npm:regexp-tree": { + "type": "npm", + "name": "npm:regexp-tree", + "data": { + "version": "0.1.27", + "packageName": "regexp-tree", + "hash": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==" + } + }, + "npm:create-require": { + "type": "npm", + "name": "npm:create-require", + "data": { + "version": "1.1.1", + "packageName": "create-require", + "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.9": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" + } + }, + "npm:immer": { + "type": "npm", + "name": "npm:immer", + "data": { + "version": "9.0.12", + "packageName": "immer", + "hash": "sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==" + } + }, + "npm:ncp": { + "type": "npm", + "name": "npm:ncp", + "data": { + "version": "2.0.0", + "packageName": "ncp", + "hash": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=" + } + }, + "npm:no-case": { + "type": "npm", + "name": "npm:no-case", + "data": { + "version": "3.0.4", + "packageName": "no-case", + "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + } + }, + "npm:read-pkg": { + "type": "npm", + "name": "npm:read-pkg", + "data": { + "version": "3.0.0", + "packageName": "read-pkg", + "hash": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=" + } + }, + "npm:@types/sax": { + "type": "npm", + "name": "npm:@types/sax", + "data": { + "version": "1.2.4", + "packageName": "@types/sax", + "hash": "sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==" + } + }, + "npm:mute-stream@0.0.8": { + "type": "npm", + "name": "npm:mute-stream@0.0.8", + "data": { + "version": "0.0.8", + "packageName": "mute-stream", + "hash": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + } + }, + "npm:@esbuild/win32-arm64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.15.0", + "packageName": "fastq", + "hash": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + } + }, + "npm:type-fest@0.18.1": { + "type": "npm", + "name": "npm:type-fest@0.18.1", + "data": { + "version": "0.18.1", + "packageName": "type-fest", + "hash": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "5.3.1", + "packageName": "webpack-dev-middleware", + "hash": "sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==" + } + }, + "npm:@polka/url": { + "type": "npm", + "name": "npm:@polka/url", + "data": { + "version": "1.0.0-next.21", + "packageName": "@polka/url", + "hash": "sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==" + } + }, + "npm:markdownlint-cli@0.35.0": { + "type": "npm", + "name": "npm:markdownlint-cli@0.35.0", + "data": { + "version": "0.35.0", + "packageName": "markdownlint-cli", + "hash": "sha512-lVIIIV1MrUtjoocgDqXLxUCxlRbn7Ve8rsWppfwciUNwLlNS28AhNiyQ3PU7jjj4Qvj+rWTTvwkqg7AcdG988g==" + } + }, + "npm:pkg-up": { + "type": "npm", + "name": "npm:pkg-up", + "data": { + "version": "3.1.0", + "packageName": "pkg-up", + "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + } + }, + "npm:@babel/plugin-transform-object-super@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-super@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-object-super", + "hash": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==" + } + }, + "npm:@sinonjs/text-encoding": { + "type": "npm", + "name": "npm:@sinonjs/text-encoding", + "data": { + "version": "0.7.2", + "packageName": "@sinonjs/text-encoding", + "hash": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==" + } + }, + "npm:@hapi/hoek": { + "type": "npm", + "name": "npm:@hapi/hoek", + "data": { + "version": "9.2.1", + "packageName": "@hapi/hoek", + "hash": "sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.25.9", + "packageName": "magic-string", + "hash": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==" + } + }, + "npm:serve-handler": { + "type": "npm", + "name": "npm:serve-handler", + "data": { + "version": "6.1.3", + "packageName": "serve-handler", + "hash": "sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==" + } + }, + "npm:color-support": { + "type": "npm", + "name": "npm:color-support", + "data": { + "version": "1.1.3", + "packageName": "color-support", + "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + } + }, + "npm:escape-goat": { + "type": "npm", + "name": "npm:escape-goat", + "data": { + "version": "2.1.1", + "packageName": "escape-goat", + "hash": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" + } + }, + "npm:css-tree@2.3.1": { + "type": "npm", + "name": "npm:css-tree@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "css-tree", + "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" + } + }, + "npm:@babel/plugin-transform-for-of@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-for-of@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-for-of", + "hash": "sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==" + } + }, + "npm:@esbuild/linux-loong64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==" + } + }, + "npm:resolve-global@1.0.0": { + "type": "npm", + "name": "npm:resolve-global@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "resolve-global", + "hash": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "3.0.0", + "packageName": "pify", + "hash": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } + }, + "npm:@types/hast": { + "type": "npm", + "name": "npm:@types/hast", + "data": { + "version": "2.3.4", + "packageName": "@types/hast", + "hash": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==" + } + }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "2.0.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + } + }, + "npm:array.prototype.flatmap@1.3.1": { + "type": "npm", + "name": "npm:array.prototype.flatmap@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "array.prototype.flatmap", + "hash": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.2", + "packageName": "follow-redirects", + "hash": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + } + }, + "npm:@babel/plugin-transform-modules-amd@7.20.11": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "data": { + "version": "7.20.11", + "packageName": "@babel/plugin-transform-modules-amd", + "hash": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==" + } + }, + "npm:@babel/plugin-transform-runtime@7.21.4": { + "type": "npm", + "name": "npm:@babel/plugin-transform-runtime@7.21.4", + "data": { + "version": "7.21.4", + "packageName": "@babel/plugin-transform-runtime", + "hash": "sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA==" + } + }, + "npm:npm-packlist": { + "type": "npm", + "name": "npm:npm-packlist", + "data": { + "version": "5.1.1", + "packageName": "npm-packlist", + "hash": "sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==" + } + }, + "npm:webpackbar": { + "type": "npm", + "name": "npm:webpackbar", + "data": { + "version": "5.0.2", + "packageName": "webpackbar", + "hash": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, + "npm:bytes@3.1.2": { + "type": "npm", + "name": "npm:bytes@3.1.2", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:babel-plugin-transform-typescript-metadata": { + "type": "npm", + "name": "npm:babel-plugin-transform-typescript-metadata", + "data": { + "version": "0.3.2", + "packageName": "babel-plugin-transform-typescript-metadata", + "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" + } + }, + "npm:@babel/helper-environment-visitor@7.22.5": { + "type": "npm", + "name": "npm:@babel/helper-environment-visitor@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-environment-visitor", + "hash": "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==" + } + }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.0-rc.46", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" + } + }, + "npm:string.prototype.matchall": { + "type": "npm", + "name": "npm:string.prototype.matchall", + "data": { + "version": "4.0.8", + "packageName": "string.prototype.matchall", + "hash": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==" + } + }, + "npm:ua-parser-js": { + "type": "npm", + "name": "npm:ua-parser-js", + "data": { + "version": "0.7.31", + "packageName": "ua-parser-js", + "hash": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:read-pkg@6.0.0": { + "type": "npm", + "name": "npm:read-pkg@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "read-pkg", + "hash": "sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==" + } + }, + "npm:debug@4.3.1": { + "type": "npm", + "name": "npm:debug@4.3.1", + "data": { + "version": "4.3.1", + "packageName": "debug", + "hash": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==" + } + }, + "npm:jest-validate@29.6.2": { + "type": "npm", + "name": "npm:jest-validate@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-validate", + "hash": "sha512-vGz0yMN5fUFRRbpJDPwxMpgSXW1LDKROHfBopAvDcmD6s+B/s8WJrwi+4bfH4SdInBA5C3P3BI19dBtKzx1Arg==" + } + }, + "npm:@esbuild/netbsd-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==" + } + }, + "npm:@cspell/dict-html@4.0.3": { + "type": "npm", + "name": "npm:@cspell/dict-html@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "@cspell/dict-html", + "hash": "sha512-Gae8i8rrArT0UyG1I6DHDK62b7Be6QEcBSIeWOm4VIIW1CASkN9B0qFgSVnkmfvnu1Y3H7SSaaEynKjdj3cs8w==" + } + }, + "npm:@nx/jest@16.5.3": { + "type": "npm", + "name": "npm:@nx/jest@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/jest", + "hash": "sha512-E9SMO/wFDXBZCepcE3TcAk6Fu0Q/wTIGCXNum6urTS+2hqetisugC+cxCoisBrevPlqZvTm5WmBU/4UipmxN0g==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "npm:@tsconfig/node12": { + "type": "npm", + "name": "npm:@tsconfig/node12", + "data": { + "version": "1.0.9", + "packageName": "@tsconfig/node12", + "hash": "sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==" + } + }, + "npm:@types/trusted-types": { + "type": "npm", + "name": "npm:@types/trusted-types", + "data": { + "version": "2.0.2", + "packageName": "@types/trusted-types", + "hash": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" + } + }, + "npm:destroy": { + "type": "npm", + "name": "npm:destroy", + "data": { + "version": "1.2.0", + "packageName": "destroy", + "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + } + }, + "npm:@algolia/cache-browser-local-storage": { + "type": "npm", + "name": "npm:@algolia/cache-browser-local-storage", + "data": { + "version": "4.13.1", + "packageName": "@algolia/cache-browser-local-storage", + "hash": "sha512-UAUVG2PEfwd/FfudsZtYnidJ9eSCpS+LW9cQiesePQLz41NAcddKxBak6eP2GErqyFagSlnVXe/w2E9h2m2ttg==" + } + }, + "npm:lodash.debounce": { + "type": "npm", + "name": "npm:lodash.debounce", + "data": { + "version": "4.0.8", + "packageName": "lodash.debounce", + "hash": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:@docusaurus/types@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/types@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/types", + "hash": "sha512-0R+cbhpMkhbRXX138UOc/2XZFF8hiZa6ooZAEEJFp5scytzCw4tC1gChMFXrpa3d2tYE6AX8IrOEpSonLmfQuQ==" + } + }, + "npm:encoding": { + "type": "npm", + "name": "npm:encoding", + "data": { + "version": "0.1.13", + "packageName": "encoding", + "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, + "npm:universalify@0.1.2": { + "type": "npm", + "name": "npm:universalify@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:@babel/helper-define-polyfill-provider@0.3.3": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "data": { + "version": "0.3.3", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "5.2.12", + "packageName": "cssnano-preset-default", + "hash": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==" + } + }, + "npm:@jest/types@29.6.1": { + "type": "npm", + "name": "npm:@jest/types@29.6.1", + "data": { + "version": "29.6.1", + "packageName": "@jest/types", + "hash": "sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==" + } + }, + "npm:@babel/plugin-proposal-object-rest-spread@7.12.1": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "data": { + "version": "7.12.1", + "packageName": "@babel/plugin-proposal-object-rest-spread", + "hash": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.6", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==" + } + }, + "npm:@types/istanbul-lib-report": { + "type": "npm", + "name": "npm:@types/istanbul-lib-report", + "data": { + "version": "3.0.0", + "packageName": "@types/istanbul-lib-report", + "hash": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==" + } + }, + "npm:eslint-scope@7.2.2": { + "type": "npm", + "name": "npm:eslint-scope@7.2.2", + "data": { + "version": "7.2.2", + "packageName": "eslint-scope", + "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" + } + }, + "npm:glob-parent@6.0.2": { + "type": "npm", + "name": "npm:glob-parent@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:@babel/plugin-syntax-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-numeric-separator", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-numeric-separator", + "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + } + }, + "npm:@babel/plugin-syntax-bigint": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-bigint", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:conventional-changelog-writer": { + "type": "npm", + "name": "npm:conventional-changelog-writer", + "data": { + "version": "6.0.0", + "packageName": "conventional-changelog-writer", + "hash": "sha512-8PyWTnn7zBIt9l4hj4UusFs1TyG+9Ulu1zlOAc72L7Sdv9Hsc8E86ot7htY3HXCVhXHB/NO0pVGvZpwsyJvFfw==" + } + }, + "npm:chalk@4.1.2": { + "type": "npm", + "name": "npm:chalk@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-unicode-property-regex", + "hash": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==" + } + }, + "npm:camelcase-css": { + "type": "npm", + "name": "npm:camelcase-css", + "data": { + "version": "2.0.1", + "packageName": "camelcase-css", + "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + } + }, + "npm:entities@2.2.0": { + "type": "npm", + "name": "npm:entities@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "entities", + "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + }, + "npm:jest-circus@29.6.2": { + "type": "npm", + "name": "npm:jest-circus@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-circus", + "hash": "sha512-G9mN+KOYIUe2sB9kpJkO9Bk18J4dTDArNFPwoZ7WKHKel55eKIS/u2bLthxgojwlf9NLCVQfgzM/WsOVvoC6Fw==" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@^7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:trim-newlines": { + "type": "npm", + "name": "npm:trim-newlines", + "data": { + "version": "3.0.1", + "packageName": "trim-newlines", + "hash": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "5.1.6", + "packageName": "postcss-merge-longhand", + "hash": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==" + } + }, + "npm:@babel/plugin-transform-unicode-escapes@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-escapes@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-unicode-escapes", + "hash": "sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==" + } + }, + "npm:react-style-proptype@3.2.2": { + "type": "npm", + "name": "npm:react-style-proptype@3.2.2", + "data": { + "version": "3.2.2", + "packageName": "react-style-proptype", + "hash": "sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==" + } + }, + "npm:@swc/core-win32-arm64-msvc@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-win32-arm64-msvc@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-win32-arm64-msvc", + "hash": "17091072665105731578" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-minify-font-values", + "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" + } + }, + "npm:es-abstract@1.22.1": { + "type": "npm", + "name": "npm:es-abstract@1.22.1", + "data": { + "version": "1.22.1", + "packageName": "es-abstract", + "hash": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:string.prototype.trimstart@1.0.6": { + "type": "npm", + "name": "npm:string.prototype.trimstart@1.0.6", + "data": { + "version": "1.0.6", + "packageName": "string.prototype.trimstart", + "hash": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==" + } + }, + "npm:patch-package": { + "type": "npm", + "name": "npm:patch-package", + "data": { + "version": "8.0.0", + "packageName": "patch-package", + "hash": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==" + } + }, + "npm:type-fest@0.21.3": { + "type": "npm", + "name": "npm:type-fest@0.21.3", + "data": { + "version": "0.21.3", + "packageName": "type-fest", + "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + }, + "npm:@swc/core-win32-ia32-msvc@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-win32-ia32-msvc@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-win32-ia32-msvc", + "hash": "2298370809555209607" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "5.1.2", + "packageName": "postcss-merge-rules", + "hash": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==" + } + }, + "npm:@nx/linter@16.5.3": { + "type": "npm", + "name": "npm:@nx/linter@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/linter", + "hash": "sha512-md+dzialAUqXMgEZWqguhTyeFkuGMJ2oRQed3k4EkkJ2JScXXtnj/Izk2kob7Eik7KEoBTSlNdOMHdCgc4FeIA==" + } + }, + "npm:@sinonjs/fake-timers@7.1.2": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers@7.1.2", + "data": { + "version": "7.1.2", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg==" + } + }, + "npm:@cspell/cspell-types@6.31.1": { + "type": "npm", + "name": "npm:@cspell/cspell-types@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/cspell-types", + "hash": "sha512-1KeTQFiHMssW1eRoF2NZIEg4gPVIfXLsL2+VSD/AV6YN7lBcuf6gRRgV5KWYarhxtEfjxhDdDTmu26l/iJEUtw==" + } + }, + "npm:p-timeout@5.1.0": { + "type": "npm", + "name": "npm:p-timeout@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "p-timeout", + "hash": "sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==" + } + }, + "npm:jsx-ast-utils": { + "type": "npm", + "name": "npm:jsx-ast-utils", + "data": { + "version": "3.3.5", + "packageName": "jsx-ast-utils", + "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" + } + }, + "npm:arrify@2.0.1": { + "type": "npm", + "name": "npm:arrify@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "arrify", + "hash": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + } + }, + "npm:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.6.2", + "packageName": "socks", + "hash": "sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:prismjs": { + "type": "npm", + "name": "npm:prismjs", + "data": { + "version": "1.28.0", + "packageName": "prismjs", + "hash": "sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw==" + } + }, + "npm:jest-watcher@29.6.2": { + "type": "npm", + "name": "npm:jest-watcher@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-watcher", + "hash": "sha512-GZitlqkMkhkefjfN/p3SJjrDaxPflqxEAv3/ik10OirZqJGYH5rPiIsgVcfof0Tdqg3shQGdEIxDBx+B4tuLzA==" + } + }, + "npm:log-symbols@4.0.0": { + "type": "npm", + "name": "npm:log-symbols@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "log-symbols", + "hash": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.6.4", + "packageName": "@types/babel__generator", + "hash": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.2.0", + "packageName": "loader-runner", + "hash": "sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==" + } + }, + "npm:find-up@2.1.0": { + "type": "npm", + "name": "npm:find-up@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-up", + "hash": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.5", + "packageName": "available-typed-arrays", + "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + } + }, + "npm:totalist": { + "type": "npm", + "name": "npm:totalist", + "data": { + "version": "1.1.0", + "packageName": "totalist", + "hash": "sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:markdown-table": { + "type": "npm", + "name": "npm:markdown-table", + "data": { + "version": "3.0.3", + "packageName": "markdown-table", + "hash": "sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==" + } + }, + "npm:babel-plugin-polyfill-regenerator@0.4.1": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "babel-plugin-polyfill-regenerator", + "hash": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==" + } + }, + "npm:@npmcli/fs@2.1.0": { + "type": "npm", + "name": "npm:@npmcli/fs@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-DmfBvNXGaetMxj9LTp8NAN9vEidXURrf5ZTslQzEAi/6GbW+4yjaLFQc6Tue5cpZ9Frlk4OBo/Snf1Bh/S7qTQ==" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:chardet": { + "type": "npm", + "name": "npm:chardet", + "data": { + "version": "0.7.0", + "packageName": "chardet", + "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + } + }, + "npm:npm-pick-manifest": { + "type": "npm", + "name": "npm:npm-pick-manifest", + "data": { + "version": "8.0.1", + "packageName": "npm-pick-manifest", + "hash": "sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==" + } + }, + "npm:opener": { + "type": "npm", + "name": "npm:opener", + "data": { + "version": "1.5.2", + "packageName": "opener", + "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.0.0", + "packageName": "safe-regex-test", + "hash": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==" + } + }, + "npm:spdx-expression-parse": { + "type": "npm", + "name": "npm:spdx-expression-parse", + "data": { + "version": "3.0.1", + "packageName": "spdx-expression-parse", + "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" + } + }, + "npm:source-map-support@0.5.19": { + "type": "npm", + "name": "npm:source-map-support@0.5.19", + "data": { + "version": "0.5.19", + "packageName": "source-map-support", + "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + } + }, + "npm:@csstools/media-query-list-parser@2.1.2": { + "type": "npm", + "name": "npm:@csstools/media-query-list-parser@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "@csstools/media-query-list-parser", + "hash": "sha512-M8cFGGwl866o6++vIY7j1AKuq9v57cf+dGepScwCcbut9ypJNr4Cj+LLTWligYUZ0uyhEoJDKt5lvyBfh2L3ZQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:image-size": { + "type": "npm", + "name": "npm:image-size", + "data": { + "version": "1.0.1", + "packageName": "image-size", + "hash": "sha512-VAwkvNSNGClRw9mDHhc5Efax8PLlsOGcUTh0T/LIriC8vPA3U5PdqXWqkz406MoYHMKW8Uf9gWr05T/rYB44kQ==" + } + }, + "npm:shelljs": { + "type": "npm", + "name": "npm:shelljs", + "data": { + "version": "0.8.5", + "packageName": "shelljs", + "hash": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==" + } + }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.4", + "packageName": "faye-websocket", + "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.0.6", + "packageName": "cookie-signature", + "hash": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + } + }, + "npm:property-information": { + "type": "npm", + "name": "npm:property-information", + "data": { + "version": "5.6.0", + "packageName": "property-information", + "hash": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==" + } + }, + "npm:unist-util-visit-parents": { + "type": "npm", + "name": "npm:unist-util-visit-parents", + "data": { + "version": "3.1.1", + "packageName": "unist-util-visit-parents", + "hash": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "10.1.0", + "packageName": "npm-package-arg", + "hash": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==" + } + }, + "npm:open@7.4.2": { + "type": "npm", + "name": "npm:open@7.4.2", + "data": { + "version": "7.4.2", + "packageName": "open", + "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + } + }, + "npm:file-loader": { + "type": "npm", + "name": "npm:file-loader", + "data": { + "version": "6.2.0", + "packageName": "file-loader", + "hash": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==" + } + }, + "npm:libnpmaccess": { + "type": "npm", + "name": "npm:libnpmaccess", + "data": { + "version": "7.0.2", + "packageName": "libnpmaccess", + "hash": "sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==" + } + }, + "npm:read-pkg-up@3.0.0": { + "type": "npm", + "name": "npm:read-pkg-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "read-pkg-up", + "hash": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-Zn343k/satXGWEJjh56+Y/Uxtsl1aCyUtq0OPxznwx/ZGG+Sw2wN/ZEnePEh0OB1/yZ2uWAFRHVSA2fYPrmdhQ==" + } + }, + "npm:@actions/http-client@2.1.0": { + "type": "npm", + "name": "npm:@actions/http-client@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@actions/http-client", + "hash": "sha512-BonhODnXr3amchh4qkmjPMUO8mFi/zLaaCeCAJZqch8iQqyDnVIkySjB38VHAC8IJ+bnlgfOqlhpyCUZHlQsqw==" + } + }, + "npm:@humanwhocodes/object-schema": { + "type": "npm", + "name": "npm:@humanwhocodes/object-schema", + "data": { + "version": "1.2.1", + "packageName": "@humanwhocodes/object-schema", + "hash": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + } + }, + "npm:git-up": { + "type": "npm", + "name": "npm:git-up", + "data": { + "version": "7.0.0", + "packageName": "git-up", + "hash": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==" + } + }, + "npm:is-root": { + "type": "npm", + "name": "npm:is-root", + "data": { + "version": "2.1.0", + "packageName": "is-root", + "hash": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + } + }, + "npm:@microsoft/tsdoc": { + "type": "npm", + "name": "npm:@microsoft/tsdoc", + "data": { + "version": "0.14.2", + "packageName": "@microsoft/tsdoc", + "hash": "sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==" + } + }, + "npm:doctrine@3.0.0": { + "type": "npm", + "name": "npm:doctrine@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.5.0", + "packageName": "esquery", + "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.2", + "packageName": "is-shared-array-buffer", + "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + } + }, + "npm:@hutson/parse-repository-url": { + "type": "npm", + "name": "npm:@hutson/parse-repository-url", + "data": { + "version": "3.0.2", + "packageName": "@hutson/parse-repository-url", + "hash": "sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==" + } + }, + "npm:@phenomnomnominal/tsquery": { + "type": "npm", + "name": "npm:@phenomnomnominal/tsquery", + "data": { + "version": "5.0.1", + "packageName": "@phenomnomnominal/tsquery", + "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" + } + }, + "npm:@types/mdast": { + "type": "npm", + "name": "npm:@types/mdast", + "data": { + "version": "3.0.12", + "packageName": "@types/mdast", + "hash": "sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==" + } + }, + "npm:node-domexception": { + "type": "npm", + "name": "npm:node-domexception", + "data": { + "version": "1.0.0", + "packageName": "node-domexception", + "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" + } + }, + "npm:remark-emoji": { + "type": "npm", + "name": "npm:remark-emoji", + "data": { + "version": "2.2.0", + "packageName": "remark-emoji", + "hash": "sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-overridden", + "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + } + }, + "npm:react-fast-compare": { + "type": "npm", + "name": "npm:react-fast-compare", + "data": { + "version": "3.2.0", + "packageName": "react-fast-compare", + "hash": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:@algolia/autocomplete-core": { + "type": "npm", + "name": "npm:@algolia/autocomplete-core", + "data": { + "version": "1.7.1", + "packageName": "@algolia/autocomplete-core", + "hash": "sha512-eiZw+fxMzNQn01S8dA/hcCpoWCOCwcIIEUtHHdzN5TGB3IpzLbuhqFeTfh2OUhhgkE8Uo17+wH+QJ/wYyQmmzg==" + } + }, + "npm:semver@5.7.1": { + "type": "npm", + "name": "npm:semver@5.7.1", + "data": { + "version": "5.7.1", + "packageName": "semver", + "hash": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.1", + "packageName": "@types/retry", + "hash": "sha512-xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==" + } + }, + "npm:convert-source-map@2.0.0": { + "type": "npm", + "name": "npm:convert-source-map@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "npm:is-generator-fn": { + "type": "npm", + "name": "npm:is-generator-fn", + "data": { + "version": "2.1.0", + "packageName": "is-generator-fn", + "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + } + }, + "npm:@cspell/dict-rust": { + "type": "npm", + "name": "npm:@cspell/dict-rust", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-rust", + "hash": "sha512-xJSSzHDK2z6lSVaOmMxl3PTOtfoffaxMo7fTcbZUF+SCJzfKbO6vnN9TCGX2sx1RHFDz66Js6goz6SAZQdOwaw==" + } + }, + "npm:@babel/plugin-transform-react-display-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-display-name", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-react-display-name", + "hash": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.0.1", + "packageName": "gopd", + "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "5.1.0", + "packageName": "postcss-svgo", + "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" + } + }, + "npm:update-notifier": { + "type": "npm", + "name": "npm:update-notifier", + "data": { + "version": "5.1.0", + "packageName": "update-notifier", + "hash": "sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==" + } + }, + "npm:babel-jest@29.6.2": { + "type": "npm", + "name": "npm:babel-jest@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "babel-jest", + "hash": "sha512-BYCzImLos6J3BH/+HvUCHG1dTf2MzmAB4jaVxHV+29RZLjR29XuYTmsf2sdDwkrb+FczkGo3kOhE7ga6sI0P4A==" + } + }, + "npm:locate-path@3.0.0": { + "type": "npm", + "name": "npm:locate-path@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "locate-path", + "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + } + }, + "npm:@babel/plugin-transform-literals@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-literals@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-literals", + "hash": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:is-npm": { + "type": "npm", + "name": "npm:is-npm", + "data": { + "version": "5.0.0", + "packageName": "is-npm", + "hash": "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==" + } + }, + "npm:is-regexp": { + "type": "npm", + "name": "npm:is-regexp", + "data": { + "version": "1.0.0", + "packageName": "is-regexp", + "hash": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + } + }, + "npm:json-stringify-safe": { + "type": "npm", + "name": "npm:json-stringify-safe", + "data": { + "version": "5.0.1", + "packageName": "json-stringify-safe", + "hash": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + } + }, + "npm:@types/jest@29.5.3": { + "type": "npm", + "name": "npm:@types/jest@29.5.3", + "data": { + "version": "29.5.3", + "packageName": "@types/jest", + "hash": "sha512-1Nq7YrO/vJE/FYnqYyw0FS8LdrjExSgIiHyKg7xPpn+yi8Q4huZryKnkJatN1ZRH89Kw2v33/8ZMB7DuZeSLlA==" + } + }, + "npm:idb": { + "type": "npm", + "name": "npm:idb", + "data": { + "version": "7.1.0", + "packageName": "idb", + "hash": "sha512-Wsk07aAxDsntgYJY4h0knZJuTxM73eQ4reRAO+Z1liOh8eMCJ/MoDS8fCui1vGT9mnjtl1sOu3I2i/W1swPYZg==" + } + }, + "npm:lodash.truncate": { + "type": "npm", + "name": "npm:lodash.truncate", + "data": { + "version": "4.4.2", + "packageName": "lodash.truncate", + "hash": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==" + } + }, + "npm:mime@1.6.0": { + "type": "npm", + "name": "npm:mime@1.6.0", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.3", + "packageName": "defaults", + "hash": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=" + } + }, + "npm:@algolia/cache-common": { + "type": "npm", + "name": "npm:@algolia/cache-common", + "data": { + "version": "4.13.1", + "packageName": "@algolia/cache-common", + "hash": "sha512-7Vaf6IM4L0Jkl3sYXbwK+2beQOgVJ0mKFbz/4qSxKd1iy2Sp77uTAazcX+Dlexekg1fqGUOSO7HS4Sx47ZJmjA==" + } + }, + "npm:builtins@1.0.3": { + "type": "npm", + "name": "npm:builtins@1.0.3", + "data": { + "version": "1.0.3", + "packageName": "builtins", + "hash": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=" + } + }, + "npm:conventional-commits-parser": { + "type": "npm", + "name": "npm:conventional-commits-parser", + "data": { + "version": "4.0.0", + "packageName": "conventional-commits-parser", + "hash": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==" + } + }, + "npm:conventional-recommended-bump": { + "type": "npm", + "name": "npm:conventional-recommended-bump", + "data": { + "version": "7.0.1", + "packageName": "conventional-recommended-bump", + "hash": "sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==" + } + }, + "npm:cosmiconfig@8.0.0": { + "type": "npm", + "name": "npm:cosmiconfig@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "3.1.0", + "packageName": "@npmcli/fs", + "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:regexpu-core": { + "type": "npm", + "name": "npm:regexpu-core", + "data": { + "version": "5.3.2", + "packageName": "regexpu-core", + "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" + } + }, + "npm:widest-line@3.1.0": { + "type": "npm", + "name": "npm:widest-line@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "widest-line", + "hash": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:ci-info@2.0.0": { + "type": "npm", + "name": "npm:ci-info@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ci-info", + "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "10.1.0", + "packageName": "fs-extra", + "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" + } + }, + "npm:is-yarn-global": { + "type": "npm", + "name": "npm:is-yarn-global", + "data": { + "version": "0.3.0", + "packageName": "is-yarn-global", + "hash": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" + } + }, + "npm:workbox-core": { + "type": "npm", + "name": "npm:workbox-core", + "data": { + "version": "6.5.4", + "packageName": "workbox-core", + "hash": "sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==" + } + }, + "npm:expect@29.6.2": { + "type": "npm", + "name": "npm:expect@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "expect", + "hash": "sha512-iAErsLxJ8C+S02QbLAwgSGSezLQK+XXRDt8IuFXFpwCNw2ECmzZSmjKcCaFVp5VRMk+WAvz6h6jokzEzBFZEuA==" + } + }, + "npm:@babel/plugin-transform-sticky-regex@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-sticky-regex@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-sticky-regex", + "hash": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==" + } + }, + "npm:tsutils": { + "type": "npm", + "name": "npm:tsutils", + "data": { + "version": "3.21.0", + "packageName": "tsutils", + "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + } + }, + "npm:@sigstore/tuf": { + "type": "npm", + "name": "npm:@sigstore/tuf", + "data": { + "version": "1.0.0", + "packageName": "@sigstore/tuf", + "hash": "sha512-bLzi9GeZgMCvjJeLUIfs8LJYCxrPRA8IXQkzUtaFKKVPTz0mucRyqFcV2U20yg9K+kYAD0YSitzGfRZCFLjdHQ==" + } + }, + "npm:is-ci@2.0.0": { + "type": "npm", + "name": "npm:is-ci@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-ci", + "hash": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" + } + }, + "npm:hast-util-parse-selector": { + "type": "npm", + "name": "npm:hast-util-parse-selector", + "data": { + "version": "2.2.5", + "packageName": "hast-util-parse-selector", + "hash": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==" + } + }, + "npm:cheerio-select": { + "type": "npm", + "name": "npm:cheerio-select", + "data": { + "version": "2.1.0", + "packageName": "cheerio-select", + "hash": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==" + } + }, + "npm:@types/normalize-package-data": { + "type": "npm", + "name": "npm:@types/normalize-package-data", + "data": { + "version": "2.4.1", + "packageName": "@types/normalize-package-data", + "hash": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + }, + "npm:workbox-window": { + "type": "npm", + "name": "npm:workbox-window", + "data": { + "version": "6.5.4", + "packageName": "workbox-window", + "hash": "sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==" + } + }, + "npm:commondir": { + "type": "npm", + "name": "npm:commondir", + "data": { + "version": "1.0.1", + "packageName": "commondir", + "hash": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + } + }, + "npm:global-dirs@0.1.1": { + "type": "npm", + "name": "npm:global-dirs@0.1.1", + "data": { + "version": "0.1.1", + "packageName": "global-dirs", + "hash": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==" + } + }, + "npm:init-package-json": { + "type": "npm", + "name": "npm:init-package-json", + "data": { + "version": "5.0.0", + "packageName": "init-package-json", + "hash": "sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==" + } + }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.1", + "packageName": "handle-thing", + "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + } + }, + "npm:is-extendable": { + "type": "npm", + "name": "npm:is-extendable", + "data": { + "version": "0.1.1", + "packageName": "is-extendable", + "hash": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + }, + "npm:postcss@8.4.27": { + "type": "npm", + "name": "npm:postcss@8.4.27", + "data": { + "version": "8.4.27", + "packageName": "postcss", + "hash": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:react-error-overlay": { + "type": "npm", + "name": "npm:react-error-overlay", + "data": { + "version": "6.0.11", + "packageName": "react-error-overlay", + "hash": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + } + }, + "npm:unist-util-is": { + "type": "npm", + "name": "npm:unist-util-is", + "data": { + "version": "4.1.0", + "packageName": "unist-util-is", + "hash": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==" + } + }, + "npm:write-pkg": { + "type": "npm", + "name": "npm:write-pkg", + "data": { + "version": "4.0.0", + "packageName": "write-pkg", + "hash": "sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==" + } + }, + "npm:stop-iteration-iterator": { + "type": "npm", + "name": "npm:stop-iteration-iterator", + "data": { + "version": "1.0.0", + "packageName": "stop-iteration-iterator", + "hash": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==" + } + }, + "npm:ansi-colors": { + "type": "npm", + "name": "npm:ansi-colors", + "data": { + "version": "4.1.1", + "packageName": "ansi-colors", + "hash": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" + } + }, + "npm:@octokit/request-error@2.1.0": { + "type": "npm", + "name": "npm:@octokit/request-error@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@octokit/request-error", + "hash": "sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==" + } + }, + "npm:@types/is-glob@4.0.2": { + "type": "npm", + "name": "npm:@types/is-glob@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "@types/is-glob", + "hash": "sha512-4j5G9Y5jljDSICQ1R2f/Rcyoj6DZmYGneny+p/cDkjep0rkqNg0W73Ty0bVjMUTZgLXHf8oiMjg1XC3CDwCz+g==" + } + }, + "npm:@types/resolve": { + "type": "npm", + "name": "npm:@types/resolve", + "data": { + "version": "1.17.1", + "packageName": "@types/resolve", + "hash": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + } + }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.2.0", + "packageName": "binary-extensions", + "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + } + }, + "npm:loader-utils@3.2.0": { + "type": "npm", + "name": "npm:loader-utils@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "loader-utils", + "hash": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==" + } + }, + "npm:@docusaurus/plugin-sitemap@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-sitemap@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-sitemap", + "hash": "sha512-lZx+ijt/+atQ3FVE8FOHV/+X3kuok688OydDXrqKRJyXBJZKgGjA2Qa8RjQ4f27V2woaXhtnyrdPop/+OjVMRg==" + } + }, + "npm:ansi-regex@3.0.1": { + "type": "npm", + "name": "npm:ansi-regex@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "ansi-regex", + "hash": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.4", + "packageName": "typed-array-length", + "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" + } + }, + "npm:@octokit/plugin-rest-endpoint-methods@5.16.2": { + "type": "npm", + "name": "npm:@octokit/plugin-rest-endpoint-methods@5.16.2", + "data": { + "version": "5.16.2", + "packageName": "@octokit/plugin-rest-endpoint-methods", + "hash": "sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==" + } + }, + "npm:configstore@5.0.1": { + "type": "npm", + "name": "npm:configstore@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "configstore", + "hash": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.0", + "packageName": "pump", + "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + } + }, + "npm:diff@5.0.0": { + "type": "npm", + "name": "npm:diff@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "diff", + "hash": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==" + } + }, + "npm:p-timeout": { + "type": "npm", + "name": "npm:p-timeout", + "data": { + "version": "3.2.0", + "packageName": "p-timeout", + "hash": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==" + } + }, + "npm:handlebars": { + "type": "npm", + "name": "npm:handlebars", + "data": { + "version": "4.7.7", + "packageName": "handlebars", + "hash": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "4.0.0", + "packageName": "make-dir", + "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" + } + }, + "npm:@algolia/requester-browser-xhr": { + "type": "npm", + "name": "npm:@algolia/requester-browser-xhr", + "data": { + "version": "4.13.1", + "packageName": "@algolia/requester-browser-xhr", + "hash": "sha512-oa0CKr1iH6Nc7CmU6RE7TnXMjHnlyp7S80pP/LvZVABeJHX3p/BcSCKovNYWWltgTxUg0U1o+2uuy8BpMKljwA==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + }, + "npm:html-escaper": { + "type": "npm", + "name": "npm:html-escaper", + "data": { + "version": "2.0.2", + "packageName": "html-escaper", + "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + } + }, + "npm:json-schema-traverse@1.0.0": { + "type": "npm", + "name": "npm:json-schema-traverse@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:flatted@3.2.7": { + "type": "npm", + "name": "npm:flatted@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "flatted", + "hash": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" + } + }, + "npm:@esbuild/linux-ppc64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==" + } + }, + "npm:@svgr/babel-plugin-svg-em-dimensions": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-svg-em-dimensions", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-svg-em-dimensions", + "hash": "sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==" + } + }, + "npm:camelcase-keys@7.0.2": { + "type": "npm", + "name": "npm:camelcase-keys@7.0.2", + "data": { + "version": "7.0.2", + "packageName": "camelcase-keys", + "hash": "sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==" + } + }, + "npm:filesize": { + "type": "npm", + "name": "npm:filesize", + "data": { + "version": "8.0.7", + "packageName": "filesize", + "hash": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==" + } + }, + "npm:url-parse-lax": { + "type": "npm", + "name": "npm:url-parse-lax", + "data": { + "version": "3.0.0", + "packageName": "url-parse-lax", + "hash": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:eslint-plugin-react-hooks": { + "type": "npm", + "name": "npm:eslint-plugin-react-hooks", + "data": { + "version": "4.6.0", + "packageName": "eslint-plugin-react-hooks", + "hash": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==" + } + }, + "npm:p-queue": { + "type": "npm", + "name": "npm:p-queue", + "data": { + "version": "6.6.2", + "packageName": "p-queue", + "hash": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==" + } + }, + "npm:css-functions-list@3.2.0": { + "type": "npm", + "name": "npm:css-functions-list@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "css-functions-list", + "hash": "sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==" + } + }, + "npm:@octokit/openapi-types": { + "type": "npm", + "name": "npm:@octokit/openapi-types", + "data": { + "version": "18.0.0", + "packageName": "@octokit/openapi-types", + "hash": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==" + } + }, + "npm:is-stream@2.0.0": { + "type": "npm", + "name": "npm:is-stream@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-stream", + "hash": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + } + }, + "npm:eslint-plugin-import@2.28.0": { + "type": "npm", + "name": "npm:eslint-plugin-import@2.28.0", + "data": { + "version": "2.28.0", + "packageName": "eslint-plugin-import", + "hash": "sha512-B8s/n+ZluN7sxj9eUf7/pRFERX0r5bnFA2dCaLHy2ZeaQEAz0k+ZZkFWRFHJAqxfxQDx6KLv9LeIki7cFdwW+Q==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + } + }, + "npm:pluralize": { + "type": "npm", + "name": "npm:pluralize", + "data": { + "version": "8.0.0", + "packageName": "pluralize", + "hash": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==" + } + }, + "npm:cspell-gitignore@6.31.2": { + "type": "npm", + "name": "npm:cspell-gitignore@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell-gitignore", + "hash": "sha512-B1i8aiXCIbb/08u0K3xnDyXtg0qD+lb5B2itOOXi7KXlPkKvIuN4hWyXxhVDweWyYWEzyXD5wBpPrqICVrStHQ==" + } + }, + "npm:@algolia/client-analytics": { + "type": "npm", + "name": "npm:@algolia/client-analytics", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-analytics", + "hash": "sha512-iOS1JBqh7xaL5x00M5zyluZ9+9Uy9GqtYHv/2SMuzNW1qP7/0doz1lbcsP3S7KBbZANJTFHUOfuqyRLPk91iFA==" + } + }, + "npm:just-extend": { + "type": "npm", + "name": "npm:just-extend", + "data": { + "version": "4.2.1", + "packageName": "just-extend", + "hash": "sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==" + } + }, + "npm:esbuild@0.18.17": { + "type": "npm", + "name": "npm:esbuild@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "esbuild", + "hash": "sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==" + } + }, + "npm:utils-merge": { + "type": "npm", + "name": "npm:utils-merge", + "data": { + "version": "1.0.1", + "packageName": "utils-merge", + "hash": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==" + } + }, + "npm:entities@3.0.1": { + "type": "npm", + "name": "npm:entities@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "entities", + "hash": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "4.18.1", + "packageName": "express", + "hash": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==" + } + }, + "npm:jest-runner@29.6.2": { + "type": "npm", + "name": "npm:jest-runner@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-runner", + "hash": "sha512-wXOT/a0EspYgfMiYHxwGLPCZfC0c38MivAlb2lMEAlwHINKemrttu1uSbcGbfDV31sFaPWnWJPmb2qXM8pqZ4w==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:cross-fetch@3.1.5": { + "type": "npm", + "name": "npm:cross-fetch@3.1.5", + "data": { + "version": "3.1.5", + "packageName": "cross-fetch", + "hash": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.2.4", + "packageName": "sax", + "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.0.2", + "packageName": "source-map-js", + "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:babel-plugin-dynamic-import-node": { + "type": "npm", + "name": "npm:babel-plugin-dynamic-import-node", + "data": { + "version": "2.3.3", + "packageName": "babel-plugin-dynamic-import-node", + "hash": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==" + } + }, + "npm:is-hexadecimal": { + "type": "npm", + "name": "npm:is-hexadecimal", + "data": { + "version": "1.0.4", + "packageName": "is-hexadecimal", + "hash": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==" + } + }, + "npm:jest-util@29.6.2": { + "type": "npm", + "name": "npm:jest-util@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-util", + "hash": "sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w==" + } + }, + "npm:minipass-json-stream": { + "type": "npm", + "name": "npm:minipass-json-stream", + "data": { + "version": "1.0.1", + "packageName": "minipass-json-stream", + "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" + } + }, + "npm:v8-compile-cache": { + "type": "npm", + "name": "npm:v8-compile-cache", + "data": { + "version": "2.3.0", + "packageName": "v8-compile-cache", + "hash": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + } + }, + "npm:react-base16-styling": { + "type": "npm", + "name": "npm:react-base16-styling", + "data": { + "version": "0.6.0", + "packageName": "react-base16-styling", + "hash": "sha1-7yFW1mz0E5aVyKFniGy2nqZgeSw=" + } + }, + "npm:hastscript": { + "type": "npm", + "name": "npm:hastscript", + "data": { + "version": "6.0.0", + "packageName": "hastscript", + "hash": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==" + } + }, + "npm:regenerator-runtime@0.13.11": { + "type": "npm", + "name": "npm:regenerator-runtime@0.13.11", + "data": { + "version": "0.13.11", + "packageName": "regenerator-runtime", + "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:protocols": { + "type": "npm", + "name": "npm:protocols", + "data": { + "version": "2.0.1", + "packageName": "protocols", + "hash": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" + } + }, + "npm:path-to-regexp@2.2.1": { + "type": "npm", + "name": "npm:path-to-regexp@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "path-to-regexp", + "hash": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=" + } + }, + "npm:unist-util-visit": { + "type": "npm", + "name": "npm:unist-util-visit", + "data": { + "version": "2.0.3", + "packageName": "unist-util-visit", + "hash": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==" + } + }, + "npm:@ungap/promise-all-settled@1.1.2": { + "type": "npm", + "name": "npm:@ungap/promise-all-settled@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "@ungap/promise-all-settled", + "hash": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==" + } + }, + "npm:p-cancelable": { + "type": "npm", + "name": "npm:p-cancelable", + "data": { + "version": "1.1.0", + "packageName": "p-cancelable", + "hash": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==" + } + }, + "npm:p-try@1.0.0": { + "type": "npm", + "name": "npm:p-try@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "p-try", + "hash": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "3.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + } + }, + "npm:signal-exit@4.0.2": { + "type": "npm", + "name": "npm:signal-exit@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "signal-exit", + "hash": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==" + } + }, + "npm:@nrwl/linter@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/linter@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/linter", + "hash": "sha512-miUER7nOqEuAty8JKul0WxRsbRem2zNuZhG6a9MW6Ss2ny9uBeGKrElts+nDFGaL7eXQJgtoB0ChRfp06pKSoA==" + } + }, + "npm:get-own-enumerable-property-symbols": { + "type": "npm", + "name": "npm:get-own-enumerable-property-symbols", + "data": { + "version": "3.0.2", + "packageName": "get-own-enumerable-property-symbols", + "hash": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + } + }, + "npm:jest-leak-detector@29.6.2": { + "type": "npm", + "name": "npm:jest-leak-detector@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-leak-detector", + "hash": "sha512-aNqYhfp5uYEO3tdWMb2bfWv6f0b4I0LOxVRpnRLAeque2uqOVVMLh6khnTcE2qJ5wAKop0HcreM1btoysD6bPQ==" + } + }, + "npm:minimist-options": { + "type": "npm", + "name": "npm:minimist-options", + "data": { + "version": "4.1.0", + "packageName": "minimist-options", + "hash": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "16.2.0", + "packageName": "yargs", + "hash": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==" + } + }, + "npm:hast-to-hyperscript": { + "type": "npm", + "name": "npm:hast-to-hyperscript", + "data": { + "version": "9.0.1", + "packageName": "hast-to-hyperscript", + "hash": "sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==" + } + }, + "npm:asap": { + "type": "npm", + "name": "npm:asap", + "data": { + "version": "2.0.6", + "packageName": "asap", + "hash": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + } + }, + "npm:cacache@16.1.0": { + "type": "npm", + "name": "npm:cacache@16.1.0", + "data": { + "version": "16.1.0", + "packageName": "cacache", + "hash": "sha512-Pk4aQkwCW82A4jGKFvcGkQFqZcMspfP9YWq9Pr87/ldDvlWf718zeI6KWCdKt/jeihu6BytHRUicJPB1K2k8EQ==" + } + }, + "npm:git-semver-tags": { + "type": "npm", + "name": "npm:git-semver-tags", + "data": { + "version": "5.0.0", + "packageName": "git-semver-tags", + "hash": "sha512-fZ+tmZ1O5aXW/T5nLzZLbxWAHdQTLLXalOECMNAmhoEQSfqZjtaeMjpsXH4C5qVhrICTkVQeQFujB1lKzIHljA==" + } + }, + "npm:jest-snapshot@29.6.2": { + "type": "npm", + "name": "npm:jest-snapshot@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-snapshot", + "hash": "sha512-1OdjqvqmRdGNvWXr/YZHuyhh5DeaLp1p/F8Tht/MrMw4Kr1Uu/j4lRG+iKl1DAqUJDWxtQBMk41Lnf/JETYBRA==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.0.0", + "packageName": "bytes", + "hash": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + } + }, + "npm:node-fetch@2.6.12": { + "type": "npm", + "name": "npm:node-fetch@2.6.12", + "data": { + "version": "2.6.12", + "packageName": "node-fetch", + "hash": "sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.1", + "packageName": "fast-glob", + "hash": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==" + } + }, + "npm:write-file-atomic@3.0.3": { + "type": "npm", + "name": "npm:write-file-atomic@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "write-file-atomic", + "hash": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" + } + }, + "npm:@babel/code-frame@7.22.5": { + "type": "npm", + "name": "npm:@babel/code-frame@7.22.5", + "data": { + "version": "7.22.5", + "packageName": "@babel/code-frame", + "hash": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==" + } + }, + "npm:npm-registry-fetch": { + "type": "npm", + "name": "npm:npm-registry-fetch", + "data": { + "version": "14.0.5", + "packageName": "npm-registry-fetch", + "hash": "sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==" + } + }, + "npm:@types/lodash@4.14.192": { + "type": "npm", + "name": "npm:@types/lodash@4.14.192", + "data": { + "version": "4.14.192", + "packageName": "@types/lodash", + "hash": "sha512-km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "3.0.1", + "packageName": "minipass-fetch", + "hash": "sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:web-streams-polyfill": { + "type": "npm", + "name": "npm:web-streams-polyfill", + "data": { + "version": "3.2.1", + "packageName": "web-streams-polyfill", + "hash": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==" + } + }, + "npm:@svgr/babel-preset": { + "type": "npm", + "name": "npm:@svgr/babel-preset", + "data": { + "version": "6.2.0", + "packageName": "@svgr/babel-preset", + "hash": "sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==" + } + }, + "npm:wide-align": { + "type": "npm", + "name": "npm:wide-align", + "data": { + "version": "1.1.5", + "packageName": "wide-align", + "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" + } + }, + "npm:domhandler@4.2.2": { + "type": "npm", + "name": "npm:domhandler@4.2.2", + "data": { + "version": "4.2.2", + "packageName": "domhandler", + "hash": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==" + } + }, + "npm:node-fetch@2.6.7": { + "type": "npm", + "name": "npm:node-fetch@2.6.7", + "data": { + "version": "2.6.7", + "packageName": "node-fetch", + "hash": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.10.3", + "packageName": "qs", + "hash": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==" + } + }, + "npm:@algolia/client-account": { + "type": "npm", + "name": "npm:@algolia/client-account", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-account", + "hash": "sha512-TFLiZ1KqMiir3FNHU+h3b0MArmyaHG+eT8Iojio6TdpeFcAQ1Aiy+2gb3SZk3+pgRJa/BxGmDkRUwE5E/lv3QQ==" + } + }, + "npm:@docusaurus/utils-common@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/utils-common@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/utils-common", + "hash": "sha512-bCVGdZU+z/qVcIiEQdyx0K13OC5mYwxhSuDUR95oFbKVuXYRrTVrwZIqQljuo1fyJvFTKHiL9L9skQOPokuFNQ==" + } + }, + "npm:marked": { + "type": "npm", + "name": "npm:marked", + "data": { + "version": "5.1.2", + "packageName": "marked", + "hash": "sha512-ahRPGXJpjMjwSOlBoTMZAK7ATXkli5qCPxZ21TG44rx1KEo44bii4ekgTDQPNRQ4Kh7JMb9Ub1PVk1NxRSsorg==" + } + }, + "npm:yargs@17.7.1": { + "type": "npm", + "name": "npm:yargs@17.7.1", + "data": { + "version": "17.7.1", + "packageName": "yargs", + "hash": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==" + } + }, + "npm:css-select@5.1.0": { + "type": "npm", + "name": "npm:css-select@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "css-select", + "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "5.1.1", + "packageName": "get-port", + "hash": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:parent-module@2.0.0": { + "type": "npm", + "name": "npm:parent-module@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "parent-module", + "hash": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==" + } + }, + "npm:serialize-javascript@4.0.0": { + "type": "npm", + "name": "npm:serialize-javascript@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "serialize-javascript", + "hash": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==" + } + }, + "npm:package-json": { + "type": "npm", + "name": "npm:package-json", + "data": { + "version": "6.5.0", + "packageName": "package-json", + "hash": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==" + } + }, + "npm:@cspell/dict-companies@3.0.17": { + "type": "npm", + "name": "npm:@cspell/dict-companies@3.0.17", + "data": { + "version": "3.0.17", + "packageName": "@cspell/dict-companies", + "hash": "sha512-vo1jbozgZWSzz2evIL26kLd35tVb+5kW/UTvTzAwaWutSWRloRyKx38nj2CaLJ2IFxBdiATteCFGTzKCvJJl6A==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:JSONStream": { + "type": "npm", + "name": "npm:JSONStream", + "data": { + "version": "1.3.5", + "packageName": "JSONStream", + "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" + } + }, + "npm:history": { + "type": "npm", + "name": "npm:history", + "data": { + "version": "4.10.1", + "packageName": "history", + "hash": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" + } + }, + "npm:@algolia/client-personalization": { + "type": "npm", + "name": "npm:@algolia/client-personalization", + "data": { + "version": "4.13.1", + "packageName": "@algolia/client-personalization", + "hash": "sha512-1CqrOW1ypVrB4Lssh02hP//YxluoIYXAQCpg03L+/RiXJlCs+uIqlzC0ctpQPmxSlTK6h07kr50JQoYH/TIM9w==" + } + }, + "npm:@octokit/graphql@4.8.0": { + "type": "npm", + "name": "npm:@octokit/graphql@4.8.0", + "data": { + "version": "4.8.0", + "packageName": "@octokit/graphql", + "hash": "sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==" + } + }, + "npm:minipass-sized": { + "type": "npm", + "name": "npm:minipass-sized", + "data": { + "version": "1.0.3", + "packageName": "minipass-sized", + "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" + } + }, + "npm:dedent": { + "type": "npm", + "name": "npm:dedent", + "data": { + "version": "0.7.0", + "packageName": "dedent", + "hash": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + } + }, + "npm:@babel/plugin-proposal-object-rest-spread@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-object-rest-spread", + "hash": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==" + } + }, + "npm:chokidar@3.5.1": { + "type": "npm", + "name": "npm:chokidar@3.5.1", + "data": { + "version": "3.5.1", + "packageName": "chokidar", + "hash": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==" + } + }, + "npm:chalk@5.2.0": { + "type": "npm", + "name": "npm:chalk@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "chalk", + "hash": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==" + } + }, + "npm:@babel/plugin-syntax-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-chaining", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-chaining", + "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "11.1.1", + "packageName": "make-fetch-happen", + "hash": "sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==" + } + }, + "npm:debug@3.2.7": { + "type": "npm", + "name": "npm:debug@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "debug", + "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + } + }, + "npm:cli-boxes": { + "type": "npm", + "name": "npm:cli-boxes", + "data": { + "version": "3.0.0", + "packageName": "cli-boxes", + "hash": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==" + } + }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, + "npm:yaml@2.3.1": { + "type": "npm", + "name": "npm:yaml@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "yaml", + "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" + } + }, + "npm:inflight": { + "type": "npm", + "name": "npm:inflight", + "data": { + "version": "1.0.6", + "packageName": "inflight", + "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:tar-stream": { + "type": "npm", + "name": "npm:tar-stream", + "data": { + "version": "2.2.0", + "packageName": "tar-stream", + "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==" + } + }, + "npm:mdn-data@2.0.14": { + "type": "npm", + "name": "npm:mdn-data@2.0.14", + "data": { + "version": "2.0.14", + "packageName": "mdn-data", + "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:gensequence@5.0.2": { + "type": "npm", + "name": "npm:gensequence@5.0.2", + "data": { + "version": "5.0.2", + "packageName": "gensequence", + "hash": "sha512-JlKEZnFc6neaeSVlkzBGGgkIoIaSxMgvdamRoPN8r3ozm2r9dusqxeKqYQ7lhzmj2UhFQP8nkyfCaiLQxiLrDA==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:globjoin": { + "type": "npm", + "name": "npm:globjoin", + "data": { + "version": "0.1.4", + "packageName": "globjoin", + "hash": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==" + } + }, + "npm:@octokit/types@10.0.0": { + "type": "npm", + "name": "npm:@octokit/types@10.0.0", + "data": { + "version": "10.0.0", + "packageName": "@octokit/types", + "hash": "sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==" + } + }, + "npm:known-css-properties@0.27.0": { + "type": "npm", + "name": "npm:known-css-properties@0.27.0", + "data": { + "version": "0.27.0", + "packageName": "known-css-properties", + "hash": "sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "1.6.18", + "packageName": "type-is", + "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + } + }, + "npm:hoist-non-react-statics": { + "type": "npm", + "name": "npm:hoist-non-react-statics", + "data": { + "version": "3.3.2", + "packageName": "hoist-non-react-statics", + "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" + } + }, + "npm:regenerator-transform@0.15.1": { + "type": "npm", + "name": "npm:regenerator-transform@0.15.1", + "data": { + "version": "0.15.1", + "packageName": "regenerator-transform", + "hash": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==" + } + }, + "npm:p-pipe": { + "type": "npm", + "name": "npm:p-pipe", + "data": { + "version": "3.1.0", + "packageName": "p-pipe", + "hash": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==" + } + }, + "npm:node-int64": { + "type": "npm", + "name": "npm:node-int64", + "data": { + "version": "0.4.0", + "packageName": "node-int64", + "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.18": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.18", + "data": { + "version": "0.3.18", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.0", + "packageName": "array-buffer-byte-length", + "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" + } + }, + "npm:make-error": { + "type": "npm", + "name": "npm:make-error", + "data": { + "version": "1.3.6", + "packageName": "make-error", + "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.0", + "packageName": "typed-array-buffer", + "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:dargs": { + "type": "npm", + "name": "npm:dargs", + "data": { + "version": "7.0.0", + "packageName": "dargs", + "hash": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==" + } + }, + "npm:ansi-escapes": { + "type": "npm", + "name": "npm:ansi-escapes", + "data": { + "version": "4.3.2", + "packageName": "ansi-escapes", + "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:istanbul-lib-source-maps": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps", + "data": { + "version": "4.0.1", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" + } + }, + "npm:html-tags": { + "type": "npm", + "name": "npm:html-tags", + "data": { + "version": "3.3.1", + "packageName": "html-tags", + "hash": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:@docusaurus/plugin-content-pages@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/plugin-content-pages@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/plugin-content-pages", + "hash": "sha512-/UjuH/76KLaUlL+o1OvyORynv6FURzjurSjvn2lbWTFc4tpYY2qLYTlKpTCBVPhlLUQsfyFnshEJDLmPneq2oA==" + } + }, + "npm:@istanbuljs/load-nyc-config": { + "type": "npm", + "name": "npm:@istanbuljs/load-nyc-config", + "data": { + "version": "1.1.0", + "packageName": "@istanbuljs/load-nyc-config", + "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + } + }, + "npm:node-addon-api": { + "type": "npm", + "name": "npm:node-addon-api", + "data": { + "version": "3.2.1", + "packageName": "node-addon-api", + "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:workbox-cacheable-response": { + "type": "npm", + "name": "npm:workbox-cacheable-response", + "data": { + "version": "6.5.4", + "packageName": "workbox-cacheable-response", + "hash": "sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==" + } + }, + "npm:rtlcss": { + "type": "npm", + "name": "npm:rtlcss", + "data": { + "version": "3.5.0", + "packageName": "rtlcss", + "hash": "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==" + } + }, + "npm:@octokit/plugin-paginate-rest@2.21.3": { + "type": "npm", + "name": "npm:@octokit/plugin-paginate-rest@2.21.3", + "data": { + "version": "2.21.3", + "packageName": "@octokit/plugin-paginate-rest", + "hash": "sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.1", + "packageName": "@types/serve-index", + "hash": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==" + } + }, + "npm:@swc/core-linux-arm-gnueabihf@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-linux-arm-gnueabihf@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-linux-arm-gnueabihf", + "hash": "16027573815195472203" + } + }, + "npm:cspell@6.31.2": { + "type": "npm", + "name": "npm:cspell@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell", + "hash": "sha512-HJcQ8jqL/1N3Mj5dufFnIZCX3ACuRoFTSVY6h3Bo5wBqd2iiJTyeQ1SY9Zymlxtb2KyJ6jQRiFmkWeFx2HVs7w==" + } + }, + "npm:write-file-atomic@4.0.2": { + "type": "npm", + "name": "npm:write-file-atomic@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:browser-stdout": { + "type": "npm", + "name": "npm:browser-stdout", + "data": { + "version": "1.3.1", + "packageName": "browser-stdout", + "hash": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.6", + "packageName": "pirates", + "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + } + }, + "npm:@apideck/better-ajv-errors@0.3.6": { + "type": "npm", + "name": "npm:@apideck/better-ajv-errors@0.3.6", + "data": { + "version": "0.3.6", + "packageName": "@apideck/better-ajv-errors", + "hash": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==" + } + }, + "npm:raw-loader": { + "type": "npm", + "name": "npm:raw-loader", + "data": { + "version": "4.0.2", + "packageName": "raw-loader", + "hash": "sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==" + } + }, + "npm:node-emoji": { + "type": "npm", + "name": "npm:node-emoji", + "data": { + "version": "1.11.0", + "packageName": "node-emoji", + "hash": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==" + } + }, + "npm:@nicolo-ribaudo/eslint-scope-5-internals": { + "type": "npm", + "name": "npm:@nicolo-ribaudo/eslint-scope-5-internals", + "data": { + "version": "5.1.1-v1", + "packageName": "@nicolo-ribaudo/eslint-scope-5-internals", + "hash": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==" + } + }, + "npm:has-unicode": { + "type": "npm", + "name": "npm:has-unicode", + "data": { + "version": "2.0.1", + "packageName": "has-unicode", + "hash": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + } + }, + "npm:es-get-iterator": { + "type": "npm", + "name": "npm:es-get-iterator", + "data": { + "version": "1.1.3", + "packageName": "es-get-iterator", + "hash": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==" + } + }, + "npm:@cspell/dict-node@4.0.2": { + "type": "npm", + "name": "npm:@cspell/dict-node@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "@cspell/dict-node", + "hash": "sha512-FEQJ4TnMcXEFslqBQkXa5HposMoCGsiBv2ux4IZuIXgadXeHKHUHk60iarWpjhzNzQLyN2GD7NoRMd12bK3Llw==" + } + }, + "npm:json-buffer@3.0.0": { + "type": "npm", + "name": "npm:json-buffer@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "json-buffer", + "hash": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" + } + }, + "npm:@docusaurus/theme-classic@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/theme-classic@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/theme-classic", + "hash": "sha512-Rz0wKUa+LTW1PLXmwnf8mn85EBzaGSt6qamqtmnh9Hflkc+EqiYMhtUJeLdV+wsgYq4aG0ANc+bpUDpsUhdnwg==" + } + }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + } + }, + "npm:babel-preset-jest@29.5.0": { + "type": "npm", + "name": "npm:babel-preset-jest@29.5.0", + "data": { + "version": "29.5.0", + "packageName": "babel-preset-jest", + "hash": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==" + } + }, + "npm:@sideway/pinpoint": { + "type": "npm", + "name": "npm:@sideway/pinpoint", + "data": { + "version": "2.0.0", + "packageName": "@sideway/pinpoint", + "hash": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + } + }, + "npm:p-locate@3.0.0": { + "type": "npm", + "name": "npm:p-locate@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-locate", + "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + } + }, + "npm:section-matter": { + "type": "npm", + "name": "npm:section-matter", + "data": { + "version": "1.0.0", + "packageName": "section-matter", + "hash": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:use-isomorphic-layout-effect": { + "type": "npm", + "name": "npm:use-isomorphic-layout-effect", + "data": { + "version": "1.1.1", + "packageName": "use-isomorphic-layout-effect", + "hash": "sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==" + } + }, + "npm:@octokit/endpoint@6.0.12": { + "type": "npm", + "name": "npm:@octokit/endpoint@6.0.12", + "data": { + "version": "6.0.12", + "packageName": "@octokit/endpoint", + "hash": "sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==" + } + }, + "npm:@szmarczak/http-timer": { + "type": "npm", + "name": "npm:@szmarczak/http-timer", + "data": { + "version": "1.1.2", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "2.1.0", + "packageName": "doctrine", + "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + } + }, + "npm:json-schema": { + "type": "npm", + "name": "npm:json-schema", + "data": { + "version": "0.4.0", + "packageName": "json-schema", + "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + } + }, + "npm:@microsoft/api-extractor@7.36.3": { + "type": "npm", + "name": "npm:@microsoft/api-extractor@7.36.3", + "data": { + "version": "7.36.3", + "packageName": "@microsoft/api-extractor", + "hash": "sha512-u0H6362AQq+r55X8drHx4npgkrCfJnMzRRHfQo8PMNKB8TcBnrTLfXhXWi+xnTM6CzlU/netEN8c4bq581Rnrg==" + } + }, + "npm:unified@9.2.2": { + "type": "npm", + "name": "npm:unified@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "unified", + "hash": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==" + } + }, + "npm:@colors/colors": { + "type": "npm", + "name": "npm:@colors/colors", + "data": { + "version": "1.5.0", + "packageName": "@colors/colors", + "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" + } + }, + "npm:supports-color@7.2.0": { + "type": "npm", + "name": "npm:supports-color@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==" + } + }, + "npm:consola": { + "type": "npm", + "name": "npm:consola", + "data": { + "version": "2.15.3", + "packageName": "consola", + "hash": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.1", + "packageName": "is-stream", + "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + } + }, + "npm:@docusaurus/logger@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/logger@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/logger", + "hash": "sha512-5h5ysIIWYIDHyTVd8BjheZmQZmEgWDR54aQ1BX9pjFfpyzFo5puKXKYrYJXbjEHGyVhEzmB9UXwbxGfaZhOjcg==" + } + }, + "npm:read-cmd-shim": { + "type": "npm", + "name": "npm:read-cmd-shim", + "data": { + "version": "4.0.0", + "packageName": "read-cmd-shim", + "hash": "sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==" + } + }, + "npm:domutils@2.8.0": { + "type": "npm", + "name": "npm:domutils@2.8.0", + "data": { + "version": "2.8.0", + "packageName": "domutils", + "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" + } + }, + "npm:babel-plugin-const-enum": { + "type": "npm", + "name": "npm:babel-plugin-const-enum", + "data": { + "version": "1.2.0", + "packageName": "babel-plugin-const-enum", + "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" + } + }, + "npm:@babel/plugin-transform-spread@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-transform-spread@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-transform-spread", + "hash": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.10", + "packageName": "@types/bonjour", + "hash": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==" + } + }, + "npm:cmd-shim": { + "type": "npm", + "name": "npm:cmd-shim", + "data": { + "version": "6.0.1", + "packageName": "cmd-shim", + "hash": "sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==" + } + }, + "npm:function-bind@1.1.1": { + "type": "npm", + "name": "npm:function-bind@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "function-bind", + "hash": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + } + }, + "npm:@babel/plugin-syntax-top-level-await": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-top-level-await", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-top-level-await", + "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + } + }, + "npm:meow@10.1.5": { + "type": "npm", + "name": "npm:meow@10.1.5", + "data": { + "version": "10.1.5", + "packageName": "meow", + "hash": "sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==" + } + }, + "npm:@esbuild/linux-ppc64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==" + } + }, + "npm:@eslint/js@8.46.0": { + "type": "npm", + "name": "npm:@eslint/js@8.46.0", + "data": { + "version": "8.46.0", + "packageName": "@eslint/js", + "hash": "sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==" + } + }, + "npm:@jest/core@29.6.2": { + "type": "npm", + "name": "npm:@jest/core@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/core", + "hash": "sha512-Oj+5B+sDMiMWLhPFF+4/DvHOf+U10rgvCLGPHP8Xlsy/7QxS51aU/eBngudHlJXnaWD5EohAgJ4js+T6pa+zOg==" + } + }, + "npm:@sinonjs/fake-timers": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers", + "data": { + "version": "10.3.0", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.35", + "packageName": "@types/connect", + "hash": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==" + } + }, + "npm:character-reference-invalid": { + "type": "npm", + "name": "npm:character-reference-invalid", + "data": { + "version": "1.1.4", + "packageName": "character-reference-invalid", + "hash": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" + } + }, + "npm:@rollup/pluginutils": { + "type": "npm", + "name": "npm:@rollup/pluginutils", + "data": { + "version": "3.1.0", + "packageName": "@rollup/pluginutils", + "hash": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==" + } + }, + "npm:is-installed-globally": { + "type": "npm", + "name": "npm:is-installed-globally", + "data": { + "version": "0.4.0", + "packageName": "is-installed-globally", + "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" + } + }, + "npm:@babel/plugin-syntax-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-json-strings", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-json-strings", + "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + } + }, + "npm:@cspell/dict-ruby@5.0.0": { + "type": "npm", + "name": "npm:@cspell/dict-ruby@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "@cspell/dict-ruby", + "hash": "sha512-ssb96QxLZ76yPqFrikWxItnCbUKhYXJ2owkoIYzUGNFl2CHSoHCb5a6Zetum9mQ/oUA3gNeUhd28ZUlXs0la2A==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "5.3.0", + "packageName": "chalk", + "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + } + }, + "npm:is-typedarray": { + "type": "npm", + "name": "npm:is-typedarray", + "data": { + "version": "1.0.0", + "packageName": "is-typedarray", + "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + } + }, + "npm:boxen": { + "type": "npm", + "name": "npm:boxen", + "data": { + "version": "6.2.1", + "packageName": "boxen", + "hash": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==" + } + }, + "npm:copy-text-to-clipboard": { + "type": "npm", + "name": "npm:copy-text-to-clipboard", + "data": { + "version": "3.0.1", + "packageName": "copy-text-to-clipboard", + "hash": "sha512-rvVsHrpFcL4F2P8ihsoLdFHmd404+CMg71S756oRSeQgqk51U3kicGdnvfkrxva0xXH92SjGS62B0XIJsbh+9Q==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:is-weakset": { + "type": "npm", + "name": "npm:is-weakset", + "data": { + "version": "2.0.2", + "packageName": "is-weakset", + "hash": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==" + } + }, + "npm:path-type@3.0.0": { + "type": "npm", + "name": "npm:path-type@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-type", + "hash": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==" + } + }, + "npm:@docusaurus/mdx-loader@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/mdx-loader@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/mdx-loader", + "hash": "sha512-4KhUhEavteIAmbBj7LVFnrVYDiU51H5YWW1zY6SmBSte/YLhDutztLTBE0PQl1Grux1jzUJeaSvAzHpTn6JJDQ==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.2.0", + "packageName": "finalhandler", + "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" + } + }, + "npm:@algolia/logger-common": { + "type": "npm", + "name": "npm:@algolia/logger-common", + "data": { + "version": "4.13.1", + "packageName": "@algolia/logger-common", + "hash": "sha512-L6slbL/OyZaAXNtS/1A8SAbOJeEXD5JcZeDCPYDqSTYScfHu+2ePRTDMgUTY4gQ7HsYZ39N1LujOd8WBTmM2Aw==" + } + }, + "npm:rimraf@2.7.1": { + "type": "npm", + "name": "npm:rimraf@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "rimraf", + "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + } + }, + "npm:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + } + }, + "npm:is-whitespace-character": { + "type": "npm", + "name": "npm:is-whitespace-character", + "data": { + "version": "1.0.4", + "packageName": "is-whitespace-character", + "hash": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==" + } + }, + "npm:filelist": { + "type": "npm", + "name": "npm:filelist", + "data": { + "version": "1.0.3", + "packageName": "filelist", + "hash": "sha512-LwjCsruLWQULGYKy7TX0OPtrL9kLpojOFKc5VCTxdFTV7w5zbsgqVKfnkKG7Qgjtq50gKfO56hJv88OfcGb70Q==" + } + }, + "npm:globals@13.20.0": { + "type": "npm", + "name": "npm:globals@13.20.0", + "data": { + "version": "13.20.0", + "packageName": "globals", + "hash": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==" + } + }, + "npm:leven": { + "type": "npm", + "name": "npm:leven", + "data": { + "version": "3.1.0", + "packageName": "leven", + "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "4.0.2", + "packageName": "hosted-git-info", + "hash": "sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.3.0", + "packageName": "punycode", + "hash": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + } + }, + "npm:pure-color": { + "type": "npm", + "name": "npm:pure-color", + "data": { + "version": "1.3.0", + "packageName": "pure-color", + "hash": "sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4=" + } + }, + "npm:@swc/core-darwin-x64@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-darwin-x64@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-darwin-x64", + "hash": "sha512-KKEGE1wXneYXe15fWDRM8/oekd/Q4yAuccA0vWY/7i6nOSPqWYcSDR0nRtR030ltDxWt0rk/eCTmNkrOWrKs3A==" + } + }, + "npm:normalize-package-data@5.0.0": { + "type": "npm", + "name": "npm:normalize-package-data@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "normalize-package-data", + "hash": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==" + } + }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.5.3", + "packageName": "@types/ws", + "hash": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:@cspell/dict-python@4.1.2": { + "type": "npm", + "name": "npm:@cspell/dict-python@4.1.2", + "data": { + "version": "4.1.2", + "packageName": "@cspell/dict-python", + "hash": "sha512-Whcn4K8R0Ux/hcx/P9Fbx6i29GwTaXgT3LTt95AuCnV5RRLrzsqoyZkz851hcg5z4kjUQVMduDl3HECGgW/FNw==" + } + }, + "npm:@docsearch/css": { + "type": "npm", + "name": "npm:@docsearch/css", + "data": { + "version": "3.1.1", + "packageName": "@docsearch/css", + "hash": "sha512-utLgg7E1agqQeqCJn05DWC7XXMk4tMUUnL7MZupcknRu2OzGN13qwey2qA/0NAKkVBGugiWtON0+rlU0QIPojg==" + } + }, + "npm:dateformat": { + "type": "npm", + "name": "npm:dateformat", + "data": { + "version": "3.0.3", + "packageName": "dateformat", + "hash": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.0.3", + "packageName": "has-symbols", + "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + } + }, + "npm:@cspell/dict-docker@1.1.6": { + "type": "npm", + "name": "npm:@cspell/dict-docker@1.1.6", + "data": { + "version": "1.1.6", + "packageName": "@cspell/dict-docker", + "hash": "sha512-zCCiRTZ6EOQpBnSOm0/3rnKW1kCcAUDUA7SxJG3SuH6iZvKi3I8FEg8+O83WQUeXg0SyPNerD9F40JLnnJjJig==" + } + }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, + "npm:@swc/core-darwin-arm64@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-darwin-arm64@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-darwin-arm64", + "hash": "sha512-2rMV4QxM583jXcREfo0MhV3Oj5pgRSfSh/kVrB1twL2rQxOrbzkAPT/8flmygdVoL4f2F7o1EY5lKlYxEBiIKQ==" + } + }, + "npm:@babel/runtime-corejs3": { + "type": "npm", + "name": "npm:@babel/runtime-corejs3", + "data": { + "version": "7.18.9", + "packageName": "@babel/runtime-corejs3", + "hash": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.4", + "packageName": "side-channel", + "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "10.0.1", + "packageName": "ssri", + "hash": "sha512-WVy6di9DlPOeBWEjMScpNipeSX2jIZBGEn5Uuo8Q7aIuFEuDX0pw8RxcOjlD1TWP4obi24ki7m/13+nFpcbXrw==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:trim": { + "type": "npm", + "name": "npm:trim", + "data": { + "version": "0.0.1", + "packageName": "trim", + "hash": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" + } + }, + "npm:@types/ms": { + "type": "npm", + "name": "npm:@types/ms", + "data": { + "version": "0.7.31", + "packageName": "@types/ms", + "hash": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==" + } + }, + "npm:@babel/helper-replace-supers@7.21.5": { + "type": "npm", + "name": "npm:@babel/helper-replace-supers@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/helper-replace-supers", + "hash": "sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==" + } + }, + "npm:jest-regex-util@29.4.3": { + "type": "npm", + "name": "npm:jest-regex-util@29.4.3", + "data": { + "version": "29.4.3", + "packageName": "jest-regex-util", + "hash": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==" + } + }, + "npm:@types/minimatch": { + "type": "npm", + "name": "npm:@types/minimatch", + "data": { + "version": "3.0.5", + "packageName": "@types/minimatch", + "hash": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" + } + }, + "npm:workbox-build": { + "type": "npm", + "name": "npm:workbox-build", + "data": { + "version": "6.5.4", + "packageName": "workbox-build", + "hash": "sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==" + } + }, + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "hash": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==" + } + }, + "npm:@eslint/eslintrc@2.1.1": { + "type": "npm", + "name": "npm:@eslint/eslintrc@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "@eslint/eslintrc", + "hash": "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "4.1.0", + "packageName": "js-yaml", + "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.3", + "packageName": "globalthis", + "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" + } + }, + "npm:jest-resolve@29.6.2": { + "type": "npm", + "name": "npm:jest-resolve@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-resolve", + "hash": "sha512-G/iQUvZWI5e3SMFssc4ug4dH0aZiZpsDq9o1PtXTV1210Ztyb2+w+ZgQkB3iOiC5SmAEzJBOHWz6Hvrd+QnNPw==" + } + }, + "npm:array-ify": { + "type": "npm", + "name": "npm:array-ify", + "data": { + "version": "1.0.0", + "packageName": "array-ify", + "hash": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=" + } + }, + "npm:extend-shallow": { + "type": "npm", + "name": "npm:extend-shallow", + "data": { + "version": "2.0.1", + "packageName": "extend-shallow", + "hash": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" + } + }, + "npm:unicode-canonical-property-names-ecmascript": { + "type": "npm", + "name": "npm:unicode-canonical-property-names-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-canonical-property-names-ecmascript", + "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + } + }, + "npm:state-toggle": { + "type": "npm", + "name": "npm:state-toggle", + "data": { + "version": "1.0.3", + "packageName": "state-toggle", + "hash": "sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==" + } + }, + "npm:object.entries": { + "type": "npm", + "name": "npm:object.entries", + "data": { + "version": "1.1.6", + "packageName": "object.entries", + "hash": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==" + } + }, + "npm:ansi-regex@6.0.1": { + "type": "npm", + "name": "npm:ansi-regex@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "ansi-regex", + "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + }, + "npm:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "4.1.3", + "packageName": "arg", + "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + } + }, + "npm:@docusaurus/utils@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/utils@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/utils", + "hash": "sha512-1lvEZdAQhKNht9aPXPoh69eeKnV0/62ROhQeFKKxmzd0zkcuE/Oc5Gpnt00y/f5bIsmOsYMY7Pqfm/5rteT5GA==" + } + }, + "npm:node-fetch@3.3.1": { + "type": "npm", + "name": "npm:node-fetch@3.3.1", + "data": { + "version": "3.3.1", + "packageName": "node-fetch", + "hash": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==" + } + }, + "npm:clean-regexp": { + "type": "npm", + "name": "npm:clean-regexp", + "data": { + "version": "1.0.0", + "packageName": "clean-regexp", + "hash": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==" + } + }, + "npm:web-namespaces": { + "type": "npm", + "name": "npm:web-namespaces", + "data": { + "version": "1.1.4", + "packageName": "web-namespaces", + "hash": "sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==" + } + }, + "npm:decompress-response": { + "type": "npm", + "name": "npm:decompress-response", + "data": { + "version": "3.3.0", + "packageName": "decompress-response", + "hash": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=" + } + }, + "npm:svg-parser": { + "type": "npm", + "name": "npm:svg-parser", + "data": { + "version": "2.0.4", + "packageName": "svg-parser", + "hash": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + } + }, + "npm:map-obj@1.0.1": { + "type": "npm", + "name": "npm:map-obj@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "map-obj", + "hash": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" + } + }, + "npm:@swc/core-linux-x64-gnu@1.3.74": { + "type": "npm", + "name": "npm:@swc/core-linux-x64-gnu@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core-linux-x64-gnu", + "hash": "sha512-LEXpcShF6DLTWJSiBhMSYZkLQ27UvaQ24fCFhoIV/R3dhYaUpHmIyLPPBNC82T03lB3ONUFVwrRw6fxDJ/f00A==" + } + }, + "npm:tslib@1.14.1": { + "type": "npm", + "name": "npm:tslib@1.14.1", + "data": { + "version": "1.14.1", + "packageName": "tslib", + "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.7", + "packageName": "@types/qs", + "hash": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + } + }, + "npm:@sideway/address": { + "type": "npm", + "name": "npm:@sideway/address", + "data": { + "version": "4.1.4", + "packageName": "@sideway/address", + "hash": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "16.13.1", + "packageName": "react-is", + "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + }, + "npm:@jest/test-sequencer@29.6.2": { + "type": "npm", + "name": "npm:@jest/test-sequencer@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/test-sequencer", + "hash": "sha512-GVYi6PfPwVejO7slw6IDO0qKVum5jtrJ3KoLGbgBWyr2qr4GaxFV6su+ZAjdTX75Sr1DkMFRk09r2ZVa+wtCGw==" + } + }, + "npm:@swc/core@1.3.74": { + "type": "npm", + "name": "npm:@swc/core@1.3.74", + "data": { + "version": "1.3.74", + "packageName": "@swc/core", + "hash": "sha512-P+MIExOTdWlfq8Heb1/NhBAke6UTckd4cRDuJoFcFMGBRvgoCMNWhnfP3FRRXPLI7GGg27dRZS+xHiqYyQmSrA==" + } + }, + "npm:widest-line": { + "type": "npm", + "name": "npm:widest-line", + "data": { + "version": "4.0.1", + "packageName": "widest-line", + "hash": "sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==" + } + }, + "npm:npmlog": { + "type": "npm", + "name": "npm:npmlog", + "data": { + "version": "6.0.2", + "packageName": "npmlog", + "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:combine-promises": { + "type": "npm", + "name": "npm:combine-promises", + "data": { + "version": "1.1.0", + "packageName": "combine-promises", + "hash": "sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==" + } + }, + "npm:which@1.3.1": { + "type": "npm", + "name": "npm:which@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "which", + "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + } + }, + "npm:@octokit/rest": { + "type": "npm", + "name": "npm:@octokit/rest", + "data": { + "version": "19.0.11", + "packageName": "@octokit/rest", + "hash": "sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==" + } + }, + "npm:get-stdin@8.0.0": { + "type": "npm", + "name": "npm:get-stdin@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "get-stdin", + "hash": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" + } + }, + "npm:content-disposition@0.5.4": { + "type": "npm", + "name": "npm:content-disposition@0.5.4", + "data": { + "version": "0.5.4", + "packageName": "content-disposition", + "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + } + }, + "npm:html-webpack-plugin": { + "type": "npm", + "name": "npm:html-webpack-plugin", + "data": { + "version": "5.5.0", + "packageName": "html-webpack-plugin", + "hash": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==" + } + }, + "npm:fork-ts-checker-webpack-plugin": { + "type": "npm", + "name": "npm:fork-ts-checker-webpack-plugin", + "data": { + "version": "6.5.0", + "packageName": "fork-ts-checker-webpack-plugin", + "hash": "sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==" + } + }, + "npm:is-set": { + "type": "npm", + "name": "npm:is-set", + "data": { + "version": "2.0.2", + "packageName": "is-set", + "hash": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "4.1.3", + "packageName": "css-select", + "hash": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==" + } + }, + "npm:jest-cli@29.6.2": { + "type": "npm", + "name": "npm:jest-cli@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-cli", + "hash": "sha512-TT6O247v6dCEX2UGHGyflMpxhnrL0DNqP2fRTKYm3nJJpCTfXX3GCMQPGFjXDoj0i5/Blp3jriKXFgdfmbYB6Q==" + } + }, + "npm:eslint-plugin-react@7.33.1": { + "type": "npm", + "name": "npm:eslint-plugin-react@7.33.1", + "data": { + "version": "7.33.1", + "packageName": "eslint-plugin-react", + "hash": "sha512-L093k0WAMvr6VhNwReB8VgOq5s2LesZmrpPdKz/kZElQDzqS7G7+DnKoqT+w4JwuiGeAhAvHO0fvy0Eyk4ejDA==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@esbuild/openbsd-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==" + } + }, + "npm:css-minimizer-webpack-plugin": { + "type": "npm", + "name": "npm:css-minimizer-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "css-minimizer-webpack-plugin", + "hash": "sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA==" + } + }, + "npm:chalk@2.4.2": { + "type": "npm", + "name": "npm:chalk@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:micro-api-client": { + "type": "npm", + "name": "npm:micro-api-client", + "data": { + "version": "3.3.0", + "packageName": "micro-api-client", + "hash": "sha512-y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-url", + "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" + } + }, + "npm:typedarray-to-buffer": { + "type": "npm", + "name": "npm:typedarray-to-buffer", + "data": { + "version": "3.1.5", + "packageName": "typedarray-to-buffer", + "hash": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" + } + }, + "npm:@nx/nx-linux-x64-gnu@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-ZAW+Oar+WEwbmu8KFw80qDpT9y3qmWZdVD5wNRX5CMByuVJ3ly7MJbtD/rEDtvAUOgSMJikuGsK0jQ6acm+X/A==" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.2", + "packageName": "is-negative-zero", + "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + } + }, + "npm:import-lazy": { + "type": "npm", + "name": "npm:import-lazy", + "data": { + "version": "4.0.0", + "packageName": "import-lazy", + "hash": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==" + } + }, + "npm:glob@7.2.3": { + "type": "npm", + "name": "npm:glob@7.2.3", + "data": { + "version": "7.2.3", + "packageName": "glob", + "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:@svgr/plugin-svgo": { + "type": "npm", + "name": "npm:@svgr/plugin-svgo", + "data": { + "version": "6.2.0", + "packageName": "@svgr/plugin-svgo", + "hash": "sha512-oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q==" + } + }, + "npm:bonjour-service": { + "type": "npm", + "name": "npm:bonjour-service", + "data": { + "version": "1.0.12", + "packageName": "bonjour-service", + "hash": "sha512-pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw==" + } + }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.4.1", + "packageName": "memfs", + "hash": "sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==" + } + }, + "npm:validate-npm-package-name@3.0.0": { + "type": "npm", + "name": "npm:validate-npm-package-name@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha1-X6kS2B630MdK/BQN5zF/DKffQ34=" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:is-weakmap": { + "type": "npm", + "name": "npm:is-weakmap", + "data": { + "version": "2.0.1", + "packageName": "is-weakmap", + "hash": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" + } + }, + "npm:postcss-merge-idents": { + "type": "npm", + "name": "npm:postcss-merge-idents", + "data": { + "version": "5.1.1", + "packageName": "postcss-merge-idents", + "hash": "sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==" + } + }, + "npm:safe-buffer@5.1.2": { + "type": "npm", + "name": "npm:safe-buffer@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-logical-assignment-operators", + "hash": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==" + } + }, + "npm:@esbuild/linux-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==" + } + }, + "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "data": { + "version": "7.20.5", + "packageName": "@babel/plugin-transform-named-capturing-groups-regex", + "hash": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==" + } + }, + "npm:parse-numeric-range": { + "type": "npm", + "name": "npm:parse-numeric-range", + "data": { + "version": "1.3.0", + "packageName": "parse-numeric-range", + "hash": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" + } + }, + "npm:postcss-reduce-idents": { + "type": "npm", + "name": "npm:postcss-reduce-idents", + "data": { + "version": "5.2.0", + "packageName": "postcss-reduce-idents", + "hash": "sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==" + } + }, + "npm:remark-squeeze-paragraphs": { + "type": "npm", + "name": "npm:remark-squeeze-paragraphs", + "data": { + "version": "4.0.0", + "packageName": "remark-squeeze-paragraphs", + "hash": "sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==" + } + }, + "npm:url-loader": { + "type": "npm", + "name": "npm:url-loader", + "data": { + "version": "4.1.1", + "packageName": "url-loader", + "hash": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "data": { + "version": "5.0.0", + "packageName": "slice-ansi", + "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" + } + }, + "npm:ts-node@10.9.1": { + "type": "npm", + "name": "npm:ts-node@10.9.1", + "data": { + "version": "10.9.1", + "packageName": "ts-node", + "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" + } + }, + "npm:semver@6.3.1": { + "type": "npm", + "name": "npm:semver@6.3.1", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:renderkid": { + "type": "npm", + "name": "npm:renderkid", + "data": { + "version": "3.0.0", + "packageName": "renderkid", + "hash": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==" + } + }, + "npm:agentkeepalive": { + "type": "npm", + "name": "npm:agentkeepalive", + "data": { + "version": "4.2.1", + "packageName": "agentkeepalive", + "hash": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==" + } + }, + "npm:commander@7.2.0": { + "type": "npm", + "name": "npm:commander@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:@babel/plugin-proposal-class-static-block@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-class-static-block", + "hash": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==" + } + }, + "npm:fbjs": { + "type": "npm", + "name": "npm:fbjs", + "data": { + "version": "3.0.1", + "packageName": "fbjs", + "hash": "sha512-8+vkGyT4lNDRKHQNPp0yh/6E7FfkLg89XqQbOYnvntRh+8RiSD43yrh9E5ejp1muCizTL4nDVG+y8W4e+LROHg==" + } + }, + "npm:glob@10.3.3": { + "type": "npm", + "name": "npm:glob@10.3.3", + "data": { + "version": "10.3.3", + "packageName": "glob", + "hash": "sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==" + } + }, + "npm:lodash.curry": { + "type": "npm", + "name": "npm:lodash.curry", + "data": { + "version": "4.1.1", + "packageName": "lodash.curry", + "hash": "sha1-JI42By7ekGUB11lmIAqG2riyMXA=" + } + }, + "npm:vfile": { + "type": "npm", + "name": "npm:vfile", + "data": { + "version": "4.2.1", + "packageName": "vfile", + "hash": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==" + } + }, + "npm:cssnano": { + "type": "npm", + "name": "npm:cssnano", + "data": { + "version": "5.1.12", + "packageName": "cssnano", + "hash": "sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==" + } + }, + "npm:htmlparser2@8.0.1": { + "type": "npm", + "name": "npm:htmlparser2@8.0.1", + "data": { + "version": "8.0.1", + "packageName": "htmlparser2", + "hash": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==" + } + }, + "npm:rimraf@5.0.1": { + "type": "npm", + "name": "npm:rimraf@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "rimraf", + "hash": "sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "7.1.1", + "packageName": "execa", + "hash": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==" + } + }, + "npm:fast-url-parser": { + "type": "npm", + "name": "npm:fast-url-parser", + "data": { + "version": "1.1.3", + "packageName": "fast-url-parser", + "hash": "sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=" + } + }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.27.8", + "packageName": "@sinclair/typebox", + "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + } + }, + "npm:parse-url": { + "type": "npm", + "name": "npm:parse-url", + "data": { + "version": "8.1.0", + "packageName": "parse-url", + "hash": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:@parcel/watcher": { + "type": "npm", + "name": "npm:@parcel/watcher", + "data": { + "version": "2.0.4", + "packageName": "@parcel/watcher", + "hash": "sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==" + } + }, + "npm:netlify": { + "type": "npm", + "name": "npm:netlify", + "data": { + "version": "13.1.10", + "packageName": "netlify", + "hash": "sha512-ByFz8S08HWVKd9r/lkTahZX7xSq4IRyPCUvuaduI4GHyQaSWEdVNK1krC05vlhL9W0SzDn8Yjowh0Ru4PKrOYw==" + } + }, + "npm:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "3.0.0", + "packageName": "proc-log", + "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" + } + }, + "npm:duplexer3": { + "type": "npm", + "name": "npm:duplexer3", + "data": { + "version": "0.1.4", + "packageName": "duplexer3", + "hash": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.0", + "packageName": "import-fresh", + "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + } + }, + "npm:typescript@5.1.6": { + "type": "npm", + "name": "npm:typescript@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "typescript", + "hash": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==" + } + }, + "npm:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.0", + "packageName": "@sinonjs/commons", + "hash": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==" + } + }, + "npm:fs-minipass@2.1.0": { + "type": "npm", + "name": "npm:fs-minipass@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + } + }, + "npm:minimatch@9.0.3": { + "type": "npm", + "name": "npm:minimatch@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "minimatch", + "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" + } + }, + "npm:@algolia/logger-console": { + "type": "npm", + "name": "npm:@algolia/logger-console", + "data": { + "version": "4.13.1", + "packageName": "@algolia/logger-console", + "hash": "sha512-7jQOTftfeeLlnb3YqF8bNgA2GZht7rdKkJ31OCeSH2/61haO0tWPoNRjZq9XLlgMQZH276pPo0NdiArcYPHjCA==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:cspell-glob@6.31.2": { + "type": "npm", + "name": "npm:cspell-glob@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell-glob", + "hash": "sha512-ceTjHM4HaBgvG5S3oiB+PTPYq58EQYG6MmYpycDHzpR5I2H1NurK9lxWHfANmLbi0DsHn58tIZNDMUnnQj19Jw==" + } + }, + "npm:@jest/transform@29.6.2": { + "type": "npm", + "name": "npm:@jest/transform@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/transform", + "hash": "sha512-ZqCqEISr58Ce3U+buNFJYUktLJZOggfyvR+bZMaiV1e8B1SIvJbwZMrYz3gx/KAPn9EXmOmN+uB08yLCjWkQQg==" + } + }, + "npm:pretty-error": { + "type": "npm", + "name": "npm:pretty-error", + "data": { + "version": "4.0.0", + "packageName": "pretty-error", + "hash": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "5.2.1", + "packageName": "postcss-minify-selectors", + "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" + } + }, + "npm:unist-util-remove": { + "type": "npm", + "name": "npm:unist-util-remove", + "data": { + "version": "2.1.0", + "packageName": "unist-util-remove", + "hash": "sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==" + } + }, + "npm:@cspell/dict-sql@2.1.0": { + "type": "npm", + "name": "npm:@cspell/dict-sql@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "@cspell/dict-sql", + "hash": "sha512-Bb+TNWUrTNNABO0bmfcYXiTlSt0RD6sB2MIY+rNlaMyIwug43jUjeYmkLz2tPkn3+2uvySeFEOMVYhMVfcuDKg==" + } + }, + "npm:array-flatten@1.1.1": { + "type": "npm", + "name": "npm:array-flatten@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "array-flatten", + "hash": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + } + }, + "npm:jest-message-util@29.6.2": { + "type": "npm", + "name": "npm:jest-message-util@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-message-util", + "hash": "sha512-vnIGYEjoPSuRqV8W9t+Wow95SDp6KPX2Uf7EoeG9G99J2OVh7OSwpS4B6J0NfpEIpfkBNHlBZpA2rblEuEFhZQ==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:is-ssh": { + "type": "npm", + "name": "npm:is-ssh", + "data": { + "version": "1.4.0", + "packageName": "is-ssh", + "hash": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==" + } + }, + "npm:cliui@7.0.4": { + "type": "npm", + "name": "npm:cliui@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "cliui", + "hash": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==" + } + }, + "npm:@babel/plugin-transform-regenerator@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-regenerator@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-regenerator", + "hash": "sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==" + } + }, + "npm:del": { + "type": "npm", + "name": "npm:del", + "data": { + "version": "6.1.1", + "packageName": "del", + "hash": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==" + } + }, + "npm:@babel/helper-member-expression-to-functions@7.21.5": { + "type": "npm", + "name": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/helper-member-expression-to-functions", + "hash": "sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==" + } + }, + "npm:std-env": { + "type": "npm", + "name": "npm:std-env", + "data": { + "version": "3.0.1", + "packageName": "std-env", + "hash": "sha512-mC1Ps9l77/97qeOZc+HrOL7TIaOboHqMZ24dGVQrlxFcpPpfCHpH+qfUT7Dz+6mlG8+JPA1KfBQo19iC/+Ngcw==" + } + }, + "npm:stable": { + "type": "npm", + "name": "npm:stable", + "data": { + "version": "0.1.8", + "packageName": "stable", + "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + } + }, + "npm:@types/ncp@2.0.5": { + "type": "npm", + "name": "npm:@types/ncp@2.0.5", + "data": { + "version": "2.0.5", + "packageName": "@types/ncp", + "hash": "sha512-ocK0p8JuFmX7UkMabFPjY0F7apPvQyLWt5qtdvuvQEBz9i4m2dbzV+6L1zNaUp042RfnL6pHnxDE53OH6XQ9VQ==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:jest-worker@26.6.2": { + "type": "npm", + "name": "npm:jest-worker@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "jest-worker", + "hash": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==" + } + }, + "npm:min-indent": { + "type": "npm", + "name": "npm:min-indent", + "data": { + "version": "1.0.1", + "packageName": "min-indent", + "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:socks-proxy-agent@6.2.0": { + "type": "npm", + "name": "npm:socks-proxy-agent@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "socks-proxy-agent", + "hash": "sha512-wWqJhjb32Q6GsrUqzuFkukxb/zzide5quXYcMVpIjxalDBBYy2nqKCFQ/9+Ie4dvOYSQdOk3hUlZSdzZOd3zMQ==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.4", + "packageName": "end-of-stream", + "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + } + }, + "npm:remark-footnotes": { + "type": "npm", + "name": "npm:remark-footnotes", + "data": { + "version": "2.0.0", + "packageName": "remark-footnotes", + "hash": "sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==" + } + }, + "npm:socks-proxy-agent": { + "type": "npm", + "name": "npm:socks-proxy-agent", + "data": { + "version": "7.0.0", + "packageName": "socks-proxy-agent", + "hash": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==" + } + }, + "npm:workbox-google-analytics": { + "type": "npm", + "name": "npm:workbox-google-analytics", + "data": { + "version": "6.5.4", + "packageName": "workbox-google-analytics", + "hash": "sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==" + } + }, + "npm:@esbuild/linux-mips64el@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==" + } + }, + "npm:@rollup/plugin-node-resolve": { + "type": "npm", + "name": "npm:@rollup/plugin-node-resolve", + "data": { + "version": "11.2.1", + "packageName": "@rollup/plugin-node-resolve", + "hash": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.9", + "packageName": "@types/http-proxy", + "hash": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==" + } + }, + "npm:call-bind@1.0.2": { + "type": "npm", + "name": "npm:call-bind@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "call-bind", + "hash": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + } + }, + "npm:glob@10.2.7": { + "type": "npm", + "name": "npm:glob@10.2.7", + "data": { + "version": "10.2.7", + "packageName": "glob", + "hash": "sha512-jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA==" + } + }, + "npm:@babel/plugin-transform-dotall-regex@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-dotall-regex", + "hash": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==" + } + }, + "npm:@cspell/dict-lorem-ipsum@3.0.0": { + "type": "npm", + "name": "npm:@cspell/dict-lorem-ipsum@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "@cspell/dict-lorem-ipsum", + "hash": "sha512-msEV24qEpzWZs2kcEicqYlhyBpR0amfDkJOs+iffC07si9ftqtQ+yP3lf1VFLpgqw3SQh1M1vtU7RD4sPrNlcQ==" + } + }, + "npm:abbrev": { + "type": "npm", + "name": "npm:abbrev", + "data": { + "version": "1.1.1", + "packageName": "abbrev", + "hash": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + } + }, + "npm:quick-lru@5.1.1": { + "type": "npm", + "name": "npm:quick-lru@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "quick-lru", + "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } + }, + "npm:@esbuild/win32-arm64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==" + } + }, + "npm:language-subtag-registry": { + "type": "npm", + "name": "npm:language-subtag-registry", + "data": { + "version": "0.3.21", + "packageName": "language-subtag-registry", + "hash": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + } + }, + "npm:@jest/globals@29.6.2": { + "type": "npm", + "name": "npm:@jest/globals@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/globals", + "hash": "sha512-cjuJmNDjs6aMijCmSa1g2TNG4Lby/AeU7/02VtpW+SLcZXzOLK2GpN2nLqcFjmhy3B3AoPeQVx7BnyOf681bAw==" + } + }, + "npm:@sindresorhus/is": { + "type": "npm", + "name": "npm:@sindresorhus/is", + "data": { + "version": "0.14.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==" + } + }, + "npm:string.prototype.trim@1.2.7": { + "type": "npm", + "name": "npm:string.prototype.trim@1.2.7", + "data": { + "version": "1.2.7", + "packageName": "string.prototype.trim", + "hash": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==" + } + }, + "npm:@babel/plugin-transform-member-expression-literals@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-member-expression-literals@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-member-expression-literals", + "hash": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==" + } + }, + "npm:commander@5.1.0": { + "type": "npm", + "name": "npm:commander@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "commander", + "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + } + }, + "npm:jest-pnp-resolver": { + "type": "npm", + "name": "npm:jest-pnp-resolver", + "data": { + "version": "1.2.3", + "packageName": "jest-pnp-resolver", + "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "1.0.2", + "packageName": "minipass-collect", + "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" + } + }, + "npm:jest-haste-map@29.6.2": { + "type": "npm", + "name": "npm:jest-haste-map@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-haste-map", + "hash": "sha512-+51XleTDAAysvU8rT6AnS1ZJ+WHVNqhj1k6nTvN2PYP+HjU3kqlaKQ1Lnw3NYW3bm2r8vq82X0Z1nDDHZMzHVA==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "5.1.2", + "packageName": "postcss-convert-values", + "hash": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==" + } + }, + "npm:clean-css": { + "type": "npm", + "name": "npm:clean-css", + "data": { + "version": "5.3.0", + "packageName": "clean-css", + "hash": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==" + } + }, + "npm:rtl-detect": { + "type": "npm", + "name": "npm:rtl-detect", + "data": { + "version": "1.0.4", + "packageName": "rtl-detect", + "hash": "sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==" + } + }, + "npm:@babel/plugin-proposal-numeric-separator@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-numeric-separator", + "hash": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "11.0.0", + "packageName": "copy-webpack-plugin", + "hash": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==" + } + }, + "npm:cosmiconfig@7.0.1": { + "type": "npm", + "name": "npm:cosmiconfig@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "cosmiconfig", + "hash": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==" + } + }, + "npm:utila": { + "type": "npm", + "name": "npm:utila", + "data": { + "version": "0.4.0", + "packageName": "utila", + "hash": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + } + }, + "npm:@humanwhocodes/module-importer": { + "type": "npm", + "name": "npm:@humanwhocodes/module-importer", + "data": { + "version": "1.0.1", + "packageName": "@humanwhocodes/module-importer", + "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==" + } + }, + "npm:base16": { + "type": "npm", + "name": "npm:base16", + "data": { + "version": "1.0.0", + "packageName": "base16", + "hash": "sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:react-dev-utils": { + "type": "npm", + "name": "npm:react-dev-utils", + "data": { + "version": "12.0.1", + "packageName": "react-dev-utils", + "hash": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:has-yarn": { + "type": "npm", + "name": "npm:has-yarn", + "data": { + "version": "2.1.0", + "packageName": "has-yarn", + "hash": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==" + } + }, + "npm:jest-config@29.6.2": { + "type": "npm", + "name": "npm:jest-config@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "jest-config", + "hash": "sha512-VxwFOC8gkiJbuodG9CPtMRjBUNZEHxwfQXmIudSTzFWxaci3Qub1ddTRbFNQlD/zUeaifLndh/eDccFX4wCMQw==" + } + }, + "npm:@cspell/dict-software-terms@3.2.0": { + "type": "npm", + "name": "npm:@cspell/dict-software-terms@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "@cspell/dict-software-terms", + "hash": "sha512-RI6sv4Bc4i42YH/ofVelv8lXpJRhCyS9IhI2BtejUoMXKhKA9gC01ATXOylx+oaQmj3t5ark4R50xKFRvC7ENA==" + } + }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "7.2.4", + "packageName": "multicast-dns", + "hash": "sha512-XkCYOU+rr2Ft3LI6w4ye51M3VK31qJXFIxu0XLw169PtKG0Zx47OrXeVW/GCYOfpC9s1yyyf1S+L8/4LY0J9Zw==" + } + }, + "npm:sirv": { + "type": "npm", + "name": "npm:sirv", + "data": { + "version": "1.0.18", + "packageName": "sirv", + "hash": "sha512-f2AOPogZmXgJ9Ma2M22ZEhc1dNtRIzcEkiflMFeVTRq+OViOZMvH1IPMVOwrKaxpSaHioBJiDR0SluRqGa7atA==" + } + }, + "npm:@cspell/dict-scala": { + "type": "npm", + "name": "npm:@cspell/dict-scala", + "data": { + "version": "5.0.0", + "packageName": "@cspell/dict-scala", + "hash": "sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "1.4.0", + "packageName": "type-fest", + "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" + } + }, + "npm:eslint-plugin-deprecation@1.5.0": { + "type": "npm", + "name": "npm:eslint-plugin-deprecation@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "eslint-plugin-deprecation", + "hash": "sha512-mRcssI/tLROueBQ6yf4LnnGTijbMsTCPIpbRbPj5R5wGYVCpk1zDmAS0SEkgcUDXOPc22qMNFR24Qw7vSPrlTA==" + } + }, + "npm:whatwg-url@7.1.0": { + "type": "npm", + "name": "npm:whatwg-url@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "whatwg-url", + "hash": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==" + } + }, + "npm:@cspell/cspell-service-bus@6.31.1": { + "type": "npm", + "name": "npm:@cspell/cspell-service-bus@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "@cspell/cspell-service-bus", + "hash": "sha512-YyBicmJyZ1uwKVxujXw7sgs9x+Eps43OkWmCtDZmZlnq489HdTSuhF1kTbVi2yeFSeaXIS87+uHo12z97KkQpg==" + } + }, + "npm:clsx@1.2.1": { + "type": "npm", + "name": "npm:clsx@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "clsx", + "hash": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.0.0", + "packageName": "parse5", + "hash": "sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:@algolia/autocomplete-preset-algolia": { + "type": "npm", + "name": "npm:@algolia/autocomplete-preset-algolia", + "data": { + "version": "1.7.1", + "packageName": "@algolia/autocomplete-preset-algolia", + "hash": "sha512-pJwmIxeJCymU1M6cGujnaIYcY3QPOVYZOXhFkWVM7IxKzy272BwCvMFMyc5NpG/QmiObBxjo7myd060OeTNJXg==" + } + }, + "npm:@types/json-schema@7.0.12": { + "type": "npm", + "name": "npm:@types/json-schema@7.0.12", + "data": { + "version": "7.0.12", + "packageName": "@types/json-schema", + "hash": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==" + } + }, + "npm:bser": { + "type": "npm", + "name": "npm:bser", + "data": { + "version": "2.1.1", + "packageName": "bser", + "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" + } + }, + "npm:is-obj@1.0.1": { + "type": "npm", + "name": "npm:is-obj@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "is-obj", + "hash": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + } + }, + "npm:eslint-plugin-jsx-a11y": { + "type": "npm", + "name": "npm:eslint-plugin-jsx-a11y", + "data": { + "version": "6.7.1", + "packageName": "eslint-plugin-jsx-a11y", + "hash": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==" + } + }, + "npm:character-entities-legacy": { + "type": "npm", + "name": "npm:character-entities-legacy", + "data": { + "version": "1.1.4", + "packageName": "character-entities-legacy", + "hash": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@^4.2.0", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:hosted-git-info@3.0.8": { + "type": "npm", + "name": "npm:hosted-git-info@3.0.8", + "data": { + "version": "3.0.8", + "packageName": "hosted-git-info", + "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" + } + }, + "npm:tempy": { + "type": "npm", + "name": "npm:tempy", + "data": { + "version": "0.6.0", + "packageName": "tempy", + "hash": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==" + } + }, + "npm:@jest/expect-utils@29.6.2": { + "type": "npm", + "name": "npm:@jest/expect-utils@29.6.2", + "data": { + "version": "29.6.2", + "packageName": "@jest/expect-utils", + "hash": "sha512-6zIhM8go3RV2IG4aIZaZbxwpOzz3ZiM23oxAlkquOIole+G6TrbeXnykxWYlqF7kz2HlBjdKtca20x9atkEQYg==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:workbox-navigation-preload": { + "type": "npm", + "name": "npm:workbox-navigation-preload", + "data": { + "version": "6.5.4", + "packageName": "workbox-navigation-preload", + "hash": "sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==" + } + }, + "npm:@cspell/dict-bash@4.1.1": { + "type": "npm", + "name": "npm:@cspell/dict-bash@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "@cspell/dict-bash", + "hash": "sha512-8czAa/Mh96wu2xr0RXQEGMTBUGkTvYn/Pb0o+gqOO1YW+poXGQc3gx0YPqILDryP/KCERrNvkWUJz3iGbvwC2A==" + } + }, + "npm:ms@2.0.0": { + "type": "npm", + "name": "npm:ms@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ms", + "hash": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@^6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:rimraf@4.4.1": { + "type": "npm", + "name": "npm:rimraf@4.4.1", + "data": { + "version": "4.4.1", + "packageName": "rimraf", + "hash": "sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==" + } + }, + "npm:jest-changed-files@29.5.0": { + "type": "npm", + "name": "npm:jest-changed-files@29.5.0", + "data": { + "version": "29.5.0", + "packageName": "jest-changed-files", + "hash": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==" + } + }, + "npm:@babel/plugin-transform-duplicate-keys@7.18.9": { + "type": "npm", + "name": "npm:@babel/plugin-transform-duplicate-keys@7.18.9", + "data": { + "version": "7.18.9", + "packageName": "@babel/plugin-transform-duplicate-keys", + "hash": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==" + } + }, + "npm:@octokit/types@9.3.2": { + "type": "npm", + "name": "npm:@octokit/types@9.3.2", + "data": { + "version": "9.3.2", + "packageName": "@octokit/types", + "hash": "sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==" + } + }, + "npm:@esbuild/freebsd-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==" + } + }, + "npm:tunnel": { + "type": "npm", + "name": "npm:tunnel", + "data": { + "version": "0.0.6", + "packageName": "tunnel", + "hash": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" + } + }, + "npm:lowercase-keys@2.0.0": { + "type": "npm", + "name": "npm:lowercase-keys@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + }, + "npm:glob@9.3.5": { + "type": "npm", + "name": "npm:glob@9.3.5", + "data": { + "version": "9.3.5", + "packageName": "glob", + "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" + } + }, + "npm:style-to-object": { + "type": "npm", + "name": "npm:style-to-object", + "data": { + "version": "0.3.0", + "packageName": "style-to-object", + "hash": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "2.5.1", + "packageName": "raw-body", + "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "5.0.1", + "packageName": "write-file-atomic", + "hash": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.11.5", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==" + } + }, + "npm:@mdx-js/util": { + "type": "npm", + "name": "npm:@mdx-js/util", + "data": { + "version": "1.6.22", + "packageName": "@mdx-js/util", + "hash": "sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.2.1", + "packageName": "tmp", + "hash": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==" + } + }, + "npm:multimatch": { + "type": "npm", + "name": "npm:multimatch", + "data": { + "version": "5.0.0", + "packageName": "multimatch", + "hash": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==" + } + }, + "npm:@babel/plugin-transform-computed-properties@7.21.5": { + "type": "npm", + "name": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "data": { + "version": "7.21.5", + "packageName": "@babel/plugin-transform-computed-properties", + "hash": "sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==" + } + }, + "npm:address": { + "type": "npm", + "name": "npm:address", + "data": { + "version": "1.1.2", + "packageName": "address", + "hash": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + } + }, + "npm:z-schema": { + "type": "npm", + "name": "npm:z-schema", + "data": { + "version": "5.0.2", + "packageName": "z-schema", + "hash": "sha512-40TH47ukMHq5HrzkeVE40Ad7eIDKaRV2b+Qpi2prLc9X9eFJFzV7tMe5aH12e6avaSS/u5l653EQOv+J9PirPw==" + } + }, + "npm:@sigstore/protobuf-specs": { + "type": "npm", + "name": "npm:@sigstore/protobuf-specs", + "data": { + "version": "0.1.0", + "packageName": "@sigstore/protobuf-specs", + "hash": "sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==" + } + }, + "npm:detect-port-alt": { + "type": "npm", + "name": "npm:detect-port-alt", + "data": { + "version": "1.1.6", + "packageName": "detect-port-alt", + "hash": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==" + } + }, + "npm:minimatch@3.0.5": { + "type": "npm", + "name": "npm:minimatch@3.0.5", + "data": { + "version": "3.0.5", + "packageName": "minimatch", + "hash": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==" + } + }, + "npm:@cspell/dict-git": { + "type": "npm", + "name": "npm:@cspell/dict-git", + "data": { + "version": "2.0.0", + "packageName": "@cspell/dict-git", + "hash": "sha512-n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==" + } + }, + "npm:v8-compile-cache-lib": { + "type": "npm", + "name": "npm:v8-compile-cache-lib", + "data": { + "version": "3.0.1", + "packageName": "v8-compile-cache-lib", + "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.2.1", + "packageName": "es-module-lexer", + "hash": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" + } + }, + "npm:@babel/plugin-transform-property-literals@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-property-literals@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-property-literals", + "hash": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==" + } + }, + "npm:eslint-plugin-jest@27.2.3": { + "type": "npm", + "name": "npm:eslint-plugin-jest@27.2.3", + "data": { + "version": "27.2.3", + "packageName": "eslint-plugin-jest", + "hash": "sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==" + } + }, + "npm:electron-to-chromium@1.4.477": { + "type": "npm", + "name": "npm:electron-to-chromium@1.4.477", + "data": { + "version": "1.4.477", + "packageName": "electron-to-chromium", + "hash": "sha512-shUVy6Eawp33dFBFIoYbIwLHrX0IZ857AlH9ug2o4rvbWmpaCUdBpQ5Zw39HRrfzAFm4APJE9V+E2A/WB0YqJw==" + } + }, + "npm:@npmcli/run-script": { + "type": "npm", + "name": "npm:@npmcli/run-script", + "data": { + "version": "6.0.2", + "packageName": "@npmcli/run-script", + "hash": "sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==" + } + }, + "npm:bail": { + "type": "npm", + "name": "npm:bail", + "data": { + "version": "1.0.5", + "packageName": "bail", + "hash": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + } + }, + "npm:write-json-file": { + "type": "npm", + "name": "npm:write-json-file", + "data": { + "version": "3.2.0", + "packageName": "write-json-file", + "hash": "sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==" + } + }, + "npm:param-case": { + "type": "npm", + "name": "npm:param-case", + "data": { + "version": "3.0.4", + "packageName": "param-case", + "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" + } + }, + "npm:@nx/nx-win32-x64-msvc@16.5.3": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-QTpDoqxQq7wSuErkCgQoFegaUZ3D9lgmpS20zexlHm43SwS/MXtqRm9i5XNoJPTx19rpJ7gqaOm6+eOkOYLETg==" + } + }, + "npm:@cspell/dict-k8s": { + "type": "npm", + "name": "npm:@cspell/dict-k8s", + "data": { + "version": "1.0.1", + "packageName": "@cspell/dict-k8s", + "hash": "sha512-gc5y4Nm3hVdMZNBZfU2M1AsAmObZsRWjCUk01NFPfGhFBXyVne41T7E62rpnzu5330FV/6b/TnFcPgRmak9lLw==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:@babel/helper-optimise-call-expression@7.18.6": { + "type": "npm", + "name": "npm:@babel/helper-optimise-call-expression@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-optimise-call-expression", + "hash": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:@jest/schemas@29.6.0": { + "type": "npm", + "name": "npm:@jest/schemas@29.6.0", + "data": { + "version": "29.6.0", + "packageName": "@jest/schemas", + "hash": "sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==" + } + }, + "npm:@esbuild/linux-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==" + } + }, + "npm:emoji-regex@8.0.0": { + "type": "npm", + "name": "npm:emoji-regex@8.0.0", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:@aashutoshrathi/word-wrap": { + "type": "npm", + "name": "npm:@aashutoshrathi/word-wrap", + "data": { + "version": "1.2.6", + "packageName": "@aashutoshrathi/word-wrap", + "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:cli-truncate": { + "type": "npm", + "name": "npm:cli-truncate", + "data": { + "version": "3.1.0", + "packageName": "cli-truncate", + "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" + } + }, + "npm:are-we-there-yet": { + "type": "npm", + "name": "npm:are-we-there-yet", + "data": { + "version": "3.0.0", + "packageName": "are-we-there-yet", + "hash": "sha512-0GWpv50YSOcLXaN6/FAKY3vfRbllXWV2xvfA/oKJF8pzFhWXPV+yjhJXDBbjscDYowv7Yw1A3uigpzn5iEGTyw==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "2.0.0", + "packageName": "dom-serializer", + "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + } + }, + "npm:@babel/plugin-proposal-optional-chaining@7.21.0": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-optional-chaining", + "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" + } + }, + "npm:@octokit/types@6.40.0": { + "type": "npm", + "name": "npm:@octokit/types@6.40.0", + "data": { + "version": "6.40.0", + "packageName": "@octokit/types", + "hash": "sha512-MFZOU5r8SwgJWDMhrLUSvyJPtVsqA6VnbVI3TNbsmw+Jnvrktzvq2fYES/6RiJA/5Ykdwq4mJmtlYUfW7CGjmw==" + } + }, + "npm:fast-glob@3.2.7": { + "type": "npm", + "name": "npm:fast-glob@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "fast-glob", + "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" + } + }, + "npm:is-map": { + "type": "npm", + "name": "npm:is-map", + "data": { + "version": "2.0.2", + "packageName": "is-map", + "hash": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.3.0", + "packageName": "node-gyp-build", + "hash": "sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.3", + "packageName": "async", + "hash": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==" + } + }, + "npm:ipaddr.js@2.0.1": { + "type": "npm", + "name": "npm:ipaddr.js@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "ipaddr.js", + "hash": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" + } + }, + "npm:path-is-absolute": { + "type": "npm", + "name": "npm:path-is-absolute", + "data": { + "version": "1.0.1", + "packageName": "path-is-absolute", + "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.5.0", + "packageName": "cookie", + "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + } + }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "5.1.0", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" + } + }, + "npm:json-stable-stringify@1.0.2": { + "type": "npm", + "name": "npm:json-stable-stringify@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "json-stable-stringify", + "hash": "sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:node-gyp@9.0.0": { + "type": "npm", + "name": "npm:node-gyp@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "node-gyp", + "hash": "sha512-Ma6p4s+XCTPxCuAMrOA/IJRmVy16R8Sdhtwl4PrCr7IBlj4cPawF0vg/l7nOT1jPbuNS7lIRJpBSvVsXwEZuzw==" + } + }, + "npm:fast-equals": { + "type": "npm", + "name": "npm:fast-equals", + "data": { + "version": "4.0.3", + "packageName": "fast-equals", + "hash": "sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "6.3.0", + "packageName": "camelcase", + "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + } + }, + "npm:get-stream@5.2.0": { + "type": "npm", + "name": "npm:get-stream@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "get-stream", + "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + } + }, + "npm:babel-plugin-jest-hoist@29.5.0": { + "type": "npm", + "name": "npm:babel-plugin-jest-hoist@29.5.0", + "data": { + "version": "29.5.0", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==" + } + }, + "npm:crypto-random-string@2.0.0": { + "type": "npm", + "name": "npm:crypto-random-string@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "crypto-random-string", + "hash": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + } + }, + "npm:readable-stream@2.3.7": { + "type": "npm", + "name": "npm:readable-stream@2.3.7", + "data": { + "version": "2.3.7", + "packageName": "readable-stream", + "hash": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "npm:jsesc@3.0.2": { + "type": "npm", + "name": "npm:jsesc@3.0.2", + "data": { + "version": "3.0.2", + "packageName": "jsesc", + "hash": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==" + } + }, + "npm:lz-string": { + "type": "npm", + "name": "npm:lz-string", + "data": { + "version": "1.5.0", + "packageName": "lz-string", + "hash": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==" + } + }, + "npm:@esbuild/android-x64@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/android-x64", + "hash": "sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==" + } + }, + "npm:cspell-io@6.31.2": { + "type": "npm", + "name": "npm:cspell-io@6.31.2", + "data": { + "version": "6.31.2", + "packageName": "cspell-io", + "hash": "sha512-Lp7LsF/f35LaOneROb/9mWiprShz2ONxjYFAt3bYP7gIxq41lWi8QhO+SN6spoqPp/wQXjSqJ7MuTZsemxPRnA==" + } + }, + "npm:eslint-plugin-unicorn": { + "type": "npm", + "name": "npm:eslint-plugin-unicorn", + "data": { + "version": "48.0.1", + "packageName": "eslint-plugin-unicorn", + "hash": "sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==" + } + }, + "npm:interpret": { + "type": "npm", + "name": "npm:interpret", + "data": { + "version": "1.4.0", + "packageName": "interpret", + "hash": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + } + }, + "npm:htmlparser2": { + "type": "npm", + "name": "npm:htmlparser2", + "data": { + "version": "6.1.0", + "packageName": "htmlparser2", + "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" + } + }, + "npm:repeat-string": { + "type": "npm", + "name": "npm:repeat-string", + "data": { + "version": "1.6.1", + "packageName": "repeat-string", + "hash": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + } + }, + "npm:type-fest@0.8.1": { + "type": "npm", + "name": "npm:type-fest@0.8.1", + "data": { + "version": "0.8.1", + "packageName": "type-fest", + "hash": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + }, + "npm:err-code": { + "type": "npm", + "name": "npm:err-code", + "data": { + "version": "2.0.3", + "packageName": "err-code", + "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + } + }, + "npm:@babel/parser@7.22.7": { + "type": "npm", + "name": "npm:@babel/parser@7.22.7", + "data": { + "version": "7.22.7", + "packageName": "@babel/parser", + "hash": "sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.6.1", + "packageName": "cli-spinners", + "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" + } + }, + "npm:slash@2.0.0": { + "type": "npm", + "name": "npm:slash@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "slash", + "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" + } + }, + "npm:workbox-strategies": { + "type": "npm", + "name": "npm:workbox-strategies", + "data": { + "version": "6.5.4", + "packageName": "workbox-strategies", + "hash": "sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.2.0", + "packageName": "acorn-walk", + "hash": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.1", + "packageName": "merge-descriptors", + "hash": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + } + }, + "npm:tsconfig-paths@3.14.2": { + "type": "npm", + "name": "npm:tsconfig-paths@3.14.2", + "data": { + "version": "3.14.2", + "packageName": "tsconfig-paths", + "hash": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==" + } + }, + "npm:is-buffer": { + "type": "npm", + "name": "npm:is-buffer", + "data": { + "version": "2.0.5", + "packageName": "is-buffer", + "hash": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "1.0.2", + "packageName": "encodeurl", + "hash": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + } + }, + "npm:@cspell/dict-npm@5.0.7": { + "type": "npm", + "name": "npm:@cspell/dict-npm@5.0.7", + "data": { + "version": "5.0.7", + "packageName": "@cspell/dict-npm", + "hash": "sha512-6SegF0HsVaBTl6PlHjeErG8Av+tRYkUG1yaXUQIGWXU0A8oxhI0o4PuL65UWH5lkCKhJyGai69Cd0iytL0oVFg==" + } + }, + "npm:sourcemap-codec": { + "type": "npm", + "name": "npm:sourcemap-codec", + "data": { + "version": "1.4.8", + "packageName": "sourcemap-codec", + "hash": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + } + }, + "npm:@cspell/dict-haskell": { + "type": "npm", + "name": "npm:@cspell/dict-haskell", + "data": { + "version": "4.0.1", + "packageName": "@cspell/dict-haskell", + "hash": "sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + }, + "npm:delegates": { + "type": "npm", + "name": "npm:delegates", + "data": { + "version": "1.0.0", + "packageName": "delegates", + "hash": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:promise": { + "type": "npm", + "name": "npm:promise", + "data": { + "version": "7.3.1", + "packageName": "promise", + "hash": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==" + } + }, + "npm:ts-essentials": { + "type": "npm", + "name": "npm:ts-essentials", + "data": { + "version": "2.0.12", + "packageName": "ts-essentials", + "hash": "sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:resolve@2.0.0-next.4": { + "type": "npm", + "name": "npm:resolve@2.0.0-next.4", + "data": { + "version": "2.0.0-next.4", + "packageName": "resolve", + "hash": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==" + } + }, + "npm:ansi-styles@6.2.1": { + "type": "npm", + "name": "npm:ansi-styles@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + } + }, + "npm:test-exclude": { + "type": "npm", + "name": "npm:test-exclude", + "data": { + "version": "6.0.0", + "packageName": "test-exclude", + "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + } + }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.0", + "packageName": "watchpack", + "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.0.2", + "packageName": "which-boxed-primitive", + "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "5.3.0", + "packageName": "postcss-colormin", + "hash": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==" + } + }, + "npm:resolve.exports@1.1.0": { + "type": "npm", + "name": "npm:resolve.exports@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "resolve.exports", + "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" + } + }, + "npm:@types/estree@0.0.0": { + "type": "npm", + "name": "npm:@types/estree@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@types/estree", + "hash": "6526019019780440087" + } + }, + "npm:console-fail-test": { + "type": "npm", + "name": "npm:console-fail-test", + "data": { + "version": "0.2.3", + "packageName": "console-fail-test", + "hash": "sha512-p1xfi9ubVM2X3NpjPH1Gm8Gxc7vXyTwcOIquU8rpUDA+ISSitAOiBDnT/Bti1We5YzZKRxgI0JU+fFvOmOXtvA==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:npm-bundled@3.0.0": { + "type": "npm", + "name": "npm:npm-bundled@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "npm-bundled", + "hash": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==" + } + }, + "npm:babel-plugin-apply-mdx-type-prop@1.6.22": { + "type": "npm", + "name": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "data": { + "version": "1.6.22", + "packageName": "babel-plugin-apply-mdx-type-prop", + "hash": "sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==" + } + }, + "npm:invariant": { + "type": "npm", + "name": "npm:invariant", + "data": { + "version": "2.2.4", + "packageName": "invariant", + "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", + "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" + } + }, + "npm:find-up@4.1.0": { + "type": "npm", + "name": "npm:find-up@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:@docusaurus/core@2.4.1": { + "type": "npm", + "name": "npm:@docusaurus/core@2.4.1", + "data": { + "version": "2.4.1", + "packageName": "@docusaurus/core", + "hash": "sha512-SNsY7PshK3Ri7vtsLXVeAJGS50nJN3RgF836zkyUfAD01Fq+sAk5EwWgLw+nnm5KVNGDu7PRR2kRGDsWvqpo0g==" + } + }, + "npm:@swc/core-linux-arm64-gnu@0.0.0": { + "type": "npm", + "name": "npm:@swc/core-linux-arm64-gnu@0.0.0", + "data": { + "version": "0.0.0", + "packageName": "@swc/core-linux-arm64-gnu", + "hash": "109531574478354266" + } + }, + "npm:@types/unist": { + "type": "npm", + "name": "npm:@types/unist", + "data": { + "version": "2.0.7", + "packageName": "@types/unist", + "hash": "sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==" + } + }, + "npm:hard-rejection": { + "type": "npm", + "name": "npm:hard-rejection", + "data": { + "version": "2.1.0", + "packageName": "hard-rejection", + "hash": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" + } + }, + "npm:react-json-view": { + "type": "npm", + "name": "npm:react-json-view", + "data": { + "version": "1.21.3", + "packageName": "react-json-view", + "hash": "sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==" + } + }, + "npm:use-composed-ref": { + "type": "npm", + "name": "npm:use-composed-ref", + "data": { + "version": "1.1.0", + "packageName": "use-composed-ref", + "hash": "sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==" + } + }, + "npm:@sinonjs/commons@2.0.0": { + "type": "npm", + "name": "npm:@sinonjs/commons@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "@sinonjs/commons", + "hash": "sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.5", + "packageName": "internal-slot", + "hash": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.4.1", + "packageName": "@types/babel__template", + "hash": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==" + } + }, + "npm:@svgr/babel-plugin-remove-jsx-attribute": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-remove-jsx-attribute", + "hash": "sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==" + } + }, + "npm:@types/marked@5.0.1": { + "type": "npm", + "name": "npm:@types/marked@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "@types/marked", + "hash": "sha512-Y3pAUzHKh605fN6fvASsz5FDSWbZcs/65Q6xYRmnIP9ZIYz27T4IOmXfH9gWJV1dpi7f1e7z7nBGUTx/a0ptpA==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:csso": { + "type": "npm", + "name": "npm:csso", + "data": { + "version": "4.2.0", + "packageName": "csso", + "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==" + } + }, + "npm:@hapi/topo": { + "type": "npm", + "name": "npm:@hapi/topo", + "data": { + "version": "5.1.0", + "packageName": "@hapi/topo", + "hash": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==" + } + }, + "npm:nanoid@3.1.20": { + "type": "npm", + "name": "npm:nanoid@3.1.20", + "data": { + "version": "3.1.20", + "packageName": "nanoid", + "hash": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==" + } + }, + "npm:unist-util-position": { + "type": "npm", + "name": "npm:unist-util-position", + "data": { + "version": "3.1.0", + "packageName": "unist-util-position", + "hash": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==" + } + }, + "npm:@octokit/plugin-request-log": { + "type": "npm", + "name": "npm:@octokit/plugin-request-log", + "data": { + "version": "1.0.4", + "packageName": "@octokit/plugin-request-log", + "hash": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==" + } + }, + "npm:@cspell/dict-en-gb": { + "type": "npm", + "name": "npm:@cspell/dict-en-gb", + "data": { + "version": "1.1.33", + "packageName": "@cspell/dict-en-gb", + "hash": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==" + } + }, + "npm:dot-case": { + "type": "npm", + "name": "npm:dot-case", + "data": { + "version": "3.0.4", + "packageName": "dot-case", + "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + } + }, + "npm:@types/yargs-parser": { + "type": "npm", + "name": "npm:@types/yargs-parser", + "data": { + "version": "21.0.0", + "packageName": "@types/yargs-parser", + "hash": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:lines-and-columns@1.2.4": { + "type": "npm", + "name": "npm:lines-and-columns@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "lines-and-columns", + "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.5", + "packageName": "micromatch", + "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "5.1.1", + "packageName": "postcss-minify-gradients", + "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" + } + }, + "npm:react-loadable-ssr-addon-v5-slorber": { + "type": "npm", + "name": "npm:react-loadable-ssr-addon-v5-slorber", + "data": { + "version": "1.0.1", + "packageName": "react-loadable-ssr-addon-v5-slorber", + "hash": "sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "3.0.3", + "packageName": "is-path-inside", + "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + } + }, + "npm:setimmediate": { + "type": "npm", + "name": "npm:setimmediate", + "data": { + "version": "1.0.5", + "packageName": "setimmediate", + "hash": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + } + }, + "npm:cspell-trie-lib@6.31.1": { + "type": "npm", + "name": "npm:cspell-trie-lib@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "cspell-trie-lib", + "hash": "sha512-MtYh7s4Sbr1rKT31P2BK6KY+YfOy3dWsuusq9HnqCXmq6aZ1HyFgjH/9p9uvqGi/TboMqn1KOV8nifhXK3l3jg==" + } + }, + "npm:react-router-config": { + "type": "npm", + "name": "npm:react-router-config", + "data": { + "version": "5.1.1", + "packageName": "react-router-config", + "hash": "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==" + } + }, + "npm:default-gateway": { + "type": "npm", + "name": "npm:default-gateway", + "data": { + "version": "6.0.3", + "packageName": "default-gateway", + "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + } + }, + "npm:upath": { + "type": "npm", + "name": "npm:upath", + "data": { + "version": "2.0.1", + "packageName": "upath", + "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:@babel/helpers@7.22.6": { + "type": "npm", + "name": "npm:@babel/helpers@7.22.6", + "data": { + "version": "7.22.6", + "packageName": "@babel/helpers", + "hash": "sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:postcss-resolve-nested-selector": { + "type": "npm", + "name": "npm:postcss-resolve-nested-selector", + "data": { + "version": "0.1.1", + "packageName": "postcss-resolve-nested-selector", + "hash": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==" + } + }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + } + }, + "npm:@babel/plugin-transform-parameters@7.21.3": { + "type": "npm", + "name": "npm:@babel/plugin-transform-parameters@7.21.3", + "data": { + "version": "7.21.3", + "packageName": "@babel/plugin-transform-parameters", + "hash": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "2.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + } + }, + "npm:rollup": { + "type": "npm", + "name": "npm:rollup", + "data": { + "version": "2.79.1", + "packageName": "rollup", + "hash": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==" + } + }, + "npm:hosted-git-info@6.1.1": { + "type": "npm", + "name": "npm:hosted-git-info@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "hosted-git-info", + "hash": "sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.3", + "packageName": "for-each", + "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" + } + }, + "npm:ini@2.0.0": { + "type": "npm", + "name": "npm:ini@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ini", + "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" + } + }, + "npm:linkify-it": { + "type": "npm", + "name": "npm:linkify-it", + "data": { + "version": "4.0.1", + "packageName": "linkify-it", + "hash": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==" + } + }, + "npm:functions-have-names": { + "type": "npm", + "name": "npm:functions-have-names", + "data": { + "version": "1.2.3", + "packageName": "functions-have-names", + "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + } + }, + "npm:unique-string": { + "type": "npm", + "name": "npm:unique-string", + "data": { + "version": "2.0.0", + "packageName": "unique-string", + "hash": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" + } + }, + "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0": { + "type": "npm", + "name": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "data": { + "version": "7.20.0", + "packageName": "@babel/helper-skip-transparent-expression-wrappers", + "hash": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==" + } + }, + "npm:@esbuild/android-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/android-x64", + "hash": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:parse-json@4.0.0": { + "type": "npm", + "name": "npm:parse-json@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse-json", + "hash": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" + } + }, + "npm:responselike": { + "type": "npm", + "name": "npm:responselike", + "data": { + "version": "1.0.2", + "packageName": "responselike", + "hash": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=" + } + }, + "npm:sitemap": { + "type": "npm", + "name": "npm:sitemap", + "data": { + "version": "7.1.1", + "packageName": "sitemap", + "hash": "sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.8.0", + "packageName": "ci-info", + "hash": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.1.4", + "packageName": "is-regex", + "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + } + }, + "npm:@babel/plugin-transform-new-target@7.18.6": { + "type": "npm", + "name": "npm:@babel/plugin-transform-new-target@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-transform-new-target", + "hash": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==" + } + }, + "npm:@esbuild/win32-ia32@0.17.19": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.17.19", + "data": { + "version": "0.17.19", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.0.13", + "packageName": "postcss-selector-parser", + "hash": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==" + } + }, + "npm:nx@16.5.3": { + "type": "npm", + "name": "npm:nx@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "nx", + "hash": "sha512-VxhOijTT3evTsKEa2qsBqSroaFj/tSvRKOc1K7MPlhokB5wLEedehzbwICCjIkicPHLImiKExjPs0l290DJLwA==" + } + }, + "npm:spdx-correct": { + "type": "npm", + "name": "npm:spdx-correct", + "data": { + "version": "3.2.0", + "packageName": "spdx-correct", + "hash": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==" + } + }, + "npm:@nx/js@16.5.3": { + "type": "npm", + "name": "npm:@nx/js@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nx/js", + "hash": "sha512-4eGseRQR2t9QoahwBOEvqv3xGL7icfpx4dhCfhv1YV5ImoycuqwaUhoJZwTYvxOW0pahwI2qDZCpOUGXz76kGg==" + } + }, + "npm:@octokit/request@5.6.3": { + "type": "npm", + "name": "npm:@octokit/request@5.6.3", + "data": { + "version": "5.6.3", + "packageName": "@octokit/request", + "hash": "sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==" + } + }, + "npm:@types/react-router-config": { + "type": "npm", + "name": "npm:@types/react-router-config", + "data": { + "version": "5.0.6", + "packageName": "@types/react-router-config", + "hash": "sha512-db1mx37a1EJDf1XeX8jJN7R3PZABmJQXR8r28yUjVMFSjkmnQo6X6pOEEmNl+Tp2gYQOGPdYbFIipBtdElZ3Yg==" + } + }, + "npm:at-least-node": { + "type": "npm", + "name": "npm:at-least-node", + "data": { + "version": "1.0.0", + "packageName": "at-least-node", + "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + } + }, + "npm:before-after-hook": { + "type": "npm", + "name": "npm:before-after-hook", + "data": { + "version": "2.2.2", + "packageName": "before-after-hook", + "hash": "sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==" + } + }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, + "npm:git-remote-origin-url": { + "type": "npm", + "name": "npm:git-remote-origin-url", + "data": { + "version": "2.0.0", + "packageName": "git-remote-origin-url", + "hash": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=" + } + }, + "npm:escape-string-regexp@2.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + }, + "npm:jest-get-type@29.4.3": { + "type": "npm", + "name": "npm:jest-get-type@29.4.3", + "data": { + "version": "29.4.3", + "packageName": "jest-get-type", + "hash": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==" + } + }, + "npm:strip-ansi@7.0.1": { + "type": "npm", + "name": "npm:strip-ansi@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "strip-ansi", + "hash": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==" + } + }, + "npm:@esbuild/win32-x64@0.18.17": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.18.17", + "data": { + "version": "0.18.17", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==" + } + }, + "npm:minipass@7.0.1": { + "type": "npm", + "name": "npm:minipass@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "minipass", + "hash": "sha512-NQ8MCKimInjVlaIqx51RKJJB7mINVkLTJbsZKmto4UAAOC/CWXES8PGaOgoBZyqoUsUA/U3DToGK7GJkkHbjJw==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.15.0", + "packageName": "enhanced-resolve", + "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" + } + }, + "npm:strip-bom@4.0.0": { + "type": "npm", + "name": "npm:strip-bom@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + }, + "npm:minimatch@5.1.6": { + "type": "npm", + "name": "npm:minimatch@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "minimatch", + "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" + } + }, + "npm:uglify-js": { + "type": "npm", + "name": "npm:uglify-js", + "data": { + "version": "3.14.2", + "packageName": "uglify-js", + "hash": "sha512-rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A==" + } + }, + "npm:dot-prop": { + "type": "npm", + "name": "npm:dot-prop", + "data": { + "version": "5.3.0", + "packageName": "dot-prop", + "hash": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + } + }, + "npm:use-latest": { + "type": "npm", + "name": "npm:use-latest", + "data": { + "version": "1.2.0", + "packageName": "use-latest", + "hash": "sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==" + } + }, + "npm:json5@1.0.2": { + "type": "npm", + "name": "npm:json5@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "json5", + "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" + } + }, + "npm:@rushstack/ts-command-line@4.15.1": { + "type": "npm", + "name": "npm:@rushstack/ts-command-line@4.15.1", + "data": { + "version": "4.15.1", + "packageName": "@rushstack/ts-command-line", + "hash": "sha512-EL4jxZe5fhb1uVL/P/wQO+Z8Rc8FMiWJ1G7VgnPDvdIt5GVjRfK7vwzder1CZQiX3x0PY6uxENYLNGTFd1InRQ==" + } + }, + "npm:istanbul-reports": { + "type": "npm", + "name": "npm:istanbul-reports", + "data": { + "version": "3.1.6", + "packageName": "istanbul-reports", + "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" + } + }, + "npm:workbox-streams": { + "type": "npm", + "name": "npm:workbox-streams", + "data": { + "version": "6.5.4", + "packageName": "workbox-streams", + "hash": "sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==" + } + }, + "npm:cspell-grammar@6.31.1": { + "type": "npm", + "name": "npm:cspell-grammar@6.31.1", + "data": { + "version": "6.31.1", + "packageName": "cspell-grammar", + "hash": "sha512-AsRVP0idcNFVSb9+p9XjMumFj3BUV67WIPWApaAzJl/dYyiIygQObRE+si0/QtFWGNw873b7hNhWZiKjqIdoaQ==" + } + }, + "npm:@svgr/babel-plugin-remove-jsx-empty-expression": { + "type": "npm", + "name": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "data": { + "version": "6.0.0", + "packageName": "@svgr/babel-plugin-remove-jsx-empty-expression", + "hash": "sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.2", + "packageName": "@types/body-parser", + "hash": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==" + } + }, + "npm:camelcase-keys": { + "type": "npm", + "name": "npm:camelcase-keys", + "data": { + "version": "6.2.2", + "packageName": "camelcase-keys", + "hash": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==" + } + }, + "npm:is-text-path": { + "type": "npm", + "name": "npm:is-text-path", + "data": { + "version": "1.0.1", + "packageName": "is-text-path", + "hash": "sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=" + } + }, + "npm:@netlify/open-api": { + "type": "npm", + "name": "npm:@netlify/open-api", + "data": { + "version": "2.19.1", + "packageName": "@netlify/open-api", + "hash": "sha512-RkucRf8o0vYhCDXCRHWU/EdhkVE3JhkqKmZFvMW6qCPD206GV2Cfo9JGSKb0NdN+nmHSNaYmd+9dvT6I9MP4pw==" + } + }, + "npm:@babel/helper-plugin-utils@7.10.4": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils@7.10.4", + "data": { + "version": "7.10.4", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" + } + }, + "npm:xtend": { + "type": "npm", + "name": "npm:xtend", + "data": { + "version": "4.0.2", + "packageName": "xtend", + "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:postcss-discard-unused": { + "type": "npm", + "name": "npm:postcss-discard-unused", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-unused", + "hash": "sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "6.0.1", + "packageName": "serialize-javascript", + "hash": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==" + } + }, + "npm:@nrwl/tao@16.5.3": { + "type": "npm", + "name": "npm:@nrwl/tao@16.5.3", + "data": { + "version": "16.5.3", + "packageName": "@nrwl/tao", + "hash": "sha512-GHL8NU2P/kMahXo9lhExTgG1ow9sI3CbCe8E+UPgp4GOscIJypCpD5FuvwmkYJHgMzAx1nknlDYXN12xEe7QVg==" + } + }, + "npm:react": { + "type": "npm", + "name": "npm:react", + "data": { + "version": "18.2.0", + "packageName": "react", + "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" + } + }, + "npm:aproba": { + "type": "npm", + "name": "npm:aproba", + "data": { + "version": "2.0.0", + "packageName": "aproba", + "hash": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.10.1", + "packageName": "path-scurry", + "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" + } + } + }, + "dependencies": { + "rule-schema-to-typescript-types": [ + { + "source": "rule-schema-to-typescript-types", + "target": "type-utils", + "type": "static" + }, + { + "source": "rule-schema-to-typescript-types", + "target": "utils", + "type": "static" + }, + { + "source": "rule-schema-to-typescript-types", + "target": "npm:natural-compare", + "type": "static" + } + ], + "eslint-plugin-internal": [ + { + "source": "eslint-plugin-internal", + "target": "npm:@types/prettier", + "type": "static" + }, + { + "source": "eslint-plugin-internal", + "target": "rule-tester", + "type": "static" + }, + { + "source": "eslint-plugin-internal", + "target": "scope-manager", + "type": "static" + }, + { + "source": "eslint-plugin-internal", + "target": "type-utils", + "type": "static" + }, + { + "source": "eslint-plugin-internal", + "target": "utils", + "type": "static" + } + ], + "eslint-plugin-tslint": [ + { + "source": "eslint-plugin-tslint", + "target": "utils", + "type": "static" + }, + { + "source": "eslint-plugin-tslint", + "target": "parser", + "type": "static" + }, + { + "source": "eslint-plugin-tslint", + "target": "npm:tslint", + "type": "static" + }, + { + "source": "eslint-plugin-tslint", + "target": "npm:tslint", + "type": "dynamic" + } + ], + "integration-tests": [ + { + "source": "integration-tests", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "integration-tests", + "target": "npm:ncp", + "type": "static" + }, + { + "source": "integration-tests", + "target": "npm:tmp", + "type": "static" + } + ], + "typescript-estree": [ + { + "source": "typescript-estree", + "target": "types", + "type": "implicit" + }, + { + "source": "typescript-estree", + "target": "types", + "type": "static" + }, + { + "source": "typescript-estree", + "target": "visitor-keys", + "type": "static" + }, + { + "source": "typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "typescript-estree", + "target": "npm:globby", + "type": "static" + }, + { + "source": "typescript-estree", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "typescript-estree", + "target": "npm:semver", + "type": "static" + }, + { + "source": "typescript-estree", + "target": "npm:jest-specific-snapshot", + "type": "static" + }, + { + "source": "typescript-estree", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "typescript-estree", + "target": "npm:tmp", + "type": "static" + } + ], + "website-eslint": [ + { + "source": "website-eslint", + "target": "types", + "type": "static" + }, + { + "source": "website-eslint", + "target": "utils", + "type": "static" + }, + { + "source": "website-eslint", + "target": "eslint-plugin", + "type": "static" + }, + { + "source": "website-eslint", + "target": "parser", + "type": "static" + }, + { + "source": "website-eslint", + "target": "scope-manager", + "type": "static" + }, + { + "source": "website-eslint", + "target": "typescript-estree", + "type": "static" + }, + { + "source": "website-eslint", + "target": "visitor-keys", + "type": "static" + }, + { + "source": "website-eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "website-eslint", + "target": "npm:semver", + "type": "static" + } + ], + "eslint-plugin": [ + { + "source": "eslint-plugin", + "target": "utils", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "scope-manager", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "type-utils", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "visitor-keys", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:@types/prettier", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "rule-schema-to-typescript-types", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "rule-tester", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:cross-fetch", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:jest-specific-snapshot", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:markdown-table", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:marked", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:title-case", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "parser", + "type": "static" + }, + { + "source": "eslint-plugin", + "target": "npm:espree", + "type": "static" + } + ], + "scope-manager": [ + { + "source": "scope-manager", + "target": "types", + "type": "static" + }, + { + "source": "scope-manager", + "target": "visitor-keys", + "type": "static" + }, + { + "source": "scope-manager", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "scope-manager", + "target": "typescript-estree", + "type": "static" + }, + { + "source": "scope-manager", + "target": "npm:jest-specific-snapshot", + "type": "static" + }, + { + "source": "scope-manager", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "scope-manager", + "target": "npm:react", + "type": "static" + } + ], + "visitor-keys": [ + { + "source": "visitor-keys", + "target": "types", + "type": "static" + }, + { + "source": "visitor-keys", + "target": "npm:@types/eslint-visitor-keys", + "type": "static" + } + ], + "rule-tester": [ + { + "source": "rule-tester", + "target": "typescript-estree", + "type": "static" + }, + { + "source": "rule-tester", + "target": "utils", + "type": "static" + }, + { + "source": "rule-tester", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "rule-tester", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "rule-tester", + "target": "npm:semver", + "type": "static" + }, + { + "source": "rule-tester", + "target": "parser", + "type": "static" + }, + { + "source": "rule-tester", + "target": "parser", + "type": "dynamic" + }, + { + "source": "rule-tester", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "rule-tester", + "target": "npm:events", + "type": "static" + }, + { + "source": "rule-tester", + "target": "npm:espree", + "type": "static" + }, + { + "source": "rule-tester", + "target": "npm:espree", + "type": "dynamic" + }, + { + "source": "rule-tester", + "target": "npm:esprima", + "type": "dynamic" + } + ], + "repo-tools": [ + { + "source": "repo-tools", + "target": "npm:cross-fetch", + "type": "static" + }, + { + "source": "repo-tools", + "target": "npm:execa", + "type": "static" + }, + { + "source": "repo-tools", + "target": "npm:tmp", + "type": "static" + } + ], + "type-utils": [ + { + "source": "type-utils", + "target": "typescript-estree", + "type": "static" + }, + { + "source": "type-utils", + "target": "utils", + "type": "static" + }, + { + "source": "type-utils", + "target": "npm:debug", + "type": "static" + }, + { + "source": "type-utils", + "target": "parser", + "type": "static" + }, + { + "source": "type-utils", + "target": "npm:ajv", + "type": "static" + } + ], + "ast-spec": [ + { + "source": "ast-spec", + "target": "npm:jest-specific-snapshot", + "type": "static" + }, + { + "source": "ast-spec", + "target": "npm:make-dir", + "type": "static" + } + ], + "website": [ + { + "source": "website", + "target": "npm:ts-node", + "type": "static" + }, + { + "source": "website", + "target": "npm:remark-docusaurus-tabs", + "type": "static" + }, + { + "source": "website", + "target": "npm:@mdx-js/react", + "type": "static" + }, + { + "source": "website", + "target": "parser", + "type": "static" + }, + { + "source": "website", + "target": "website-eslint", + "type": "static" + }, + { + "source": "website", + "target": "website-eslint", + "type": "dynamic" + }, + { + "source": "website", + "target": "npm:clsx", + "type": "static" + }, + { + "source": "website", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "website", + "target": "npm:json5", + "type": "static" + }, + { + "source": "website", + "target": "npm:konamimojisplosion", + "type": "static" + }, + { + "source": "website", + "target": "npm:konamimojisplosion", + "type": "dynamic" + }, + { + "source": "website", + "target": "npm:lz-string", + "type": "static" + }, + { + "source": "website", + "target": "npm:prism-react-renderer", + "type": "static" + }, + { + "source": "website", + "target": "npm:react", + "type": "static" + }, + { + "source": "website", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "website", + "target": "npm:semver", + "type": "static" + }, + { + "source": "website", + "target": "npm:@types/react-router-dom", + "type": "static" + }, + { + "source": "website", + "target": "eslint-plugin", + "type": "static" + }, + { + "source": "website", + "target": "eslint-plugin", + "type": "dynamic" + }, + { + "source": "website", + "target": "rule-schema-to-typescript-types", + "type": "static" + }, + { + "source": "website", + "target": "types", + "type": "static" + }, + { + "source": "website", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "website", + "target": "npm:cross-fetch", + "type": "static" + }, + { + "source": "website", + "target": "npm:globby", + "type": "static" + }, + { + "source": "website", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "website", + "target": "npm:raw-loader", + "type": "static" + }, + { + "source": "website", + "target": "npm:stylelint-config-recommended", + "type": "static" + }, + { + "source": "website", + "target": "npm:stylelint-config-standard", + "type": "static" + }, + { + "source": "website", + "target": "npm:stylelint-order", + "type": "static" + }, + { + "source": "website", + "target": "npm:unified", + "type": "static" + }, + { + "source": "website", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "website", + "target": "utils", + "type": "static" + }, + { + "source": "website", + "target": "typescript-estree", + "type": "static" + }, + { + "source": "website", + "target": "scope-manager", + "type": "static" + }, + { + "source": "website", + "target": "npm:history", + "type": "static" + } + ], + "parser": [ + { + "source": "parser", + "target": "scope-manager", + "type": "static" + }, + { + "source": "parser", + "target": "types", + "type": "static" + }, + { + "source": "parser", + "target": "typescript-estree", + "type": "static" + }, + { + "source": "parser", + "target": "visitor-keys", + "type": "static" + }, + { + "source": "parser", + "target": "npm:debug", + "type": "static" + } + ], + "types": [ + { + "source": "types", + "target": "ast-spec", + "type": "implicit" + } + ], + "utils": [ + { + "source": "utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "utils", + "target": "scope-manager", + "type": "static" + }, + { + "source": "utils", + "target": "types", + "type": "static" + }, + { + "source": "utils", + "target": "typescript-estree", + "type": "static" + }, + { + "source": "utils", + "target": "npm:semver", + "type": "static" + }, + { + "source": "utils", + "target": "parser", + "type": "static" + } + ], + "npm:@actions/core@1.10.0": [ + { + "source": "npm:@actions/core@1.10.0", + "target": "npm:@actions/http-client@2.1.0", + "type": "static" + }, + { + "source": "npm:@actions/core@1.10.0", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:@actions/github@5.1.1": [ + { + "source": "npm:@actions/github@5.1.1", + "target": "npm:@actions/http-client@2.1.0", + "type": "static" + }, + { + "source": "npm:@actions/github@5.1.1", + "target": "npm:@octokit/core@3.6.0", + "type": "static" + }, + { + "source": "npm:@actions/github@5.1.1", + "target": "npm:@octokit/plugin-paginate-rest@2.21.3", + "type": "static" + }, + { + "source": "npm:@actions/github@5.1.1", + "target": "npm:@octokit/plugin-rest-endpoint-methods@5.16.2", + "type": "static" + } + ], + "npm:@actions/http-client@2.1.0": [ + { + "source": "npm:@actions/http-client@2.1.0", + "target": "npm:tunnel", + "type": "static" + } + ], + "npm:@algolia/autocomplete-core": [ + { + "source": "npm:@algolia/autocomplete-core", + "target": "npm:@algolia/autocomplete-shared", + "type": "static" + } + ], + "npm:@algolia/autocomplete-preset-algolia": [ + { + "source": "npm:@algolia/autocomplete-preset-algolia", + "target": "npm:@algolia/autocomplete-shared", + "type": "static" + } + ], + "npm:@algolia/cache-browser-local-storage": [ + { + "source": "npm:@algolia/cache-browser-local-storage", + "target": "npm:@algolia/cache-common", + "type": "static" + } + ], + "npm:@algolia/cache-in-memory": [ + { + "source": "npm:@algolia/cache-in-memory", + "target": "npm:@algolia/cache-common", + "type": "static" + } + ], + "npm:@algolia/client-account": [ + { + "source": "npm:@algolia/client-account", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-account", + "target": "npm:@algolia/client-search", + "type": "static" + }, + { + "source": "npm:@algolia/client-account", + "target": "npm:@algolia/transporter", + "type": "static" + } + ], + "npm:@algolia/client-analytics": [ + { + "source": "npm:@algolia/client-analytics", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-analytics", + "target": "npm:@algolia/client-search", + "type": "static" + }, + { + "source": "npm:@algolia/client-analytics", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-analytics", + "target": "npm:@algolia/transporter", + "type": "static" + } + ], + "npm:@algolia/client-common": [ + { + "source": "npm:@algolia/client-common", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-common", + "target": "npm:@algolia/transporter", + "type": "static" + } + ], + "npm:@algolia/client-personalization": [ + { + "source": "npm:@algolia/client-personalization", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-personalization", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-personalization", + "target": "npm:@algolia/transporter", + "type": "static" + } + ], + "npm:@algolia/client-search": [ + { + "source": "npm:@algolia/client-search", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-search", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:@algolia/client-search", + "target": "npm:@algolia/transporter", + "type": "static" + } + ], + "npm:@algolia/logger-console": [ + { + "source": "npm:@algolia/logger-console", + "target": "npm:@algolia/logger-common", + "type": "static" + } + ], + "npm:@algolia/requester-browser-xhr": [ + { + "source": "npm:@algolia/requester-browser-xhr", + "target": "npm:@algolia/requester-common", + "type": "static" + } + ], + "npm:@algolia/requester-node-http": [ + { + "source": "npm:@algolia/requester-node-http", + "target": "npm:@algolia/requester-common", + "type": "static" + } + ], + "npm:@algolia/transporter": [ + { + "source": "npm:@algolia/transporter", + "target": "npm:@algolia/cache-common", + "type": "static" + }, + { + "source": "npm:@algolia/transporter", + "target": "npm:@algolia/logger-common", + "type": "static" + }, + { + "source": "npm:@algolia/transporter", + "target": "npm:@algolia/requester-common", + "type": "static" + } + ], + "npm:@ampproject/remapping": [ + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + } + ], + "npm:@apideck/better-ajv-errors@0.3.6": [ + { + "source": "npm:@apideck/better-ajv-errors@0.3.6", + "target": "npm:json-schema", + "type": "static" + }, + { + "source": "npm:@apideck/better-ajv-errors@0.3.6", + "target": "npm:jsonpointer", + "type": "static" + }, + { + "source": "npm:@apideck/better-ajv-errors@0.3.6", + "target": "npm:leven", + "type": "static" + } + ], + "npm:@axe-core/playwright@4.7.3": [ + { + "source": "npm:@axe-core/playwright@4.7.3", + "target": "npm:axe-core", + "type": "static" + } + ], + "npm:@babel/code-frame@7.22.5": [ + { + "source": "npm:@babel/code-frame@7.22.5", + "target": "npm:@babel/highlight@7.22.5", + "type": "static" + } + ], + "npm:@babel/core@7.22.9": [ + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/core@7.12.9": [ + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/helpers@7.22.6", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:@babel/core@7.12.9", + "target": "npm:source-map@0.5.7", + "type": "static" + } + ], + "npm:@babel/eslint-parser@7.22.9": [ + { + "source": "npm:@babel/eslint-parser@7.22.9", + "target": "npm:@nicolo-ribaudo/eslint-scope-5-internals", + "type": "static" + }, + { + "source": "npm:@babel/eslint-parser@7.22.9", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:@babel/eslint-parser@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/generator@7.22.9": [ + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@babel/generator@7.22.9", + "target": "npm:jsesc@2.5.2", + "type": "static" + } + ], + "npm:@babel/helper-annotate-as-pure@7.18.6": [ + { + "source": "npm:@babel/helper-annotate-as-pure@7.18.6", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9": [ + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9", + "target": "npm:@babel/helper-explode-assignable-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-compilation-targets@7.22.9": [ + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets@7.22.9", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-create-class-features-plugin@7.21.8": [ + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-optimise-call-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-replace-supers@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-create-regexp-features-plugin@7.21.8": [ + { + "source": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-define-polyfill-provider@0.3.3": [ + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-explode-assignable-expression@7.18.6": [ + { + "source": "npm:@babel/helper-explode-assignable-expression@7.18.6", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-function-name": [ + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-hoist-variables": [ + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-member-expression-to-functions@7.21.5": [ + { + "source": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-module-imports@7.22.5": [ + { + "source": "npm:@babel/helper-module-imports@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-module-transforms@7.22.9": [ + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms@7.22.9", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-optimise-call-expression@7.18.6": [ + { + "source": "npm:@babel/helper-optimise-call-expression@7.18.6", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-remap-async-to-generator@7.18.9": [ + { + "source": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "target": "npm:@babel/helper-wrap-function@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-replace-supers@7.21.5": [ + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-member-expression-to-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/helper-optimise-call-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-simple-access": [ + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0": [ + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-split-export-declaration": [ + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helper-wrap-function@7.18.9": [ + { + "source": "npm:@babel/helper-wrap-function@7.18.9", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function@7.18.9", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function@7.18.9", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function@7.18.9", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/helpers@7.22.6": [ + { + "source": "npm:@babel/helpers@7.22.6", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/helpers@7.22.6", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@babel/helpers@7.22.6", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/highlight@7.22.5": [ + { + "source": "npm:@babel/highlight@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.22.5", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight@7.22.5", + "target": "npm:js-tokens", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6": [ + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7": [ + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "target": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-async-generator-functions@7.20.7": [ + { + "source": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "target": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-class-properties@7.18.6": [ + { + "source": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-class-static-block@7.21.0": [ + { + "source": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-decorators@7.21.0": [ + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/helper-replace-supers@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators@7.21.0", + "target": "npm:@babel/plugin-syntax-decorators@7.21.0", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-dynamic-import@7.18.6": [ + { + "source": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-export-namespace-from@7.18.9": [ + { + "source": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-json-strings@7.18.6": [ + { + "source": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7": [ + { + "source": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6": [ + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-numeric-separator@7.18.6": [ + { + "source": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-object-rest-spread@7.12.1": [ + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "target": "npm:@babel/plugin-transform-parameters@7.21.3", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-object-rest-spread@7.20.7": [ + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "target": "npm:@babel/plugin-transform-parameters@7.21.3", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6": [ + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-optional-chaining@7.21.0": [ + { + "source": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-private-methods@7.18.6": [ + { + "source": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-private-property-in-object@7.21.0": [ + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6": [ + { + "source": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-async-generators": [ + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-bigint": [ + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-properties": [ + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-static-block": [ + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-decorators@7.21.0": [ + { + "source": "npm:@babel/plugin-syntax-decorators@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-dynamic-import": [ + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-export-namespace-from": [ + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-assertions@7.20.0": [ + { + "source": "npm:@babel/plugin-syntax-import-assertions@7.20.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-meta": [ + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-json-strings": [ + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-jsx@7.12.1": [ + { + "source": "npm:@babel/plugin-syntax-jsx@7.12.1", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-jsx": [ + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-logical-assignment-operators": [ + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-numeric-separator": [ + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-object-rest-spread": [ + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-chaining": [ + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-private-property-in-object": [ + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-top-level-await": [ + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-typescript": [ + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-arrow-functions@7.21.5": [ + { + "source": "npm:@babel/plugin-transform-arrow-functions@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-async-to-generator@7.20.7": [ + { + "source": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "target": "npm:@babel/helper-remap-async-to-generator@7.18.9", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoped-functions@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-block-scoped-functions@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoping@7.21.0": [ + { + "source": "npm:@babel/plugin-transform-block-scoping@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-classes@7.21.0": [ + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-optimise-call-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-replace-supers@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes@7.21.0", + "target": "npm:globals", + "type": "static" + } + ], + "npm:@babel/plugin-transform-computed-properties@7.21.5": [ + { + "source": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "target": "npm:@babel/template@7.22.5", + "type": "static" + } + ], + "npm:@babel/plugin-transform-destructuring@7.21.3": [ + { + "source": "npm:@babel/plugin-transform-destructuring@7.21.3", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-dotall-regex@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-duplicate-keys@7.18.9": [ + { + "source": "npm:@babel/plugin-transform-duplicate-keys@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-exponentiation-operator@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-for-of@7.21.5": [ + { + "source": "npm:@babel/plugin-transform-for-of@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-function-name@7.18.9": [ + { + "source": "npm:@babel/plugin-transform-function-name@7.18.9", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name@7.18.9", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-literals@7.18.9": [ + { + "source": "npm:@babel/plugin-transform-literals@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-member-expression-literals@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-member-expression-literals@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-amd@7.20.11": [ + { + "source": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-commonjs@7.21.5": [ + { + "source": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "target": "npm:@babel/helper-simple-access", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-systemjs@7.20.11": [ + { + "source": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-umd@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "target": "npm:@babel/helper-module-transforms@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5": [ + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-new-target@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-new-target@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-super@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-object-super@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super@7.18.6", + "target": "npm:@babel/helper-replace-supers@7.21.5", + "type": "static" + } + ], + "npm:@babel/plugin-transform-parameters@7.21.3": [ + { + "source": "npm:@babel/plugin-transform-parameters@7.21.3", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-property-literals@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-property-literals@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-constant-elements": [ + { + "source": "npm:@babel/plugin-transform-react-constant-elements", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-display-name": [ + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx-development": [ + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx": [ + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-pure-annotations": [ + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-annotate-as-pure@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-regenerator@7.21.5": [ + { + "source": "npm:@babel/plugin-transform-regenerator@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator@7.21.5", + "target": "npm:regenerator-transform@0.15.1", + "type": "static" + } + ], + "npm:@babel/plugin-transform-reserved-words@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-reserved-words@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-runtime@7.21.4": [ + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime@7.21.4", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/plugin-transform-shorthand-properties@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-shorthand-properties@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-spread@7.20.7": [ + { + "source": "npm:@babel/plugin-transform-spread@7.20.7", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread@7.20.7", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers@7.20.0", + "type": "static" + } + ], + "npm:@babel/plugin-transform-sticky-regex@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-sticky-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-template-literals@7.18.9": [ + { + "source": "npm:@babel/plugin-transform-template-literals@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typeof-symbol@7.18.9": [ + { + "source": "npm:@babel/plugin-transform-typeof-symbol@7.18.9", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typescript@7.18.8": [ + { + "source": "npm:@babel/plugin-transform-typescript@7.18.8", + "target": "npm:@babel/helper-create-class-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript@7.18.8", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript@7.18.8", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-escapes@7.21.5": [ + { + "source": "npm:@babel/plugin-transform-unicode-escapes@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-regex@7.18.6": [ + { + "source": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "target": "npm:@babel/helper-create-regexp-features-plugin@7.21.8", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/preset-env@7.21.5": [ + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-compilation-targets@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-async-generator-functions@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-class-static-block@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-dynamic-import@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-export-namespace-from@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-json-strings@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-logical-assignment-operators@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-numeric-separator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-object-rest-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-catch-binding@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-optional-chaining@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-methods@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-private-property-in-object@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-assertions@7.20.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-arrow-functions@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-async-to-generator@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoped-functions@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-block-scoping@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-classes@7.21.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-computed-properties@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-destructuring@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-duplicate-keys@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-exponentiation-operator@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-for-of@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-function-name@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-member-expression-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-amd@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-commonjs@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-systemjs@7.20.11", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-modules-umd@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex@7.20.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-new-target@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-object-super@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-parameters@7.21.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-property-literals@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-regenerator@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-reserved-words@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-shorthand-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-spread@7.20.7", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-sticky-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-template-literals@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-typeof-symbol@7.18.9", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-escapes@7.21.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/plugin-transform-unicode-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/preset-modules@0.1.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:core-js-compat@3.25.4", + "type": "static" + }, + { + "source": "npm:@babel/preset-env@7.21.5", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/preset-modules@0.1.5": [ + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:@babel/plugin-proposal-unicode-property-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:@babel/plugin-transform-dotall-regex@7.18.6", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules@0.1.5", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:@babel/preset-react": [ + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + } + ], + "npm:@babel/preset-typescript@7.18.6": [ + { + "source": "npm:@babel/preset-typescript@7.18.6", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript@7.18.6", + "target": "npm:@babel/helper-validator-option@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript@7.18.6", + "target": "npm:@babel/plugin-transform-typescript@7.18.8", + "type": "static" + } + ], + "npm:@babel/runtime-corejs3": [ + { + "source": "npm:@babel/runtime-corejs3", + "target": "npm:core-js-pure", + "type": "static" + }, + { + "source": "npm:@babel/runtime-corejs3", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + } + ], + "npm:@babel/runtime@7.22.6": [ + { + "source": "npm:@babel/runtime@7.22.6", + "target": "npm:regenerator-runtime@0.13.11", + "type": "static" + } + ], + "npm:@babel/template@7.22.5": [ + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/template@7.22.5", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@babel/traverse@7.22.8": [ + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-environment-visitor@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse@7.22.8", + "target": "npm:globals", + "type": "static" + } + ], + "npm:@babel/types@7.22.5": [ + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:@babel/types@7.22.5", + "target": "npm:to-fast-properties", + "type": "static" + } + ], + "npm:@cspell/cspell-bundled-dicts@6.31.2": [ + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-ada@4.0.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-aws@3.0.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-bash@4.1.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-companies@3.0.17", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-cpp@5.0.3", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-cryptocurrencies@3.0.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-csharp", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-css@4.0.6", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-dart@2.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-django", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-docker@1.1.6", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-dotnet", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-elixir", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-en-common-misspellings", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-en-gb", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-en_us@4.3.4", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-filetypes", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-fonts@3.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-fullstack", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-gaming-terms", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-git", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-golang@6.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-haskell", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-html@4.0.3", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-html-symbol-entities", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-java@5.0.5", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-k8s", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-latex", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-lorem-ipsum@3.0.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-lua@4.0.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-node@4.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-npm@5.0.7", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-php@4.0.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-powershell", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-public-licenses@2.0.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-python@4.1.2", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-r", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-ruby@5.0.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-rust", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-scala", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-software-terms@3.2.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-sql@2.1.0", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-svelte", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-swift", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-typescript@3.1.1", + "type": "static" + }, + { + "source": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "target": "npm:@cspell/dict-vue", + "type": "static" + } + ], + "npm:@cspell/dict-python@4.1.2": [ + { + "source": "npm:@cspell/dict-python@4.1.2", + "target": "npm:@cspell/dict-data-science@1.0.7", + "type": "static" + } + ], + "npm:@cspell/dynamic-import@6.31.1": [ + { + "source": "npm:@cspell/dynamic-import@6.31.1", + "target": "npm:import-meta-resolve@2.2.2", + "type": "static" + } + ], + "npm:@cspotcode/source-map-support@0.7.0": [ + { + "source": "npm:@cspotcode/source-map-support@0.7.0", + "target": "npm:@cspotcode/source-map-consumer", + "type": "static" + } + ], + "npm:@cspotcode/source-map-support": [ + { + "source": "npm:@cspotcode/source-map-support", + "target": "npm:@jridgewell/trace-mapping@0.3.9", + "type": "static" + } + ], + "npm:@docsearch/react": [ + { + "source": "npm:@docsearch/react", + "target": "npm:@algolia/autocomplete-core", + "type": "static" + }, + { + "source": "npm:@docsearch/react", + "target": "npm:@algolia/autocomplete-preset-algolia", + "type": "static" + }, + { + "source": "npm:@docsearch/react", + "target": "npm:@docsearch/css", + "type": "static" + }, + { + "source": "npm:@docsearch/react", + "target": "npm:algoliasearch", + "type": "static" + } + ], + "npm:@docusaurus/core@2.4.1": [ + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/plugin-transform-runtime@7.21.4", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/preset-typescript@7.18.6", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/runtime-corejs3", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/cssnano-preset@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@slorber/static-site-generator-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:@svgr/webpack", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:babel-plugin-dynamic-import-node", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:boxen", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:cli-table3", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:combine-promises", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:del", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:eta", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:html-tags", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:html-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:postcss-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-dev-utils", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-loadable-ssr-addon-v5-slorber", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-router", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:react-router-dom", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:rtl-detect", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:serve-handler", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:shelljs", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:update-notifier", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:url-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:wait-on", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack-bundle-analyzer", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@docusaurus/core@2.4.1", + "target": "npm:webpackbar", + "type": "static" + } + ], + "npm:@docusaurus/cssnano-preset@2.4.1": [ + { + "source": "npm:@docusaurus/cssnano-preset@2.4.1", + "target": "npm:cssnano-preset-advanced", + "type": "static" + }, + { + "source": "npm:@docusaurus/cssnano-preset@2.4.1", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:@docusaurus/cssnano-preset@2.4.1", + "target": "npm:postcss-sort-media-queries", + "type": "static" + }, + { + "source": "npm:@docusaurus/cssnano-preset@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/logger@2.4.1": [ + { + "source": "npm:@docusaurus/logger@2.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/logger@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/mdx-loader@2.4.1": [ + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:@mdx-js/mdx", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:remark-emoji", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:stringify-object", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:unified@9.2.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:url-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/mdx-loader@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + } + ], + "npm:@docusaurus/module-type-aliases@2.4.1": [ + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@docusaurus/react-loadable", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:@types/react-router-dom", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:@docusaurus/module-type-aliases@2.4.1", + "target": "npm:react-loadable", + "type": "static" + } + ], + "npm:@docusaurus/plugin-content-blog@2.4.1": [ + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:cheerio", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:feed", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:reading-time", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-blog@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + } + ], + "npm:@docusaurus/plugin-content-docs@2.4.1": [ + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/module-type-aliases@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:@types/react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:combine-promises", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-docs@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + } + ], + "npm:@docusaurus/plugin-content-pages@2.4.1": [ + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-content-pages@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + } + ], + "npm:@docusaurus/plugin-debug@2.4.1": [ + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:react-json-view", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-debug@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/plugin-google-analytics@2.4.1": [ + { + "source": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/plugin-google-gtag@2.4.1": [ + { + "source": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/plugin-google-tag-manager@2.4.1": [ + { + "source": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/plugin-pwa@2.4.1": [ + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/theme-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/theme-translations@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:babel-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:clsx@1.2.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:core-js", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:webpack-merge", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:workbox-build", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:workbox-precaching", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-pwa@2.4.1", + "target": "npm:workbox-window", + "type": "static" + } + ], + "npm:@docusaurus/plugin-sitemap@2.4.1": [ + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:sitemap", + "type": "static" + }, + { + "source": "npm:@docusaurus/plugin-sitemap@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/preset-classic@2.4.1": [ + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-blog@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-docs@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-pages@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-debug@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-google-analytics@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-google-gtag@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-google-tag-manager@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/plugin-sitemap@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/theme-classic@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/theme-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/theme-search-algolia@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/preset-classic@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + } + ], + "npm:@docusaurus/react-loadable": [ + { + "source": "npm:@docusaurus/react-loadable", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/react-loadable", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react-loadable": [ + { + "source": "npm:react-loadable", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:react-loadable", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1": [ + { + "source": "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1", + "target": "npm:npm-to-yarn", + "type": "static" + }, + { + "source": "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/remark-plugin-npm2yarn@2.4.1", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:@docusaurus/theme-classic@2.4.1": [ + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/module-type-aliases@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-blog@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-docs@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/plugin-content-pages@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/theme-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/theme-translations@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/types@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:@mdx-js/react", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:clsx@1.2.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:copy-text-to-clipboard", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:infima", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:nprogress", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:prism-react-renderer", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:prismjs", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:react-router-dom", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:rtlcss", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-classic@2.4.1", + "target": "npm:utility-types", + "type": "static" + } + ], + "npm:@docusaurus/theme-common@2.4.1": [ + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/mdx-loader@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/module-type-aliases@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/plugin-content-blog@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/plugin-content-docs@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/plugin-content-pages@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@docusaurus/utils-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:@types/react-router-config", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:clsx@1.2.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:parse-numeric-range", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:prism-react-renderer", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:use-sync-external-store", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-common@2.4.1", + "target": "npm:utility-types", + "type": "static" + } + ], + "npm:@docusaurus/theme-search-algolia@2.4.1": [ + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docsearch/react", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/core@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/plugin-content-docs@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/theme-common@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/theme-translations@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:@docusaurus/utils-validation@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:algoliasearch", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:algoliasearch-helper", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:clsx@1.2.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:eta", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-search-algolia@2.4.1", + "target": "npm:utility-types", + "type": "static" + } + ], + "npm:@docusaurus/theme-translations@2.4.1": [ + { + "source": "npm:@docusaurus/theme-translations@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/theme-translations@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/types@2.4.1": [ + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:joi", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:utility-types", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + }, + { + "source": "npm:@docusaurus/types@2.4.1", + "target": "npm:webpack-merge", + "type": "static" + } + ], + "npm:@docusaurus/utils-common@2.4.1": [ + { + "source": "npm:@docusaurus/utils-common@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/utils-validation@2.4.1": [ + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:@docusaurus/utils@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:joi", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils-validation@2.4.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@docusaurus/utils@2.4.1": [ + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:@docusaurus/logger@2.4.1", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:@svgr/webpack", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:file-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:github-slugger", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:gray-matter", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:resolve-pathname", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:shelljs", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:url-loader", + "type": "static" + }, + { + "source": "npm:@docusaurus/utils@2.4.1", + "target": "npm:webpack@5.88.2", + "type": "static" + } + ], + "npm:@esbuild-kit/cjs-loader@2.4.2": [ + { + "source": "npm:@esbuild-kit/cjs-loader@2.4.2", + "target": "npm:@esbuild-kit/core-utils@3.1.0", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/cjs-loader@2.4.2", + "target": "npm:get-tsconfig@4.5.0", + "type": "static" + } + ], + "npm:@esbuild-kit/core-utils@3.1.0": [ + { + "source": "npm:@esbuild-kit/core-utils@3.1.0", + "target": "npm:esbuild@0.17.19", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/core-utils@3.1.0", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:@esbuild-kit/esm-loader@2.5.5": [ + { + "source": "npm:@esbuild-kit/esm-loader@2.5.5", + "target": "npm:@esbuild-kit/core-utils@3.1.0", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/esm-loader@2.5.5", + "target": "npm:get-tsconfig@4.5.0", + "type": "static" + } + ], + "npm:@eslint-community/eslint-utils": [ + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + } + ], + "npm:@eslint/eslintrc@2.1.1": [ + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:globals@13.20.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc@2.1.1", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:@hapi/topo": [ + { + "source": "npm:@hapi/topo", + "target": "npm:@hapi/hoek", + "type": "static" + } + ], + "npm:@humanwhocodes/config-array": [ + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:@humanwhocodes/object-schema", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:@isaacs/cliui": [ + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi-cjs", + "type": "static" + } + ], + "npm:@istanbuljs/load-nyc-config": [ + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:camelcase@5.3.1", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@jest/console@29.6.2": [ + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/console@29.6.2", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/core@29.6.2": [ + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/reporters@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-changed-files@29.5.0", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-config@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-resolve-dependencies@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-runner@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-runtime@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:jest-watcher@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core@29.6.2", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:@jest/create-cache-key-function@29.6.2": [ + { + "source": "npm:@jest/create-cache-key-function@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + } + ], + "npm:@jest/environment@29.6.2": [ + { + "source": "npm:@jest/environment@29.6.2", + "target": "npm:@jest/fake-timers@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/environment@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/environment@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/environment@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + } + ], + "npm:@jest/expect-utils@29.6.2": [ + { + "source": "npm:@jest/expect-utils@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + } + ], + "npm:@jest/expect@29.6.2": [ + { + "source": "npm:@jest/expect@29.6.2", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/expect@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + } + ], + "npm:@jest/fake-timers@29.6.2": [ + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + } + ], + "npm:@jest/globals@29.6.2": [ + { + "source": "npm:@jest/globals@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/globals@29.6.2", + "target": "npm:@jest/expect@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/globals@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/globals@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + } + ], + "npm:@jest/reporters@29.6.2": [ + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:jest-worker@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/reporters@29.6.2", + "target": "npm:v8-to-istanbul", + "type": "static" + } + ], + "npm:@jest/schemas@29.6.0": [ + { + "source": "npm:@jest/schemas@29.6.0", + "target": "npm:@sinclair/typebox", + "type": "static" + } + ], + "npm:@jest/source-map@29.6.0": [ + { + "source": "npm:@jest/source-map@29.6.0", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jest/source-map@29.6.0", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:@jest/source-map@29.6.0", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:@jest/test-result@29.6.2": [ + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + } + ], + "npm:@jest/test-sequencer@29.6.2": [ + { + "source": "npm:@jest/test-sequencer@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer@29.6.2", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/transform@29.6.2": [ + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:convert-source-map@2.0.0", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform@29.6.2", + "target": "npm:write-file-atomic@4.0.2", + "type": "static" + } + ], + "npm:@jest/types@29.6.1": [ + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@jest/schemas@29.6.0", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:@types/yargs", + "type": "static" + }, + { + "source": "npm:@jest/types@29.6.1", + "target": "npm:chalk@4.1.2", + "type": "static" + } + ], + "npm:@jridgewell/gen-mapping": [ + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + } + ], + "npm:@jridgewell/source-map": [ + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping@0.3.9": [ + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/resolve-uri@3.1.0", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping@0.3.18": [ + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/resolve-uri@3.1.0", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.18", + "target": "npm:@jridgewell/sourcemap-codec@1.4.14", + "type": "static" + } + ], + "npm:@lerna/child-process@7.1.4": [ + { + "source": "npm:@lerna/child-process@7.1.4", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@lerna/child-process@7.1.4", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/child-process@7.1.4", + "target": "npm:strong-log-transformer", + "type": "static" + } + ], + "npm:@lerna/create@7.1.4": [ + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:@lerna/child-process@7.1.4", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:pify@5.0.0", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:@lerna/create@7.1.4", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + } + ], + "npm:@mdx-js/mdx": [ + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/core@7.12.9", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-jsx@7.12.1", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:babel-plugin-extract-import-names", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:camelcase-css", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:detab", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:hast-util-raw", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:mdast-util-to-hast", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-footnotes", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-mdx", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-parse", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:remark-squeeze-paragraphs", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unified", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-builder", + "type": "static" + }, + { + "source": "npm:@mdx-js/mdx", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:@microsoft/api-extractor-model@7.27.5": [ + { + "source": "npm:@microsoft/api-extractor-model@7.27.5", + "target": "npm:@microsoft/tsdoc", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model@7.27.5", + "target": "npm:@microsoft/tsdoc-config", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor-model@7.27.5", + "target": "npm:@rushstack/node-core-library@3.59.6", + "type": "static" + } + ], + "npm:@microsoft/api-extractor@7.36.3": [ + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@microsoft/api-extractor-model@7.27.5", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@microsoft/tsdoc", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@microsoft/tsdoc-config", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@rushstack/node-core-library@3.59.6", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@rushstack/rig-package@0.4.0", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:@rushstack/ts-command-line@4.15.1", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:@microsoft/api-extractor@7.36.3", + "target": "npm:typescript@5.1.6", + "type": "static" + } + ], + "npm:@microsoft/tsdoc-config": [ + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:@microsoft/tsdoc@0.14.1", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@microsoft/tsdoc-config", + "target": "npm:resolve@1.19.0", + "type": "static" + } + ], + "npm:@nicolo-ribaudo/eslint-scope-5-internals": [ + { + "source": "npm:@nicolo-ribaudo/eslint-scope-5-internals", + "target": "npm:eslint-scope", + "type": "static" + } + ], + "npm:@nodelib/fs.scandir": [ + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + } + ], + "npm:@nodelib/fs.walk": [ + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + } + ], + "npm:@npmcli/fs@2.1.0": [ + { + "source": "npm:@npmcli/fs@2.1.0", + "target": "npm:@gar/promisify@1.1.3", + "type": "static" + }, + { + "source": "npm:@npmcli/fs@2.1.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@npmcli/fs": [ + { + "source": "npm:@npmcli/fs", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@npmcli/git": [ + { + "source": "npm:@npmcli/git", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/git", + "target": "npm:which", + "type": "static" + } + ], + "npm:@npmcli/installed-package-contents": [ + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-bundled@3.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/installed-package-contents", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:@npmcli/move-file@2.0.0": [ + { + "source": "npm:@npmcli/move-file@2.0.0", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file@2.0.0", + "target": "npm:rimraf@3.0.2", + "type": "static" + } + ], + "npm:@npmcli/promise-spawn": [ + { + "source": "npm:@npmcli/promise-spawn", + "target": "npm:which", + "type": "static" + } + ], + "npm:@npmcli/run-script": [ + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/node-gyp", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:node-gyp@9.0.0", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:@npmcli/run-script", + "target": "npm:which", + "type": "static" + } + ], + "npm:@nrwl/devkit@16.5.3": [ + { + "source": "npm:@nrwl/devkit@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + } + ], + "npm:@nrwl/jest@16.5.3": [ + { + "source": "npm:@nrwl/jest@16.5.3", + "target": "npm:@nx/jest@16.5.3", + "type": "static" + } + ], + "npm:@nrwl/js@16.5.3": [ + { + "source": "npm:@nrwl/js@16.5.3", + "target": "npm:@nx/js@16.5.3", + "type": "static" + } + ], + "npm:@nrwl/linter@16.5.3": [ + { + "source": "npm:@nrwl/linter@16.5.3", + "target": "npm:@nx/linter@16.5.3", + "type": "static" + } + ], + "npm:@nrwl/nx-cloud": [ + { + "source": "npm:@nrwl/nx-cloud", + "target": "npm:nx-cloud", + "type": "static" + } + ], + "npm:@nrwl/tao@16.5.3": [ + { + "source": "npm:@nrwl/tao@16.5.3", + "target": "npm:nx@16.5.3", + "type": "static" + } + ], + "npm:@nrwl/workspace@16.5.3": [ + { + "source": "npm:@nrwl/workspace@16.5.3", + "target": "npm:@nx/workspace@16.5.3", + "type": "static" + } + ], + "npm:@nx/devkit@16.5.3": [ + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:@nrwl/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/devkit@16.5.3", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/jest@16.5.3": [ + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@jest/reporters@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@nrwl/jest@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@nx/js@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:dotenv@10.0.0", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:identity-obj-proxy", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:jest-config@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:resolve.exports@1.1.0", + "type": "static" + }, + { + "source": "npm:@nx/jest@16.5.3", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/js@16.5.3": [ + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/plugin-proposal-class-properties@7.18.6", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/plugin-proposal-decorators@7.21.0", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/plugin-transform-runtime@7.21.4", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/preset-typescript@7.18.6", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@nrwl/js@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@nx/workspace@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:babel-plugin-const-enum", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:babel-plugin-macros", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:babel-plugin-transform-typescript-metadata", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:detect-port", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:fast-glob@3.2.7", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:source-map-support@0.5.19", + "type": "static" + }, + { + "source": "npm:@nx/js@16.5.3", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/linter@16.5.3": [ + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:@nrwl/linter@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:@nx/js@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:@phenomnomnominal/tsquery", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/linter@16.5.3", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nx/workspace@16.5.3": [ + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:@nrwl/workspace@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:dotenv@10.0.0", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:nx@16.5.3", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:yargs@17.7.1", + "type": "static" + }, + { + "source": "npm:@nx/workspace@16.5.3", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:@octokit/auth-token@2.5.0": [ + { + "source": "npm:@octokit/auth-token@2.5.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + } + ], + "npm:@octokit/auth-token@3.0.0": [ + { + "source": "npm:@octokit/auth-token@3.0.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + } + ], + "npm:@octokit/core@3.6.0": [ + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/auth-token@2.5.0", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/graphql@4.8.0", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/request@5.6.3", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/request-error@2.1.0", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core@3.6.0", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/core": [ + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/auth-token@3.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/graphql@5.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request@6.2.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/request-error@3.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:@octokit/types@9.3.2", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:before-after-hook", + "type": "static" + }, + { + "source": "npm:@octokit/core", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/endpoint@6.0.12": [ + { + "source": "npm:@octokit/endpoint@6.0.12", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@6.0.12", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@6.0.12", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/endpoint@7.0.0": [ + { + "source": "npm:@octokit/endpoint@7.0.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.0", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:@octokit/endpoint@7.0.0", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/graphql@4.8.0": [ + { + "source": "npm:@octokit/graphql@4.8.0", + "target": "npm:@octokit/request@5.6.3", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@4.8.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@4.8.0", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/graphql@5.0.0": [ + { + "source": "npm:@octokit/graphql@5.0.0", + "target": "npm:@octokit/request@6.2.0", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/graphql@5.0.0", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/plugin-paginate-rest@2.21.3": [ + { + "source": "npm:@octokit/plugin-paginate-rest@2.21.3", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + } + ], + "npm:@octokit/plugin-paginate-rest": [ + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/tsconfig", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-paginate-rest", + "target": "npm:@octokit/types@9.3.2", + "type": "static" + } + ], + "npm:@octokit/plugin-rest-endpoint-methods@5.16.2": [ + { + "source": "npm:@octokit/plugin-rest-endpoint-methods@5.16.2", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/plugin-rest-endpoint-methods@5.16.2", + "target": "npm:deprecation", + "type": "static" + } + ], + "npm:@octokit/plugin-rest-endpoint-methods": [ + { + "source": "npm:@octokit/plugin-rest-endpoint-methods", + "target": "npm:@octokit/types@10.0.0", + "type": "static" + } + ], + "npm:@octokit/request-error@2.1.0": [ + { + "source": "npm:@octokit/request-error@2.1.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@2.1.0", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@2.1.0", + "target": "npm:once", + "type": "static" + } + ], + "npm:@octokit/request-error@3.0.0": [ + { + "source": "npm:@octokit/request-error@3.0.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.0", + "target": "npm:deprecation", + "type": "static" + }, + { + "source": "npm:@octokit/request-error@3.0.0", + "target": "npm:once", + "type": "static" + } + ], + "npm:@octokit/request@5.6.3": [ + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:@octokit/endpoint@6.0.12", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:@octokit/request-error@2.1.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:node-fetch@2.6.12", + "type": "static" + }, + { + "source": "npm:@octokit/request@5.6.3", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/request@6.2.0": [ + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:@octokit/endpoint@7.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:@octokit/request-error@3.0.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:@octokit/types@6.40.0", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:node-fetch@2.6.12", + "type": "static" + }, + { + "source": "npm:@octokit/request@6.2.0", + "target": "npm:universal-user-agent", + "type": "static" + } + ], + "npm:@octokit/rest": [ + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/core", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-paginate-rest", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-request-log", + "type": "static" + }, + { + "source": "npm:@octokit/rest", + "target": "npm:@octokit/plugin-rest-endpoint-methods", + "type": "static" + } + ], + "npm:@octokit/types@10.0.0": [ + { + "source": "npm:@octokit/types@10.0.0", + "target": "npm:@octokit/openapi-types", + "type": "static" + } + ], + "npm:@octokit/types@6.40.0": [ + { + "source": "npm:@octokit/types@6.40.0", + "target": "npm:@octokit/openapi-types@12.10.1", + "type": "static" + } + ], + "npm:@octokit/types@9.3.2": [ + { + "source": "npm:@octokit/types@9.3.2", + "target": "npm:@octokit/openapi-types", + "type": "static" + } + ], + "npm:@parcel/watcher": [ + { + "source": "npm:@parcel/watcher", + "target": "npm:node-addon-api", + "type": "static" + }, + { + "source": "npm:@parcel/watcher", + "target": "npm:node-gyp-build", + "type": "static" + } + ], + "npm:@phenomnomnominal/tsquery": [ + { + "source": "npm:@phenomnomnominal/tsquery", + "target": "npm:esquery", + "type": "static" + } + ], + "npm:@playwright/test@1.36.2": [ + { + "source": "npm:@playwright/test@1.36.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@playwright/test@1.36.2", + "target": "npm:playwright-core@1.36.2", + "type": "static" + }, + { + "source": "npm:@playwright/test@1.36.2", + "target": "npm:fsevents@2.3.2", + "type": "static" + } + ], + "npm:@rollup/plugin-babel": [ + { + "source": "npm:@rollup/plugin-babel", + "target": "npm:@babel/helper-module-imports@7.22.5", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-babel", + "target": "npm:@rollup/pluginutils", + "type": "static" + } + ], + "npm:@rollup/plugin-node-resolve": [ + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:@types/resolve", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:builtin-modules", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:is-module", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-node-resolve", + "target": "npm:resolve@1.22.3", + "type": "static" + } + ], + "npm:@rollup/plugin-replace": [ + { + "source": "npm:@rollup/plugin-replace", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:@rollup/plugin-replace", + "target": "npm:magic-string", + "type": "static" + } + ], + "npm:@rollup/pluginutils": [ + { + "source": "npm:@rollup/pluginutils", + "target": "npm:@types/estree@0.0.0", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:@rushstack/node-core-library@3.59.6": [ + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:fs-extra@7.0.1", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:import-lazy", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@rushstack/node-core-library@3.59.6", + "target": "npm:z-schema", + "type": "static" + } + ], + "npm:@rushstack/rig-package@0.4.0": [ + { + "source": "npm:@rushstack/rig-package@0.4.0", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:@rushstack/rig-package@0.4.0", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:@rushstack/ts-command-line@4.15.1": [ + { + "source": "npm:@rushstack/ts-command-line@4.15.1", + "target": "npm:@types/argparse", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line@4.15.1", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line@4.15.1", + "target": "npm:colors", + "type": "static" + }, + { + "source": "npm:@rushstack/ts-command-line@4.15.1", + "target": "npm:string-argv@0.3.1", + "type": "static" + } + ], + "npm:@sideway/address": [ + { + "source": "npm:@sideway/address", + "target": "npm:@hapi/hoek", + "type": "static" + } + ], + "npm:@sigstore/tuf": [ + { + "source": "npm:@sigstore/tuf", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:@sigstore/tuf", + "target": "npm:tuf-js", + "type": "static" + } + ], + "npm:@sinonjs/commons@1.8.6": [ + { + "source": "npm:@sinonjs/commons@1.8.6", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:@sinonjs/commons@2.0.0": [ + { + "source": "npm:@sinonjs/commons@2.0.0", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:@sinonjs/commons": [ + { + "source": "npm:@sinonjs/commons", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:@sinonjs/fake-timers": [ + { + "source": "npm:@sinonjs/fake-timers", + "target": "npm:@sinonjs/commons", + "type": "static" + } + ], + "npm:@sinonjs/fake-timers@7.1.2": [ + { + "source": "npm:@sinonjs/fake-timers@7.1.2", + "target": "npm:@sinonjs/commons@1.8.6", + "type": "static" + } + ], + "npm:@sinonjs/samsam@6.1.3": [ + { + "source": "npm:@sinonjs/samsam@6.1.3", + "target": "npm:@sinonjs/commons@1.8.6", + "type": "static" + }, + { + "source": "npm:@sinonjs/samsam@6.1.3", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:@sinonjs/samsam@6.1.3", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:@slorber/static-site-generator-webpack-plugin": [ + { + "source": "npm:@slorber/static-site-generator-webpack-plugin", + "target": "npm:eval", + "type": "static" + }, + { + "source": "npm:@slorber/static-site-generator-webpack-plugin", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:@slorber/static-site-generator-webpack-plugin", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:@surma/rollup-plugin-off-main-thread": [ + { + "source": "npm:@surma/rollup-plugin-off-main-thread", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:@surma/rollup-plugin-off-main-thread", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@surma/rollup-plugin-off-main-thread", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@surma/rollup-plugin-off-main-thread", + "target": "npm:string.prototype.matchall", + "type": "static" + } + ], + "npm:@svgr/babel-preset": [ + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-add-jsx-attribute", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-remove-jsx-attribute", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-remove-jsx-empty-expression", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-replace-jsx-attribute-value", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-svg-dynamic-title", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-svg-em-dimensions", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-transform-react-native-svg", + "type": "static" + }, + { + "source": "npm:@svgr/babel-preset", + "target": "npm:@svgr/babel-plugin-transform-svg-component", + "type": "static" + } + ], + "npm:@svgr/core": [ + { + "source": "npm:@svgr/core", + "target": "npm:@svgr/plugin-jsx", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:@svgr/core", + "target": "npm:cosmiconfig@7.0.1", + "type": "static" + } + ], + "npm:@svgr/hast-util-to-babel-ast": [ + { + "source": "npm:@svgr/hast-util-to-babel-ast", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@svgr/hast-util-to-babel-ast", + "target": "npm:entities@3.0.1", + "type": "static" + } + ], + "npm:@svgr/plugin-jsx": [ + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/babel-preset", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:@svgr/hast-util-to-babel-ast", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-jsx", + "target": "npm:svg-parser", + "type": "static" + } + ], + "npm:@svgr/plugin-svgo": [ + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:cosmiconfig@7.0.1", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@svgr/plugin-svgo", + "target": "npm:svgo", + "type": "static" + } + ], + "npm:@svgr/webpack": [ + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/plugin-transform-react-constant-elements", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@babel/preset-typescript@7.18.6", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/core", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/plugin-jsx", + "type": "static" + }, + { + "source": "npm:@svgr/webpack", + "target": "npm:@svgr/plugin-svgo", + "type": "static" + } + ], + "npm:@swc/core@1.3.74": [ + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-darwin-arm64@1.3.74", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-darwin-x64@1.3.74", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-arm-gnueabihf@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-arm64-gnu@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-arm64-musl@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-x64-gnu@1.3.74", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-linux-x64-musl@1.3.74", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-win32-arm64-msvc@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-win32-ia32-msvc@0.0.0", + "type": "static" + }, + { + "source": "npm:@swc/core@1.3.74", + "target": "npm:@swc/core-win32-x64-msvc@1.3.74", + "type": "static" + } + ], + "npm:@swc/jest@0.2.27": [ + { + "source": "npm:@swc/jest@0.2.27", + "target": "npm:@jest/create-cache-key-function@29.6.2", + "type": "static" + }, + { + "source": "npm:@swc/jest@0.2.27", + "target": "npm:jsonc-parser", + "type": "static" + } + ], + "npm:@szmarczak/http-timer": [ + { + "source": "npm:@szmarczak/http-timer", + "target": "npm:defer-to-connect", + "type": "static" + } + ], + "npm:@tufjs/models": [ + { + "source": "npm:@tufjs/models", + "target": "npm:@tufjs/canonical-json", + "type": "static" + }, + { + "source": "npm:@tufjs/models", + "target": "npm:minimatch@9.0.3", + "type": "static" + } + ], + "npm:@types/babel__core@7.20.1": [ + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core@7.20.1", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:@types/babel__generator": [ + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@types/babel__template": [ + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@types/babel__traverse": [ + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types@7.22.5", + "type": "static" + } + ], + "npm:@types/body-parser": [ + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/bonjour": [ + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/connect-history-api-fallback": [ + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/connect": [ + { + "source": "npm:@types/connect", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/debug@4.1.8": [ + { + "source": "npm:@types/debug@4.1.8", + "target": "npm:@types/ms", + "type": "static" + } + ], + "npm:@types/eslint-visitor-keys": [ + { + "source": "npm:@types/eslint-visitor-keys", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + } + ], + "npm:@types/express-serve-static-core": [ + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + } + ], + "npm:@types/express": [ + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + } + ], + "npm:@types/glob": [ + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch@5.1.2", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/graceful-fs": [ + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/hast": [ + { + "source": "npm:@types/hast", + "target": "npm:@types/unist", + "type": "static" + } + ], + "npm:@types/http-proxy": [ + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/istanbul-lib-report": [ + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + } + ], + "npm:@types/istanbul-reports": [ + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + } + ], + "npm:@types/jest-specific-snapshot@0.5.6": [ + { + "source": "npm:@types/jest-specific-snapshot@0.5.6", + "target": "npm:@types/jest@29.5.3", + "type": "static" + } + ], + "npm:@types/jest@29.5.3": [ + { + "source": "npm:@types/jest@29.5.3", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:@types/jest@29.5.3", + "target": "npm:pretty-format@29.6.2", + "type": "static" + } + ], + "npm:@types/lodash.merge@4.6.7": [ + { + "source": "npm:@types/lodash.merge@4.6.7", + "target": "npm:@types/lodash@4.14.192", + "type": "static" + } + ], + "npm:@types/mdast": [ + { + "source": "npm:@types/mdast", + "target": "npm:@types/unist", + "type": "static" + } + ], + "npm:@types/ncp@2.0.5": [ + { + "source": "npm:@types/ncp@2.0.5", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/react-helmet@6.1.6": [ + { + "source": "npm:@types/react-helmet@6.1.6", + "target": "npm:@types/react@18.2.18", + "type": "static" + } + ], + "npm:@types/react-router-config": [ + { + "source": "npm:@types/react-router-config", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router-config", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@types/react-router-config", + "target": "npm:@types/react-router", + "type": "static" + } + ], + "npm:@types/react-router-dom": [ + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react@18.2.18", + "type": "static" + }, + { + "source": "npm:@types/react-router-dom", + "target": "npm:@types/react-router", + "type": "static" + } + ], + "npm:@types/react-router": [ + { + "source": "npm:@types/react-router", + "target": "npm:@types/history", + "type": "static" + }, + { + "source": "npm:@types/react-router", + "target": "npm:@types/react@18.2.18", + "type": "static" + } + ], + "npm:@types/react@18.2.18": [ + { + "source": "npm:@types/react@18.2.18", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react@18.2.18", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react@18.2.18", + "target": "npm:csstype", + "type": "static" + } + ], + "npm:@types/resolve": [ + { + "source": "npm:@types/resolve", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/sax": [ + { + "source": "npm:@types/sax", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/serve-index": [ + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + } + ], + "npm:@types/serve-static": [ + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/sockjs": [ + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/ws": [ + { + "source": "npm:@types/ws", + "target": "npm:@types/node@20.4.8", + "type": "static" + } + ], + "npm:@types/yargs": [ + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager@5.62.0": [ + { + "source": "npm:@typescript-eslint/scope-manager@5.62.0", + "target": "npm:@typescript-eslint/types@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@5.62.0", + "target": "npm:@typescript-eslint/visitor-keys@5.62.0", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree@5.62.0": [ + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:@typescript-eslint/types@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:@typescript-eslint/visitor-keys@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@5.62.0", + "target": "npm:tsutils", + "type": "static" + } + ], + "npm:@typescript-eslint/utils@5.62.0": [ + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@types/semver@7.5.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@typescript-eslint/scope-manager@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@typescript-eslint/types@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:@typescript-eslint/typescript-estree@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@5.62.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys@5.62.0": [ + { + "source": "npm:@typescript-eslint/visitor-keys@5.62.0", + "target": "npm:@typescript-eslint/types@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.62.0", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + } + ], + "npm:@webassemblyjs/ast": [ + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-numbers": [ + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-wasm-section": [ + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + } + ], + "npm:@webassemblyjs/ieee754": [ + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + } + ], + "npm:@webassemblyjs/leb128": [ + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-edit": [ + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-gen": [ + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-opt": [ + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-parser": [ + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wast-printer": [ + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@yarnpkg/parsers": [ + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@zkochan/js-yaml": [ + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse", + "type": "static" + } + ], + "npm:JSONStream": [ + { + "source": "npm:JSONStream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:JSONStream", + "target": "npm:through", + "type": "static" + } + ], + "npm:accepts": [ + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + } + ], + "npm:agent-base": [ + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + } + ], + "npm:agentkeepalive": [ + { + "source": "npm:agentkeepalive", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:agentkeepalive", + "target": "npm:humanize-ms", + "type": "static" + } + ], + "npm:aggregate-error": [ + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + } + ], + "npm:ajv-formats@2.1.1": [ + { + "source": "npm:ajv-formats@2.1.1", + "target": "npm:ajv@8.12.0", + "type": "static" + } + ], + "npm:ajv-keywords@5.1.0": [ + { + "source": "npm:ajv-keywords@5.1.0", + "target": "npm:fast-deep-equal", + "type": "static" + } + ], + "npm:ajv": [ + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ajv@8.12.0": [ + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:algoliasearch-helper": [ + { + "source": "npm:algoliasearch-helper", + "target": "npm:@algolia/events", + "type": "static" + } + ], + "npm:algoliasearch": [ + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/cache-browser-local-storage", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/cache-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/cache-in-memory", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-account", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-analytics", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-personalization", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/client-search", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/logger-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/logger-console", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/requester-browser-xhr", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/requester-common", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/requester-node-http", + "type": "static" + }, + { + "source": "npm:algoliasearch", + "target": "npm:@algolia/transporter", + "type": "static" + } + ], + "npm:ansi-align": [ + { + "source": "npm:ansi-align", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:ansi-escapes": [ + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.21.3", + "type": "static" + } + ], + "npm:ansi-styles@3.2.1": [ + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert", + "type": "static" + } + ], + "npm:ansi-styles": [ + { + "source": "npm:ansi-styles", + "target": "npm:color-convert@2.0.1", + "type": "static" + } + ], + "npm:anymatch": [ + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:are-we-there-yet": [ + { + "source": "npm:are-we-there-yet", + "target": "npm:delegates", + "type": "static" + }, + { + "source": "npm:are-we-there-yet", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:argparse@1.0.10": [ + { + "source": "npm:argparse@1.0.10", + "target": "npm:sprintf-js", + "type": "static" + } + ], + "npm:aria-query": [ + { + "source": "npm:aria-query", + "target": "npm:deep-equal", + "type": "static" + } + ], + "npm:array-buffer-byte-length": [ + { + "source": "npm:array-buffer-byte-length", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:is-array-buffer", + "type": "static" + } + ], + "npm:array-includes@3.1.6": [ + { + "source": "npm:array-includes@3.1.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array-includes@3.1.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes@3.1.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array-includes@3.1.6", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:array-includes@3.1.6", + "target": "npm:is-string", + "type": "static" + } + ], + "npm:array.prototype.findlastindex@1.2.2": [ + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex@1.2.2", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + } + ], + "npm:array.prototype.flat@1.3.1": [ + { + "source": "npm:array.prototype.flat@1.3.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array.prototype.flat@1.3.1", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat@1.3.1", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array.prototype.flat@1.3.1", + "target": "npm:es-shim-unscopables", + "type": "static" + } + ], + "npm:array.prototype.flatmap@1.3.1": [ + { + "source": "npm:array.prototype.flatmap@1.3.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap@1.3.1", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap@1.3.1", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap@1.3.1", + "target": "npm:es-shim-unscopables", + "type": "static" + } + ], + "npm:array.prototype.tosorted": [ + { + "source": "npm:array.prototype.tosorted", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + } + ], + "npm:arraybuffer.prototype.slice@1.0.1": [ + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice@1.0.1", + "target": "npm:is-shared-array-buffer", + "type": "static" + } + ], + "npm:autoprefixer": [ + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:normalize-range", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:axios@1.1.3": [ + { + "source": "npm:axios@1.1.3", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios@1.1.3", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:axios@1.1.3", + "target": "npm:proxy-from-env", + "type": "static" + } + ], + "npm:axios@0.25.0": [ + { + "source": "npm:axios@0.25.0", + "target": "npm:follow-redirects", + "type": "static" + } + ], + "npm:axobject-query": [ + { + "source": "npm:axobject-query", + "target": "npm:deep-equal", + "type": "static" + } + ], + "npm:babel-jest@29.6.2": [ + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:@types/babel__core@7.20.1", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:babel-preset-jest@29.5.0", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest@29.6.2", + "target": "npm:slash", + "type": "static" + } + ], + "npm:babel-loader": [ + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils@2.7.1", + "type": "static" + } + ], + "npm:babel-plugin-apply-mdx-type-prop@1.6.22": [ + { + "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:babel-plugin-apply-mdx-type-prop@1.6.22", + "target": "npm:@mdx-js/util", + "type": "static" + } + ], + "npm:babel-plugin-const-enum": [ + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:babel-plugin-const-enum", + "target": "npm:@babel/traverse@7.22.8", + "type": "static" + } + ], + "npm:babel-plugin-dynamic-import-node": [ + { + "source": "npm:babel-plugin-dynamic-import-node", + "target": "npm:object.assign", + "type": "static" + } + ], + "npm:babel-plugin-extract-import-names": [ + { + "source": "npm:babel-plugin-extract-import-names", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + } + ], + "npm:babel-plugin-istanbul": [ + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + } + ], + "npm:babel-plugin-jest-hoist@29.5.0": [ + { + "source": "npm:babel-plugin-jest-hoist@29.5.0", + "target": "npm:@babel/template@7.22.5", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist@29.5.0", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist@29.5.0", + "target": "npm:@types/babel__core@7.20.1", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist@29.5.0", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:babel-plugin-macros": [ + { + "source": "npm:babel-plugin-macros", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-macros", + "target": "npm:resolve@1.22.3", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs2@0.3.3": [ + { + "source": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "target": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2@0.3.3", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs3@0.6.0": [ + { + "source": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "target": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3@0.6.0", + "target": "npm:core-js-compat@3.25.4", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-regenerator@0.4.1": [ + { + "source": "npm:babel-plugin-polyfill-regenerator@0.4.1", + "target": "npm:@babel/helper-define-polyfill-provider@0.3.3", + "type": "static" + } + ], + "npm:babel-plugin-transform-typescript-metadata": [ + { + "source": "npm:babel-plugin-transform-typescript-metadata", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:babel-preset-current-node-syntax": [ + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-bigint", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + } + ], + "npm:babel-preset-jest@29.5.0": [ + { + "source": "npm:babel-preset-jest@29.5.0", + "target": "npm:babel-plugin-jest-hoist@29.5.0", + "type": "static" + }, + { + "source": "npm:babel-preset-jest@29.5.0", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + } + ], + "npm:bl": [ + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:body-parser": [ + { + "source": "npm:body-parser", + "target": "npm:bytes@3.1.2", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:bonjour-service": [ + { + "source": "npm:bonjour-service", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:dns-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:multicast-dns", + "type": "static" + } + ], + "npm:boxen@5.1.2": [ + { + "source": "npm:boxen@5.1.2", + "target": "npm:ansi-align", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:cli-boxes@2.2.1", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:type-fest@0.20.2", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:widest-line@3.1.0", + "type": "static" + }, + { + "source": "npm:boxen@5.1.2", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:boxen": [ + { + "source": "npm:boxen", + "target": "npm:ansi-align", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:cli-boxes", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:type-fest@2.12.1", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:widest-line", + "type": "static" + }, + { + "source": "npm:boxen", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + } + ], + "npm:brace-expansion@1.1.11": [ + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:concat-map", + "type": "static" + } + ], + "npm:brace-expansion": [ + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + } + ], + "npm:braces": [ + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + } + ], + "npm:browserslist": [ + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium@1.4.477", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + } + ], + "npm:bser": [ + { + "source": "npm:bser", + "target": "npm:node-int64", + "type": "static" + } + ], + "npm:buffer": [ + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:builtins": [ + { + "source": "npm:builtins", + "target": "npm:semver", + "type": "static" + } + ], + "npm:cacache@16.1.0": [ + { + "source": "npm:cacache@16.1.0", + "target": "npm:@npmcli/fs@2.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:@npmcli/move-file@2.0.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:infer-owner@1.0.4", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache@16.1.0", + "target": "npm:unique-filename@1.1.1", + "type": "static" + } + ], + "npm:cacache": [ + { + "source": "npm:cacache", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob@9.3.5", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + } + ], + "npm:cacheable-request": [ + { + "source": "npm:cacheable-request", + "target": "npm:clone-response", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:keyv@3.1.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:lowercase-keys@2.0.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:normalize-url@4.5.1", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:call-bind@1.0.2": [ + { + "source": "npm:call-bind@1.0.2", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:call-bind@1.0.2", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + } + ], + "npm:camel-case": [ + { + "source": "npm:camel-case", + "target": "npm:pascal-case", + "type": "static" + }, + { + "source": "npm:camel-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:camelcase-keys": [ + { + "source": "npm:camelcase-keys", + "target": "npm:camelcase@5.3.1", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:camelcase-keys", + "target": "npm:quick-lru", + "type": "static" + } + ], + "npm:camelcase-keys@7.0.2": [ + { + "source": "npm:camelcase-keys@7.0.2", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:camelcase-keys@7.0.2", + "target": "npm:map-obj", + "type": "static" + }, + { + "source": "npm:camelcase-keys@7.0.2", + "target": "npm:quick-lru@5.1.1", + "type": "static" + }, + { + "source": "npm:camelcase-keys@7.0.2", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:caniuse-api": [ + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite@1.0.30001517", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + } + ], + "npm:chai@4.3.7": [ + { + "source": "npm:chai@4.3.7", + "target": "npm:assertion-error", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:check-error@1.0.2", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:deep-eql", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:get-func-name@2.0.0", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:loupe@2.3.6", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:pathval", + "type": "static" + }, + { + "source": "npm:chai@4.3.7", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:chalk@4.1.0": [ + { + "source": "npm:chalk@4.1.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.0", + "target": "npm:supports-color@7.2.0", + "type": "static" + } + ], + "npm:chalk@2.4.2": [ + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + } + ], + "npm:chalk@4.1.2": [ + { + "source": "npm:chalk@4.1.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@4.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + } + ], + "npm:cheerio-select": [ + { + "source": "npm:cheerio-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:css-select@5.1.0", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:cheerio-select", + "target": "npm:domutils", + "type": "static" + } + ], + "npm:cheerio": [ + { + "source": "npm:cheerio", + "target": "npm:cheerio-select", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:htmlparser2@8.0.1", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:cheerio", + "target": "npm:parse5-htmlparser2-tree-adapter", + "type": "static" + } + ], + "npm:chokidar@3.5.1": [ + { + "source": "npm:chokidar@3.5.1", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:readdirp@3.5.0", + "type": "static" + }, + { + "source": "npm:chokidar@3.5.1", + "target": "npm:fsevents@2.3.2", + "type": "static" + } + ], + "npm:chokidar": [ + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents@2.3.2", + "type": "static" + } + ], + "npm:clean-css": [ + { + "source": "npm:clean-css", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:clean-regexp": [ + { + "source": "npm:clean-regexp", + "target": "npm:escape-string-regexp", + "type": "static" + } + ], + "npm:clear-module": [ + { + "source": "npm:clear-module", + "target": "npm:parent-module@2.0.0", + "type": "static" + }, + { + "source": "npm:clear-module", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:cli-cursor": [ + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + } + ], + "npm:cli-table3": [ + { + "source": "npm:cli-table3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cli-table3", + "target": "npm:@colors/colors", + "type": "static" + } + ], + "npm:cli-truncate@2.1.0": [ + { + "source": "npm:cli-truncate@2.1.0", + "target": "npm:slice-ansi@3.0.0", + "type": "static" + }, + { + "source": "npm:cli-truncate@2.1.0", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:cli-truncate": [ + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width@5.1.2", + "type": "static" + } + ], + "npm:cliui@7.0.4": [ + { + "source": "npm:cliui@7.0.4", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@7.0.4", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:cliui": [ + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:clone-deep": [ + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object@2.0.4", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + } + ], + "npm:clone-response": [ + { + "source": "npm:clone-response", + "target": "npm:mimic-response", + "type": "static" + } + ], + "npm:color-convert": [ + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + } + ], + "npm:color-convert@2.0.1": [ + { + "source": "npm:color-convert@2.0.1", + "target": "npm:color-name@1.1.4", + "type": "static" + } + ], + "npm:columnify": [ + { + "source": "npm:columnify", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:columnify", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:combined-stream": [ + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + } + ], + "npm:comment-json": [ + { + "source": "npm:comment-json", + "target": "npm:array-timsort", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:has-own-prop", + "type": "static" + }, + { + "source": "npm:comment-json", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:compare-func": [ + { + "source": "npm:compare-func", + "target": "npm:array-ify", + "type": "static" + }, + { + "source": "npm:compare-func", + "target": "npm:dot-prop", + "type": "static" + } + ], + "npm:compressible": [ + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:compression": [ + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + } + ], + "npm:concat-stream": [ + { + "source": "npm:concat-stream", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:concat-stream", + "target": "npm:typedarray", + "type": "static" + } + ], + "npm:configstore@5.0.1": [ + { + "source": "npm:configstore@5.0.1", + "target": "npm:dot-prop", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:unique-string", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:write-file-atomic@3.0.3", + "type": "static" + }, + { + "source": "npm:configstore@5.0.1", + "target": "npm:xdg-basedir", + "type": "static" + } + ], + "npm:content-disposition@0.5.4": [ + { + "source": "npm:content-disposition@0.5.4", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:conventional-changelog-angular": [ + { + "source": "npm:conventional-changelog-angular", + "target": "npm:compare-func", + "type": "static" + } + ], + "npm:conventional-changelog-core": [ + { + "source": "npm:conventional-changelog-core", + "target": "npm:add-stream", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-changelog-writer", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:get-pkg-repo", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-remote-origin-url", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg", + "type": "static" + }, + { + "source": "npm:conventional-changelog-core", + "target": "npm:read-pkg-up@3.0.0", + "type": "static" + } + ], + "npm:conventional-changelog-writer": [ + { + "source": "npm:conventional-changelog-writer", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:dateformat", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:handlebars", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:json-stringify-safe", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:conventional-changelog-writer", + "target": "npm:split", + "type": "static" + } + ], + "npm:conventional-commits-filter": [ + { + "source": "npm:conventional-commits-filter", + "target": "npm:lodash.ismatch", + "type": "static" + }, + { + "source": "npm:conventional-commits-filter", + "target": "npm:modify-values", + "type": "static" + } + ], + "npm:conventional-commits-parser": [ + { + "source": "npm:conventional-commits-parser", + "target": "npm:JSONStream", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:is-text-path", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:conventional-commits-parser", + "target": "npm:split2", + "type": "static" + } + ], + "npm:conventional-recommended-bump": [ + { + "source": "npm:conventional-recommended-bump", + "target": "npm:concat-stream", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-changelog-preset-loader", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-filter", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:conventional-commits-parser", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-raw-commits", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:git-semver-tags", + "type": "static" + }, + { + "source": "npm:conventional-recommended-bump", + "target": "npm:meow", + "type": "static" + } + ], + "npm:copy-webpack-plugin": [ + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby@13.1.1", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + } + ], + "npm:core-js-compat@3.25.4": [ + { + "source": "npm:core-js-compat@3.25.4", + "target": "npm:browserslist", + "type": "static" + } + ], + "npm:cosmiconfig@8.0.0": [ + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@8.0.0", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:cosmiconfig@6.0.0": [ + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@6.0.0", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:cosmiconfig@7.0.1": [ + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:@types/parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:cosmiconfig@7.0.1", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:cosmiconfig": [ + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:cross-fetch": [ + { + "source": "npm:cross-fetch", + "target": "npm:node-fetch@2.6.12", + "type": "static" + } + ], + "npm:cross-fetch@3.1.5": [ + { + "source": "npm:cross-fetch@3.1.5", + "target": "npm:node-fetch@2.6.7", + "type": "static" + } + ], + "npm:cross-spawn": [ + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + } + ], + "npm:cspell-dictionary@6.31.1": [ + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:cspell-trie-lib@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:fast-equals", + "type": "static" + }, + { + "source": "npm:cspell-dictionary@6.31.1", + "target": "npm:gensequence@5.0.2", + "type": "static" + } + ], + "npm:cspell-gitignore@6.31.2": [ + { + "source": "npm:cspell-gitignore@6.31.2", + "target": "npm:cspell-glob@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell-gitignore@6.31.2", + "target": "npm:find-up", + "type": "static" + } + ], + "npm:cspell-glob@6.31.2": [ + { + "source": "npm:cspell-glob@6.31.2", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:cspell-grammar@6.31.1": [ + { + "source": "npm:cspell-grammar@6.31.1", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-grammar@6.31.1", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + } + ], + "npm:cspell-io@6.31.2": [ + { + "source": "npm:cspell-io@6.31.2", + "target": "npm:@cspell/cspell-service-bus@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-io@6.31.2", + "target": "npm:node-fetch@2.6.12", + "type": "static" + } + ], + "npm:cspell-lib@6.31.2": [ + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:@cspell/cspell-bundled-dicts@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:@cspell/strong-weak-map@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:clear-module", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:comment-json", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:configstore@5.0.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cosmiconfig@8.0.0", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-dictionary@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-glob@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-grammar@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-io@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:cspell-trie-lib@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:fast-equals", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:gensequence@5.0.2", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:resolve-global@1.0.0", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:vscode-languageserver-textdocument@1.0.8", + "type": "static" + }, + { + "source": "npm:cspell-lib@6.31.2", + "target": "npm:vscode-uri@3.0.7", + "type": "static" + } + ], + "npm:cspell-trie-lib@6.31.1": [ + { + "source": "npm:cspell-trie-lib@6.31.1", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-trie-lib@6.31.1", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell-trie-lib@6.31.1", + "target": "npm:gensequence@5.0.2", + "type": "static" + } + ], + "npm:cspell@6.31.2": [ + { + "source": "npm:cspell@6.31.2", + "target": "npm:@cspell/cspell-pipe@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:@cspell/cspell-types@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:@cspell/dynamic-import@6.31.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:commander@10.0.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:cspell-gitignore@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:cspell-glob@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:cspell-io@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:cspell-lib@6.31.2", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:file-entry-cache@6.0.1", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:get-stdin@8.0.0", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cspell@6.31.2", + "target": "npm:vscode-uri@3.0.7", + "type": "static" + } + ], + "npm:css-loader": [ + { + "source": "npm:css-loader", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver", + "type": "static" + } + ], + "npm:css-minimizer-webpack-plugin": [ + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:css-select": [ + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what@5.1.0", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler@4.2.2", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils@2.8.0", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + } + ], + "npm:css-select@5.1.0": [ + { + "source": "npm:css-select@5.1.0", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:nth-check", + "type": "static" + } + ], + "npm:css-tree": [ + { + "source": "npm:css-tree", + "target": "npm:mdn-data@2.0.14", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:css-tree@2.3.1": [ + { + "source": "npm:css-tree@2.3.1", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree@2.3.1", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:cssnano-preset-advanced": [ + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:postcss-discard-unused", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:postcss-merge-idents", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:postcss-reduce-idents", + "type": "static" + }, + { + "source": "npm:cssnano-preset-advanced", + "target": "npm:postcss-zindex", + "type": "static" + } + ], + "npm:cssnano-preset-default": [ + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + } + ], + "npm:cssnano": [ + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:csso": [ + { + "source": "npm:csso", + "target": "npm:css-tree", + "type": "static" + } + ], + "npm:debug@2.6.9": [ + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + } + ], + "npm:debug": [ + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + } + ], + "npm:debug@4.3.1": [ + { + "source": "npm:debug@4.3.1", + "target": "npm:ms@2.1.2", + "type": "static" + } + ], + "npm:debug@3.2.7": [ + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + } + ], + "npm:decamelize-keys": [ + { + "source": "npm:decamelize-keys", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:decamelize-keys", + "target": "npm:map-obj@1.0.1", + "type": "static" + } + ], + "npm:decompress-response": [ + { + "source": "npm:decompress-response", + "target": "npm:mimic-response", + "type": "static" + } + ], + "npm:deep-eql": [ + { + "source": "npm:deep-eql", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:deep-equal": [ + { + "source": "npm:deep-equal", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:es-get-iterator", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:regexp.prototype.flags@1.5.0", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:which-collection", + "type": "static" + }, + { + "source": "npm:deep-equal", + "target": "npm:which-typed-array@1.1.11", + "type": "static" + } + ], + "npm:default-gateway": [ + { + "source": "npm:default-gateway", + "target": "npm:execa@5.1.1", + "type": "static" + } + ], + "npm:defaults": [ + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + } + ], + "npm:define-properties": [ + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:del": [ + { + "source": "npm:del", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:slash", + "type": "static" + } + ], + "npm:detab": [ + { + "source": "npm:detab", + "target": "npm:repeat-string", + "type": "static" + } + ], + "npm:detect-port-alt": [ + { + "source": "npm:detect-port-alt", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port-alt", + "target": "npm:debug@2.6.9", + "type": "static" + } + ], + "npm:detect-port": [ + { + "source": "npm:detect-port", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:detect-port", + "target": "npm:debug", + "type": "static" + } + ], + "npm:dir-glob": [ + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:dns-packet": [ + { + "source": "npm:dns-packet", + "target": "npm:@leichtgewicht/ip-codec", + "type": "static" + } + ], + "npm:doctrine": [ + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:doctrine@3.0.0": [ + { + "source": "npm:doctrine@3.0.0", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:dom-converter": [ + { + "source": "npm:dom-converter", + "target": "npm:utila", + "type": "static" + } + ], + "npm:dom-serializer@1.3.2": [ + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:domhandler@4.2.2", + "type": "static" + }, + { + "source": "npm:dom-serializer@1.3.2", + "target": "npm:entities@2.2.0", + "type": "static" + } + ], + "npm:dom-serializer": [ + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities", + "type": "static" + } + ], + "npm:domhandler@4.2.2": [ + { + "source": "npm:domhandler@4.2.2", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domhandler": [ + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domutils@2.8.0": [ + { + "source": "npm:domutils@2.8.0", + "target": "npm:dom-serializer@1.3.2", + "type": "static" + }, + { + "source": "npm:domutils@2.8.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils@2.8.0", + "target": "npm:domhandler@4.2.2", + "type": "static" + } + ], + "npm:domutils": [ + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + } + ], + "npm:dot-case": [ + { + "source": "npm:dot-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:dot-prop": [ + { + "source": "npm:dot-prop", + "target": "npm:is-obj", + "type": "static" + } + ], + "npm:downlevel-dts": [ + { + "source": "npm:downlevel-dts", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:downlevel-dts", + "target": "npm:shelljs", + "type": "static" + }, + { + "source": "npm:downlevel-dts", + "target": "npm:typescript@5.1.6", + "type": "static" + } + ], + "npm:ejs": [ + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + } + ], + "npm:encoding": [ + { + "source": "npm:encoding", + "target": "npm:iconv-lite@0.6.3", + "type": "static" + } + ], + "npm:end-of-stream": [ + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + } + ], + "npm:enhanced-resolve": [ + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:enquirer": [ + { + "source": "npm:enquirer", + "target": "npm:ansi-colors", + "type": "static" + } + ], + "npm:error-ex": [ + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + } + ], + "npm:es-abstract@1.22.1": [ + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:arraybuffer.prototype.slice@1.0.1", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:function.prototype.name@1.1.5", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object-inspect@1.12.3", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:regexp.prototype.flags@1.5.0", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:safe-array-concat@1.0.0", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trim@1.2.7", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trimend@1.0.6", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:string.prototype.trimstart@1.0.6", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract@1.22.1", + "target": "npm:which-typed-array@1.1.11", + "type": "static" + } + ], + "npm:es-get-iterator": [ + { + "source": "npm:es-get-iterator", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:es-get-iterator", + "target": "npm:stop-iteration-iterator", + "type": "static" + } + ], + "npm:es-set-tostringtag": [ + { + "source": "npm:es-set-tostringtag", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:es-shim-unscopables": [ + { + "source": "npm:es-shim-unscopables", + "target": "npm:has", + "type": "static" + } + ], + "npm:es-to-primitive": [ + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:esbuild@0.17.19": [ + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/android-arm@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/android-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/android-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/darwin-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/darwin-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/freebsd-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/freebsd-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-arm@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-ia32@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-loong64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-mips64el@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-ppc64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-riscv64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-s390x@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/linux-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/netbsd-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/openbsd-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/sunos-x64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/win32-arm64@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/win32-ia32@0.17.19", + "type": "static" + }, + { + "source": "npm:esbuild@0.17.19", + "target": "npm:@esbuild/win32-x64@0.17.19", + "type": "static" + } + ], + "npm:esbuild@0.18.17": [ + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/android-arm@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/android-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/android-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/darwin-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/darwin-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/freebsd-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/freebsd-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-arm@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-ia32@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-loong64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-mips64el@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-ppc64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-riscv64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-s390x@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/linux-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/netbsd-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/openbsd-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/sunos-x64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/win32-arm64@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/win32-ia32@0.18.17", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.17", + "target": "npm:@esbuild/win32-x64@0.18.17", + "type": "static" + } + ], + "npm:eslint-import-resolver-node@0.3.7": [ + { + "source": "npm:eslint-import-resolver-node@0.3.7", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node@0.3.7", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node@0.3.7", + "target": "npm:resolve@1.22.3", + "type": "static" + } + ], + "npm:eslint-module-utils": [ + { + "source": "npm:eslint-module-utils", + "target": "npm:debug@3.2.7", + "type": "static" + } + ], + "npm:eslint-plugin-deprecation@1.5.0": [ + { + "source": "npm:eslint-plugin-deprecation@1.5.0", + "target": "npm:@typescript-eslint/utils@5.62.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation@1.5.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:eslint-plugin-deprecation@1.5.0", + "target": "npm:tsutils", + "type": "static" + } + ], + "npm:eslint-plugin-eslint-comments": [ + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-comments", + "target": "npm:ignore", + "type": "static" + } + ], + "npm:eslint-plugin-eslint-plugin": [ + { + "source": "npm:eslint-plugin-eslint-plugin", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-eslint-plugin", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:eslint-plugin-import@2.28.0": [ + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:array-includes@3.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:array.prototype.findlastindex@1.2.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:array.prototype.flat@1.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:array.prototype.flatmap@1.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:eslint-import-resolver-node@0.3.7", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:object.fromentries@2.0.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:object.groupby@1.0.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:object.values@1.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import@2.28.0", + "target": "npm:tsconfig-paths@3.14.2", + "type": "static" + } + ], + "npm:eslint-plugin-jest@27.2.3": [ + { + "source": "npm:eslint-plugin-jest@27.2.3", + "target": "npm:@typescript-eslint/utils@5.62.0", + "type": "static" + } + ], + "npm:eslint-plugin-jsx-a11y": [ + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:aria-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:array-includes@3.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:array.prototype.flatmap@1.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:ast-types-flow", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axe-core", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:axobject-query", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:damerau-levenshtein", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:language-tags", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:object.fromentries@2.0.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-jsx-a11y", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:eslint-plugin-react@7.33.1": [ + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:array-includes@3.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:array.prototype.flatmap@1.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:array.prototype.tosorted", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:object.fromentries@2.0.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:object.values@1.1.6", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:resolve@2.0.0-next.4", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react@7.33.1", + "target": "npm:string.prototype.matchall", + "type": "static" + } + ], + "npm:eslint-plugin-unicorn": [ + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:@babel/helper-validator-identifier@7.22.5", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:clean-regexp", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:is-builtin-module", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:jsesc@3.0.2", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:pluralize", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:regexp-tree", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:regjsparser@0.10.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-plugin-unicorn", + "target": "npm:strip-indent", + "type": "static" + } + ], + "npm:eslint-scope": [ + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.3.0", + "type": "static" + } + ], + "npm:eslint-scope@7.2.2": [ + { + "source": "npm:eslint-scope@7.2.2", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@7.2.2", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:eslint-utils": [ + { + "source": "npm:eslint-utils", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + } + ], + "npm:eslint@8.46.0": [ + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint-community/regexpp@4.6.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint/eslintrc@2.1.1", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@eslint/js@8.46.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@humanwhocodes/config-array", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:doctrine@3.0.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:eslint-scope@7.2.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:file-entry-cache@6.0.1", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:globals@13.20.0", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:eslint@8.46.0", + "target": "npm:text-table", + "type": "static" + } + ], + "npm:espree": [ + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys@3.4.2", + "type": "static" + } + ], + "npm:esquery": [ + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:esrecurse": [ + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:eval": [ + { + "source": "npm:eval", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:eval", + "target": "npm:require-like", + "type": "static" + } + ], + "npm:execa": [ + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals@4.3.1", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path@5.1.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + } + ], + "npm:execa@5.0.0": [ + { + "source": "npm:execa@5.0.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.0.0", + "target": "npm:strip-final-newline@2.0.0", + "type": "static" + } + ], + "npm:execa@5.1.1": [ + { + "source": "npm:execa@5.1.1", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@5.1.1", + "target": "npm:strip-final-newline@2.0.0", + "type": "static" + } + ], + "npm:expect@29.6.2": [ + { + "source": "npm:expect@29.6.2", + "target": "npm:@jest/expect-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:expect@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + } + ], + "npm:express": [ + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten@1.1.1", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition@0.5.4", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp@0.1.7", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + } + ], + "npm:extend-shallow": [ + { + "source": "npm:extend-shallow", + "target": "npm:is-extendable", + "type": "static" + } + ], + "npm:external-editor": [ + { + "source": "npm:external-editor", + "target": "npm:chardet", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:external-editor", + "target": "npm:tmp@0.0.33", + "type": "static" + } + ], + "npm:fast-glob@3.2.7": [ + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob@3.2.7", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:fast-glob": [ + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:fast-url-parser": [ + { + "source": "npm:fast-url-parser", + "target": "npm:punycode@1.4.1", + "type": "static" + } + ], + "npm:fastq": [ + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + } + ], + "npm:faye-websocket": [ + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:fb-watchman": [ + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + } + ], + "npm:fbemitter": [ + { + "source": "npm:fbemitter", + "target": "npm:fbjs", + "type": "static" + } + ], + "npm:fbjs": [ + { + "source": "npm:fbjs", + "target": "npm:cross-fetch@3.1.5", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:fbjs-css-vars", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:promise", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:setimmediate", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:ua-parser-js", + "type": "static" + } + ], + "npm:feed": [ + { + "source": "npm:feed", + "target": "npm:xml-js", + "type": "static" + } + ], + "npm:fetch-blob": [ + { + "source": "npm:fetch-blob", + "target": "npm:node-domexception", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:web-streams-polyfill", + "type": "static" + } + ], + "npm:figures": [ + { + "source": "npm:figures", + "target": "npm:escape-string-regexp", + "type": "static" + } + ], + "npm:file-entry-cache@6.0.1": [ + { + "source": "npm:file-entry-cache@6.0.1", + "target": "npm:flat-cache@3.0.4", + "type": "static" + } + ], + "npm:file-loader": [ + { + "source": "npm:file-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:file-loader", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:filelist": [ + { + "source": "npm:filelist", + "target": "npm:minimatch@5.1.6", + "type": "static" + } + ], + "npm:fill-range": [ + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + } + ], + "npm:finalhandler": [ + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:find-cache-dir": [ + { + "source": "npm:find-cache-dir", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir", + "type": "static" + } + ], + "npm:find-up": [ + { + "source": "npm:find-up", + "target": "npm:locate-path@6.0.0", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:find-up@2.1.0": [ + { + "source": "npm:find-up@2.1.0", + "target": "npm:locate-path@2.0.0", + "type": "static" + } + ], + "npm:find-up@3.0.0": [ + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + } + ], + "npm:find-up@4.1.0": [ + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:find-yarn-workspace-root@2.0.0": [ + { + "source": "npm:find-yarn-workspace-root@2.0.0", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:flat-cache@3.0.4": [ + { + "source": "npm:flat-cache@3.0.4", + "target": "npm:flatted@3.2.7", + "type": "static" + }, + { + "source": "npm:flat-cache@3.0.4", + "target": "npm:rimraf@3.0.2", + "type": "static" + } + ], + "npm:flux": [ + { + "source": "npm:flux", + "target": "npm:fbemitter", + "type": "static" + }, + { + "source": "npm:flux", + "target": "npm:fbjs", + "type": "static" + } + ], + "npm:for-each": [ + { + "source": "npm:for-each", + "target": "npm:is-callable", + "type": "static" + } + ], + "npm:foreground-child": [ + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.0.2", + "type": "static" + } + ], + "npm:fork-ts-checker-webpack-plugin": [ + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:cosmiconfig@6.0.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:schema-utils@2.7.0", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:fork-ts-checker-webpack-plugin", + "target": "npm:tapable@1.1.3", + "type": "static" + } + ], + "npm:form-data": [ + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:formdata-polyfill": [ + { + "source": "npm:formdata-polyfill", + "target": "npm:fetch-blob", + "type": "static" + } + ], + "npm:fs-extra": [ + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-extra@11.1.1": [ + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@11.1.1", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-extra@9.1.0": [ + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@9.1.0", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-extra@7.0.1": [ + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:jsonfile@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@7.0.1", + "target": "npm:universalify@0.1.2", + "type": "static" + } + ], + "npm:fs-minipass@2.1.0": [ + { + "source": "npm:fs-minipass@2.1.0", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:fs-minipass": [ + { + "source": "npm:fs-minipass", + "target": "npm:minipass@4.2.5", + "type": "static" + } + ], + "npm:function.prototype.name@1.1.5": [ + { + "source": "npm:function.prototype.name@1.1.5", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:function.prototype.name@1.1.5", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name@1.1.5", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:function.prototype.name@1.1.5", + "target": "npm:functions-have-names", + "type": "static" + } + ], + "npm:gauge": [ + { + "source": "npm:gauge", + "target": "npm:aproba", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:color-support", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:gauge", + "target": "npm:wide-align", + "type": "static" + } + ], + "npm:get-intrinsic@1.2.1": [ + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:function-bind@1.1.1", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic@1.2.1", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:get-pkg-repo": [ + { + "source": "npm:get-pkg-repo", + "target": "npm:@hutson/parse-repository-url", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:get-pkg-repo", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:get-stream@4.1.0": [ + { + "source": "npm:get-stream@4.1.0", + "target": "npm:pump", + "type": "static" + } + ], + "npm:get-stream@5.2.0": [ + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + } + ], + "npm:get-symbol-description": [ + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + } + ], + "npm:git-raw-commits": [ + { + "source": "npm:git-raw-commits", + "target": "npm:dargs", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:git-raw-commits", + "target": "npm:split2", + "type": "static" + } + ], + "npm:git-remote-origin-url": [ + { + "source": "npm:git-remote-origin-url", + "target": "npm:gitconfiglocal", + "type": "static" + }, + { + "source": "npm:git-remote-origin-url", + "target": "npm:pify@2.3.0", + "type": "static" + } + ], + "npm:git-semver-tags": [ + { + "source": "npm:git-semver-tags", + "target": "npm:meow", + "type": "static" + }, + { + "source": "npm:git-semver-tags", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:git-up": [ + { + "source": "npm:git-up", + "target": "npm:is-ssh", + "type": "static" + }, + { + "source": "npm:git-up", + "target": "npm:parse-url", + "type": "static" + } + ], + "npm:git-url-parse": [ + { + "source": "npm:git-url-parse", + "target": "npm:git-up", + "type": "static" + } + ], + "npm:gitconfiglocal": [ + { + "source": "npm:gitconfiglocal", + "target": "npm:ini", + "type": "static" + } + ], + "npm:glob-parent": [ + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:glob-parent@6.0.2": [ + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:glob@10.3.3": [ + { + "source": "npm:glob@10.3.3", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:jackspeak@2.2.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:minipass@7.0.1", + "type": "static" + }, + { + "source": "npm:glob@10.3.3", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:glob@7.1.4": [ + { + "source": "npm:glob@7.1.4", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.4", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob@7.1.6": [ + { + "source": "npm:glob@7.1.6", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob@7.2.3": [ + { + "source": "npm:glob@7.2.3", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.2.3", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob@8.1.0": [ + { + "source": "npm:glob@8.1.0", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:once", + "type": "static" + } + ], + "npm:glob@9.3.5": [ + { + "source": "npm:glob@9.3.5", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minimatch@8.0.3", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:glob@10.2.7": [ + { + "source": "npm:glob@10.2.7", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.2.7", + "target": "npm:jackspeak@2.2.1", + "type": "static" + }, + { + "source": "npm:glob@10.2.7", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.2.7", + "target": "npm:minipass@6.0.2", + "type": "static" + }, + { + "source": "npm:glob@10.2.7", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:global-dirs@0.1.1": [ + { + "source": "npm:global-dirs@0.1.1", + "target": "npm:ini", + "type": "static" + } + ], + "npm:global-dirs@3.0.0": [ + { + "source": "npm:global-dirs@3.0.0", + "target": "npm:ini@2.0.0", + "type": "static" + } + ], + "npm:global-modules": [ + { + "source": "npm:global-modules", + "target": "npm:global-prefix", + "type": "static" + } + ], + "npm:global-prefix": [ + { + "source": "npm:global-prefix", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:global-prefix", + "target": "npm:which@1.3.1", + "type": "static" + } + ], + "npm:globals@13.20.0": [ + { + "source": "npm:globals@13.20.0", + "target": "npm:type-fest@0.20.2", + "type": "static" + } + ], + "npm:globalthis": [ + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:globby": [ + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + } + ], + "npm:globby@13.1.1": [ + { + "source": "npm:globby@13.1.1", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@13.1.1", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@13.1.1", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@13.1.1", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@13.1.1", + "target": "npm:slash@4.0.0", + "type": "static" + } + ], + "npm:gopd": [ + { + "source": "npm:gopd", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + } + ], + "npm:got": [ + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:duplexer3", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:get-stream@4.1.0", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:mimic-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:to-readable-stream", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:url-parse-lax", + "type": "static" + } + ], + "npm:gray-matter": [ + { + "source": "npm:gray-matter", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:section-matter", + "type": "static" + }, + { + "source": "npm:gray-matter", + "target": "npm:strip-bom-string", + "type": "static" + } + ], + "npm:gzip-size": [ + { + "source": "npm:gzip-size", + "target": "npm:duplexer", + "type": "static" + } + ], + "npm:handlebars": [ + { + "source": "npm:handlebars", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:wordwrap", + "type": "static" + }, + { + "source": "npm:handlebars", + "target": "npm:uglify-js", + "type": "static" + } + ], + "npm:has-property-descriptors": [ + { + "source": "npm:has-property-descriptors", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + } + ], + "npm:has-tostringtag": [ + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:has": [ + { + "source": "npm:has", + "target": "npm:function-bind@1.1.1", + "type": "static" + } + ], + "npm:hast-to-hyperscript": [ + { + "source": "npm:hast-to-hyperscript", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:space-separated-tokens", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:hast-to-hyperscript", + "target": "npm:web-namespaces", + "type": "static" + } + ], + "npm:hast-util-from-parse5": [ + { + "source": "npm:hast-util-from-parse5", + "target": "npm:@types/parse5", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:hastscript", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:vfile-location", + "type": "static" + }, + { + "source": "npm:hast-util-from-parse5", + "target": "npm:web-namespaces", + "type": "static" + } + ], + "npm:hast-util-raw": [ + { + "source": "npm:hast-util-raw", + "target": "npm:@types/hast", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:hast-util-from-parse5", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:hast-util-to-parse5", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:html-void-elements", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:parse5@6.0.1", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:unist-util-position", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:vfile", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:hast-util-raw", + "target": "npm:zwitch", + "type": "static" + } + ], + "npm:hast-util-to-parse5": [ + { + "source": "npm:hast-util-to-parse5", + "target": "npm:hast-to-hyperscript", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:web-namespaces", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:hast-util-to-parse5", + "target": "npm:zwitch", + "type": "static" + } + ], + "npm:hastscript": [ + { + "source": "npm:hastscript", + "target": "npm:@types/hast", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:comma-separated-tokens", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:hast-util-parse-selector", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:property-information", + "type": "static" + }, + { + "source": "npm:hastscript", + "target": "npm:space-separated-tokens", + "type": "static" + } + ], + "npm:history": [ + { + "source": "npm:history", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:resolve-pathname", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:tiny-warning", + "type": "static" + }, + { + "source": "npm:history", + "target": "npm:value-equal", + "type": "static" + } + ], + "npm:hoist-non-react-statics": [ + { + "source": "npm:hoist-non-react-statics", + "target": "npm:react-is", + "type": "static" + } + ], + "npm:hosted-git-info@3.0.8": [ + { + "source": "npm:hosted-git-info@3.0.8", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:hosted-git-info": [ + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:hosted-git-info@6.1.1": [ + { + "source": "npm:hosted-git-info@6.1.1", + "target": "npm:lru-cache@7.18.3", + "type": "static" + } + ], + "npm:hpack.js": [ + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream@2.3.7", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:html-minifier-terser": [ + { + "source": "npm:html-minifier-terser", + "target": "npm:camel-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:commander@8.3.0", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:param-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:relateurl", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:terser", + "type": "static" + } + ], + "npm:html-webpack-plugin": [ + { + "source": "npm:html-webpack-plugin", + "target": "npm:@types/html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:pretty-error", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:htmlparser2": [ + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler@4.2.2", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils@2.8.0", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities@2.2.0", + "type": "static" + } + ], + "npm:htmlparser2@8.0.1": [ + { + "source": "npm:htmlparser2@8.0.1", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2@8.0.1", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:htmlparser2@8.0.1", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2@8.0.1", + "target": "npm:entities", + "type": "static" + } + ], + "npm:http-errors": [ + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + } + ], + "npm:http-errors@1.6.3": [ + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.5.0", + "type": "static" + } + ], + "npm:http-proxy-agent": [ + { + "source": "npm:http-proxy-agent", + "target": "npm:@tootallnate/once", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:http-proxy-middleware": [ + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj@3.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:http-proxy": [ + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:https-proxy-agent": [ + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:humanize-ms": [ + { + "source": "npm:humanize-ms", + "target": "npm:ms", + "type": "static" + } + ], + "npm:iconv-lite": [ + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:iconv-lite@0.6.3": [ + { + "source": "npm:iconv-lite@0.6.3", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:identity-obj-proxy": [ + { + "source": "npm:identity-obj-proxy", + "target": "npm:harmony-reflect", + "type": "static" + } + ], + "npm:ignore-walk": [ + { + "source": "npm:ignore-walk", + "target": "npm:minimatch@5.1.6", + "type": "static" + } + ], + "npm:ignore-walk@6.0.2": [ + { + "source": "npm:ignore-walk@6.0.2", + "target": "npm:minimatch@7.4.3", + "type": "static" + } + ], + "npm:image-size": [ + { + "source": "npm:image-size", + "target": "npm:queue", + "type": "static" + } + ], + "npm:import-fresh": [ + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + } + ], + "npm:import-local": [ + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + } + ], + "npm:inflight": [ + { + "source": "npm:inflight", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:init-package-json": [ + { + "source": "npm:init-package-json", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:promzard", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:init-package-json", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:inquirer": [ + { + "source": "npm:inquirer", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:external-editor", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:mute-stream@0.0.8", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:ora@5.4.1", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:run-async", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:inquirer", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:internal-slot": [ + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:has", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:invariant": [ + { + "source": "npm:invariant", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:is-alphanumerical": [ + { + "source": "npm:is-alphanumerical", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:is-alphanumerical", + "target": "npm:is-decimal", + "type": "static" + } + ], + "npm:is-arguments": [ + { + "source": "npm:is-arguments", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-arguments", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-array-buffer": [ + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:is-bigint": [ + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "type": "static" + } + ], + "npm:is-binary-path": [ + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + } + ], + "npm:is-boolean-object": [ + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-builtin-module": [ + { + "source": "npm:is-builtin-module", + "target": "npm:builtin-modules", + "type": "static" + } + ], + "npm:is-ci": [ + { + "source": "npm:is-ci", + "target": "npm:ci-info", + "type": "static" + } + ], + "npm:is-ci@2.0.0": [ + { + "source": "npm:is-ci@2.0.0", + "target": "npm:ci-info@2.0.0", + "type": "static" + } + ], + "npm:is-core-module@2.12.1": [ + { + "source": "npm:is-core-module@2.12.1", + "target": "npm:has", + "type": "static" + } + ], + "npm:is-date-object": [ + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-glob": [ + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + } + ], + "npm:is-installed-globally": [ + { + "source": "npm:is-installed-globally", + "target": "npm:global-dirs@3.0.0", + "type": "static" + }, + { + "source": "npm:is-installed-globally", + "target": "npm:is-path-inside", + "type": "static" + } + ], + "npm:is-number-object": [ + { + "source": "npm:is-number-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-plain-object@2.0.4": [ + { + "source": "npm:is-plain-object@2.0.4", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:is-regex": [ + { + "source": "npm:is-regex", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-shared-array-buffer": [ + { + "source": "npm:is-shared-array-buffer", + "target": "npm:call-bind@1.0.2", + "type": "static" + } + ], + "npm:is-ssh": [ + { + "source": "npm:is-ssh", + "target": "npm:protocols", + "type": "static" + } + ], + "npm:is-string": [ + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-symbol": [ + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:is-text-path": [ + { + "source": "npm:is-text-path", + "target": "npm:text-extensions", + "type": "static" + } + ], + "npm:is-typed-array": [ + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array@1.1.11", + "type": "static" + } + ], + "npm:is-weakref": [ + { + "source": "npm:is-weakref", + "target": "npm:call-bind@1.0.2", + "type": "static" + } + ], + "npm:is-weakset": [ + { + "source": "npm:is-weakset", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + } + ], + "npm:is-wsl": [ + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + } + ], + "npm:istanbul-lib-instrument": [ + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser@7.22.7", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:istanbul-lib-report": [ + { + "source": "npm:istanbul-lib-report", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:supports-color@7.2.0", + "type": "static" + } + ], + "npm:istanbul-lib-source-maps": [ + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:istanbul-reports": [ + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + } + ], + "npm:jackspeak@2.2.1": [ + { + "source": "npm:jackspeak@2.2.1", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak@2.2.1", + "target": "npm:@pkgjs/parseargs", + "type": "static" + } + ], + "npm:jake": [ + { + "source": "npm:jake", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:jest-changed-files@29.5.0": [ + { + "source": "npm:jest-changed-files@29.5.0", + "target": "npm:execa@5.1.1", + "type": "static" + }, + { + "source": "npm:jest-changed-files@29.5.0", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:jest-circus@29.6.2": [ + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@jest/expect@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:dedent@1.5.0", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:is-generator-fn", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-each@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-runtime@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-circus@29.6.2", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:jest-cli@29.6.2": [ + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:@jest/core@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:jest-config@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:jest-cli@29.6.2", + "target": "npm:yargs@17.7.1", + "type": "static" + } + ], + "npm:jest-config@29.6.2": [ + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@jest/test-sequencer@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:babel-jest@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-circus@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-environment-node@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-runner@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config@29.6.2", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:jest-diff@29.6.2": [ + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:diff-sequences@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-diff@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + } + ], + "npm:jest-docblock@29.4.3": [ + { + "source": "npm:jest-docblock@29.4.3", + "target": "npm:detect-newline", + "type": "static" + } + ], + "npm:jest-each@29.6.2": [ + { + "source": "npm:jest-each@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-each@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-each@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-each@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-each@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + } + ], + "npm:jest-environment-node@29.6.2": [ + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:@jest/fake-timers@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-environment-node@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + } + ], + "npm:jest-haste-map@29.6.2": [ + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:jest-worker@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map@29.6.2", + "target": "npm:fsevents@2.3.2", + "type": "static" + } + ], + "npm:jest-leak-detector@29.6.2": [ + { + "source": "npm:jest-leak-detector@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-leak-detector@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + } + ], + "npm:jest-matcher-utils@29.6.2": [ + { + "source": "npm:jest-matcher-utils@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@29.6.2", + "target": "npm:jest-diff@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + } + ], + "npm:jest-message-util@29.6.2": [ + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util@29.6.2", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:jest-mock@29.6.2": [ + { + "source": "npm:jest-mock@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-mock@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-mock@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + } + ], + "npm:jest-resolve-dependencies@29.6.2": [ + { + "source": "npm:jest-resolve-dependencies@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + } + ], + "npm:jest-resolve@29.6.2": [ + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:jest-validate@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:jest-resolve@29.6.2", + "target": "npm:slash", + "type": "static" + } + ], + "npm:jest-runner@29.6.2": [ + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/console@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-docblock@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-environment-node@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-leak-detector@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-runtime@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-watcher@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:jest-worker@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-runner@29.6.2", + "target": "npm:source-map-support@0.5.13", + "type": "static" + } + ], + "npm:jest-runtime@29.6.2": [ + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/environment@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/fake-timers@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/globals@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/source-map@29.6.0", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-haste-map@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-mock@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-regex-util@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-resolve@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runtime@29.6.2", + "target": "npm:strip-bom@4.0.0", + "type": "static" + } + ], + "npm:jest-snapshot@29.6.2": [ + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/generator@7.22.9", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@babel/types@7.22.5", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/expect-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/transform@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:expect@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-diff@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-matcher-utils@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-message-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-snapshot@29.6.2", + "target": "npm:semver", + "type": "static" + } + ], + "npm:jest-specific-snapshot": [ + { + "source": "npm:jest-specific-snapshot", + "target": "npm:jest-snapshot@29.6.2", + "type": "static" + } + ], + "npm:jest-util@29.6.2": [ + { + "source": "npm:jest-util@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util@29.6.2", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:jest-validate@29.6.2": [ + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:jest-get-type@29.4.3", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate@29.6.2", + "target": "npm:pretty-format@29.6.2", + "type": "static" + } + ], + "npm:jest-watcher@29.6.2": [ + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:@jest/test-result@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-watcher@29.6.2", + "target": "npm:string-length", + "type": "static" + } + ], + "npm:jest-worker@26.6.2": [ + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@26.6.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + } + ], + "npm:jest-worker@27.5.1": [ + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:jest-worker@29.6.2": [ + { + "source": "npm:jest-worker@29.6.2", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:jest-worker@29.6.2", + "target": "npm:jest-util@29.6.2", + "type": "static" + }, + { + "source": "npm:jest-worker@29.6.2", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@29.6.2", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:jest@29.6.2": [ + { + "source": "npm:jest@29.6.2", + "target": "npm:@jest/core@29.6.2", + "type": "static" + }, + { + "source": "npm:jest@29.6.2", + "target": "npm:@jest/types@29.6.1", + "type": "static" + }, + { + "source": "npm:jest@29.6.2", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest@29.6.2", + "target": "npm:jest-cli@29.6.2", + "type": "static" + } + ], + "npm:joi": [ + { + "source": "npm:joi", + "target": "npm:@hapi/hoek", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@hapi/topo", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/address", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/formula", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/pinpoint", + "type": "static" + } + ], + "npm:js-yaml@4.0.0": [ + { + "source": "npm:js-yaml@4.0.0", + "target": "npm:argparse", + "type": "static" + } + ], + "npm:js-yaml": [ + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + } + ], + "npm:js-yaml@3.14.1": [ + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.1", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:json-stable-stringify@1.0.2": [ + { + "source": "npm:json-stable-stringify@1.0.2", + "target": "npm:jsonify@0.0.1", + "type": "static" + } + ], + "npm:json5@1.0.2": [ + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:jsonfile@4.0.0": [ + { + "source": "npm:jsonfile@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:jsonfile": [ + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:jsx-ast-utils": [ + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes@3.1.6", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array.prototype.flat@1.3.1", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.values@1.1.6", + "type": "static" + } + ], + "npm:keyv@3.1.0": [ + { + "source": "npm:keyv@3.1.0", + "target": "npm:json-buffer@3.0.0", + "type": "static" + } + ], + "npm:klaw-sync@6.0.0": [ + { + "source": "npm:klaw-sync@6.0.0", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:konamimojisplosion": [ + { + "source": "npm:konamimojisplosion", + "target": "npm:emojisplosion", + "type": "static" + }, + { + "source": "npm:konamimojisplosion", + "target": "npm:konami-code-js", + "type": "static" + } + ], + "npm:language-tags": [ + { + "source": "npm:language-tags", + "target": "npm:language-subtag-registry", + "type": "static" + } + ], + "npm:latest-version": [ + { + "source": "npm:latest-version", + "target": "npm:package-json", + "type": "static" + } + ], + "npm:lerna@7.1.4": [ + { + "source": "npm:lerna@7.1.4", + "target": "npm:@lerna/child-process@7.1.4", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@lerna/create@7.1.4", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@nx/devkit@16.5.3", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@octokit/plugin-enterprise-rest", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:@octokit/rest", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:byte-size", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:chalk@4.1.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:columnify", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:conventional-changelog-angular", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:conventional-changelog-core", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:conventional-recommended-bump", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:execa@5.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:get-stream@6.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:git-url-parse", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:has-unicode", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:init-package-json", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:inquirer", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:is-ci", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:is-stream@2.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:jest-diff@29.6.2", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:libnpmaccess", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:libnpmpublish", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:load-json-file", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:multimatch", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:node-fetch@2.6.7", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:npm-package-arg@8.1.1", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:npm-packlist", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:nx@16.5.3", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-map-series", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-pipe", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-queue", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-reduce", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:p-waterfall", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:pacote", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:pify@5.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:read-cmd-shim", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:rimraf@4.4.1", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:ssri@9.0.1", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:typescript@5.1.6", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:upath", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:uuid@9.0.0", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:validate-npm-package-license", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:write-pkg", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:lerna@7.1.4", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + } + ], + "npm:levn": [ + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:libnpmaccess": [ + { + "source": "npm:libnpmaccess", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmaccess", + "target": "npm:npm-registry-fetch", + "type": "static" + } + ], + "npm:libnpmpublish": [ + { + "source": "npm:libnpmpublish", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:libnpmpublish", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:linkify-it": [ + { + "source": "npm:linkify-it", + "target": "npm:uc.micro", + "type": "static" + } + ], + "npm:lint-staged@13.2.3": [ + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:chalk@5.2.0", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:commander@10.0.1", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:listr2@5.0.8", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:object-inspect@1.12.3", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:pidtree", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:string-argv@0.3.1", + "type": "static" + }, + { + "source": "npm:lint-staged@13.2.3", + "target": "npm:yaml@2.3.1", + "type": "static" + } + ], + "npm:listr2@5.0.8": [ + { + "source": "npm:listr2@5.0.8", + "target": "npm:cli-truncate@2.1.0", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:log-update@4.0.0", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:rxjs", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:listr2@5.0.8", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:load-json-file": [ + { + "source": "npm:load-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:strip-bom@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file", + "target": "npm:type-fest@0.6.0", + "type": "static" + } + ], + "npm:load-json-file@4.0.0": [ + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:load-json-file@4.0.0", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:loader-utils": [ + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + } + ], + "npm:locate-path@2.0.0": [ + { + "source": "npm:locate-path@2.0.0", + "target": "npm:p-locate@2.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@2.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + } + ], + "npm:locate-path@3.0.0": [ + { + "source": "npm:locate-path@3.0.0", + "target": "npm:p-locate@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + } + ], + "npm:locate-path": [ + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + } + ], + "npm:locate-path@6.0.0": [ + { + "source": "npm:locate-path@6.0.0", + "target": "npm:p-locate@5.0.0", + "type": "static" + } + ], + "npm:log-symbols@4.0.0": [ + { + "source": "npm:log-symbols@4.0.0", + "target": "npm:chalk@4.1.2", + "type": "static" + } + ], + "npm:log-symbols": [ + { + "source": "npm:log-symbols", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + } + ], + "npm:log-update@4.0.0": [ + { + "source": "npm:log-update@4.0.0", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:log-update@4.0.0", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:log-update@4.0.0", + "target": "npm:slice-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:log-update@4.0.0", + "target": "npm:wrap-ansi@6.2.0", + "type": "static" + } + ], + "npm:loose-envify": [ + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + } + ], + "npm:loupe@2.3.6": [ + { + "source": "npm:loupe@2.3.6", + "target": "npm:get-func-name@2.0.0", + "type": "static" + } + ], + "npm:lower-case": [ + { + "source": "npm:lower-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:lru-cache@5.1.1": [ + { + "source": "npm:lru-cache@5.1.1", + "target": "npm:yallist@3.1.1", + "type": "static" + } + ], + "npm:lru-cache": [ + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:magic-string": [ + { + "source": "npm:magic-string", + "target": "npm:sourcemap-codec", + "type": "static" + } + ], + "npm:make-dir": [ + { + "source": "npm:make-dir", + "target": "npm:semver", + "type": "static" + } + ], + "npm:make-dir@3.1.0": [ + { + "source": "npm:make-dir@3.1.0", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:make-dir@2.1.0": [ + { + "source": "npm:make-dir@2.1.0", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir@2.1.0", + "target": "npm:semver@5.7.1", + "type": "static" + } + ], + "npm:make-fetch-happen@10.1.5": [ + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:cacache@16.1.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass-fetch@2.1.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:socks-proxy-agent@6.2.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen@10.1.5", + "target": "npm:ssri@9.0.1", + "type": "static" + } + ], + "npm:make-fetch-happen": [ + { + "source": "npm:make-fetch-happen", + "target": "npm:agentkeepalive", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:is-lambda", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:makeerror": [ + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + } + ], + "npm:markdown-it": [ + { + "source": "npm:markdown-it", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:markdown-it", + "target": "npm:entities@3.0.1", + "type": "static" + }, + { + "source": "npm:markdown-it", + "target": "npm:linkify-it", + "type": "static" + }, + { + "source": "npm:markdown-it", + "target": "npm:mdurl", + "type": "static" + }, + { + "source": "npm:markdown-it", + "target": "npm:uc.micro", + "type": "static" + } + ], + "npm:markdownlint-cli@0.35.0": [ + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:commander@11.0.0", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:get-stdin", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:glob@10.2.7", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:markdownlint@0.29.0", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:markdownlint-cli@0.35.0", + "target": "npm:run-con@1.2.11", + "type": "static" + } + ], + "npm:markdownlint@0.29.0": [ + { + "source": "npm:markdownlint@0.29.0", + "target": "npm:markdown-it", + "type": "static" + }, + { + "source": "npm:markdownlint@0.29.0", + "target": "npm:markdownlint-micromark@0.1.5", + "type": "static" + } + ], + "npm:mdast-squeeze-paragraphs": [ + { + "source": "npm:mdast-squeeze-paragraphs", + "target": "npm:unist-util-remove", + "type": "static" + } + ], + "npm:mdast-util-definitions": [ + { + "source": "npm:mdast-util-definitions", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:mdast-util-to-hast": [ + { + "source": "npm:mdast-util-to-hast", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:mdast-util-definitions", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:mdurl", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-builder", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-generated", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-position", + "type": "static" + }, + { + "source": "npm:mdast-util-to-hast", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:memfs": [ + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + } + ], + "npm:meow@10.1.5": [ + { + "source": "npm:meow@10.1.5", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:camelcase-keys@7.0.2", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:decamelize@5.0.1", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:read-pkg-up@8.0.0", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:redent@4.0.0", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:trim-newlines@4.1.1", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:meow@10.1.5", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + } + ], + "npm:meow": [ + { + "source": "npm:meow", + "target": "npm:@types/minimist", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:camelcase-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:decamelize-keys", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:hard-rejection", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:minimist-options", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:read-pkg-up", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:trim-newlines", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:type-fest@0.18.1", + "type": "static" + }, + { + "source": "npm:meow", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + } + ], + "npm:micromatch": [ + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:mime-types@2.1.18": [ + { + "source": "npm:mime-types@2.1.18", + "target": "npm:mime-db@1.33.0", + "type": "static" + } + ], + "npm:mime-types": [ + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:mini-create-react-context": [ + { + "source": "npm:mini-create-react-context", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:mini-create-react-context", + "target": "npm:tiny-warning", + "type": "static" + } + ], + "npm:mini-css-extract-plugin": [ + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils@4.0.0", + "type": "static" + } + ], + "npm:minimatch@3.0.4": [ + { + "source": "npm:minimatch@3.0.4", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + } + ], + "npm:minimatch@3.0.5": [ + { + "source": "npm:minimatch@3.0.5", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + } + ], + "npm:minimatch": [ + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + } + ], + "npm:minimatch@5.1.6": [ + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch@7.4.3": [ + { + "source": "npm:minimatch@7.4.3", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch@8.0.3": [ + { + "source": "npm:minimatch@8.0.3", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch@9.0.3": [ + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimist-options": [ + { + "source": "npm:minimist-options", + "target": "npm:arrify", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:is-plain-obj@1.1.0", + "type": "static" + }, + { + "source": "npm:minimist-options", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:minipass-collect": [ + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-fetch@2.1.0": [ + { + "source": "npm:minipass-fetch@2.1.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.0", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.0", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch@2.1.0", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:minipass-fetch": [ + { + "source": "npm:minipass-fetch", + "target": "npm:minipass@4.2.5", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:minipass-flush": [ + { + "source": "npm:minipass-flush", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-json-stream": [ + { + "source": "npm:minipass-json-stream", + "target": "npm:jsonparse", + "type": "static" + }, + { + "source": "npm:minipass-json-stream", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-pipeline": [ + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-sized": [ + { + "source": "npm:minipass-sized", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass": [ + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:minizlib": [ + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:mkdirp@0.5.5": [ + { + "source": "npm:mkdirp@0.5.5", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:mocha@8.4.0": [ + { + "source": "npm:mocha@8.4.0", + "target": "npm:@ungap/promise-all-settled@1.1.2", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:browser-stdout", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:chokidar@3.5.1", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:debug@4.3.1", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:diff@5.0.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:growl@1.10.5", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:js-yaml@4.0.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:log-symbols@4.0.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:minimatch@3.0.4", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:nanoid@3.1.20", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:serialize-javascript@5.0.1", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:wide-align@1.1.3", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:workerpool@6.1.0", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:yargs-parser@20.2.4", + "type": "static" + }, + { + "source": "npm:mocha@8.4.0", + "target": "npm:yargs-unparser", + "type": "static" + } + ], + "npm:multicast-dns": [ + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + } + ], + "npm:multimatch": [ + { + "source": "npm:multimatch", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-differ", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:arrify@2.0.1", + "type": "static" + }, + { + "source": "npm:multimatch", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:netlify": [ + { + "source": "npm:netlify", + "target": "npm:@netlify/open-api", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:lodash-es", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:micro-api-client", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:node-fetch@3.3.1", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:omit.js", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:p-wait-for", + "type": "static" + }, + { + "source": "npm:netlify", + "target": "npm:qs@6.11.2", + "type": "static" + } + ], + "npm:nise": [ + { + "source": "npm:nise", + "target": "npm:@sinonjs/commons@2.0.0", + "type": "static" + }, + { + "source": "npm:nise", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:nise", + "target": "npm:@sinonjs/text-encoding", + "type": "static" + }, + { + "source": "npm:nise", + "target": "npm:just-extend", + "type": "static" + }, + { + "source": "npm:nise", + "target": "npm:path-to-regexp", + "type": "static" + } + ], + "npm:no-case": [ + { + "source": "npm:no-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:node-emoji": [ + { + "source": "npm:node-emoji", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:node-fetch@2.6.7": [ + { + "source": "npm:node-fetch@2.6.7", + "target": "npm:whatwg-url", + "type": "static" + } + ], + "npm:node-fetch@2.6.12": [ + { + "source": "npm:node-fetch@2.6.12", + "target": "npm:whatwg-url", + "type": "static" + } + ], + "npm:node-fetch@3.3.1": [ + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:data-uri-to-buffer", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:fetch-blob", + "type": "static" + }, + { + "source": "npm:node-fetch@3.3.1", + "target": "npm:formdata-polyfill", + "type": "static" + } + ], + "npm:node-gyp@9.0.0": [ + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:make-fetch-happen@10.1.5", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:nopt@5.0.0", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:npmlog", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:node-gyp@9.0.0", + "target": "npm:which@2.0.2", + "type": "static" + } + ], + "npm:nopt@5.0.0": [ + { + "source": "npm:nopt@5.0.0", + "target": "npm:abbrev", + "type": "static" + } + ], + "npm:normalize-package-data@2.5.0": [ + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:hosted-git-info@2.8.9", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@2.5.0", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:normalize-package-data": [ + { + "source": "npm:normalize-package-data", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:normalize-package-data@5.0.0": [ + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:normalize-package-data@5.0.0", + "target": "npm:validate-npm-package-license", + "type": "static" + } + ], + "npm:npm-bundled": [ + { + "source": "npm:npm-bundled", + "target": "npm:npm-normalize-package-bin@1.0.1", + "type": "static" + } + ], + "npm:npm-bundled@3.0.0": [ + { + "source": "npm:npm-bundled@3.0.0", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:npm-install-checks": [ + { + "source": "npm:npm-install-checks", + "target": "npm:semver", + "type": "static" + } + ], + "npm:npm-package-arg@8.1.1": [ + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:hosted-git-info@3.0.8", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg@8.1.1", + "target": "npm:validate-npm-package-name@3.0.0", + "type": "static" + } + ], + "npm:npm-package-arg": [ + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info@6.1.1", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:npm-packlist": [ + { + "source": "npm:npm-packlist", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:ignore-walk", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-bundled", + "type": "static" + }, + { + "source": "npm:npm-packlist", + "target": "npm:npm-normalize-package-bin@1.0.1", + "type": "static" + } + ], + "npm:npm-packlist@7.0.4": [ + { + "source": "npm:npm-packlist@7.0.4", + "target": "npm:ignore-walk@6.0.2", + "type": "static" + } + ], + "npm:npm-pick-manifest": [ + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-install-checks", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-pick-manifest", + "target": "npm:semver", + "type": "static" + } + ], + "npm:npm-registry-fetch": [ + { + "source": "npm:npm-registry-fetch", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minipass-json-stream", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:npm-registry-fetch", + "target": "npm:proc-log", + "type": "static" + } + ], + "npm:npm-run-path": [ + { + "source": "npm:npm-run-path", + "target": "npm:path-key", + "type": "static" + } + ], + "npm:npm-run-path@5.1.0": [ + { + "source": "npm:npm-run-path@5.1.0", + "target": "npm:path-key@4.0.0", + "type": "static" + } + ], + "npm:npmlog": [ + { + "source": "npm:npmlog", + "target": "npm:are-we-there-yet", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:console-control-strings", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:gauge", + "type": "static" + }, + { + "source": "npm:npmlog", + "target": "npm:set-blocking", + "type": "static" + } + ], + "npm:nth-check": [ + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + } + ], + "npm:nx-cloud": [ + { + "source": "npm:nx-cloud", + "target": "npm:@nrwl/nx-cloud", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:axios@1.1.3", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:dotenv@10.0.0", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:node-machine-id", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:nx-cloud", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:nx@16.5.3": [ + { + "source": "npm:nx@16.5.3", + "target": "npm:@nrwl/tao@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@parcel/watcher", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:axios@1.1.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:dotenv@10.0.0", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:fast-glob@3.2.7", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:fs-extra@11.1.1", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:glob@7.1.4", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:minimatch@3.0.5", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:strong-log-transformer", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:v8-compile-cache", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:yargs@17.7.1", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-darwin-arm64@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-darwin-x64@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-freebsd-x64@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-arm-gnueabihf@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-arm64-gnu@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-arm64-musl@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-x64-gnu@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-linux-x64-musl@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-win32-arm64-msvc@16.5.3", + "type": "static" + }, + { + "source": "npm:nx@16.5.3", + "target": "npm:@nx/nx-win32-x64-msvc@16.5.3", + "type": "static" + } + ], + "npm:object-is": [ + { + "source": "npm:object-is", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:object.assign": [ + { + "source": "npm:object.assign", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:object.entries": [ + { + "source": "npm:object.entries", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract@1.22.1", + "type": "static" + } + ], + "npm:object.fromentries@2.0.6": [ + { + "source": "npm:object.fromentries@2.0.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.fromentries@2.0.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries@2.0.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + } + ], + "npm:object.groupby@1.0.0": [ + { + "source": "npm:object.groupby@1.0.0", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.groupby@1.0.0", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.groupby@1.0.0", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:object.groupby@1.0.0", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + } + ], + "npm:object.hasown": [ + { + "source": "npm:object.hasown", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:es-abstract@1.22.1", + "type": "static" + } + ], + "npm:object.values@1.1.6": [ + { + "source": "npm:object.values@1.1.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:object.values@1.1.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values@1.1.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + } + ], + "npm:on-finished": [ + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + } + ], + "npm:once": [ + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:onetime": [ + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + } + ], + "npm:onetime@6.0.0": [ + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + } + ], + "npm:open@7.4.2": [ + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:open": [ + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:optionator": [ + { + "source": "npm:optionator", + "target": "npm:@aashutoshrathi/word-wrap", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:ora@5.4.1": [ + { + "source": "npm:ora@5.4.1", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-spinners@2.7.0", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:p-limit@1.3.0": [ + { + "source": "npm:p-limit@1.3.0", + "target": "npm:p-try@1.0.0", + "type": "static" + } + ], + "npm:p-limit@2.3.0": [ + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + } + ], + "npm:p-limit": [ + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + } + ], + "npm:p-locate@2.0.0": [ + { + "source": "npm:p-locate@2.0.0", + "target": "npm:p-limit@1.3.0", + "type": "static" + } + ], + "npm:p-locate@3.0.0": [ + { + "source": "npm:p-locate@3.0.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + } + ], + "npm:p-locate": [ + { + "source": "npm:p-locate", + "target": "npm:p-limit@2.3.0", + "type": "static" + } + ], + "npm:p-locate@5.0.0": [ + { + "source": "npm:p-locate@5.0.0", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:p-map": [ + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + } + ], + "npm:p-queue": [ + { + "source": "npm:p-queue", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:p-queue", + "target": "npm:p-timeout", + "type": "static" + } + ], + "npm:p-retry": [ + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry@0.13.1", + "type": "static" + } + ], + "npm:p-timeout": [ + { + "source": "npm:p-timeout", + "target": "npm:p-finally", + "type": "static" + } + ], + "npm:p-wait-for": [ + { + "source": "npm:p-wait-for", + "target": "npm:p-timeout@5.1.0", + "type": "static" + } + ], + "npm:p-waterfall": [ + { + "source": "npm:p-waterfall", + "target": "npm:p-reduce", + "type": "static" + } + ], + "npm:package-json": [ + { + "source": "npm:package-json", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:registry-auth-token", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:registry-url", + "type": "static" + }, + { + "source": "npm:package-json", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:pacote": [ + { + "source": "npm:pacote", + "target": "npm:@npmcli/git", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/installed-package-contents", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/promise-spawn", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:@npmcli/run-script", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-packlist@7.0.4", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-pick-manifest", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:npm-registry-fetch", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:sigstore", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:pacote", + "target": "npm:tar", + "type": "static" + } + ], + "npm:param-case": [ + { + "source": "npm:param-case", + "target": "npm:dot-case", + "type": "static" + }, + { + "source": "npm:param-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:parent-module": [ + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + } + ], + "npm:parent-module@2.0.0": [ + { + "source": "npm:parent-module@2.0.0", + "target": "npm:callsites", + "type": "static" + } + ], + "npm:parse-entities": [ + { + "source": "npm:parse-entities", + "target": "npm:character-entities", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-entities-legacy", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:character-reference-invalid", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-alphanumerical", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:parse-entities", + "target": "npm:is-hexadecimal", + "type": "static" + } + ], + "npm:parse-json@4.0.0": [ + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + } + ], + "npm:parse-json": [ + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + } + ], + "npm:parse-path": [ + { + "source": "npm:parse-path", + "target": "npm:protocols", + "type": "static" + } + ], + "npm:parse-url": [ + { + "source": "npm:parse-url", + "target": "npm:parse-path", + "type": "static" + } + ], + "npm:parse5-htmlparser2-tree-adapter": [ + { + "source": "npm:parse5-htmlparser2-tree-adapter", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:parse5-htmlparser2-tree-adapter", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:parse5": [ + { + "source": "npm:parse5", + "target": "npm:entities", + "type": "static" + } + ], + "npm:pascal-case": [ + { + "source": "npm:pascal-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:pascal-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:patch-package": [ + { + "source": "npm:patch-package", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:find-yarn-workspace-root@2.0.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:json-stable-stringify@1.0.2", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:klaw-sync@6.0.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:slash@2.0.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:tmp@0.0.33", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:yaml@2.3.1", + "type": "static" + } + ], + "npm:path-scurry": [ + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.0.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@7.0.1", + "type": "static" + } + ], + "npm:path-to-regexp": [ + { + "source": "npm:path-to-regexp", + "target": "npm:isarray@0.0.1", + "type": "static" + } + ], + "npm:path-type@3.0.0": [ + { + "source": "npm:path-type@3.0.0", + "target": "npm:pify", + "type": "static" + } + ], + "npm:pkg-dir": [ + { + "source": "npm:pkg-dir", + "target": "npm:find-up@4.1.0", + "type": "static" + } + ], + "npm:pkg-up": [ + { + "source": "npm:pkg-up", + "target": "npm:find-up@3.0.0", + "type": "static" + } + ], + "npm:postcss-calc": [ + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-colormin": [ + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-convert-values": [ + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-discard-unused": [ + { + "source": "npm:postcss-discard-unused", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-loader": [ + { + "source": "npm:postcss-loader", + "target": "npm:cosmiconfig@7.0.1", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:klona", + "type": "static" + }, + { + "source": "npm:postcss-loader", + "target": "npm:semver", + "type": "static" + } + ], + "npm:postcss-merge-idents": [ + { + "source": "npm:postcss-merge-idents", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-idents", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-merge-longhand": [ + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + } + ], + "npm:postcss-merge-rules": [ + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-minify-font-values": [ + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-gradients": [ + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-params": [ + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-selectors": [ + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-local-by-default": [ + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-modules-scope": [ + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-values": [ + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils", + "type": "static" + } + ], + "npm:postcss-normalize-display-values": [ + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-positions": [ + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-repeat-style": [ + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-string": [ + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-timing-functions": [ + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-unicode": [ + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-url": [ + { + "source": "npm:postcss-normalize-url", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-whitespace": [ + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-ordered-values": [ + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-reduce-idents": [ + { + "source": "npm:postcss-reduce-idents", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-reduce-initial": [ + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + } + ], + "npm:postcss-reduce-transforms": [ + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-selector-parser": [ + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:postcss-sort-media-queries": [ + { + "source": "npm:postcss-sort-media-queries", + "target": "npm:sort-css-media-queries", + "type": "static" + } + ], + "npm:postcss-svgo": [ + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo", + "type": "static" + } + ], + "npm:postcss-unique-selectors": [ + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss@8.4.27": [ + { + "source": "npm:postcss@8.4.27", + "target": "npm:nanoid@3.3.6", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss@8.4.27", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:pretty-error": [ + { + "source": "npm:pretty-error", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:pretty-error", + "target": "npm:renderkid", + "type": "static" + } + ], + "npm:pretty-format@29.6.2": [ + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:@jest/schemas@29.6.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format@29.6.2", + "target": "npm:react-is@18.2.0", + "type": "static" + } + ], + "npm:promise-retry": [ + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry", + "type": "static" + } + ], + "npm:promise": [ + { + "source": "npm:promise", + "target": "npm:asap", + "type": "static" + } + ], + "npm:prompts": [ + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + } + ], + "npm:promzard": [ + { + "source": "npm:promzard", + "target": "npm:read", + "type": "static" + } + ], + "npm:prop-types": [ + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + } + ], + "npm:property-information": [ + { + "source": "npm:property-information", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:proxy-addr": [ + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js", + "type": "static" + } + ], + "npm:pump": [ + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + } + ], + "npm:pupa": [ + { + "source": "npm:pupa", + "target": "npm:escape-goat", + "type": "static" + } + ], + "npm:qs": [ + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:qs@6.11.2": [ + { + "source": "npm:qs@6.11.2", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:queue": [ + { + "source": "npm:queue", + "target": "npm:inherits", + "type": "static" + } + ], + "npm:randombytes": [ + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:raw-body": [ + { + "source": "npm:raw-body", + "target": "npm:bytes@3.1.2", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:raw-loader": [ + { + "source": "npm:raw-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:raw-loader", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:rc": [ + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + } + ], + "npm:react-base16-styling": [ + { + "source": "npm:react-base16-styling", + "target": "npm:base16", + "type": "static" + }, + { + "source": "npm:react-base16-styling", + "target": "npm:lodash.curry", + "type": "static" + }, + { + "source": "npm:react-base16-styling", + "target": "npm:lodash.flow", + "type": "static" + }, + { + "source": "npm:react-base16-styling", + "target": "npm:pure-color", + "type": "static" + } + ], + "npm:react-dev-utils": [ + { + "source": "npm:react-dev-utils", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:address", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:detect-port-alt", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:escape-string-regexp@4.0.0", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:filesize", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:fork-ts-checker-webpack-plugin", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:global-modules", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:gzip-size", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:immer", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:is-root", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:loader-utils@3.2.0", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:pkg-up", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:react-error-overlay", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:recursive-readdir", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:react-dev-utils", + "target": "npm:text-table", + "type": "static" + } + ], + "npm:react-dom": [ + { + "source": "npm:react-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:scheduler", + "type": "static" + } + ], + "npm:react-helmet-async": [ + { + "source": "npm:react-helmet-async", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:react-fast-compare", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:shallowequal", + "type": "static" + } + ], + "npm:react-json-view": [ + { + "source": "npm:react-json-view", + "target": "npm:flux", + "type": "static" + }, + { + "source": "npm:react-json-view", + "target": "npm:react-base16-styling", + "type": "static" + }, + { + "source": "npm:react-json-view", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:react-json-view", + "target": "npm:react-textarea-autosize", + "type": "static" + } + ], + "npm:react-loadable-ssr-addon-v5-slorber": [ + { + "source": "npm:react-loadable-ssr-addon-v5-slorber", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + } + ], + "npm:react-router-config": [ + { + "source": "npm:react-router-config", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + } + ], + "npm:react-router-dom": [ + { + "source": "npm:react-router-dom", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:history", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:react-router", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:react-router-dom", + "target": "npm:tiny-warning", + "type": "static" + } + ], + "npm:react-router": [ + { + "source": "npm:react-router", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:history", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:mini-create-react-context", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-invariant", + "type": "static" + }, + { + "source": "npm:react-router", + "target": "npm:tiny-warning", + "type": "static" + } + ], + "npm:react-split-pane@0.1.92": [ + { + "source": "npm:react-split-pane@0.1.92", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-split-pane@0.1.92", + "target": "npm:react-lifecycles-compat", + "type": "static" + }, + { + "source": "npm:react-split-pane@0.1.92", + "target": "npm:react-style-proptype@3.2.2", + "type": "static" + } + ], + "npm:react-style-proptype@3.2.2": [ + { + "source": "npm:react-style-proptype@3.2.2", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react-textarea-autosize": [ + { + "source": "npm:react-textarea-autosize", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:use-composed-ref", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:use-latest", + "type": "static" + } + ], + "npm:react": [ + { + "source": "npm:react", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:read-package-json-fast": [ + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:read-package-json": [ + { + "source": "npm:read-package-json", + "target": "npm:glob@10.3.3", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:json-parse-even-better-errors@3.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:normalize-package-data@5.0.0", + "type": "static" + }, + { + "source": "npm:read-package-json", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:read-pkg-up@3.0.0": [ + { + "source": "npm:read-pkg-up@3.0.0", + "target": "npm:find-up@2.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up@3.0.0", + "target": "npm:read-pkg", + "type": "static" + } + ], + "npm:read-pkg-up": [ + { + "source": "npm:read-pkg-up", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:read-pkg@5.2.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up", + "target": "npm:type-fest@0.8.1", + "type": "static" + } + ], + "npm:read-pkg-up@8.0.0": [ + { + "source": "npm:read-pkg-up@8.0.0", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:read-pkg-up@8.0.0", + "target": "npm:read-pkg@6.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg-up@8.0.0", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:read-pkg": [ + { + "source": "npm:read-pkg", + "target": "npm:load-json-file@4.0.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:read-pkg", + "target": "npm:path-type@3.0.0", + "type": "static" + } + ], + "npm:read-pkg@5.2.0": [ + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:normalize-package-data@2.5.0", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:read-pkg@5.2.0", + "target": "npm:type-fest@0.6.0", + "type": "static" + } + ], + "npm:read-pkg@6.0.0": [ + { + "source": "npm:read-pkg@6.0.0", + "target": "npm:@types/normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@6.0.0", + "target": "npm:normalize-package-data", + "type": "static" + }, + { + "source": "npm:read-pkg@6.0.0", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:read-pkg@6.0.0", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:read": [ + { + "source": "npm:read", + "target": "npm:mute-stream", + "type": "static" + } + ], + "npm:readable-stream@2.3.7": [ + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.7", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:readable-stream": [ + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:readdirp@3.5.0": [ + { + "source": "npm:readdirp@3.5.0", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:readdirp": [ + { + "source": "npm:readdirp", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:rechoir": [ + { + "source": "npm:rechoir", + "target": "npm:resolve@1.22.3", + "type": "static" + } + ], + "npm:recursive-readdir": [ + { + "source": "npm:recursive-readdir", + "target": "npm:minimatch@3.0.4", + "type": "static" + } + ], + "npm:redent": [ + { + "source": "npm:redent", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:strip-indent", + "type": "static" + } + ], + "npm:redent@4.0.0": [ + { + "source": "npm:redent@4.0.0", + "target": "npm:indent-string@5.0.0", + "type": "static" + }, + { + "source": "npm:redent@4.0.0", + "target": "npm:strip-indent@4.0.0", + "type": "static" + } + ], + "npm:regenerate-unicode-properties": [ + { + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", + "type": "static" + } + ], + "npm:regenerator-transform@0.15.1": [ + { + "source": "npm:regenerator-transform@0.15.1", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + } + ], + "npm:regexp.prototype.flags@1.5.0": [ + { + "source": "npm:regexp.prototype.flags@1.5.0", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags@1.5.0", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags@1.5.0", + "target": "npm:functions-have-names", + "type": "static" + } + ], + "npm:regexpu-core": [ + { + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regjsparser", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", + "type": "static" + } + ], + "npm:registry-auth-token": [ + { + "source": "npm:registry-auth-token", + "target": "npm:rc", + "type": "static" + } + ], + "npm:registry-url": [ + { + "source": "npm:registry-url", + "target": "npm:rc", + "type": "static" + } + ], + "npm:regjsparser@0.10.0": [ + { + "source": "npm:regjsparser@0.10.0", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:regjsparser": [ + { + "source": "npm:regjsparser", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:remark-docusaurus-tabs": [ + { + "source": "npm:remark-docusaurus-tabs", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:remark-docusaurus-tabs", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:remark-emoji": [ + { + "source": "npm:remark-emoji", + "target": "npm:emoticon", + "type": "static" + }, + { + "source": "npm:remark-emoji", + "target": "npm:node-emoji", + "type": "static" + }, + { + "source": "npm:remark-emoji", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:remark-mdx": [ + { + "source": "npm:remark-mdx", + "target": "npm:@babel/core@7.12.9", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/helper-plugin-utils@7.10.4", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/plugin-proposal-object-rest-spread@7.12.1", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@babel/plugin-syntax-jsx@7.12.1", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:@mdx-js/util", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:remark-parse", + "type": "static" + }, + { + "source": "npm:remark-mdx", + "target": "npm:unified", + "type": "static" + } + ], + "npm:remark-parse": [ + { + "source": "npm:remark-parse", + "target": "npm:ccount", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:collapse-white-space", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-alphabetical", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-decimal", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-whitespace-character", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:is-word-character", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:markdown-escapes", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:parse-entities", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:repeat-string", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:state-toggle", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:trim", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:trim-trailing-lines", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:unherit", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:unist-util-remove-position", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:vfile-location", + "type": "static" + }, + { + "source": "npm:remark-parse", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:remark-squeeze-paragraphs": [ + { + "source": "npm:remark-squeeze-paragraphs", + "target": "npm:mdast-squeeze-paragraphs", + "type": "static" + } + ], + "npm:renderkid": [ + { + "source": "npm:renderkid", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:dom-converter", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:resolve-cwd": [ + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:resolve-global@1.0.0": [ + { + "source": "npm:resolve-global@1.0.0", + "target": "npm:global-dirs@0.1.1", + "type": "static" + } + ], + "npm:resolve@1.22.3": [ + { + "source": "npm:resolve@1.22.3", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.3", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + } + ], + "npm:resolve@2.0.0-next.4": [ + { + "source": "npm:resolve@2.0.0-next.4", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.4", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.4", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + } + ], + "npm:resolve@1.19.0": [ + { + "source": "npm:resolve@1.19.0", + "target": "npm:is-core-module@2.12.1", + "type": "static" + }, + { + "source": "npm:resolve@1.19.0", + "target": "npm:path-parse", + "type": "static" + } + ], + "npm:responselike": [ + { + "source": "npm:responselike", + "target": "npm:lowercase-keys", + "type": "static" + } + ], + "npm:restore-cursor": [ + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:rimraf@5.0.1": [ + { + "source": "npm:rimraf@5.0.1", + "target": "npm:glob@10.3.3", + "type": "static" + } + ], + "npm:rimraf@2.7.1": [ + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob@7.2.3", + "type": "static" + } + ], + "npm:rimraf@3.0.2": [ + { + "source": "npm:rimraf@3.0.2", + "target": "npm:glob@7.2.3", + "type": "static" + } + ], + "npm:rimraf@4.4.1": [ + { + "source": "npm:rimraf@4.4.1", + "target": "npm:glob@9.3.5", + "type": "static" + } + ], + "npm:rollup-plugin-terser": [ + { + "source": "npm:rollup-plugin-terser", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:jest-worker@26.6.2", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:serialize-javascript@4.0.0", + "type": "static" + }, + { + "source": "npm:rollup-plugin-terser", + "target": "npm:terser", + "type": "static" + } + ], + "npm:rollup": [ + { + "source": "npm:rollup", + "target": "npm:fsevents@2.3.2", + "type": "static" + } + ], + "npm:rtlcss": [ + { + "source": "npm:rtlcss", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:rtlcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:rtlcss", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:rtlcss", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:run-con@1.2.11": [ + { + "source": "npm:run-con@1.2.11", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:run-con@1.2.11", + "target": "npm:ini@3.0.1", + "type": "static" + }, + { + "source": "npm:run-con@1.2.11", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:run-con@1.2.11", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:run-parallel": [ + { + "source": "npm:run-parallel", + "target": "npm:queue-microtask", + "type": "static" + } + ], + "npm:rxjs": [ + { + "source": "npm:rxjs", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:safe-array-concat@1.0.0": [ + { + "source": "npm:safe-array-concat@1.0.0", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:safe-array-concat@1.0.0", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:safe-array-concat@1.0.0", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:safe-array-concat@1.0.0", + "target": "npm:isarray", + "type": "static" + } + ], + "npm:safe-regex-test": [ + { + "source": "npm:safe-regex-test", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "type": "static" + } + ], + "npm:scheduler": [ + { + "source": "npm:scheduler", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:schema-utils@2.7.0": [ + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.0", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:schema-utils@2.7.1": [ + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:schema-utils": [ + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:schema-utils@4.0.0": [ + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:@types/json-schema@7.0.12", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv-formats@2.1.1", + "type": "static" + }, + { + "source": "npm:schema-utils@4.0.0", + "target": "npm:ajv-keywords@5.1.0", + "type": "static" + } + ], + "npm:section-matter": [ + { + "source": "npm:section-matter", + "target": "npm:extend-shallow", + "type": "static" + }, + { + "source": "npm:section-matter", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:selfsigned": [ + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + } + ], + "npm:semver-diff": [ + { + "source": "npm:semver-diff", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:semver@7.5.3": [ + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:semver": [ + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:send": [ + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime@1.6.0", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + } + ], + "npm:serialize-javascript@5.0.1": [ + { + "source": "npm:serialize-javascript@5.0.1", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serialize-javascript@4.0.0": [ + { + "source": "npm:serialize-javascript@4.0.0", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serialize-javascript": [ + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serve-handler": [ + { + "source": "npm:serve-handler", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:fast-url-parser", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:mime-types@2.1.18", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:minimatch@3.0.4", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:path-is-inside", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:path-to-regexp@2.2.1", + "type": "static" + }, + { + "source": "npm:serve-handler", + "target": "npm:range-parser@1.2.0", + "type": "static" + } + ], + "npm:serve-index": [ + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + } + ], + "npm:serve-static": [ + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + } + ], + "npm:shallow-clone": [ + { + "source": "npm:shallow-clone", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:shebang-command": [ + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + } + ], + "npm:shelljs": [ + { + "source": "npm:shelljs", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:interpret", + "type": "static" + }, + { + "source": "npm:shelljs", + "target": "npm:rechoir", + "type": "static" + } + ], + "npm:side-channel": [ + { + "source": "npm:side-channel", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect@1.12.3", + "type": "static" + } + ], + "npm:sigstore": [ + { + "source": "npm:sigstore", + "target": "npm:@sigstore/protobuf-specs", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:@sigstore/tuf", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:sigstore", + "target": "npm:tuf-js", + "type": "static" + } + ], + "npm:sinon@11.1.2": [ + { + "source": "npm:sinon@11.1.2", + "target": "npm:@sinonjs/commons@1.8.6", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:@sinonjs/fake-timers@7.1.2", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:@sinonjs/samsam@6.1.3", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:diff@5.1.0", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:nise", + "type": "static" + }, + { + "source": "npm:sinon@11.1.2", + "target": "npm:supports-color@7.2.0", + "type": "static" + } + ], + "npm:sirv": [ + { + "source": "npm:sirv", + "target": "npm:@polka/url", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:totalist", + "type": "static" + } + ], + "npm:sitemap": [ + { + "source": "npm:sitemap", + "target": "npm:@types/node@20.4.8", + "type": "static" + }, + { + "source": "npm:sitemap", + "target": "npm:@types/sax", + "type": "static" + }, + { + "source": "npm:sitemap", + "target": "npm:arg@5.0.1", + "type": "static" + }, + { + "source": "npm:sitemap", + "target": "npm:sax", + "type": "static" + } + ], + "npm:slice-ansi@3.0.0": [ + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@3.0.0", + "target": "npm:is-fullwidth-code-point", + "type": "static" + } + ], + "npm:slice-ansi@4.0.0": [ + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@4.0.0", + "target": "npm:is-fullwidth-code-point", + "type": "static" + } + ], + "npm:slice-ansi": [ + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point@4.0.0", + "type": "static" + } + ], + "npm:sockjs": [ + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:socks-proxy-agent@6.2.0": [ + { + "source": "npm:socks-proxy-agent@6.2.0", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@6.2.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent@6.2.0", + "target": "npm:socks", + "type": "static" + } + ], + "npm:socks-proxy-agent": [ + { + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:socks", + "type": "static" + } + ], + "npm:socks": [ + { + "source": "npm:socks", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + } + ], + "npm:sort-keys": [ + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj@1.1.0", + "type": "static" + } + ], + "npm:source-map-support@0.5.13": [ + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:source-map-support@0.5.19": [ + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.19", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:source-map-support": [ + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:source-map@0.8.0-beta.0": [ + { + "source": "npm:source-map@0.8.0-beta.0", + "target": "npm:whatwg-url@7.1.0", + "type": "static" + } + ], + "npm:spdx-correct": [ + { + "source": "npm:spdx-correct", + "target": "npm:spdx-expression-parse", + "type": "static" + }, + { + "source": "npm:spdx-correct", + "target": "npm:spdx-license-ids", + "type": "static" + } + ], + "npm:spdx-expression-parse": [ + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-exceptions", + "type": "static" + }, + { + "source": "npm:spdx-expression-parse", + "target": "npm:spdx-license-ids", + "type": "static" + } + ], + "npm:spdy-transport": [ + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:spdy": [ + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + } + ], + "npm:split2": [ + { + "source": "npm:split2", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:split": [ + { + "source": "npm:split", + "target": "npm:through", + "type": "static" + } + ], + "npm:ssri": [ + { + "source": "npm:ssri", + "target": "npm:minipass@4.2.5", + "type": "static" + } + ], + "npm:ssri@9.0.1": [ + { + "source": "npm:ssri@9.0.1", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:stack-utils": [ + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + } + ], + "npm:stop-iteration-iterator": [ + { + "source": "npm:stop-iteration-iterator", + "target": "npm:internal-slot", + "type": "static" + } + ], + "npm:string-length": [ + { + "source": "npm:string-length", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string-width-cjs": [ + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string-width": [ + { + "source": "npm:string-width", + "target": "npm:emoji-regex@8.0.0", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string-width@2.1.1": [ + { + "source": "npm:string-width@2.1.1", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:string-width@2.1.1", + "target": "npm:strip-ansi@4.0.0", + "type": "static" + } + ], + "npm:string-width@5.1.2": [ + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + } + ], + "npm:string.prototype.matchall": [ + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract@1.22.1", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags@1.5.0", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:string.prototype.trim@1.2.7": [ + { + "source": "npm:string.prototype.trim@1.2.7", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:string.prototype.trim@1.2.7", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim@1.2.7", + "target": "npm:es-abstract@1.22.1", + "type": "static" + } + ], + "npm:string.prototype.trimend@1.0.6": [ + { + "source": "npm:string.prototype.trimend@1.0.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend@1.0.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend@1.0.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + } + ], + "npm:string.prototype.trimstart@1.0.6": [ + { + "source": "npm:string.prototype.trimstart@1.0.6", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart@1.0.6", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart@1.0.6", + "target": "npm:es-abstract@1.22.1", + "type": "static" + } + ], + "npm:string_decoder": [ + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:string_decoder@1.1.1": [ + { + "source": "npm:string_decoder@1.1.1", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], + "npm:stringify-object": [ + { + "source": "npm:stringify-object", + "target": "npm:get-own-enumerable-property-symbols", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-obj@1.0.1", + "type": "static" + }, + { + "source": "npm:stringify-object", + "target": "npm:is-regexp", + "type": "static" + } + ], + "npm:strip-ansi-cjs": [ + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:strip-ansi": [ + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:strip-ansi@4.0.0": [ + { + "source": "npm:strip-ansi@4.0.0", + "target": "npm:ansi-regex@3.0.1", + "type": "static" + } + ], + "npm:strip-ansi@7.0.1": [ + { + "source": "npm:strip-ansi@7.0.1", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + } + ], + "npm:strip-indent": [ + { + "source": "npm:strip-indent", + "target": "npm:min-indent", + "type": "static" + } + ], + "npm:strip-indent@4.0.0": [ + { + "source": "npm:strip-indent@4.0.0", + "target": "npm:min-indent", + "type": "static" + } + ], + "npm:strong-log-transformer": [ + { + "source": "npm:strong-log-transformer", + "target": "npm:duplexer", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:strong-log-transformer", + "target": "npm:through", + "type": "static" + } + ], + "npm:style-to-object": [ + { + "source": "npm:style-to-object", + "target": "npm:inline-style-parser", + "type": "static" + } + ], + "npm:stylehacks": [ + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:stylelint-config-standard": [ + { + "source": "npm:stylelint-config-standard", + "target": "npm:stylelint-config-recommended", + "type": "static" + } + ], + "npm:stylelint-order": [ + { + "source": "npm:stylelint-order", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:stylelint-order", + "target": "npm:postcss-sorting", + "type": "static" + } + ], + "npm:stylelint@15.10.2": [ + { + "source": "npm:stylelint@15.10.2", + "target": "npm:@csstools/css-parser-algorithms@2.3.0", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:@csstools/css-tokenizer@2.1.1", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:@csstools/media-query-list-parser@2.1.2", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:@csstools/selector-specificity", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:balanced-match@2.0.0", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:css-functions-list@3.2.0", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:css-tree@2.3.1", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:fastest-levenshtein", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:file-entry-cache@6.0.1", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:global-modules", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:globjoin", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:html-tags", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:import-lazy", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:known-css-properties@0.27.0", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:mathml-tag-names", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:meow@10.1.5", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss@8.4.27", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss-resolve-nested-selector", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss-safe-parser", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:style-search", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:supports-hyperlinks", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:svg-tags", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:table", + "type": "static" + }, + { + "source": "npm:stylelint@15.10.2", + "target": "npm:write-file-atomic", + "type": "static" + } + ], + "npm:supports-color": [ + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-color@5.5.0": [ + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + } + ], + "npm:supports-color@7.2.0": [ + { + "source": "npm:supports-color@7.2.0", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-hyperlinks": [ + { + "source": "npm:supports-hyperlinks", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:supports-color@7.2.0", + "type": "static" + } + ], + "npm:svgo": [ + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:stable", + "type": "static" + } + ], + "npm:table": [ + { + "source": "npm:table", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:lodash.truncate", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:slice-ansi@4.0.0", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:table", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:tar-stream": [ + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:tar": [ + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass@2.1.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:tempy": [ + { + "source": "npm:tempy", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:temp-dir@2.0.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:type-fest@0.16.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:unique-string", + "type": "static" + } + ], + "npm:terser-webpack-plugin": [ + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + } + ], + "npm:terser": [ + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:test-exclude": [ + { + "source": "npm:test-exclude", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:through2": [ + { + "source": "npm:through2", + "target": "npm:readable-stream@2.3.7", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:title-case": [ + { + "source": "npm:title-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:tmp": [ + { + "source": "npm:tmp", + "target": "npm:rimraf@3.0.2", + "type": "static" + } + ], + "npm:tmp@0.0.33": [ + { + "source": "npm:tmp@0.0.33", + "target": "npm:os-tmpdir", + "type": "static" + } + ], + "npm:to-regex-range": [ + { + "source": "npm:to-regex-range", + "target": "npm:is-number", + "type": "static" + } + ], + "npm:tr46@1.0.1": [ + { + "source": "npm:tr46@1.0.1", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:ts-node@10.9.1": [ + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@tsconfig/node10", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@tsconfig/node12", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@tsconfig/node14", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:@tsconfig/node16", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:create-require", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:v8-compile-cache-lib", + "type": "static" + }, + { + "source": "npm:ts-node@10.9.1", + "target": "npm:yn", + "type": "static" + } + ], + "npm:ts-node": [ + { + "source": "npm:ts-node", + "target": "npm:@cspotcode/source-map-support@0.7.0", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node10", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node12", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node14", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:@tsconfig/node16", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:create-require", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:make-error", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:v8-compile-cache-lib", + "type": "static" + }, + { + "source": "npm:ts-node", + "target": "npm:yn", + "type": "static" + } + ], + "npm:tsconfig-paths@3.14.2": [ + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.14.2", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:tsconfig-paths": [ + { + "source": "npm:tsconfig-paths", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:tslint": [ + { + "source": "npm:tslint", + "target": "npm:@babel/code-frame@7.22.5", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:builtin-modules@1.1.1", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:diff", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:js-yaml@3.14.1", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:mkdirp@0.5.5", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:resolve@1.22.3", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:semver@5.7.1", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:tslint", + "target": "npm:tsutils@2.29.0", + "type": "static" + } + ], + "npm:tsutils@2.29.0": [ + { + "source": "npm:tsutils@2.29.0", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:tsutils": [ + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:tsx@3.12.7": [ + { + "source": "npm:tsx@3.12.7", + "target": "npm:@esbuild-kit/cjs-loader@2.4.2", + "type": "static" + }, + { + "source": "npm:tsx@3.12.7", + "target": "npm:@esbuild-kit/core-utils@3.1.0", + "type": "static" + }, + { + "source": "npm:tsx@3.12.7", + "target": "npm:@esbuild-kit/esm-loader@2.5.5", + "type": "static" + }, + { + "source": "npm:tsx@3.12.7", + "target": "npm:fsevents@2.3.2", + "type": "static" + } + ], + "npm:tuf-js": [ + { + "source": "npm:tuf-js", + "target": "npm:@tufjs/models", + "type": "static" + }, + { + "source": "npm:tuf-js", + "target": "npm:make-fetch-happen", + "type": "static" + } + ], + "npm:type-check": [ + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + } + ], + "npm:type-is": [ + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:typed-array-buffer": [ + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:get-intrinsic@1.2.1", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-length": [ + { + "source": "npm:typed-array-byte-length", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-offset": [ + { + "source": "npm:typed-array-byte-offset", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-length": [ + { + "source": "npm:typed-array-length", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typedarray-to-buffer": [ + { + "source": "npm:typedarray-to-buffer", + "target": "npm:is-typedarray", + "type": "static" + } + ], + "npm:unbox-primitive": [ + { + "source": "npm:unbox-primitive", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + } + ], + "npm:unherit": [ + { + "source": "npm:unherit", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:unherit", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:unicode-match-property-ecmascript": [ + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-canonical-property-names-ecmascript", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-property-aliases-ecmascript", + "type": "static" + } + ], + "npm:unified": [ + { + "source": "npm:unified", + "target": "npm:bail", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:trough", + "type": "static" + }, + { + "source": "npm:unified", + "target": "npm:vfile", + "type": "static" + } + ], + "npm:unified@9.2.2": [ + { + "source": "npm:unified@9.2.2", + "target": "npm:bail", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:extend", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:trough", + "type": "static" + }, + { + "source": "npm:unified@9.2.2", + "target": "npm:vfile", + "type": "static" + } + ], + "npm:unique-filename@1.1.1": [ + { + "source": "npm:unique-filename@1.1.1", + "target": "npm:unique-slug@2.0.2", + "type": "static" + } + ], + "npm:unique-filename": [ + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + } + ], + "npm:unique-slug@2.0.2": [ + { + "source": "npm:unique-slug@2.0.2", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:unique-slug": [ + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:unique-string": [ + { + "source": "npm:unique-string", + "target": "npm:crypto-random-string@2.0.0", + "type": "static" + } + ], + "npm:unist-util-remove-position": [ + { + "source": "npm:unist-util-remove-position", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:unist-util-remove": [ + { + "source": "npm:unist-util-remove", + "target": "npm:unist-util-is", + "type": "static" + } + ], + "npm:unist-util-stringify-position": [ + { + "source": "npm:unist-util-stringify-position", + "target": "npm:@types/unist", + "type": "static" + } + ], + "npm:unist-util-visit-parents": [ + { + "source": "npm:unist-util-visit-parents", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents", + "target": "npm:unist-util-is", + "type": "static" + } + ], + "npm:unist-util-visit": [ + { + "source": "npm:unist-util-visit", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-visit-parents", + "type": "static" + } + ], + "npm:update-browserslist-db": [ + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:update-notifier": [ + { + "source": "npm:update-notifier", + "target": "npm:boxen@5.1.2", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:configstore@5.0.1", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:has-yarn", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:import-lazy@2.1.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-ci@2.0.0", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-installed-globally", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-npm", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:is-yarn-global", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:latest-version", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:pupa", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:semver-diff", + "type": "static" + }, + { + "source": "npm:update-notifier", + "target": "npm:xdg-basedir", + "type": "static" + } + ], + "npm:uri-js": [ + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:url-loader": [ + { + "source": "npm:url-loader", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:url-loader", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:url-loader", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:url-parse-lax": [ + { + "source": "npm:url-parse-lax", + "target": "npm:prepend-http", + "type": "static" + } + ], + "npm:use-composed-ref": [ + { + "source": "npm:use-composed-ref", + "target": "npm:ts-essentials", + "type": "static" + } + ], + "npm:use-latest": [ + { + "source": "npm:use-latest", + "target": "npm:use-isomorphic-layout-effect", + "type": "static" + } + ], + "npm:v8-to-istanbul": [ + { + "source": "npm:v8-to-istanbul", + "target": "npm:@jridgewell/trace-mapping@0.3.18", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:convert-source-map", + "type": "static" + } + ], + "npm:validate-npm-package-license": [ + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-correct", + "type": "static" + }, + { + "source": "npm:validate-npm-package-license", + "target": "npm:spdx-expression-parse", + "type": "static" + } + ], + "npm:validate-npm-package-name": [ + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + } + ], + "npm:validate-npm-package-name@3.0.0": [ + { + "source": "npm:validate-npm-package-name@3.0.0", + "target": "npm:builtins@1.0.3", + "type": "static" + } + ], + "npm:vfile-message": [ + { + "source": "npm:vfile-message", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:vfile-message", + "target": "npm:unist-util-stringify-position", + "type": "static" + } + ], + "npm:vfile": [ + { + "source": "npm:vfile", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:unist-util-stringify-position", + "type": "static" + }, + { + "source": "npm:vfile", + "target": "npm:vfile-message", + "type": "static" + } + ], + "npm:wait-on": [ + { + "source": "npm:wait-on", + "target": "npm:axios@0.25.0", + "type": "static" + }, + { + "source": "npm:wait-on", + "target": "npm:joi", + "type": "static" + }, + { + "source": "npm:wait-on", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:wait-on", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:wait-on", + "target": "npm:rxjs", + "type": "static" + } + ], + "npm:walker": [ + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + } + ], + "npm:watchpack": [ + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:wbuf": [ + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + } + ], + "npm:wcwidth": [ + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + } + ], + "npm:webpack-bundle-analyzer": [ + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:commander@7.2.0", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:gzip-size", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:opener", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:sirv", + "type": "static" + }, + { + "source": "npm:webpack-bundle-analyzer", + "target": "npm:ws", + "type": "static" + } + ], + "npm:webpack-dev-middleware": [ + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils@4.0.0", + "type": "static" + } + ], + "npm:webpack-dev-server": [ + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour-service", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:default-gateway", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js@2.0.1", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:rimraf@3.0.2", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils@4.0.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws@8.5.0", + "type": "static" + } + ], + "npm:webpack-merge": [ + { + "source": "npm:webpack-merge", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:webpack-merge", + "target": "npm:wildcard", + "type": "static" + } + ], + "npm:webpack@5.88.2": [ + { + "source": "npm:webpack@5.88.2", + "target": "npm:@types/eslint-scope@0.0.0", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@types/estree@0.0.0", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack@5.88.2", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:webpackbar": [ + { + "source": "npm:webpackbar", + "target": "npm:chalk@4.1.2", + "type": "static" + }, + { + "source": "npm:webpackbar", + "target": "npm:consola", + "type": "static" + }, + { + "source": "npm:webpackbar", + "target": "npm:pretty-time", + "type": "static" + }, + { + "source": "npm:webpackbar", + "target": "npm:std-env", + "type": "static" + } + ], + "npm:websocket-driver": [ + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + } + ], + "npm:whatwg-url": [ + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:whatwg-url@7.1.0": [ + { + "source": "npm:whatwg-url@7.1.0", + "target": "npm:lodash.sortby", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.1.0", + "target": "npm:tr46@1.0.1", + "type": "static" + }, + { + "source": "npm:whatwg-url@7.1.0", + "target": "npm:webidl-conversions@4.0.2", + "type": "static" + } + ], + "npm:which-boxed-primitive": [ + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:which-collection": [ + { + "source": "npm:which-collection", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakmap", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakset", + "type": "static" + } + ], + "npm:which-typed-array@1.1.11": [ + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:call-bind@1.0.2", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array@1.1.11", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:which@2.0.2": [ + { + "source": "npm:which@2.0.2", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:which@1.3.1": [ + { + "source": "npm:which@1.3.1", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:which": [ + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:wide-align@1.1.3": [ + { + "source": "npm:wide-align@1.1.3", + "target": "npm:string-width@2.1.1", + "type": "static" + } + ], + "npm:wide-align": [ + { + "source": "npm:wide-align", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:widest-line@3.1.0": [ + { + "source": "npm:widest-line@3.1.0", + "target": "npm:string-width", + "type": "static" + } + ], + "npm:widest-line": [ + { + "source": "npm:widest-line", + "target": "npm:string-width@5.1.2", + "type": "static" + } + ], + "npm:workbox-background-sync": [ + { + "source": "npm:workbox-background-sync", + "target": "npm:idb", + "type": "static" + }, + { + "source": "npm:workbox-background-sync", + "target": "npm:workbox-core", + "type": "static" + } + ], + "npm:workbox-broadcast-update": [ + { + "source": "npm:workbox-broadcast-update", + "target": "npm:workbox-core", + "type": "static" + } + ], + "npm:workbox-build": [ + { + "source": "npm:workbox-build", + "target": "npm:@apideck/better-ajv-errors@0.3.6", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@babel/core@7.22.9", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@babel/preset-env@7.21.5", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@babel/runtime@7.22.6", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@rollup/plugin-babel", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@rollup/plugin-node-resolve", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@rollup/plugin-replace", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:@surma/rollup-plugin-off-main-thread", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:common-tags", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:fs-extra@9.1.0", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:glob@7.2.3", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:rollup", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:rollup-plugin-terser", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:source-map@0.8.0-beta.0", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:stringify-object", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:strip-comments", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:tempy", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:upath@1.2.0", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-background-sync", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-broadcast-update", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-cacheable-response", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-expiration", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-google-analytics", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-navigation-preload", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-precaching", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-range-requests", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-recipes", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-strategies", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-streams", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-sw", + "type": "static" + }, + { + "source": "npm:workbox-build", + "target": "npm:workbox-window", + "type": "static" + } + ], + "npm:workbox-cacheable-response": [ + { + "source": "npm:workbox-cacheable-response", + "target": "npm:workbox-core", + "type": "static" + } + ], + "npm:workbox-expiration": [ + { + "source": "npm:workbox-expiration", + "target": "npm:idb", + "type": "static" + }, + { + "source": "npm:workbox-expiration", + "target": "npm:workbox-core", + "type": "static" + } + ], + "npm:workbox-google-analytics": [ + { + "source": "npm:workbox-google-analytics", + "target": "npm:workbox-background-sync", + "type": "static" + }, + { + "source": "npm:workbox-google-analytics", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-google-analytics", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-google-analytics", + "target": "npm:workbox-strategies", + "type": "static" + } + ], + "npm:workbox-navigation-preload": [ + { + "source": "npm:workbox-navigation-preload", + "target": "npm:workbox-core", + "type": "static" + } + ], + "npm:workbox-precaching": [ + { + "source": "npm:workbox-precaching", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-precaching", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-precaching", + "target": "npm:workbox-strategies", + "type": "static" + } + ], + "npm:workbox-range-requests": [ + { + "source": "npm:workbox-range-requests", + "target": "npm:workbox-core", + "type": "static" + } + ], + "npm:workbox-recipes": [ + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-cacheable-response", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-expiration", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-precaching", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-routing", + "type": "static" + }, + { + "source": "npm:workbox-recipes", + "target": "npm:workbox-strategies", + "type": "static" + } + ], + "npm:workbox-routing": [ + { + "source": "npm:workbox-routing", + "target": "npm:workbox-core", + "type": "static" + } + ], + "npm:workbox-strategies": [ + { + "source": "npm:workbox-strategies", + "target": "npm:workbox-core", + "type": "static" + } + ], + "npm:workbox-streams": [ + { + "source": "npm:workbox-streams", + "target": "npm:workbox-core", + "type": "static" + }, + { + "source": "npm:workbox-streams", + "target": "npm:workbox-routing", + "type": "static" + } + ], + "npm:workbox-window": [ + { + "source": "npm:workbox-window", + "target": "npm:@types/trusted-types", + "type": "static" + }, + { + "source": "npm:workbox-window", + "target": "npm:workbox-core", + "type": "static" + } + ], + "npm:wrap-ansi-cjs": [ + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:wrap-ansi": [ + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:wrap-ansi@6.2.0": [ + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:wrap-ansi@8.1.0": [ + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.0.1", + "type": "static" + } + ], + "npm:write-file-atomic": [ + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit@4.0.2", + "type": "static" + } + ], + "npm:write-file-atomic@2.4.3": [ + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@2.4.3", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:write-file-atomic@3.0.3": [ + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:is-typedarray", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@3.0.3", + "target": "npm:typedarray-to-buffer", + "type": "static" + } + ], + "npm:write-file-atomic@4.0.2": [ + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:write-json-file": [ + { + "source": "npm:write-json-file", + "target": "npm:detect-indent", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:make-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-json-file", + "target": "npm:write-file-atomic@2.4.3", + "type": "static" + } + ], + "npm:write-pkg": [ + { + "source": "npm:write-pkg", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:type-fest@0.4.1", + "type": "static" + }, + { + "source": "npm:write-pkg", + "target": "npm:write-json-file", + "type": "static" + } + ], + "npm:xml-js": [ + { + "source": "npm:xml-js", + "target": "npm:sax", + "type": "static" + } + ], + "npm:yargs-unparser": [ + { + "source": "npm:yargs-unparser", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:decamelize@4.0.0", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:yargs-unparser", + "target": "npm:is-plain-obj", + "type": "static" + } + ], + "npm:yargs": [ + { + "source": "npm:yargs", + "target": "npm:cliui@7.0.4", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser@20.2.9", + "type": "static" + } + ], + "npm:yargs@17.7.1": [ + { + "source": "npm:yargs@17.7.1", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs@17.7.1", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:z-schema": [ + { + "source": "npm:z-schema", + "target": "npm:lodash.get", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:lodash.isequal", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:validator", + "type": "static" + }, + { + "source": "npm:z-schema", + "target": "npm:commander", + "type": "static" + } + ] + }, + "version": "6.0" +} diff --git a/packages/eslint-plugin/docs/rules/adjacent-overload-signatures.md b/packages/eslint-plugin/docs/rules/adjacent-overload-signatures.md index b221b4497240..50b96b83639c 100644 --- a/packages/eslint-plugin/docs/rules/adjacent-overload-signatures.md +++ b/packages/eslint-plugin/docs/rules/adjacent-overload-signatures.md @@ -90,4 +90,10 @@ export function foo(sn: string | number): void; ## When Not To Use It -If you don't care about the general structure of the code, then you will not need this rule. +It can sometimes be useful to place overload signatures alongside other meaningful parts of a type. +For example, if each of a function's overloads corresponds to a different property, you might wish to put each overloads next to its corresponding property. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. + +## Related To + +- [`unified-signatures`](./unified-signatures.md) diff --git a/packages/eslint-plugin/docs/rules/array-type.md b/packages/eslint-plugin/docs/rules/array-type.md index 889122a4386d..a0ab877a2eb6 100644 --- a/packages/eslint-plugin/docs/rules/array-type.md +++ b/packages/eslint-plugin/docs/rules/array-type.md @@ -106,3 +106,6 @@ This matrix lists all possible option combinations and their expected results fo This rule is purely a stylistic rule for maintaining consistency in your project. You can turn it off if you don't want to keep a consistent style for array types. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/await-thenable.md b/packages/eslint-plugin/docs/rules/await-thenable.md index 49238bbfcf12..fa02a9f286d5 100644 --- a/packages/eslint-plugin/docs/rules/await-thenable.md +++ b/packages/eslint-plugin/docs/rules/await-thenable.md @@ -37,4 +37,6 @@ await createValue(); ## When Not To Use It If you want to allow code to `await` non-Promise values. -This is generally not preferred, but can sometimes be useful for visual consistency. +For example, if your framework is in transition from one style of asynchronous code to another, it may be useful to include `await`s unnecessarily. +This is generally not preferred but can sometimes be useful for visual consistency. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/ban-ts-comment.md b/packages/eslint-plugin/docs/rules/ban-ts-comment.md index b0fa17f6aa07..ca38d6029cc2 100644 --- a/packages/eslint-plugin/docs/rules/ban-ts-comment.md +++ b/packages/eslint-plugin/docs/rules/ban-ts-comment.md @@ -141,7 +141,8 @@ if (false) { ## When Not To Use It -If you want to use all of the TypeScript directives. +If your project or its dependencies were not architected with strong type safety in mind, it can be difficult to always adhere to proper TypeScript semantics. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/ban-tslint-comment.md b/packages/eslint-plugin/docs/rules/ban-tslint-comment.md index 96a5e9b91dbc..eac42f6cdabf 100644 --- a/packages/eslint-plugin/docs/rules/ban-tslint-comment.md +++ b/packages/eslint-plugin/docs/rules/ban-tslint-comment.md @@ -36,4 +36,4 @@ someCode(); // This is a comment that just happens to mention tslint ## When Not To Use It -If you are still using TSLint. +If you are still using TSLint alongside ESLint. diff --git a/packages/eslint-plugin/docs/rules/ban-types.md b/packages/eslint-plugin/docs/rules/ban-types.md index 87923c059614..b9b41b8eecb6 100644 --- a/packages/eslint-plugin/docs/rules/ban-types.md +++ b/packages/eslint-plugin/docs/rules/ban-types.md @@ -185,3 +185,4 @@ Example configuration: ## When Not To Use It If your project is a rare one that intentionally deals with the class equivalents of primitives, it might not be worthwhile to enable the default `ban-types` options. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/class-literal-property-style.md b/packages/eslint-plugin/docs/rules/class-literal-property-style.md index 6ce4b454e5b5..a9c6b31cc9d8 100644 --- a/packages/eslint-plugin/docs/rules/class-literal-property-style.md +++ b/packages/eslint-plugin/docs/rules/class-literal-property-style.md @@ -110,5 +110,4 @@ class Mx { ## When Not To Use It -When you have no strong preference, or do not wish to enforce a particular style -for how literal values are exposed by your classes. +When you have no strong preference, or do not wish to enforce a particular style for how literal values are exposed by your classes. diff --git a/packages/eslint-plugin/docs/rules/class-methods-use-this.md b/packages/eslint-plugin/docs/rules/class-methods-use-this.md index cf0c20cc6fa9..00fad6b9d2b9 100644 --- a/packages/eslint-plugin/docs/rules/class-methods-use-this.md +++ b/packages/eslint-plugin/docs/rules/class-methods-use-this.md @@ -53,3 +53,8 @@ class X implements Y { property = () => {}; } ``` + +## When Not To Use It + +If your project dynamically changes `this` scopes around in a way TypeScript has difficulties modeling, this rule may not be viable to use. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/consistent-generic-constructors.md b/packages/eslint-plugin/docs/rules/consistent-generic-constructors.md index 6c259a70888f..0c7936fd7440 100644 --- a/packages/eslint-plugin/docs/rules/consistent-generic-constructors.md +++ b/packages/eslint-plugin/docs/rules/consistent-generic-constructors.md @@ -71,3 +71,6 @@ const set: Set = new Set(); ## When Not To Use It You can turn this rule off if you don't want to enforce one kind of generic constructor style over the other. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/consistent-indexed-object-style.md b/packages/eslint-plugin/docs/rules/consistent-indexed-object-style.md index d0f0afc67005..a56127054933 100644 --- a/packages/eslint-plugin/docs/rules/consistent-indexed-object-style.md +++ b/packages/eslint-plugin/docs/rules/consistent-indexed-object-style.md @@ -83,3 +83,6 @@ type Foo = { This rule is purely a stylistic rule for maintaining consistency in your project. You can turn it off if you don't want to keep a consistent style for indexed object types. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/consistent-type-assertions.md b/packages/eslint-plugin/docs/rules/consistent-type-assertions.md index 4c7f87ee9558..ae20a1fa7229 100644 --- a/packages/eslint-plugin/docs/rules/consistent-type-assertions.md +++ b/packages/eslint-plugin/docs/rules/consistent-type-assertions.md @@ -106,3 +106,6 @@ const foo = ; ## When Not To Use It If you do not want to enforce consistent type assertions. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/consistent-type-definitions.md b/packages/eslint-plugin/docs/rules/consistent-type-definitions.md index 08a27c4164ee..2a9a9f634eda 100644 --- a/packages/eslint-plugin/docs/rules/consistent-type-definitions.md +++ b/packages/eslint-plugin/docs/rules/consistent-type-definitions.md @@ -80,3 +80,10 @@ type T = { x: number }; ## When Not To Use It If you specifically want to use an interface or type literal for stylistic reasons, you can avoid this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. + +There are also subtle differences between `Record` and `interface` that can be difficult to catch statically. +For example, if your project is a dependency of another project that relies on a specific type definition style, this rule may be counterproductive. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/consistent-type-exports.md b/packages/eslint-plugin/docs/rules/consistent-type-exports.md index 20447cd6ff3d..0a48e20c124e 100644 --- a/packages/eslint-plugin/docs/rules/consistent-type-exports.md +++ b/packages/eslint-plugin/docs/rules/consistent-type-exports.md @@ -96,5 +96,10 @@ export { Button, type ButtonProps } from 'some-library'; ## When Not To Use It -- If you specifically want to use both export kinds for stylistic reasons, you can avoid this rule. -- If you use `--isolatedModules` the compiler would error if a type is not re-exported using `export type`. If you also don't wish to enforce one style over the other, you can avoid this rule. +If you use `--isolatedModules` the compiler would error if a type is not re-exported using `export type`. +This rule may be less useful in those cases. + +If you specifically want to use both export kinds for stylistic reasons, or don't wish to enforce one style over the other, you can avoid this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/consistent-type-imports.md b/packages/eslint-plugin/docs/rules/consistent-type-imports.md index 8eea0d10f274..e091b454c86a 100644 --- a/packages/eslint-plugin/docs/rules/consistent-type-imports.md +++ b/packages/eslint-plugin/docs/rules/consistent-type-imports.md @@ -96,7 +96,10 @@ If you are using [type-aware linting](https://typescript-eslint.io/linting/typed ## When Not To Use It -- If you specifically want to use both import kinds for stylistic reasons, you can avoid this rule. +If you specifically want to use both import kinds for stylistic reasons, or don't wish to enforce one style over the other, you can avoid this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. ## Related To diff --git a/packages/eslint-plugin/docs/rules/dot-notation.md b/packages/eslint-plugin/docs/rules/dot-notation.md index 9a40445a809b..86a22edb3d26 100644 --- a/packages/eslint-plugin/docs/rules/dot-notation.md +++ b/packages/eslint-plugin/docs/rules/dot-notation.md @@ -73,3 +73,10 @@ x['hello'] = 123; ``` If the TypeScript compiler option `noPropertyAccessFromIndexSignature` is set to `true`, then the above code is always allowed, even if `allowIndexSignaturePropertyAccess` is `false`. + +## When Not To Use It + +If you specifically want to use both member access kinds for stylistic reasons, or don't wish to enforce one style over the other, you can avoid this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/explicit-function-return-type.md b/packages/eslint-plugin/docs/rules/explicit-function-return-type.md index 0d0e476d576c..fa8f27e288be 100644 --- a/packages/eslint-plugin/docs/rules/explicit-function-return-type.md +++ b/packages/eslint-plugin/docs/rules/explicit-function-return-type.md @@ -209,14 +209,14 @@ Examples of code for this rule with `{ allowDirectConstAssertionInArrowFunctions #### ❌ Incorrect ```ts -const func = (value: number) => ({ type: 'X', value } as any); -const func = (value: number) => ({ type: 'X', value } as Action); +const func = (value: number) => ({ type: 'X', value }) as any; +const func = (value: number) => ({ type: 'X', value }) as Action; ``` #### ✅ Correct ```ts -const func = (value: number) => ({ foo: 'bar', value } as const); +const func = (value: number) => ({ foo: 'bar', value }) as const; const func = () => x as const; ``` @@ -311,8 +311,7 @@ var bar = (function () { ## When Not To Use It -If you don't wish to prevent calling code from using function return values in unexpected ways, then -you will not need this rule. +If you don't find the added cost of explicitly writing function return types to be worth the visual clarity, or your project is not large enough for it to be a factor in type checking performance, then you will not need this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/explicit-member-accessibility.md b/packages/eslint-plugin/docs/rules/explicit-member-accessibility.md index 51fa8523582f..47732f0ec8f4 100644 --- a/packages/eslint-plugin/docs/rules/explicit-member-accessibility.md +++ b/packages/eslint-plugin/docs/rules/explicit-member-accessibility.md @@ -90,7 +90,10 @@ The following patterns are considered correct with the default options `{ access ```ts class Animal { - public constructor(public breed, name) { + public constructor( + public breed, + name, + ) { // Parameter property and constructor this.animalName = name; } @@ -113,7 +116,10 @@ The following patterns are considered incorrect with the accessibility set to ** ```ts class Animal { - public constructor(public breed, name) { + public constructor( + public breed, + name, + ) { // Parameter property and constructor this.animalName = name; } @@ -136,7 +142,10 @@ The following patterns are considered correct with the accessibility set to **no ```ts class Animal { - constructor(protected breed, name) { + constructor( + protected breed, + name, + ) { // Parameter property and constructor this.name = name; } @@ -324,7 +333,11 @@ class Animal { ## When Not To Use It -If you think defaulting to public is a good default, then you should consider using the `no-public` setting. If you want to mix implicit and explicit public members then disable this rule. +If you think defaulting to public is a good default, then you should consider using the `no-public` setting. +If you want to mix implicit and explicit public members then you can disable this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md b/packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md index e48af85195d8..5dc5d840a890 100644 --- a/packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md +++ b/packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md @@ -131,11 +131,11 @@ export const bar = () => 1; #### ✅ Correct ```ts -export const func = (value: number) => ({ type: 'X', value } as const); +export const func = (value: number) => ({ type: 'X', value }) as const; export const foo = () => ({ bar: true, - } as const); + }) as const; export const bar = () => 1 as const; ``` @@ -243,8 +243,12 @@ export const foo: FooType = bar => {}; ## When Not To Use It -If you wish to make sure all functions have explicit return types, as opposed to only the module boundaries, you can use [explicit-function-return-type](./explicit-function-return-type.md) +If your project is not used by downstream consumers that are sensitive to API types, you can disable this rule. ## Further Reading - TypeScript [Functions](https://www.typescriptlang.org/docs/handbook/functions.html#function-types) + +## Related To + +- [explicit-function-return-type](./explicit-function-return-type.md) diff --git a/packages/eslint-plugin/docs/rules/member-delimiter-style.md b/packages/eslint-plugin/docs/rules/member-delimiter-style.md index d2e1f59ec4fc..6ac58c573cee 100644 --- a/packages/eslint-plugin/docs/rules/member-delimiter-style.md +++ b/packages/eslint-plugin/docs/rules/member-delimiter-style.md @@ -158,4 +158,7 @@ type FooBar = { name: string; greet(): string } ## When Not To Use It -If you don't care about enforcing a consistent member delimiter in interfaces and type literals, then you will not need this rule. +If you specifically want to use both member delimiter kinds for stylistic reasons, or don't wish to enforce one style over the other, you can avoid this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/method-signature-style.md b/packages/eslint-plugin/docs/rules/method-signature-style.md index 4997ea092811..158090695c12 100644 --- a/packages/eslint-plugin/docs/rules/method-signature-style.md +++ b/packages/eslint-plugin/docs/rules/method-signature-style.md @@ -108,3 +108,6 @@ type T2 = { ## When Not To Use It If you don't want to enforce a particular style for object/interface function types, and/or if you don't use `strictFunctionTypes`, then you don't need this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/naming-convention.md b/packages/eslint-plugin/docs/rules/naming-convention.md index 53c381c9e74f..bd4c0e954ae8 100644 --- a/packages/eslint-plugin/docs/rules/naming-convention.md +++ b/packages/eslint-plugin/docs/rules/naming-convention.md @@ -703,4 +703,11 @@ You can use the `destructured` modifier to match these names, and explicitly set ## When Not To Use It -If you do not want to enforce naming conventions for anything. +This rule can be very strict. +If you don't have strong needs for enforcing naming conventions, we recommend using it only to flag very egregious violations of your naming standards. +Consider documenting your naming conventions and enforcing them in code review if you have processes like that. + +If you do not want to enforce naming conventions for anything, you can disable this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend that if you care about naming conventions, pick a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/no-base-to-string.md b/packages/eslint-plugin/docs/rules/no-base-to-string.md index a5493c7e50f3..1a523a08061c 100644 --- a/packages/eslint-plugin/docs/rules/no-base-to-string.md +++ b/packages/eslint-plugin/docs/rules/no-base-to-string.md @@ -76,7 +76,7 @@ let text = `${value}`; ## When Not To Use It -If you don't mind `"[object Object]"` in your strings, then you will not need this rule. +If you don't mind a risk of `"[object Object]"` or incorrect type coercions in your values, then you will not need this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-confusing-void-expression.md b/packages/eslint-plugin/docs/rules/no-confusing-void-expression.md index dbc0aaee9e83..cd5d9c20bac6 100644 --- a/packages/eslint-plugin/docs/rules/no-confusing-void-expression.md +++ b/packages/eslint-plugin/docs/rules/no-confusing-void-expression.md @@ -113,4 +113,4 @@ console.log(void alert('Hello, world!')); The return type of a function can be inspected by going to its definition or hovering over it in an IDE. If you don't care about being explicit about the void type in actual code then don't use this rule. -Also, if you prefer concise coding style then also don't use it. +Also, if you strongly prefer a concise coding style more strongly than any fear of `void`-related bugs then you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md b/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md index ee3d2f8cb205..4e5488cdcba9 100644 --- a/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md +++ b/packages/eslint-plugin/docs/rules/no-duplicate-enum-values.md @@ -53,6 +53,6 @@ enum E { It can sometimes be useful to include duplicate enum members for very specific use cases. For example, when renaming an enum member, it can sometimes be useful to keep the old name until a scheduled major breaking change. -You might consider using an [ESLint disable comment](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. In general, if your project intentionally duplicates enum member values, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md b/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md index 76ba38c744b8..744537d0900e 100644 --- a/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md +++ b/packages/eslint-plugin/docs/rules/no-duplicate-type-constituents.md @@ -61,6 +61,6 @@ When set to true, duplicate checks on union type constituents are ignored. ## When Not To Use It It can sometimes be useful for the sake of documentation to include aliases for the same type. -You might consider using an [ESLint disable comment](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. > In some of those cases, [branded types](https://basarat.gitbook.io/typescript/main-1/nominaltyping#using-interfaces) might be a type-safe way to represent the underlying data types. diff --git a/packages/eslint-plugin/docs/rules/no-dynamic-delete.md b/packages/eslint-plugin/docs/rules/no-dynamic-delete.md index e6afb335bc84..1fd8f9123455 100644 --- a/packages/eslint-plugin/docs/rules/no-dynamic-delete.md +++ b/packages/eslint-plugin/docs/rules/no-dynamic-delete.md @@ -47,7 +47,7 @@ delete container['-Infinity']; ## When Not To Use It When you know your keys are safe to delete, this rule can be unnecessary. -Some environments such as older browsers might not support `Map` and `Set`. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. Do not consider this rule as performance advice before profiling your code's bottlenecks. Even repeated minor performance slowdowns likely do not significantly affect your application's general perceived speed. diff --git a/packages/eslint-plugin/docs/rules/no-empty-function.md b/packages/eslint-plugin/docs/rules/no-empty-function.md index c7f253b446f8..60b73aa61856 100644 --- a/packages/eslint-plugin/docs/rules/no-empty-function.md +++ b/packages/eslint-plugin/docs/rules/no-empty-function.md @@ -84,3 +84,12 @@ class Foo extends Base { protected override greet(): void {} } ``` + +## When Not To Use It + +If you are working with external APIs that require functions even if they do nothing, then you may want to avoid this rule. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. + +Test code often violates this rule as well. +If your testing setup doesn't support "mock" or "spy" functions such as [`jest.fn()`](https://jestjs.io/docs/mock-functions), [`sinon.spy()`](https://sinonjs.org/releases/latest/spies), or [`vi.fn()`](https://vitest.dev/guide/mocking.html), you may wish to disable this rule in test files. +Again, if those cases aren't extremely common, you might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule in test files. diff --git a/packages/eslint-plugin/docs/rules/no-explicit-any.md b/packages/eslint-plugin/docs/rules/no-explicit-any.md index efec50113734..66b423d046c5 100644 --- a/packages/eslint-plugin/docs/rules/no-explicit-any.md +++ b/packages/eslint-plugin/docs/rules/no-explicit-any.md @@ -158,8 +158,12 @@ interface Garply { ## When Not To Use It -If an unknown type or a library without typings is used -and you want to be able to specify `any`. +If your project is not fully type-safe, such as if it's in the process of being converted to TypeScript, it may be difficult to enable this rule. +This can also be the case if it depends on many external dependencies whose types are fully described without `any`s. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. + +Keep in mind that `unknown` is generally a safer type to use than `any`. +Consider trying to replace `any`s with `unknown`s whenever possible. ## Related To @@ -171,4 +175,5 @@ and you want to be able to specify `any`. ## Further Reading -- TypeScript [any type](https://www.typescriptlang.org/docs/handbook/basic-types.html#any) +- TypeScript [`any` type](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#any) +- TypeScript's [`unknown` type](https://www.typescriptlang.org/docs/handbook/2/functions.html#unknown) diff --git a/packages/eslint-plugin/docs/rules/no-extraneous-class.md b/packages/eslint-plugin/docs/rules/no-extraneous-class.md index 4cf0a2c67ada..915269768fc6 100644 --- a/packages/eslint-plugin/docs/rules/no-extraneous-class.md +++ b/packages/eslint-plugin/docs/rules/no-extraneous-class.md @@ -291,4 +291,5 @@ class Constants { ## When Not To Use It -You can disable this rule if you are unable -or unwilling- to switch off using classes as namespaces. +If your project was set up before modern class and namespace practices, and you don't have the time to switch over, you might not be practically able to use this rule. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/no-floating-promises.md b/packages/eslint-plugin/docs/rules/no-floating-promises.md index d0204c8100f6..09840a91c328 100644 --- a/packages/eslint-plugin/docs/rules/no-floating-promises.md +++ b/packages/eslint-plugin/docs/rules/no-floating-promises.md @@ -99,7 +99,9 @@ await(async function () { ## When Not To Use It -If you do not use Promise-like values in your codebase, or want to allow them to remain unhandled. +This rule can be difficult to enable on large existing projects that set up many floating Promises. +Alternately, if you're not worried about crashes from floating or misused Promises -such as if you have global unhandled Promise handlers registered- then in some cases it may be safe to not use this rule. +You might consider using `void`s and/or [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-for-in-array.md b/packages/eslint-plugin/docs/rules/no-for-in-array.md index 759f427b9ace..2777c32a1e5d 100644 --- a/packages/eslint-plugin/docs/rules/no-for-in-array.md +++ b/packages/eslint-plugin/docs/rules/no-for-in-array.md @@ -53,4 +53,5 @@ for (const [i, value] of array.entries()) { ## When Not To Use It -If you want to iterate through a loop using the indices in an array as strings, you can turn off this rule. +If your project is a rare one that intentionally loops over string indices of arrays, you can turn off this rule. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/no-implied-eval.md b/packages/eslint-plugin/docs/rules/no-implied-eval.md index 918b6a12e755..10f787d6d43f 100644 --- a/packages/eslint-plugin/docs/rules/no-implied-eval.md +++ b/packages/eslint-plugin/docs/rules/no-implied-eval.md @@ -98,4 +98,5 @@ setTimeout(Foo.fn, 100); ## When Not To Use It -If you want to allow `new Function()` or `setTimeout()`, `setInterval()`, `setImmediate()` and `execScript()` with string arguments, then you can safely disable this rule. +If your project is a rare one that needs to allow `new Function()` or `setTimeout()`, `setInterval()`, `setImmediate()` and `execScript()` with string arguments, then you can disable this rule. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/no-import-type-side-effects.md b/packages/eslint-plugin/docs/rules/no-import-type-side-effects.md index 35b8f2c5282e..fedd08cb19f0 100644 --- a/packages/eslint-plugin/docs/rules/no-import-type-side-effects.md +++ b/packages/eslint-plugin/docs/rules/no-import-type-side-effects.md @@ -65,8 +65,7 @@ import T, { type U } from 'mod'; ## When Not To Use It -- If you want to leave behind side effect imports, then you shouldn't use this rule. -- If you're not using TypeScript 5.0's `verbatimModuleSyntax` option, then you don't need this rule. +If you're not using TypeScript 5.0's `verbatimModuleSyntax` option and your project is built with a bundler that manages import side effects for you, this rule may not be as useful for you. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-inferrable-types.md b/packages/eslint-plugin/docs/rules/no-inferrable-types.md index 0427bf8acad6..0e81084c9418 100644 --- a/packages/eslint-plugin/docs/rules/no-inferrable-types.md +++ b/packages/eslint-plugin/docs/rules/no-inferrable-types.md @@ -96,8 +96,8 @@ class Foo { ## When Not To Use It -If you do not want to enforce inferred types. +If you strongly prefer to have explicit types regardless of whether they can be inferred, this rule may not be for you. ## Further Reading -TypeScript [Inference](https://www.typescriptlang.org/docs/handbook/type-inference.html) +- [TpeScript Inference](https://www.typescriptlang.org/docs/handbook/type-inference.html) diff --git a/packages/eslint-plugin/docs/rules/no-invalid-void-type.md b/packages/eslint-plugin/docs/rules/no-invalid-void-type.md index d2b60d59e68f..78c010367905 100644 --- a/packages/eslint-plugin/docs/rules/no-invalid-void-type.md +++ b/packages/eslint-plugin/docs/rules/no-invalid-void-type.md @@ -109,5 +109,4 @@ class Example { ## When Not To Use It -If you don't care about if `void` is used with other types, -or in invalid places, then you don't need this rule. +If you don't care about if `void` is used with other types, or in invalid places, then you don't need this rule. diff --git a/packages/eslint-plugin/docs/rules/no-magic-numbers.md b/packages/eslint-plugin/docs/rules/no-magic-numbers.md index 47a5fbd30af1..e54f3a34cd3d 100644 --- a/packages/eslint-plugin/docs/rules/no-magic-numbers.md +++ b/packages/eslint-plugin/docs/rules/no-magic-numbers.md @@ -127,3 +127,9 @@ Examples of **correct** code for the `{ "ignoreTypeIndexes": true }` option: type Foo = Bar[0]; type Baz = Parameters[2]; ``` + +## When Not To Use It + +If your project frequently deals with constant numbers and you don't wish to take up extra space to declare them, this rule might not be for you. +We recommend at least using descriptive comments and/or names to describe constants. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/no-misused-new.md b/packages/eslint-plugin/docs/rules/no-misused-new.md index a311c40be7a0..b3fc829f42d8 100644 --- a/packages/eslint-plugin/docs/rules/no-misused-new.md +++ b/packages/eslint-plugin/docs/rules/no-misused-new.md @@ -43,4 +43,5 @@ interface I { ## When Not To Use It -If you intentionally want a class with a `new` method, and you're confident nobody working in your code will mistake it with a constructor. +If you intentionally want a class with a `new` method, and you're confident nobody working in your code will mistake it with a constructor, you might not want this rule. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/no-misused-promises.md b/packages/eslint-plugin/docs/rules/no-misused-promises.md index 72d4e5c670bf..9d711b86a724 100644 --- a/packages/eslint-plugin/docs/rules/no-misused-promises.md +++ b/packages/eslint-plugin/docs/rules/no-misused-promises.md @@ -233,8 +233,9 @@ return { foo: 42, ...(await getData2()) }; ## When Not To Use It -If you do not use Promises in your codebase or are not concerned with possible -misuses of them outside of what the TypeScript compiler will check. +This rule can be difficult to enable on large existing projects that set up many misused Promises. +Alternately, if you're not worried about crashes from floating or misused Promises -such as if you have global unhandled Promise handlers registered- then in some cases it may be safe to not use this rule. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/no-namespace.md b/packages/eslint-plugin/docs/rules/no-namespace.md index e5f2d431d572..31056e25af25 100644 --- a/packages/eslint-plugin/docs/rules/no-namespace.md +++ b/packages/eslint-plugin/docs/rules/no-namespace.md @@ -120,7 +120,9 @@ declare module 'foo' {} ## When Not To Use It -If you are using the ES2015 module syntax, then you will not need this rule. +If your project was architected before modern modules and namespaces, it may be difficult to migrate off of namespaces. +In that case you may not be able to use this rule for parts of your project. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md b/packages/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md index 4917fbe305d8..f7ac17e740d4 100644 --- a/packages/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md +++ b/packages/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md @@ -45,8 +45,8 @@ x! ?? ''; ## When Not To Use It -If your project's types don't always fully describe whether values may be nullable, this rule might create many false reports. -You may want to disable it in those cases. +If your project's types don't yet fully describe whether certain values may be nullable, such as if you're transitioning to `strictNullChecks`, this rule might create many false reports. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md b/packages/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md index ad94914aa4ca..f758fb2ba7e7 100644 --- a/packages/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md +++ b/packages/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md @@ -31,8 +31,8 @@ foo?.bar(); ## When Not To Use It -If your project's types don't always fully describe whether values may be nullable, this rule might create many false reports. -You may want to disable it in those cases. +If your project's types don't yet fully describe whether certain values may be nullable, such as if you're transitioning to `strictNullChecks`, this rule might create many false reports. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/no-non-null-assertion.md b/packages/eslint-plugin/docs/rules/no-non-null-assertion.md index 874e01605c8e..1a676212fd80 100644 --- a/packages/eslint-plugin/docs/rules/no-non-null-assertion.md +++ b/packages/eslint-plugin/docs/rules/no-non-null-assertion.md @@ -38,5 +38,5 @@ const includesBaz = example.property?.includes('baz') ?? false; ## When Not To Use It -If your project does not use the `strictNullChecks` compiler option, this rule is likely useless to you. -If your code is often wildly incorrect with respect to strict null-checking, your code may not yet be ready for this rule. +If your project's types don't yet fully describe whether certain values may be nullable, such as if you're transitioning to `strictNullChecks`, this rule might create many false reports. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/no-require-imports.md b/packages/eslint-plugin/docs/rules/no-require-imports.md index 6e75a3d41cd3..746ca6dff7ed 100644 --- a/packages/eslint-plugin/docs/rules/no-require-imports.md +++ b/packages/eslint-plugin/docs/rules/no-require-imports.md @@ -30,7 +30,8 @@ import * as lib3 from 'lib3'; ## When Not To Use It -If you don't care about using newer module syntax, then you will not need this rule. +If your project frequently uses older CommonJS `require`s, then this rule might not be applicable to you. +If only a subset of your project uses `require`s then you might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-this-alias.md b/packages/eslint-plugin/docs/rules/no-this-alias.md index 640d5a6a2b54..e9be8a524e6d 100644 --- a/packages/eslint-plugin/docs/rules/no-this-alias.md +++ b/packages/eslint-plugin/docs/rules/no-this-alias.md @@ -35,4 +35,5 @@ setTimeout(() => { ## When Not To Use It -If you need to assign `this` to variables, you shouldn’t use this rule. +If your project is structured in a way that it needs to assign `this` to variables, this rule is likely not for you. +If only a subset of your project assigns `this` to variables then you might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/no-throw-literal.md b/packages/eslint-plugin/docs/rules/no-throw-literal.md index f4d189067b96..2e488ed4eda8 100644 --- a/packages/eslint-plugin/docs/rules/no-throw-literal.md +++ b/packages/eslint-plugin/docs/rules/no-throw-literal.md @@ -109,3 +109,5 @@ const defaultOptions: Options = { allowThrowingUnknown: false, }; ``` + + diff --git a/packages/eslint-plugin/docs/rules/no-type-alias.md b/packages/eslint-plugin/docs/rules/no-type-alias.md index 78bdf64c009d..4d63ba5f265e 100644 --- a/packages/eslint-plugin/docs/rules/no-type-alias.md +++ b/packages/eslint-plugin/docs/rules/no-type-alias.md @@ -606,10 +606,7 @@ type Foo = Partial; type Foo = Omit; ``` -## When Not To Use It - -When you can't express some shape with an interface or you need to use a union, tuple type, -callback, etc. that would cause the code to be unreadable or impractical. + ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/no-unnecessary-condition.md b/packages/eslint-plugin/docs/rules/no-unnecessary-condition.md index 8e052f2379fc..123fa1d6da39 100644 --- a/packages/eslint-plugin/docs/rules/no-unnecessary-condition.md +++ b/packages/eslint-plugin/docs/rules/no-unnecessary-condition.md @@ -95,7 +95,8 @@ If for some reason you cannot turn on `strictNullChecks`, but still want to use ## When Not To Use It -The main downside to using this rule is the need for type information. +If your project is not accurately typed, such as if it's in the process of being converted to TypeScript or is susceptible to [trade-offs in control flow analysis](https://github.com/Microsoft/TypeScript/issues/9998), it may be difficult to enable this rule for particularly non-type-safe areas of code. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-unnecessary-qualifier.md b/packages/eslint-plugin/docs/rules/no-unnecessary-qualifier.md index 6ca2afe17f52..8c698145a93a 100644 --- a/packages/eslint-plugin/docs/rules/no-unnecessary-qualifier.md +++ b/packages/eslint-plugin/docs/rules/no-unnecessary-qualifier.md @@ -48,4 +48,4 @@ namespace A { ## When Not To Use It -If you don't care about having unneeded enum or namespace qualifiers, then you don't need to use this rule. +If you explicitly prefer to use fully qualified names, such as for explicitness, then you don't need to use this rule. diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-argument.md b/packages/eslint-plugin/docs/rules/no-unsafe-argument.md index 57cdb19a4aa0..eb16536dc4d8 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-argument.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-argument.md @@ -81,7 +81,8 @@ foo(1 as any, new Set(), [] as any[]); ## When Not To Use It If your codebase has many existing `any`s, it may be difficult to enable this rule. -It may be easier to skip the `no-unsafe-*` rules pending increasing strictness in your types. +It may be easier to skip the `no-unsafe-*` rules pending increasing type safety in unsafe areas of your project. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-assignment.md b/packages/eslint-plugin/docs/rules/no-unsafe-assignment.md index 6ca8f3537f99..110eb8928f7c 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-assignment.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-assignment.md @@ -84,7 +84,8 @@ const x: Set = y as Set; ## When Not To Use It If your codebase has many existing `any`s, it may be difficult to enable this rule. -It may be easier to skip the `no-unsafe-*` rules pending increasing strictness in your types. +It may be easier to skip the `no-unsafe-*` rules pending increasing type safety in unsafe areas of your project. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-call.md b/packages/eslint-plugin/docs/rules/no-unsafe-call.md index 8c093c0428f1..5280be9d98df 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-call.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-call.md @@ -56,7 +56,8 @@ String.raw`foo`; ## When Not To Use It If your codebase has many existing `any`s, it may be difficult to enable this rule. -It may be easier to skip the `no-unsafe-*` rules pending increasing strictness in your types. +It may be easier to skip the `no-unsafe-*` rules pending increasing type safety in unsafe areas of your project. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md b/packages/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md index d5a378cd8e7a..441df05a2d47 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md @@ -52,6 +52,7 @@ function Qux() {} ## When Not To Use It If your project intentionally defines classes and interfaces with unsafe declaration merging patterns, this rule might not be for you. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-enum-comparison.md b/packages/eslint-plugin/docs/rules/no-unsafe-enum-comparison.md index f57058260739..661608f51c88 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-enum-comparison.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-enum-comparison.md @@ -75,3 +75,6 @@ vegetable === Vegetable.Asparagus; ## When Not To Use It If you don't mind number and/or literal string constants being compared against enums, you likely don't need this rule. + +Separately, in the rare case of relying on an third party enums that are only imported as `type`s, it may be difficult to adhere to this rule. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-member-access.md b/packages/eslint-plugin/docs/rules/no-unsafe-member-access.md index 977ed85edea4..3e888af2b44e 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-member-access.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-member-access.md @@ -62,7 +62,8 @@ arr[idx++]; ## When Not To Use It If your codebase has many existing `any`s, it may be difficult to enable this rule. -It may be easier to skip the `no-unsafe-*` rules pending increasing strictness in your types. +It may be easier to skip the `no-unsafe-*` rules pending increasing type safety in unsafe areas of your project. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-unsafe-return.md b/packages/eslint-plugin/docs/rules/no-unsafe-return.md index 9293177f72bf..e50d8da9d0f3 100644 --- a/packages/eslint-plugin/docs/rules/no-unsafe-return.md +++ b/packages/eslint-plugin/docs/rules/no-unsafe-return.md @@ -101,7 +101,8 @@ function foo2(): unknown[] { ## When Not To Use It If your codebase has many existing `any`s, it may be difficult to enable this rule. -It may be easier to disable the `no-unsafe-*` rules around `any` safety pending increasing strictness in your types. +It may be easier to skip the `no-unsafe-*` rules pending increasing type safety in unsafe areas of your project. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/no-var-requires.md b/packages/eslint-plugin/docs/rules/no-var-requires.md index 7230e4e8aebc..f4605ac335bd 100644 --- a/packages/eslint-plugin/docs/rules/no-var-requires.md +++ b/packages/eslint-plugin/docs/rules/no-var-requires.md @@ -30,7 +30,8 @@ import foo from 'foo'; ## When Not To Use It -If you don't care about using newer module syntax, then you will not need this rule. +If your project frequently uses older CommonJS `require`s, then this rule might not be applicable to you. +If only a subset of your project uses `require`s then you might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md b/packages/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md index 8f068f062e66..0dc6527ff0d3 100644 --- a/packages/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md +++ b/packages/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md @@ -38,4 +38,4 @@ const alsoDefinitely = maybe!; ## When Not To Use It -If you don't mind having unnecessarily verbose type casts, you can avoid this rule. +If you don't mind having unnecessarily verbose type assertions, you can avoid this rule. diff --git a/packages/eslint-plugin/docs/rules/parameter-properties.md b/packages/eslint-plugin/docs/rules/parameter-properties.md index e0e30ddbd3ae..4a6978d2b526 100644 --- a/packages/eslint-plugin/docs/rules/parameter-properties.md +++ b/packages/eslint-plugin/docs/rules/parameter-properties.md @@ -482,4 +482,7 @@ class Foo { ## When Not To Use It -If you don't care about the using parameter properties in constructors, then you will not need this rule. +If you don't care about which style of parameter properties in constructors is used in your classes, then you will not need this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/prefer-as-const.md b/packages/eslint-plugin/docs/rules/prefer-as-const.md index 628c573044cb..7bd979a84f72 100644 --- a/packages/eslint-plugin/docs/rules/prefer-as-const.md +++ b/packages/eslint-plugin/docs/rules/prefer-as-const.md @@ -41,4 +41,7 @@ let foo = { bar: 'baz' }; ## When Not To Use It -If you are using TypeScript < 3.4 +If you don't care about which style of literals assertions is used in your code, then you will not need this rule. + +However, keep in mind that inconsistent style can harm readability in a project. +We recommend picking a single option for this rule that works best for your project. diff --git a/packages/eslint-plugin/docs/rules/prefer-for-of.md b/packages/eslint-plugin/docs/rules/prefer-for-of.md index 83b7846acb0a..873d28bd7f0f 100644 --- a/packages/eslint-plugin/docs/rules/prefer-for-of.md +++ b/packages/eslint-plugin/docs/rules/prefer-for-of.md @@ -41,6 +41,4 @@ for (let i = 0; i < array.length; i++) { } ``` -## When Not To Use It - -If you transpile for browsers that do not support for-of loops, you may wish to use traditional for loops that produce more compact code. + diff --git a/packages/eslint-plugin/docs/rules/prefer-includes.md b/packages/eslint-plugin/docs/rules/prefer-includes.md index 793014008beb..9a5db1fbf894 100644 --- a/packages/eslint-plugin/docs/rules/prefer-includes.md +++ b/packages/eslint-plugin/docs/rules/prefer-includes.md @@ -72,6 +72,4 @@ declare const mismatchExample: { mismatchExample.indexOf(value) >= 0; ``` -## When Not To Use It - -If you don't want to suggest `includes`, you can safely turn this rule off. + diff --git a/packages/eslint-plugin/docs/rules/prefer-literal-enum-member.md b/packages/eslint-plugin/docs/rules/prefer-literal-enum-member.md index 2c0bd40a33de..1e849465c4f1 100644 --- a/packages/eslint-plugin/docs/rules/prefer-literal-enum-member.md +++ b/packages/eslint-plugin/docs/rules/prefer-literal-enum-member.md @@ -98,4 +98,4 @@ enum Foo { ## When Not To Use It -If you want use anything other than simple literals as an enum value. +If you want use anything other than simple literals as an enum value, this rule might not be for you. diff --git a/packages/eslint-plugin/docs/rules/prefer-namespace-keyword.md b/packages/eslint-plugin/docs/rules/prefer-namespace-keyword.md index f25b124c776a..97af2be93fa6 100644 --- a/packages/eslint-plugin/docs/rules/prefer-namespace-keyword.md +++ b/packages/eslint-plugin/docs/rules/prefer-namespace-keyword.md @@ -38,7 +38,7 @@ declare module 'foo' {} ## When Not To Use It -If you are using the ES2015 module syntax, then you will not need this rule. +If you are not using TypeScript's older `module`/`namespace` keywords, then you will not need this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/prefer-optional-chain.md b/packages/eslint-plugin/docs/rules/prefer-optional-chain.md index 6efb88b17ae5..b0650c83986f 100644 --- a/packages/eslint-plugin/docs/rules/prefer-optional-chain.md +++ b/packages/eslint-plugin/docs/rules/prefer-optional-chain.md @@ -254,7 +254,8 @@ thing2 && thing2.toString(); ## When Not To Use It -If you don't mind using more explicit `&&`s/`||`s, you don't need this rule. +If your project is not accurately typed, such as if it's in the process of being converted to TypeScript or is susceptible to [trade-offs in control flow analysis](https://github.com/Microsoft/TypeScript/issues/9998), it may be difficult to enable this rule for particularly non-type-safe areas of code. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md b/packages/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md index 520a25a653b5..5419248f8b5e 100644 --- a/packages/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md +++ b/packages/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md @@ -55,4 +55,6 @@ It will suggest instead pass the asserted type to `Array#reduce` as a generic ty ## When Not To Use It -If you don't want to use typechecking in your linting, you can't use this rule. +This rule can sometimes be difficult to work around when creating objects using a `.reduce`. +See [[prefer-reduce-type-parameter] unfixable reporting #3440](https://github.com/typescript-eslint/typescript-eslint/issues/3440) for more details. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md b/packages/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md index 573ce53ed09d..8b2f556ddf30 100644 --- a/packages/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md +++ b/packages/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md @@ -54,4 +54,5 @@ foo.endsWith('bar'); ## When Not To Use It -If you don't mind that style, you can turn this rule off safely. +If you don't mind which style of string checking is used, you can turn this rule off safely. +However, keep in mind that inconsistent style can harm readability in a project. diff --git a/packages/eslint-plugin/docs/rules/prefer-ts-expect-error.md b/packages/eslint-plugin/docs/rules/prefer-ts-expect-error.md index 8cc2abb23055..1eb824041fd3 100644 --- a/packages/eslint-plugin/docs/rules/prefer-ts-expect-error.md +++ b/packages/eslint-plugin/docs/rules/prefer-ts-expect-error.md @@ -63,6 +63,7 @@ const isOptionEnabled = (key: string): boolean => { ## When Not To Use It If you are compiling against multiple versions of TypeScript and using `@ts-ignore` to ignore version-specific type errors, this rule might get in your way. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## Further Reading diff --git a/packages/eslint-plugin/docs/rules/promise-function-async.md b/packages/eslint-plugin/docs/rules/promise-function-async.md index d8eac2c3a489..a11dfdea3ce3 100644 --- a/packages/eslint-plugin/docs/rules/promise-function-async.md +++ b/packages/eslint-plugin/docs/rules/promise-function-async.md @@ -60,4 +60,5 @@ async function functionReturnsUnionWithPromiseImplicitly(p: boolean) { ## When Not To Use It -If you don't mind the extra weight of functions being `async` despite not `await`ing, you can turn off this rule. +This rule can be difficult to enable on projects that use APIs which require functions to always be `async`. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) along with filing issues on your dependencies for those specific situations instead of completely disabling this rule. diff --git a/packages/eslint-plugin/docs/rules/require-array-sort-compare.md b/packages/eslint-plugin/docs/rules/require-array-sort-compare.md index 66b39a004cd0..8d9d15741c2d 100644 --- a/packages/eslint-plugin/docs/rules/require-array-sort-compare.md +++ b/packages/eslint-plugin/docs/rules/require-array-sort-compare.md @@ -75,4 +75,4 @@ const three = '3'; ## When Not To Use It -If you understand the language specification enough, and/or only ever sort arrays in a string-like manner, you can turn this rule off safely. +If you intentionally want your arrays to be always sorted in a string-like manner, you can turn this rule off safely. diff --git a/packages/eslint-plugin/docs/rules/restrict-plus-operands.md b/packages/eslint-plugin/docs/rules/restrict-plus-operands.md index 9428ea115248..8557ed766f69 100644 --- a/packages/eslint-plugin/docs/rules/restrict-plus-operands.md +++ b/packages/eslint-plugin/docs/rules/restrict-plus-operands.md @@ -196,7 +196,7 @@ bar += 'test'; ## When Not To Use It -If you don't mind `"[object Object]"` in your strings, then you will not need this rule. +If you don't mind a risk of `"[object Object]"` or incorrect type coercions in your values, then you will not need this rule. ## Related To diff --git a/packages/eslint-plugin/docs/rules/sort-type-constituents.md b/packages/eslint-plugin/docs/rules/sort-type-constituents.md index 5a4fabcc283e..c767bff5edd5 100644 --- a/packages/eslint-plugin/docs/rules/sort-type-constituents.md +++ b/packages/eslint-plugin/docs/rules/sort-type-constituents.md @@ -104,3 +104,4 @@ The ordering of groups is determined by this option. This rule is purely a stylistic rule for maintaining consistency in your project. You can turn it off if you don't want to keep a consistent, predictable order for intersection and union types. +However, keep in mind that inconsistent style can harm readability in a project. diff --git a/packages/eslint-plugin/docs/rules/strict-boolean-expressions.md b/packages/eslint-plugin/docs/rules/strict-boolean-expressions.md index be83e187234d..f0f702d03d51 100644 --- a/packages/eslint-plugin/docs/rules/strict-boolean-expressions.md +++ b/packages/eslint-plugin/docs/rules/strict-boolean-expressions.md @@ -182,6 +182,9 @@ This rule provides following fixes and suggestions for particular types in boole If your project isn't likely to experience bugs from falsy non-boolean values being used in logical conditions, you can skip enabling this rule. +Otherwise, this rule can be quite strict around requiring exact comparisons in logical checks. +If you prefer more succinct checks over more precise boolean logic, this rule might not be for you. + ## Related To - [no-unnecessary-condition](./no-unnecessary-condition.md) - Similar rule which reports always-truthy and always-falsy values in conditions diff --git a/packages/eslint-plugin/docs/rules/switch-exhaustiveness-check.md b/packages/eslint-plugin/docs/rules/switch-exhaustiveness-check.md index 9320624924b9..bbac421b7b8c 100644 --- a/packages/eslint-plugin/docs/rules/switch-exhaustiveness-check.md +++ b/packages/eslint-plugin/docs/rules/switch-exhaustiveness-check.md @@ -103,4 +103,4 @@ switch (day) { ## When Not To Use It -If you don't frequently `switch` over union types with many parts, or intentionally wish to leave out some parts. +If you don't frequently `switch` over union types with many parts, or intentionally wish to leave out some parts, this rule may not be for you. diff --git a/packages/eslint-plugin/docs/rules/triple-slash-reference.md b/packages/eslint-plugin/docs/rules/triple-slash-reference.md index af8fa6da5296..d71def7014e3 100644 --- a/packages/eslint-plugin/docs/rules/triple-slash-reference.md +++ b/packages/eslint-plugin/docs/rules/triple-slash-reference.md @@ -50,9 +50,12 @@ import * as foo from 'foo'; import foo = require('foo'); ``` -## When To Use It +## When Not To Use It -If you want to ban use of one or all of the triple slash reference directives, or any time you might use triple-slash type reference directives and ES6 import declarations in the same file. +Most modern TypeScript projects generally use `import` statements to bring in types. +It's rare to need a `///` triple-slash reference outside of auto-generated code. +If your project is a rare one with one of those use cases, this rule might not be for you. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. ## When Not To Use It diff --git a/packages/eslint-plugin/docs/rules/unbound-method.md b/packages/eslint-plugin/docs/rules/unbound-method.md index edcc2e734784..ae760db90e8f 100644 --- a/packages/eslint-plugin/docs/rules/unbound-method.md +++ b/packages/eslint-plugin/docs/rules/unbound-method.md @@ -98,6 +98,8 @@ log(); ## When Not To Use It -If your code intentionally waits to bind methods after use, such as by passing a `scope: this` along with the method, you can avoid this rule. +If your project dynamically changes `this` scopes around in a way TypeScript has difficulties modeling, this rule may not be viable to use. +One likely difficult pattern is if your code intentionally waits to bind methods after use, such as by passing a `scope: this` along with the method. +You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule. If you're wanting to use `toBeCalled` and similar matches in `jest` tests, you can disable this rule for your test files in favor of [`eslint-plugin-jest`'s version of this rule](https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/unbound-method.md). diff --git a/packages/eslint-plugin/docs/rules/unified-signatures.md b/packages/eslint-plugin/docs/rules/unified-signatures.md index a41bb9ac07e4..cb251270f339 100644 --- a/packages/eslint-plugin/docs/rules/unified-signatures.md +++ b/packages/eslint-plugin/docs/rules/unified-signatures.md @@ -71,3 +71,7 @@ function f(b: string): void; This is purely a stylistic rule to help with readability of function signature overloads. You can turn it off if you don't want to consistently keep them next to each other and unified. + +## Related To + +- [`adjacent-overload-signatures`](./adjacent-overload-signatures.md) diff --git a/packages/eslint-plugin/tests/docs.test.ts b/packages/eslint-plugin/tests/docs.test.ts index 3effaa1037d7..eb6e45bc63f2 100644 --- a/packages/eslint-plugin/tests/docs.test.ts +++ b/packages/eslint-plugin/tests/docs.test.ts @@ -8,13 +8,20 @@ import rules from '../src/rules'; const docsRoot = path.resolve(__dirname, '../docs/rules'); const rulesData = Object.entries(rules); -function parseMarkdownFile(filePath: string): marked.TokensList { - const file = fs.readFileSync(filePath, 'utf-8'); +interface ParsedMarkdownFile { + fullText: string; + tokens: marked.TokensList; +} + +function parseMarkdownFile(filePath: string): ParsedMarkdownFile { + const fullText = fs.readFileSync(filePath, 'utf-8'); - return marked.lexer(file, { + const tokens = marked.lexer(fullText, { gfm: true, silent: false, }); + + return { fullText, tokens }; } type TokenType = marked.Token['type']; @@ -62,7 +69,7 @@ describe('Validating rule docs', () => { describe(`${ruleName}.md`, () => { const filePath = path.join(docsRoot, `${ruleName}.md`); - const tokens = parseMarkdownFile(filePath); + const { fullText, tokens } = parseMarkdownFile(filePath); test(`${ruleName}.md must start with frontmatter description`, () => { expect(tokens[0]).toMatchObject({ @@ -124,7 +131,16 @@ describe('Validating rule docs', () => { ); for (const requiredHeading of requiredHeadings) { - expect(headingTexts).toContain(requiredHeading); + const omissionComment = `