diff --git a/.cspell.json b/.cspell.json
index e86e6668..36da9247 100644
--- a/.cspell.json
+++ b/.cspell.json
@@ -3,18 +3,26 @@
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/master/cspell.schema.json",
"language": "en",
"words": [
+ "activatable",
"ACTIVEBYTECODE",
+ "airgapped",
+ "altstack",
"Amagi",
"ANYONECANPAY",
"asmcrypto",
"auditability",
"auditable",
+ "authbase",
+ "authbases",
+ "authchain",
+ "authchains",
+ "authhead",
"BCHCHIPs",
"bchn",
"bchreg",
"bchtest",
+ "bcmr",
"bcoin",
- "bcrypto",
"bech",
"benchmarkjs",
"bigint",
@@ -31,6 +39,7 @@
"camelcase",
"cashaddr",
"CASHTOKENS",
+ "Chaingraph",
"CHECKDATASIG",
"CHECKDATASIGVERIFY",
"CHECKLOCKTIMEVERIFY",
@@ -39,6 +48,7 @@
"CHECKSEQUENCEVERIFY",
"CHECKSIG",
"CHECKSIGVERIFY",
+ "chipnet",
"chuhai",
"codecov",
"codepoint",
@@ -47,8 +57,11 @@
"combinator",
"combinators",
"convertbits",
+ "corepack",
+ "counterparties",
"cyclomatic",
"Datacarrier",
+ "DDTHH",
"deno",
"deserialization",
"deserialize",
@@ -65,15 +78,18 @@
"esnext",
"FORKID",
"FROMALTSTACK",
+ "gitter",
"GREATERTHAN",
"GREATERTHANOREQUAL",
"HMAC",
"IFDUP",
+ "IIFE",
"INPUTBYTECODE",
"INPUTINDEX",
"INPUTSEQUENCENUMBER",
"Ints",
"INVALIDOPCODE",
+ "ipfs",
"LESSTHAN",
"LESSTHANOREQUAL",
"libauth",
@@ -90,8 +106,10 @@
"Merkle",
"minification",
"MINIMALIF",
+ "MITM",
"monospace",
"multisig",
+ "Nakamoto",
"NONFUNGIBLE",
"nops",
"NOTIF",
@@ -121,6 +139,9 @@
"PUBKEYS",
"PUSHBYTES",
"PUSHDATA",
+ "rebranded",
+ "rebranding",
+ "redenominated",
"regtest",
"reversebytes",
"ripemd",
@@ -133,15 +154,18 @@
"seckey",
"secp",
"secp256k1",
+ "sidechain",
"sigchecks",
"sighash",
"skippable",
"SMALLINTEGER",
+ "Spedn",
"STACKTOP",
"standardness",
"statelessly",
"STATICTOP",
"submodule",
+ "substack",
"templating",
"testnet",
"TOALTSTACK",
@@ -171,10 +195,14 @@
"wasm",
"wbindgen",
"webassembly",
+ "wechat",
+ "XAMPL",
"xprivkey",
"xprv",
"xpub",
"xpubkey",
+ "yarnpkg",
+ "ZDTC",
"πΌπ"
],
"flagWords": [],
@@ -193,9 +221,5 @@
"pattern": "/:[qpzry9x8gf2tvdw0s3jn54khce6mua7l]+/g"
}
],
- "ignoreRegExpList": [
- "Base64",
- "HexValues",
- "cash-address-format"
- ]
+ "ignoreRegExpList": ["Base64", "HexValues", "cash-address-format"]
}
diff --git a/.eslintrc b/.eslintrc
index 92ea1352..3e5a2a6e 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -3,29 +3,16 @@
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": "./tsconfig.json" },
"env": { "es6": true },
- "ignorePatterns": ["node_modules", "build", "coverage"],
+ "ignorePatterns": [
+ "node_modules",
+ "build",
+ "coverage",
+ "src/lib/schema/ajv/*.js"
+ ],
"extends": ["bitauth"],
- "globals": { "BigInt": true, "console": true, "WebAssembly": true },
+ // "globals": { "BigInt": true, "console": true, "WebAssembly": true },
"rules": {
- "@typescript-eslint/prefer-readonly-parameter-types": "off", // TODO: enable when Uint8Array can be made readonly, see `Immutable` type
- "@typescript-eslint/no-unused-expressions": "off", // TODO: bug causes crash in eslint 7.2.0 β re-enable later
- "@typescript-eslint/naming-convention": [
- "error",
- {
- "selector": "default",
- "format": ["camelCase"],
- "leadingUnderscore": "allow"
- },
- {
- "selector": "variable",
- "format": ["camelCase", "UPPER_CASE"],
- "leadingUnderscore": "allow"
- },
- { "selector": "typeLike", "format": ["PascalCase"] },
- { "selector": "enumMember", "format": ["camelCase", "UPPER_CASE"] } // Allow UPPER_CASE for opcodes
- ],
- "import/no-internal-modules": ["error"],
- "import/extensions": ["error", "always"]
+ "@typescript-eslint/no-unsafe-enum-comparison": "off"
},
"overrides": [
/*
@@ -47,9 +34,11 @@
]
}
],
- "functional/no-expression-statement": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-magic-numbers": "off",
+ "functional/no-expression-statements": "off",
+ "functional/no-conditional-statements": "off",
+ "functional/functional-parameters": "off",
"functional/immutable-data": "off",
"functional/no-return-void": "off"
}
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 6181d9d7..fcc9660b 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -24,7 +24,7 @@ This library should provide the primitives needed to hack on bitcoin and bitcoin
## Some Practical Details
-- **accept `readonly`, return mutable** - We should always return mutable types to allow consumers the option of mutating results without running afoul of type-checking. For the same reason, when we accept a value, we should always accept it as `readonly` for maximum flexibility.
+- **accept immutable, return mutable** - We should always return mutable types to allow consumers the option of mutating results without running afoul of type-checking. For the same reason, when we accept a value, we should generally avoid mutating it.
- **use `eslint-disable-next-line` or `eslint-disable-line`** - It's ok to disable eslint; in some cases, rules should be disabled every time they're hit (e.g. `no-bitwise`). By using single-line disables, we clearly mark intentional deviations from our conventions.
- **avoid Hungarian notation & name prefixing** β Including the type of a variable in its name is a code smell: a name should clearly describe only one concept, and types are the business of the type system. Likewise, using prefixes to distinguish between an interface and an instance typically indicates the concepts should be simplified. E.g. `IChecker` and `Checker` β this is likely made unnecessarily complex to accommodate an object-oriented style. Consider replacing with a single function (or if instantiation is required, an object containing only stateless functions).
- **don't throw things** β instead, return a result that can be either a success or error type. This strategy encourages a more functional approach to problems, and pragmatically, [TypeScript does not yet offer a `throws` clause or otherwise](https://github.com/microsoft/TypeScript/issues/13219), so only this strategy allows errors to be well-typed. A good pattern is `() => string | ResultType`, where ResultType is the desired output, and error messages are returned as a string. Consumers can easily use `typeof result === 'string'` to narrow the resulting type. When errors are more complex or `ResultType` is also a string, use an object with a `success` property, e.g. `() => { success: true, bytecode: Uint8Array } | { success: false, errors: ErrorType[] }`.
diff --git a/.github/workflows/benchmark.yaml b/.github/workflows/benchmark.yaml
index a5b8205d..8c4e2a1a 100644
--- a/.github/workflows/benchmark.yaml
+++ b/.github/workflows/benchmark.yaml
@@ -9,7 +9,7 @@ permissions:
deployments: write
concurrency:
- group: "benchmarks"
+ group: 'benchmarks'
cancel-in-progress: true
jobs:
@@ -19,15 +19,15 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
- submodules: 'true'
+ submodules: 'true'
- name: Setup node
uses: actions/setup-node@v3
with:
- node-version: 16
+ node-version: 20
- name: Run benchmark
- run: yarn && yarn bench
-
- # TODO: Libauth-only benchmarks: test for performance regressions in Libauth functionality, format results to work with the below configuration
+ run: yarn && yarn playwright install && yarn bench
+
+ # TODO: Libauth-only benchmarks: test for performance regressions in Libauth functionality, format results to work with the below configuration
# - name: Push benchmark result to gh-pages
# uses: benchmark-action/github-action-benchmark@3d3bca03e83647895ef4f911fa57de3c7a391aaf
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 68f03cbf..de329f7c 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -2,19 +2,18 @@ name: Lint, Build, and Test Libauth
on: [push, pull_request]
jobs:
-
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
- node: [ 16 ]
+ node: [18, latest]
name: Test Node ${{ matrix.node }}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
- submodules: 'true'
- - name: Setup node
- uses: actions/setup-node@v3
+ submodules: 'recursive'
+ - name: Install Node.js
+ uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: yarn install --immutable --immutable-cache
@@ -24,14 +23,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- node: [ 18 ]
+ node: [20]
name: Test Node ${{ matrix.node }}
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
- submodules: 'true'
- - name: Setup node
- uses: actions/setup-node@v3
+ submodules: 'recursive'
+ - name: Install Node.js
+ uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: yarn install --immutable --immutable-cache
@@ -43,11 +42,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
- submodules: 'true'
+ submodules: 'recursive'
- name: Install Node.js
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
with:
- node-version: '18'
+ node-version: '20'
- run: yarn install --immutable --immutable-cache --check-cache
diff --git a/.github/workflows/doc.yaml b/.github/workflows/doc.yaml
index f51e5e4d..655654f4 100644
--- a/.github/workflows/doc.yaml
+++ b/.github/workflows/doc.yaml
@@ -11,7 +11,7 @@ permissions:
id-token: write
concurrency:
- group: "pages"
+ group: 'pages'
cancel-in-progress: true
jobs:
@@ -21,11 +21,11 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
- submodules: 'true'
+ submodules: 'true'
- name: Setup node
uses: actions/setup-node@v3
with:
- node-version: 18
+ node-version: 20
- name: Prepare dependencies
run: yarn
- name: Generate Docs
diff --git a/.gitmodules b/.gitmodules
index 2ed2e49e..cae41823 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -2,7 +2,12 @@
path = wasm/secp256k1
url = https://github.com/bitauth/libauth-secp256k1.git
branch = libauth
+ shallow = true
[submodule ".yarn"]
path = .yarn
url = https://github.com/bitauth/libauth-dependencies.git
- shallow = true
\ No newline at end of file
+ shallow = true
+[submodule "config/eslint-config-bitauth"]
+ path = config/eslint-config-bitauth
+ url = https://github.com/bitauth/eslint-config-bitauth/
+ shallow = true
diff --git a/.pnp.cjs b/.pnp.cjs
new file mode 100755
index 00000000..bbf8a795
--- /dev/null
+++ b/.pnp.cjs
@@ -0,0 +1,18626 @@
+#!/usr/bin/env node
+/* eslint-disable */
+"use strict";
+
+const RAW_RUNTIME_STATE =
+'{\
+ "__info": [\
+ "This file is automatically generated. Do not touch it, or risk",\
+ "your modifications being lost."\
+ ],\
+ "dependencyTreeRoots": [\
+ {\
+ "name": "@bitauth/libauth",\
+ "reference": "workspace:."\
+ }\
+ ],\
+ "enableTopLevelFallback": true,\
+ "ignorePatternData": "(^(?:\\\\.yarn\\\\/sdks(?:\\\\/(?!\\\\.{1,2}(?:\\\\/|$))(?:(?:(?!(?:^|\\\\/)\\\\.{1,2}(?:\\\\/|$)).)*?)|$))$)",\
+ "fallbackExclusionList": [\
+ ["@bitauth/libauth", ["workspace:."]]\
+ ],\
+ "fallbackPool": [\
+ ],\
+ "packageRegistryData": [\
+ [null, [\
+ [null, {\
+ "packageLocation": "./",\
+ "packageDependencies": [\
+ ["@ava/typescript", "npm:4.1.0"],\
+ ["@fast-check/ava", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:1.2.1"],\
+ ["@microsoft/api-documenter", "npm:7.23.16"],\
+ ["@microsoft/api-extractor", "npm:7.39.1"],\
+ ["@playwright/test", "npm:1.40.1"],\
+ ["@rollup/plugin-alias", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:5.1.0"],\
+ ["@rollup/plugin-commonjs", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:25.0.7"],\
+ ["@rollup/plugin-node-resolve", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:15.2.3"],\
+ ["@types/elliptic", "npm:6.4.18"],\
+ ["@types/express", "npm:4.17.21"],\
+ ["@types/node", "npm:20.11.0"],\
+ ["@typescript-eslint/eslint-plugin", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["@typescript-eslint/parser", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["ajv-cli", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:5.0.0"],\
+ ["asmcrypto.js", "npm:2.3.2"],\
+ ["ava", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.1"],\
+ ["bitcore-lib-cash", "npm:10.0.23"],\
+ ["c8", "npm:9.0.0"],\
+ ["chuhai", "npm:1.2.0"],\
+ ["cpy-cli", "npm:5.0.0"],\
+ ["cspell", "npm:8.3.2"],\
+ ["cz-conventional-changelog", "npm:3.3.0"],\
+ ["elliptic", "npm:6.5.4"],\
+ ["eslint", "npm:8.56.0"],\
+ ["eslint-config-bitauth", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#portal:./config/eslint-config-bitauth::locator=%40bitauth%2Flibauth%40workspace%3A."],\
+ ["eslint-config-prettier", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:9.1.0"],\
+ ["eslint-plugin-eslint-comments", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:3.2.0"],\
+ ["eslint-plugin-functional", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.0"],\
+ ["eslint-plugin-import", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:2.29.1"],\
+ ["eslint-plugin-tsdoc", "npm:0.2.17"],\
+ ["express", "npm:4.18.2"],\
+ ["fast-check", "npm:3.15.0"],\
+ ["hash.js", "npm:1.1.7"],\
+ ["madge", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.1.0"],\
+ ["open-cli", "npm:8.0.0"],\
+ ["prettier", "npm:3.1.1"],\
+ ["rollup", "npm:4.9.4"],\
+ ["secp256k1", "npm:5.0.0"],\
+ ["source-map-support", "npm:0.5.21"],\
+ ["standard-version", "npm:9.5.0"],\
+ ["ts-json-schema-generator", "npm:1.5.0"],\
+ ["typedoc", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:0.25.7"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "linkType": "SOFT"\
+ }]\
+ ]],\
+ ["@aashutoshrathi/word-wrap", [\
+ ["npm:1.2.6", {\
+ "packageLocation": "./.yarn/cache/@aashutoshrathi-word-wrap-npm-1.2.6-5b1d95e487-53c2b231a6.zip/node_modules/@aashutoshrathi/word-wrap/",\
+ "packageDependencies": [\
+ ["@aashutoshrathi/word-wrap", "npm:1.2.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@ava/typescript", [\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/@ava-typescript-npm-4.1.0-f1a5efe95a-00f32d5b1f.zip/node_modules/@ava/typescript/",\
+ "packageDependencies": [\
+ ["@ava/typescript", "npm:4.1.0"],\
+ ["escape-string-regexp", "npm:5.0.0"],\
+ ["execa", "npm:7.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@babel/code-frame", [\
+ ["npm:7.23.5", {\
+ "packageLocation": "./.yarn/cache/@babel-code-frame-npm-7.23.5-cb10d08de6-a10e843595.zip/node_modules/@babel/code-frame/",\
+ "packageDependencies": [\
+ ["@babel/code-frame", "npm:7.23.5"],\
+ ["@babel/highlight", "npm:7.23.4"],\
+ ["chalk", "npm:2.4.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@babel/helper-string-parser", [\
+ ["npm:7.23.4", {\
+ "packageLocation": "./.yarn/cache/@babel-helper-string-parser-npm-7.23.4-b1f0d030c3-f348d5637a.zip/node_modules/@babel/helper-string-parser/",\
+ "packageDependencies": [\
+ ["@babel/helper-string-parser", "npm:7.23.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@babel/helper-validator-identifier", [\
+ ["npm:7.22.20", {\
+ "packageLocation": "./.yarn/cache/@babel-helper-validator-identifier-npm-7.22.20-18305bb306-dcad63db34.zip/node_modules/@babel/helper-validator-identifier/",\
+ "packageDependencies": [\
+ ["@babel/helper-validator-identifier", "npm:7.22.20"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@babel/highlight", [\
+ ["npm:7.23.4", {\
+ "packageLocation": "./.yarn/cache/@babel-highlight-npm-7.23.4-2a9f2d2538-fbff9fcb2f.zip/node_modules/@babel/highlight/",\
+ "packageDependencies": [\
+ ["@babel/highlight", "npm:7.23.4"],\
+ ["@babel/helper-validator-identifier", "npm:7.22.20"],\
+ ["chalk", "npm:2.4.2"],\
+ ["js-tokens", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@babel/parser", [\
+ ["npm:7.23.6", {\
+ "packageLocation": "./.yarn/cache/@babel-parser-npm-7.23.6-2fad283d6e-6f76cd5cca.zip/node_modules/@babel/parser/",\
+ "packageDependencies": [\
+ ["@babel/parser", "npm:7.23.6"],\
+ ["@babel/types", "npm:7.23.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@babel/types", [\
+ ["npm:7.23.6", {\
+ "packageLocation": "./.yarn/cache/@babel-types-npm-7.23.6-4e68ac9e9b-42cefce8a6.zip/node_modules/@babel/types/",\
+ "packageDependencies": [\
+ ["@babel/types", "npm:7.23.6"],\
+ ["@babel/helper-string-parser", "npm:7.23.4"],\
+ ["@babel/helper-validator-identifier", "npm:7.22.20"],\
+ ["to-fast-properties", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@bcoe/v8-coverage", [\
+ ["npm:0.2.3", {\
+ "packageLocation": "./.yarn/cache/@bcoe-v8-coverage-npm-0.2.3-9e27b3c57e-6b80ae4cb3.zip/node_modules/@bcoe/v8-coverage/",\
+ "packageDependencies": [\
+ ["@bcoe/v8-coverage", "npm:0.2.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@bitauth/libauth", [\
+ ["workspace:.", {\
+ "packageLocation": "./",\
+ "packageDependencies": [\
+ ["@bitauth/libauth", "workspace:."],\
+ ["@ava/typescript", "npm:4.1.0"],\
+ ["@fast-check/ava", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:1.2.1"],\
+ ["@microsoft/api-documenter", "npm:7.23.16"],\
+ ["@microsoft/api-extractor", "npm:7.39.1"],\
+ ["@playwright/test", "npm:1.40.1"],\
+ ["@rollup/plugin-alias", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:5.1.0"],\
+ ["@rollup/plugin-commonjs", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:25.0.7"],\
+ ["@rollup/plugin-node-resolve", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:15.2.3"],\
+ ["@types/elliptic", "npm:6.4.18"],\
+ ["@types/express", "npm:4.17.21"],\
+ ["@types/node", "npm:20.11.0"],\
+ ["@typescript-eslint/eslint-plugin", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["@typescript-eslint/parser", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["ajv-cli", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:5.0.0"],\
+ ["asmcrypto.js", "npm:2.3.2"],\
+ ["ava", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.1"],\
+ ["bitcore-lib-cash", "npm:10.0.23"],\
+ ["c8", "npm:9.0.0"],\
+ ["chuhai", "npm:1.2.0"],\
+ ["cpy-cli", "npm:5.0.0"],\
+ ["cspell", "npm:8.3.2"],\
+ ["cz-conventional-changelog", "npm:3.3.0"],\
+ ["elliptic", "npm:6.5.4"],\
+ ["eslint", "npm:8.56.0"],\
+ ["eslint-config-bitauth", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#portal:./config/eslint-config-bitauth::locator=%40bitauth%2Flibauth%40workspace%3A."],\
+ ["eslint-config-prettier", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:9.1.0"],\
+ ["eslint-plugin-eslint-comments", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:3.2.0"],\
+ ["eslint-plugin-functional", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.0"],\
+ ["eslint-plugin-import", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:2.29.1"],\
+ ["eslint-plugin-tsdoc", "npm:0.2.17"],\
+ ["express", "npm:4.18.2"],\
+ ["fast-check", "npm:3.15.0"],\
+ ["hash.js", "npm:1.1.7"],\
+ ["madge", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.1.0"],\
+ ["open-cli", "npm:8.0.0"],\
+ ["prettier", "npm:3.1.1"],\
+ ["rollup", "npm:4.9.4"],\
+ ["secp256k1", "npm:5.0.0"],\
+ ["source-map-support", "npm:0.5.21"],\
+ ["standard-version", "npm:9.5.0"],\
+ ["ts-json-schema-generator", "npm:1.5.0"],\
+ ["typedoc", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:0.25.7"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "linkType": "SOFT"\
+ }]\
+ ]],\
+ ["@commitlint/config-validator", [\
+ ["npm:18.4.4", {\
+ "packageLocation": "./.yarn/cache/@commitlint-config-validator-npm-18.4.4-e903289934-00599bb176.zip/node_modules/@commitlint/config-validator/",\
+ "packageDependencies": [\
+ ["@commitlint/config-validator", "npm:18.4.4"],\
+ ["@commitlint/types", "npm:18.4.4"],\
+ ["ajv", "npm:8.12.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@commitlint/execute-rule", [\
+ ["npm:18.4.4", {\
+ "packageLocation": "./.yarn/cache/@commitlint-execute-rule-npm-18.4.4-d9423b5542-1f4fde4264.zip/node_modules/@commitlint/execute-rule/",\
+ "packageDependencies": [\
+ ["@commitlint/execute-rule", "npm:18.4.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@commitlint/load", [\
+ ["npm:18.4.4", {\
+ "packageLocation": "./.yarn/cache/@commitlint-load-npm-18.4.4-f5b98f17ad-46202e2882.zip/node_modules/@commitlint/load/",\
+ "packageDependencies": [\
+ ["@commitlint/load", "npm:18.4.4"],\
+ ["@commitlint/config-validator", "npm:18.4.4"],\
+ ["@commitlint/execute-rule", "npm:18.4.4"],\
+ ["@commitlint/resolve-extends", "npm:18.4.4"],\
+ ["@commitlint/types", "npm:18.4.4"],\
+ ["chalk", "npm:4.1.2"],\
+ ["cosmiconfig", "virtual:f5b98f17ad7ea81ab857071041c4ce431e85f7ad9573fd6e8cece457137e8a3cb24f7241d1c6f6a0018b320aaa8402caf4d54ddf5f10267d682064c4805d3882#npm:8.3.6"],\
+ ["cosmiconfig-typescript-loader", "virtual:f5b98f17ad7ea81ab857071041c4ce431e85f7ad9573fd6e8cece457137e8a3cb24f7241d1c6f6a0018b320aaa8402caf4d54ddf5f10267d682064c4805d3882#npm:5.0.0"],\
+ ["lodash.isplainobject", "npm:4.0.6"],\
+ ["lodash.merge", "npm:4.6.2"],\
+ ["lodash.uniq", "npm:4.5.0"],\
+ ["resolve-from", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@commitlint/resolve-extends", [\
+ ["npm:18.4.4", {\
+ "packageLocation": "./.yarn/cache/@commitlint-resolve-extends-npm-18.4.4-7834d28c9c-0b6cc0a0fe.zip/node_modules/@commitlint/resolve-extends/",\
+ "packageDependencies": [\
+ ["@commitlint/resolve-extends", "npm:18.4.4"],\
+ ["@commitlint/config-validator", "npm:18.4.4"],\
+ ["@commitlint/types", "npm:18.4.4"],\
+ ["import-fresh", "npm:3.3.0"],\
+ ["lodash.mergewith", "npm:4.6.2"],\
+ ["resolve-from", "npm:5.0.0"],\
+ ["resolve-global", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@commitlint/types", [\
+ ["npm:18.4.4", {\
+ "packageLocation": "./.yarn/cache/@commitlint-types-npm-18.4.4-c71e2a6ea9-706307d767.zip/node_modules/@commitlint/types/",\
+ "packageDependencies": [\
+ ["@commitlint/types", "npm:18.4.4"],\
+ ["chalk", "npm:4.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/cspell-bundled-dicts", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-cspell-bundled-dicts-npm-8.3.2-951aa74adb-fcd813ef69.zip/node_modules/@cspell/cspell-bundled-dicts/",\
+ "packageDependencies": [\
+ ["@cspell/cspell-bundled-dicts", "npm:8.3.2"],\
+ ["@cspell/dict-ada", "npm:4.0.2"],\
+ ["@cspell/dict-aws", "npm:4.0.1"],\
+ ["@cspell/dict-bash", "npm:4.1.3"],\
+ ["@cspell/dict-companies", "npm:3.0.29"],\
+ ["@cspell/dict-cpp", "npm:5.1.1"],\
+ ["@cspell/dict-cryptocurrencies", "npm:5.0.0"],\
+ ["@cspell/dict-csharp", "npm:4.0.2"],\
+ ["@cspell/dict-css", "npm:4.0.12"],\
+ ["@cspell/dict-dart", "npm:2.0.3"],\
+ ["@cspell/dict-django", "npm:4.1.0"],\
+ ["@cspell/dict-docker", "npm:1.1.7"],\
+ ["@cspell/dict-dotnet", "npm:5.0.0"],\
+ ["@cspell/dict-elixir", "npm:4.0.3"],\
+ ["@cspell/dict-en-common-misspellings", "npm:2.0.0"],\
+ ["@cspell/dict-en-gb", "npm:1.1.33"],\
+ ["@cspell/dict-en_us", "npm:4.3.13"],\
+ ["@cspell/dict-filetypes", "npm:3.0.3"],\
+ ["@cspell/dict-fonts", "npm:4.0.0"],\
+ ["@cspell/dict-fsharp", "npm:1.0.1"],\
+ ["@cspell/dict-fullstack", "npm:3.1.5"],\
+ ["@cspell/dict-gaming-terms", "npm:1.0.4"],\
+ ["@cspell/dict-git", "npm:3.0.0"],\
+ ["@cspell/dict-golang", "npm:6.0.5"],\
+ ["@cspell/dict-haskell", "npm:4.0.1"],\
+ ["@cspell/dict-html", "npm:4.0.5"],\
+ ["@cspell/dict-html-symbol-entities", "npm:4.0.0"],\
+ ["@cspell/dict-java", "npm:5.0.6"],\
+ ["@cspell/dict-k8s", "npm:1.0.2"],\
+ ["@cspell/dict-latex", "npm:4.0.0"],\
+ ["@cspell/dict-lorem-ipsum", "npm:4.0.0"],\
+ ["@cspell/dict-lua", "npm:4.0.3"],\
+ ["@cspell/dict-makefile", "npm:1.0.0"],\
+ ["@cspell/dict-node", "npm:4.0.3"],\
+ ["@cspell/dict-npm", "npm:5.0.14"],\
+ ["@cspell/dict-php", "npm:4.0.5"],\
+ ["@cspell/dict-powershell", "npm:5.0.3"],\
+ ["@cspell/dict-public-licenses", "npm:2.0.5"],\
+ ["@cspell/dict-python", "npm:4.1.11"],\
+ ["@cspell/dict-r", "npm:2.0.1"],\
+ ["@cspell/dict-ruby", "npm:5.0.2"],\
+ ["@cspell/dict-rust", "npm:4.0.2"],\
+ ["@cspell/dict-scala", "npm:5.0.0"],\
+ ["@cspell/dict-software-terms", "npm:3.3.16"],\
+ ["@cspell/dict-sql", "npm:2.1.3"],\
+ ["@cspell/dict-svelte", "npm:1.0.2"],\
+ ["@cspell/dict-swift", "npm:2.0.1"],\
+ ["@cspell/dict-typescript", "npm:3.1.2"],\
+ ["@cspell/dict-vue", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/cspell-json-reporter", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-cspell-json-reporter-npm-8.3.2-eb5186652c-c2f78c4c1e.zip/node_modules/@cspell/cspell-json-reporter/",\
+ "packageDependencies": [\
+ ["@cspell/cspell-json-reporter", "npm:8.3.2"],\
+ ["@cspell/cspell-types", "npm:8.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/cspell-pipe", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-cspell-pipe-npm-8.3.2-eb5e202997-cfda5f46be.zip/node_modules/@cspell/cspell-pipe/",\
+ "packageDependencies": [\
+ ["@cspell/cspell-pipe", "npm:8.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/cspell-resolver", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-cspell-resolver-npm-8.3.2-7d4b8a8eda-1c21fd9d68.zip/node_modules/@cspell/cspell-resolver/",\
+ "packageDependencies": [\
+ ["@cspell/cspell-resolver", "npm:8.3.2"],\
+ ["global-directory", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/cspell-service-bus", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-cspell-service-bus-npm-8.3.2-cc3fbbc9bb-facf07f83d.zip/node_modules/@cspell/cspell-service-bus/",\
+ "packageDependencies": [\
+ ["@cspell/cspell-service-bus", "npm:8.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/cspell-types", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-cspell-types-npm-8.3.2-1dd998a100-664a87dda8.zip/node_modules/@cspell/cspell-types/",\
+ "packageDependencies": [\
+ ["@cspell/cspell-types", "npm:8.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-ada", [\
+ ["npm:4.0.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-ada-npm-4.0.2-c712dc56f7-ef2e34ddfc.zip/node_modules/@cspell/dict-ada/",\
+ "packageDependencies": [\
+ ["@cspell/dict-ada", "npm:4.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-aws", [\
+ ["npm:4.0.1", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-aws-npm-4.0.1-a19848023b-48bc3645f2.zip/node_modules/@cspell/dict-aws/",\
+ "packageDependencies": [\
+ ["@cspell/dict-aws", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-bash", [\
+ ["npm:4.1.3", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-bash-npm-4.1.3-0154f2b1c9-b91920a38d.zip/node_modules/@cspell/dict-bash/",\
+ "packageDependencies": [\
+ ["@cspell/dict-bash", "npm:4.1.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-companies", [\
+ ["npm:3.0.29", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-companies-npm-3.0.29-18c02568a0-fea647617c.zip/node_modules/@cspell/dict-companies/",\
+ "packageDependencies": [\
+ ["@cspell/dict-companies", "npm:3.0.29"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-cpp", [\
+ ["npm:5.1.1", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-cpp-npm-5.1.1-a98d0d1927-20b12e9943.zip/node_modules/@cspell/dict-cpp/",\
+ "packageDependencies": [\
+ ["@cspell/dict-cpp", "npm:5.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-cryptocurrencies", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-cryptocurrencies-npm-5.0.0-6b630d72d9-d5b124eb5d.zip/node_modules/@cspell/dict-cryptocurrencies/",\
+ "packageDependencies": [\
+ ["@cspell/dict-cryptocurrencies", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-csharp", [\
+ ["npm:4.0.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-csharp-npm-4.0.2-a32d6e0e56-146b7edeb8.zip/node_modules/@cspell/dict-csharp/",\
+ "packageDependencies": [\
+ ["@cspell/dict-csharp", "npm:4.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-css", [\
+ ["npm:4.0.12", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-css-npm-4.0.12-37a94c5eaa-aba5755408.zip/node_modules/@cspell/dict-css/",\
+ "packageDependencies": [\
+ ["@cspell/dict-css", "npm:4.0.12"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-dart", [\
+ ["npm:2.0.3", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-dart-npm-2.0.3-6bcbb5e205-640b432ced.zip/node_modules/@cspell/dict-dart/",\
+ "packageDependencies": [\
+ ["@cspell/dict-dart", "npm:2.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-data-science", [\
+ ["npm:1.0.11", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-data-science-npm-1.0.11-80d554e26f-c0d7ffc81c.zip/node_modules/@cspell/dict-data-science/",\
+ "packageDependencies": [\
+ ["@cspell/dict-data-science", "npm:1.0.11"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-django", [\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-django-npm-4.1.0-21815268d5-85b7f58d77.zip/node_modules/@cspell/dict-django/",\
+ "packageDependencies": [\
+ ["@cspell/dict-django", "npm:4.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-docker", [\
+ ["npm:1.1.7", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-docker-npm-1.1.7-47601b3ce1-e34428f3e1.zip/node_modules/@cspell/dict-docker/",\
+ "packageDependencies": [\
+ ["@cspell/dict-docker", "npm:1.1.7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-dotnet", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-dotnet-npm-5.0.0-1021ddef52-b55e2457f1.zip/node_modules/@cspell/dict-dotnet/",\
+ "packageDependencies": [\
+ ["@cspell/dict-dotnet", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-elixir", [\
+ ["npm:4.0.3", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-elixir-npm-4.0.3-eca50587bc-c24b742b06.zip/node_modules/@cspell/dict-elixir/",\
+ "packageDependencies": [\
+ ["@cspell/dict-elixir", "npm:4.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-en-common-misspellings", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-en-common-misspellings-npm-2.0.0-7ddee0adf4-18faa9e763.zip/node_modules/@cspell/dict-en-common-misspellings/",\
+ "packageDependencies": [\
+ ["@cspell/dict-en-common-misspellings", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-en-gb", [\
+ ["npm:1.1.33", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-en-gb-npm-1.1.33-40b98cbc5f-09563d1016.zip/node_modules/@cspell/dict-en-gb/",\
+ "packageDependencies": [\
+ ["@cspell/dict-en-gb", "npm:1.1.33"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-en_us", [\
+ ["npm:4.3.13", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-en_us-npm-4.3.13-b5f78a2dd4-0f3c21c016.zip/node_modules/@cspell/dict-en_us/",\
+ "packageDependencies": [\
+ ["@cspell/dict-en_us", "npm:4.3.13"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-filetypes", [\
+ ["npm:3.0.3", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-filetypes-npm-3.0.3-4b30f7ab3e-0a64f24fc4.zip/node_modules/@cspell/dict-filetypes/",\
+ "packageDependencies": [\
+ ["@cspell/dict-filetypes", "npm:3.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-fonts", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-fonts-npm-4.0.0-8980b7847b-d7b62691eb.zip/node_modules/@cspell/dict-fonts/",\
+ "packageDependencies": [\
+ ["@cspell/dict-fonts", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-fsharp", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-fsharp-npm-1.0.1-1e14e215b4-bc1a83f35e.zip/node_modules/@cspell/dict-fsharp/",\
+ "packageDependencies": [\
+ ["@cspell/dict-fsharp", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-fullstack", [\
+ ["npm:3.1.5", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-fullstack-npm-3.1.5-05a9bb03ad-c6e02b9ac3.zip/node_modules/@cspell/dict-fullstack/",\
+ "packageDependencies": [\
+ ["@cspell/dict-fullstack", "npm:3.1.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-gaming-terms", [\
+ ["npm:1.0.4", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-gaming-terms-npm-1.0.4-ed75efc32a-8ea51cb6a0.zip/node_modules/@cspell/dict-gaming-terms/",\
+ "packageDependencies": [\
+ ["@cspell/dict-gaming-terms", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-git", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-git-npm-3.0.0-eef5fd2377-baf9de7896.zip/node_modules/@cspell/dict-git/",\
+ "packageDependencies": [\
+ ["@cspell/dict-git", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-golang", [\
+ ["npm:6.0.5", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-golang-npm-6.0.5-d007775efd-387cc678d9.zip/node_modules/@cspell/dict-golang/",\
+ "packageDependencies": [\
+ ["@cspell/dict-golang", "npm:6.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-haskell", [\
+ ["npm:4.0.1", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-haskell-npm-4.0.1-16dc237412-7693a06b74.zip/node_modules/@cspell/dict-haskell/",\
+ "packageDependencies": [\
+ ["@cspell/dict-haskell", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-html", [\
+ ["npm:4.0.5", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-html-npm-4.0.5-ab5ae76ecb-6e1b9262bb.zip/node_modules/@cspell/dict-html/",\
+ "packageDependencies": [\
+ ["@cspell/dict-html", "npm:4.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-html-symbol-entities", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-html-symbol-entities-npm-4.0.0-00ba1c0d3f-35d3223f02.zip/node_modules/@cspell/dict-html-symbol-entities/",\
+ "packageDependencies": [\
+ ["@cspell/dict-html-symbol-entities", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-java", [\
+ ["npm:5.0.6", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-java-npm-5.0.6-cb9e3d8c4b-28cacf0fc3.zip/node_modules/@cspell/dict-java/",\
+ "packageDependencies": [\
+ ["@cspell/dict-java", "npm:5.0.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-k8s", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-k8s-npm-1.0.2-027232d77f-ddcd71500a.zip/node_modules/@cspell/dict-k8s/",\
+ "packageDependencies": [\
+ ["@cspell/dict-k8s", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-latex", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-latex-npm-4.0.0-6f15ef0792-d963928663.zip/node_modules/@cspell/dict-latex/",\
+ "packageDependencies": [\
+ ["@cspell/dict-latex", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-lorem-ipsum", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-lorem-ipsum-npm-4.0.0-e811e64680-9f51864366.zip/node_modules/@cspell/dict-lorem-ipsum/",\
+ "packageDependencies": [\
+ ["@cspell/dict-lorem-ipsum", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-lua", [\
+ ["npm:4.0.3", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-lua-npm-4.0.3-fc222ad255-3c6bf9942f.zip/node_modules/@cspell/dict-lua/",\
+ "packageDependencies": [\
+ ["@cspell/dict-lua", "npm:4.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-makefile", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-makefile-npm-1.0.0-c2c37c1d77-b0618d71cf.zip/node_modules/@cspell/dict-makefile/",\
+ "packageDependencies": [\
+ ["@cspell/dict-makefile", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-node", [\
+ ["npm:4.0.3", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-node-npm-4.0.3-47c5cd7b47-334ce75e5d.zip/node_modules/@cspell/dict-node/",\
+ "packageDependencies": [\
+ ["@cspell/dict-node", "npm:4.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-npm", [\
+ ["npm:5.0.14", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-npm-npm-5.0.14-c05011b6a8-d679d1dc12.zip/node_modules/@cspell/dict-npm/",\
+ "packageDependencies": [\
+ ["@cspell/dict-npm", "npm:5.0.14"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-php", [\
+ ["npm:4.0.5", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-php-npm-4.0.5-efceb7daa7-f8910616ab.zip/node_modules/@cspell/dict-php/",\
+ "packageDependencies": [\
+ ["@cspell/dict-php", "npm:4.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-powershell", [\
+ ["npm:5.0.3", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-powershell-npm-5.0.3-b60ba78494-46428e937f.zip/node_modules/@cspell/dict-powershell/",\
+ "packageDependencies": [\
+ ["@cspell/dict-powershell", "npm:5.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-public-licenses", [\
+ ["npm:2.0.5", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-public-licenses-npm-2.0.5-aca88f034c-a03abe9c5d.zip/node_modules/@cspell/dict-public-licenses/",\
+ "packageDependencies": [\
+ ["@cspell/dict-public-licenses", "npm:2.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-python", [\
+ ["npm:4.1.11", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-python-npm-4.1.11-8d4dacedf6-a8f93e0d0d.zip/node_modules/@cspell/dict-python/",\
+ "packageDependencies": [\
+ ["@cspell/dict-python", "npm:4.1.11"],\
+ ["@cspell/dict-data-science", "npm:1.0.11"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-r", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-r-npm-2.0.1-7236acbd8c-c8eead19fe.zip/node_modules/@cspell/dict-r/",\
+ "packageDependencies": [\
+ ["@cspell/dict-r", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-ruby", [\
+ ["npm:5.0.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-ruby-npm-5.0.2-0dec0bb03e-d966f7cef9.zip/node_modules/@cspell/dict-ruby/",\
+ "packageDependencies": [\
+ ["@cspell/dict-ruby", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-rust", [\
+ ["npm:4.0.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-rust-npm-4.0.2-866105f176-628863c3fb.zip/node_modules/@cspell/dict-rust/",\
+ "packageDependencies": [\
+ ["@cspell/dict-rust", "npm:4.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-scala", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-scala-npm-5.0.0-3487b27d62-6ca476b076.zip/node_modules/@cspell/dict-scala/",\
+ "packageDependencies": [\
+ ["@cspell/dict-scala", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-software-terms", [\
+ ["npm:3.3.16", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-software-terms-npm-3.3.16-d2e144b9a7-70d6d0eb3a.zip/node_modules/@cspell/dict-software-terms/",\
+ "packageDependencies": [\
+ ["@cspell/dict-software-terms", "npm:3.3.16"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-sql", [\
+ ["npm:2.1.3", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-sql-npm-2.1.3-efe4b04a44-2b9037e51c.zip/node_modules/@cspell/dict-sql/",\
+ "packageDependencies": [\
+ ["@cspell/dict-sql", "npm:2.1.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-svelte", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-svelte-npm-1.0.2-6709770ee4-bd650fd25d.zip/node_modules/@cspell/dict-svelte/",\
+ "packageDependencies": [\
+ ["@cspell/dict-svelte", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-swift", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-swift-npm-2.0.1-efa2a5b9cb-e29ffc8379.zip/node_modules/@cspell/dict-swift/",\
+ "packageDependencies": [\
+ ["@cspell/dict-swift", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-typescript", [\
+ ["npm:3.1.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-typescript-npm-3.1.2-929df6b99b-275838fae7.zip/node_modules/@cspell/dict-typescript/",\
+ "packageDependencies": [\
+ ["@cspell/dict-typescript", "npm:3.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dict-vue", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/@cspell-dict-vue-npm-3.0.0-99a5f142a5-2995b912e2.zip/node_modules/@cspell/dict-vue/",\
+ "packageDependencies": [\
+ ["@cspell/dict-vue", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/dynamic-import", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-dynamic-import-npm-8.3.2-a94afddc43-21bd5ab5fb.zip/node_modules/@cspell/dynamic-import/",\
+ "packageDependencies": [\
+ ["@cspell/dynamic-import", "npm:8.3.2"],\
+ ["import-meta-resolve", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@cspell/strong-weak-map", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/@cspell-strong-weak-map-npm-8.3.2-a9974430bd-932c8970e0.zip/node_modules/@cspell/strong-weak-map/",\
+ "packageDependencies": [\
+ ["@cspell/strong-weak-map", "npm:8.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@dependents/detective-less", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/@dependents-detective-less-npm-3.0.2-eb59b6f173-112889bd47.zip/node_modules/@dependents/detective-less/",\
+ "packageDependencies": [\
+ ["@dependents/detective-less", "npm:3.0.2"],\
+ ["gonzales-pe", "npm:4.3.0"],\
+ ["node-source-walk", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@eslint-community/eslint-utils", [\
+ ["npm:4.4.0", {\
+ "packageLocation": "./.yarn/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-7e559c4ce5.zip/node_modules/@eslint-community/eslint-utils/",\
+ "packageDependencies": [\
+ ["@eslint-community/eslint-utils", "npm:4.4.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0", {\
+ "packageLocation": "./.yarn/__virtual__/@eslint-community-eslint-utils-virtual-719be7711d/0/cache/@eslint-community-eslint-utils-npm-4.4.0-d1791bd5a3-7e559c4ce5.zip/node_modules/@eslint-community/eslint-utils/",\
+ "packageDependencies": [\
+ ["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\
+ ["@types/eslint", null],\
+ ["eslint", "npm:8.56.0"],\
+ ["eslint-visitor-keys", "npm:3.4.3"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "eslint"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@eslint-community/regexpp", [\
+ ["npm:4.10.0", {\
+ "packageLocation": "./.yarn/cache/@eslint-community-regexpp-npm-4.10.0-6bfb984c81-c5f60ef1f1.zip/node_modules/@eslint-community/regexpp/",\
+ "packageDependencies": [\
+ ["@eslint-community/regexpp", "npm:4.10.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@eslint/eslintrc", [\
+ ["npm:2.1.4", {\
+ "packageLocation": "./.yarn/cache/@eslint-eslintrc-npm-2.1.4-1ff4b5f908-32f67052b8.zip/node_modules/@eslint/eslintrc/",\
+ "packageDependencies": [\
+ ["@eslint/eslintrc", "npm:2.1.4"],\
+ ["ajv", "npm:6.12.6"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["espree", "npm:9.6.1"],\
+ ["globals", "npm:13.24.0"],\
+ ["ignore", "npm:5.3.0"],\
+ ["import-fresh", "npm:3.3.0"],\
+ ["js-yaml", "npm:4.1.0"],\
+ ["minimatch", "npm:3.1.2"],\
+ ["strip-json-comments", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@eslint/js", [\
+ ["npm:8.56.0", {\
+ "packageLocation": "./.yarn/cache/@eslint-js-npm-8.56.0-b1de08cbff-60b3a1cf24.zip/node_modules/@eslint/js/",\
+ "packageDependencies": [\
+ ["@eslint/js", "npm:8.56.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@fast-check/ava", [\
+ ["npm:1.2.1", {\
+ "packageLocation": "./.yarn/cache/@fast-check-ava-npm-1.2.1-b39e961243-3800098fd7.zip/node_modules/@fast-check/ava/",\
+ "packageDependencies": [\
+ ["@fast-check/ava", "npm:1.2.1"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:1.2.1", {\
+ "packageLocation": "./.yarn/__virtual__/@fast-check-ava-virtual-2647c39898/0/cache/@fast-check-ava-npm-1.2.1-b39e961243-3800098fd7.zip/node_modules/@fast-check/ava/",\
+ "packageDependencies": [\
+ ["@fast-check/ava", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:1.2.1"],\
+ ["@types/ava", null],\
+ ["ava", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.1"],\
+ ["fast-check", "npm:3.15.0"]\
+ ],\
+ "packagePeers": [\
+ "@types/ava",\
+ "ava"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@humanwhocodes/config-array", [\
+ ["npm:0.11.14", {\
+ "packageLocation": "./.yarn/cache/@humanwhocodes-config-array-npm-0.11.14-94a02fcc87-66f725b4ee.zip/node_modules/@humanwhocodes/config-array/",\
+ "packageDependencies": [\
+ ["@humanwhocodes/config-array", "npm:0.11.14"],\
+ ["@humanwhocodes/object-schema", "npm:2.0.2"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["minimatch", "npm:3.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@humanwhocodes/module-importer", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/@humanwhocodes-module-importer-npm-1.0.1-9d07ed2e4a-909b69c3b8.zip/node_modules/@humanwhocodes/module-importer/",\
+ "packageDependencies": [\
+ ["@humanwhocodes/module-importer", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@humanwhocodes/object-schema", [\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/@humanwhocodes-object-schema-npm-2.0.2-77b42018f9-6fd83dc320.zip/node_modules/@humanwhocodes/object-schema/",\
+ "packageDependencies": [\
+ ["@humanwhocodes/object-schema", "npm:2.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@hutson/parse-repository-url", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/@hutson-parse-repository-url-npm-3.0.2-ae5ef1b671-d9197757ec.zip/node_modules/@hutson/parse-repository-url/",\
+ "packageDependencies": [\
+ ["@hutson/parse-repository-url", "npm:3.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@isaacs/cliui", [\
+ ["npm:8.0.2", {\
+ "packageLocation": "./.yarn/cache/@isaacs-cliui-npm-8.0.2-f4364666d5-b1bf42535d.zip/node_modules/@isaacs/cliui/",\
+ "packageDependencies": [\
+ ["@isaacs/cliui", "npm:8.0.2"],\
+ ["string-width", "npm:5.1.2"],\
+ ["string-width-cjs", [\
+ "string-width",\
+ "npm:4.2.3"\
+ ]],\
+ ["strip-ansi", "npm:7.1.0"],\
+ ["strip-ansi-cjs", [\
+ "strip-ansi",\
+ "npm:6.0.1"\
+ ]],\
+ ["wrap-ansi", "npm:8.1.0"],\
+ ["wrap-ansi-cjs", [\
+ "wrap-ansi",\
+ "npm:7.0.0"\
+ ]]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@istanbuljs/schema", [\
+ ["npm:0.1.3", {\
+ "packageLocation": "./.yarn/cache/@istanbuljs-schema-npm-0.1.3-466bd3eaaa-61c5286771.zip/node_modules/@istanbuljs/schema/",\
+ "packageDependencies": [\
+ ["@istanbuljs/schema", "npm:0.1.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@jridgewell/resolve-uri", [\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/cache/@jridgewell-resolve-uri-npm-3.1.1-aa2de3f210-0dbc9e29bc.zip/node_modules/@jridgewell/resolve-uri/",\
+ "packageDependencies": [\
+ ["@jridgewell/resolve-uri", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@jridgewell/sourcemap-codec", [\
+ ["npm:1.4.15", {\
+ "packageLocation": "./.yarn/cache/@jridgewell-sourcemap-codec-npm-1.4.15-a055fb62cf-0c6b5ae663.zip/node_modules/@jridgewell/sourcemap-codec/",\
+ "packageDependencies": [\
+ ["@jridgewell/sourcemap-codec", "npm:1.4.15"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@jridgewell/trace-mapping", [\
+ ["npm:0.3.20", {\
+ "packageLocation": "./.yarn/cache/@jridgewell-trace-mapping-npm-0.3.20-d90f282910-0ea0b2675c.zip/node_modules/@jridgewell/trace-mapping/",\
+ "packageDependencies": [\
+ ["@jridgewell/trace-mapping", "npm:0.3.20"],\
+ ["@jridgewell/resolve-uri", "npm:3.1.1"],\
+ ["@jridgewell/sourcemap-codec", "npm:1.4.15"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@mapbox/node-pre-gyp", [\
+ ["npm:1.0.11", {\
+ "packageLocation": "./.yarn/cache/@mapbox-node-pre-gyp-npm-1.0.11-5547f15a2b-2b24b93c31.zip/node_modules/@mapbox/node-pre-gyp/",\
+ "packageDependencies": [\
+ ["@mapbox/node-pre-gyp", "npm:1.0.11"],\
+ ["detect-libc", "npm:2.0.2"],\
+ ["https-proxy-agent", "npm:5.0.1"],\
+ ["make-dir", "npm:3.1.0"],\
+ ["node-fetch", "virtual:5547f15a2bb3d361d141532d43f94523f31e9edfe533f8367b3e26e300194e2978be03f56c09e100afcfee4c02b7fbe13c6ffcf58c613b457a86da522a2979f2#npm:2.7.0"],\
+ ["nopt", "npm:5.0.0"],\
+ ["npmlog", "npm:5.0.1"],\
+ ["rimraf", "npm:3.0.2"],\
+ ["semver", "npm:7.5.4"],\
+ ["tar", "npm:6.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@microsoft/api-documenter", [\
+ ["npm:7.23.16", {\
+ "packageLocation": "./.yarn/cache/@microsoft-api-documenter-npm-7.23.16-916b7e529e-18f1f04571.zip/node_modules/@microsoft/api-documenter/",\
+ "packageDependencies": [\
+ ["@microsoft/api-documenter", "npm:7.23.16"],\
+ ["@microsoft/api-extractor-model", "npm:7.28.4"],\
+ ["@microsoft/tsdoc", "npm:0.14.2"],\
+ ["@rushstack/node-core-library", "virtual:4e9ad17c85095d4c9331f459fba57fb5b9a6171d5dd1cfdaf8e6813eff93c55eca427b0fc1e867f1d2dc84f40484dd7139d10b41a2fbf8671e8f05335366569d#npm:3.63.0"],\
+ ["@rushstack/ts-command-line", "npm:4.17.1"],\
+ ["colors", "npm:1.2.5"],\
+ ["js-yaml", "npm:3.13.1"],\
+ ["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@microsoft/api-extractor", [\
+ ["npm:7.39.1", {\
+ "packageLocation": "./.yarn/cache/@microsoft-api-extractor-npm-7.39.1-ff49b8ae1b-2901854e23.zip/node_modules/@microsoft/api-extractor/",\
+ "packageDependencies": [\
+ ["@microsoft/api-extractor", "npm:7.39.1"],\
+ ["@microsoft/api-extractor-model", "npm:7.28.4"],\
+ ["@microsoft/tsdoc", "npm:0.14.2"],\
+ ["@microsoft/tsdoc-config", "npm:0.16.2"],\
+ ["@rushstack/node-core-library", "virtual:4e9ad17c85095d4c9331f459fba57fb5b9a6171d5dd1cfdaf8e6813eff93c55eca427b0fc1e867f1d2dc84f40484dd7139d10b41a2fbf8671e8f05335366569d#npm:3.63.0"],\
+ ["@rushstack/rig-package", "npm:0.5.1"],\
+ ["@rushstack/ts-command-line", "npm:4.17.1"],\
+ ["colors", "npm:1.2.5"],\
+ ["lodash", "npm:4.17.21"],\
+ ["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"],\
+ ["semver", "npm:7.5.4"],\
+ ["source-map", "npm:0.6.1"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@microsoft/api-extractor-model", [\
+ ["npm:7.28.4", {\
+ "packageLocation": "./.yarn/cache/@microsoft-api-extractor-model-npm-7.28.4-4e9ad17c85-94b3748d4b.zip/node_modules/@microsoft/api-extractor-model/",\
+ "packageDependencies": [\
+ ["@microsoft/api-extractor-model", "npm:7.28.4"],\
+ ["@microsoft/tsdoc", "npm:0.14.2"],\
+ ["@microsoft/tsdoc-config", "npm:0.16.2"],\
+ ["@rushstack/node-core-library", "virtual:4e9ad17c85095d4c9331f459fba57fb5b9a6171d5dd1cfdaf8e6813eff93c55eca427b0fc1e867f1d2dc84f40484dd7139d10b41a2fbf8671e8f05335366569d#npm:3.63.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@microsoft/tsdoc", [\
+ ["npm:0.14.2", {\
+ "packageLocation": "./.yarn/cache/@microsoft-tsdoc-npm-0.14.2-9988282153-c018857ad4.zip/node_modules/@microsoft/tsdoc/",\
+ "packageDependencies": [\
+ ["@microsoft/tsdoc", "npm:0.14.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@microsoft/tsdoc-config", [\
+ ["npm:0.16.2", {\
+ "packageLocation": "./.yarn/cache/@microsoft-tsdoc-config-npm-0.16.2-30fd115d09-9e8c176b68.zip/node_modules/@microsoft/tsdoc-config/",\
+ "packageDependencies": [\
+ ["@microsoft/tsdoc-config", "npm:0.16.2"],\
+ ["@microsoft/tsdoc", "npm:0.14.2"],\
+ ["ajv", "npm:6.12.6"],\
+ ["jju", "npm:1.4.0"],\
+ ["resolve", "patch:resolve@npm%3A1.19.0#optional!builtin::version=1.19.0&hash=c3c19d"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@nodelib/fs.scandir", [\
+ ["npm:2.1.5", {\
+ "packageLocation": "./.yarn/cache/@nodelib-fs.scandir-npm-2.1.5-89c67370dd-732c3b6d1b.zip/node_modules/@nodelib/fs.scandir/",\
+ "packageDependencies": [\
+ ["@nodelib/fs.scandir", "npm:2.1.5"],\
+ ["@nodelib/fs.stat", "npm:2.0.5"],\
+ ["run-parallel", "npm:1.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@nodelib/fs.stat", [\
+ ["npm:2.0.5", {\
+ "packageLocation": "./.yarn/cache/@nodelib-fs.stat-npm-2.0.5-01f4dd3030-88dafe5e3e.zip/node_modules/@nodelib/fs.stat/",\
+ "packageDependencies": [\
+ ["@nodelib/fs.stat", "npm:2.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@nodelib/fs.walk", [\
+ ["npm:1.2.8", {\
+ "packageLocation": "./.yarn/cache/@nodelib-fs.walk-npm-1.2.8-b4a89da548-db9de047c3.zip/node_modules/@nodelib/fs.walk/",\
+ "packageDependencies": [\
+ ["@nodelib/fs.walk", "npm:1.2.8"],\
+ ["@nodelib/fs.scandir", "npm:2.1.5"],\
+ ["fastq", "npm:1.16.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@npmcli/agent", [\
+ ["npm:2.2.0", {\
+ "packageLocation": "./.yarn/cache/@npmcli-agent-npm-2.2.0-cf04e8a830-7b89590598.zip/node_modules/@npmcli/agent/",\
+ "packageDependencies": [\
+ ["@npmcli/agent", "npm:2.2.0"],\
+ ["agent-base", "npm:7.1.0"],\
+ ["http-proxy-agent", "npm:7.0.0"],\
+ ["https-proxy-agent", "npm:7.0.2"],\
+ ["lru-cache", "npm:10.1.0"],\
+ ["socks-proxy-agent", "npm:8.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@npmcli/fs", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/@npmcli-fs-npm-3.1.0-0844a57978-162b4a0b87.zip/node_modules/@npmcli/fs/",\
+ "packageDependencies": [\
+ ["@npmcli/fs", "npm:3.1.0"],\
+ ["semver", "npm:7.5.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@pkgjs/parseargs", [\
+ ["npm:0.11.0", {\
+ "packageLocation": "./.yarn/cache/@pkgjs-parseargs-npm-0.11.0-cd2a3fe948-5bd7576bb1.zip/node_modules/@pkgjs/parseargs/",\
+ "packageDependencies": [\
+ ["@pkgjs/parseargs", "npm:0.11.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@playwright/test", [\
+ ["npm:1.40.1", {\
+ "packageLocation": "./.yarn/cache/@playwright-test-npm-1.40.1-174ee2ce77-1edbc9659f.zip/node_modules/@playwright/test/",\
+ "packageDependencies": [\
+ ["@playwright/test", "npm:1.40.1"],\
+ ["playwright", "npm:1.40.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/plugin-alias", [\
+ ["npm:5.1.0", {\
+ "packageLocation": "./.yarn/cache/@rollup-plugin-alias-npm-5.1.0-5f8a6a898f-fcae5d711b.zip/node_modules/@rollup/plugin-alias/",\
+ "packageDependencies": [\
+ ["@rollup/plugin-alias", "npm:5.1.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:5.1.0", {\
+ "packageLocation": "./.yarn/__virtual__/@rollup-plugin-alias-virtual-f879b1736f/0/cache/@rollup-plugin-alias-npm-5.1.0-5f8a6a898f-fcae5d711b.zip/node_modules/@rollup/plugin-alias/",\
+ "packageDependencies": [\
+ ["@rollup/plugin-alias", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:5.1.0"],\
+ ["@types/rollup", null],\
+ ["rollup", "npm:4.9.4"],\
+ ["slash", "npm:4.0.0"]\
+ ],\
+ "packagePeers": [\
+ "@types/rollup",\
+ "rollup"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/plugin-commonjs", [\
+ ["npm:25.0.7", {\
+ "packageLocation": "./.yarn/cache/@rollup-plugin-commonjs-npm-25.0.7-f5b19139ea-d096af5aed.zip/node_modules/@rollup/plugin-commonjs/",\
+ "packageDependencies": [\
+ ["@rollup/plugin-commonjs", "npm:25.0.7"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:25.0.7", {\
+ "packageLocation": "./.yarn/__virtual__/@rollup-plugin-commonjs-virtual-3623c8d78a/0/cache/@rollup-plugin-commonjs-npm-25.0.7-f5b19139ea-d096af5aed.zip/node_modules/@rollup/plugin-commonjs/",\
+ "packageDependencies": [\
+ ["@rollup/plugin-commonjs", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:25.0.7"],\
+ ["@rollup/pluginutils", "virtual:3623c8d78a2fc97e56a11d9e7e49cd7ea0f8a01d4711968e51f8cbce2d83f86ae56dda9f9578958ba90c1b1ff01e755a070907323dc00549c03d3524be731e8c#npm:5.1.0"],\
+ ["@types/rollup", null],\
+ ["commondir", "npm:1.0.1"],\
+ ["estree-walker", "npm:2.0.2"],\
+ ["glob", "npm:8.1.0"],\
+ ["is-reference", "npm:1.2.1"],\
+ ["magic-string", "npm:0.30.5"],\
+ ["rollup", "npm:4.9.4"]\
+ ],\
+ "packagePeers": [\
+ "@types/rollup",\
+ "rollup"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/plugin-node-resolve", [\
+ ["npm:15.2.3", {\
+ "packageLocation": "./.yarn/cache/@rollup-plugin-node-resolve-npm-15.2.3-f49fe9c656-598c156150.zip/node_modules/@rollup/plugin-node-resolve/",\
+ "packageDependencies": [\
+ ["@rollup/plugin-node-resolve", "npm:15.2.3"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:15.2.3", {\
+ "packageLocation": "./.yarn/__virtual__/@rollup-plugin-node-resolve-virtual-ddb46c60c0/0/cache/@rollup-plugin-node-resolve-npm-15.2.3-f49fe9c656-598c156150.zip/node_modules/@rollup/plugin-node-resolve/",\
+ "packageDependencies": [\
+ ["@rollup/plugin-node-resolve", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:15.2.3"],\
+ ["@rollup/pluginutils", "virtual:3623c8d78a2fc97e56a11d9e7e49cd7ea0f8a01d4711968e51f8cbce2d83f86ae56dda9f9578958ba90c1b1ff01e755a070907323dc00549c03d3524be731e8c#npm:5.1.0"],\
+ ["@types/resolve", "npm:1.20.2"],\
+ ["@types/rollup", null],\
+ ["deepmerge", "npm:4.3.1"],\
+ ["is-builtin-module", "npm:3.2.1"],\
+ ["is-module", "npm:1.0.0"],\
+ ["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"],\
+ ["rollup", "npm:4.9.4"]\
+ ],\
+ "packagePeers": [\
+ "@types/rollup",\
+ "rollup"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/pluginutils", [\
+ ["npm:4.2.1", {\
+ "packageLocation": "./.yarn/cache/@rollup-pluginutils-npm-4.2.1-0f52a5eba2-3ee56b2c8f.zip/node_modules/@rollup/pluginutils/",\
+ "packageDependencies": [\
+ ["@rollup/pluginutils", "npm:4.2.1"],\
+ ["estree-walker", "npm:2.0.2"],\
+ ["picomatch", "npm:2.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.1.0", {\
+ "packageLocation": "./.yarn/cache/@rollup-pluginutils-npm-5.1.0-6939820ef8-c7bed15711.zip/node_modules/@rollup/pluginutils/",\
+ "packageDependencies": [\
+ ["@rollup/pluginutils", "npm:5.1.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:3623c8d78a2fc97e56a11d9e7e49cd7ea0f8a01d4711968e51f8cbce2d83f86ae56dda9f9578958ba90c1b1ff01e755a070907323dc00549c03d3524be731e8c#npm:5.1.0", {\
+ "packageLocation": "./.yarn/__virtual__/@rollup-pluginutils-virtual-12cea79c63/0/cache/@rollup-pluginutils-npm-5.1.0-6939820ef8-c7bed15711.zip/node_modules/@rollup/pluginutils/",\
+ "packageDependencies": [\
+ ["@rollup/pluginutils", "virtual:3623c8d78a2fc97e56a11d9e7e49cd7ea0f8a01d4711968e51f8cbce2d83f86ae56dda9f9578958ba90c1b1ff01e755a070907323dc00549c03d3524be731e8c#npm:5.1.0"],\
+ ["@types/estree", "npm:1.0.5"],\
+ ["@types/rollup", null],\
+ ["estree-walker", "npm:2.0.2"],\
+ ["picomatch", "npm:2.3.1"],\
+ ["rollup", "npm:4.9.4"]\
+ ],\
+ "packagePeers": [\
+ "@types/rollup",\
+ "rollup"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-android-arm-eabi", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-android-arm-eabi-npm-4.9.4-1a045a27db/node_modules/@rollup/rollup-android-arm-eabi/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-android-arm-eabi", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-android-arm64", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-android-arm64-npm-4.9.4-18d3b916f0/node_modules/@rollup/rollup-android-arm64/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-android-arm64", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-darwin-arm64", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-darwin-arm64-npm-4.9.4-406de7d0ac/node_modules/@rollup/rollup-darwin-arm64/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-darwin-arm64", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-darwin-x64", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-darwin-x64-npm-4.9.4-5c9b628ca8/node_modules/@rollup/rollup-darwin-x64/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-darwin-x64", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-linux-arm-gnueabihf", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-arm-gnueabihf-npm-4.9.4-541ef11314/node_modules/@rollup/rollup-linux-arm-gnueabihf/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-linux-arm-gnueabihf", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-linux-arm64-gnu", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-arm64-gnu-npm-4.9.4-e967c544c0/node_modules/@rollup/rollup-linux-arm64-gnu/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-linux-arm64-gnu", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-linux-arm64-musl", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-arm64-musl-npm-4.9.4-89dfeb5a84/node_modules/@rollup/rollup-linux-arm64-musl/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-linux-arm64-musl", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-linux-riscv64-gnu", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-riscv64-gnu-npm-4.9.4-b237bdaddb/node_modules/@rollup/rollup-linux-riscv64-gnu/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-linux-riscv64-gnu", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-linux-x64-gnu", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-x64-gnu-npm-4.9.4-78618958f7/node_modules/@rollup/rollup-linux-x64-gnu/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-linux-x64-gnu", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-linux-x64-musl", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-linux-x64-musl-npm-4.9.4-432e71e740/node_modules/@rollup/rollup-linux-x64-musl/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-linux-x64-musl", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-win32-arm64-msvc", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-win32-arm64-msvc-npm-4.9.4-c22d6aadc1/node_modules/@rollup/rollup-win32-arm64-msvc/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-win32-arm64-msvc", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-win32-ia32-msvc", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-win32-ia32-msvc-npm-4.9.4-3405b5a963/node_modules/@rollup/rollup-win32-ia32-msvc/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-win32-ia32-msvc", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rollup/rollup-win32-x64-msvc", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/unplugged/@rollup-rollup-win32-x64-msvc-npm-4.9.4-66bbd04da6/node_modules/@rollup/rollup-win32-x64-msvc/",\
+ "packageDependencies": [\
+ ["@rollup/rollup-win32-x64-msvc", "npm:4.9.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rushstack/node-core-library", [\
+ ["npm:3.63.0", {\
+ "packageLocation": "./.yarn/cache/@rushstack-node-core-library-npm-3.63.0-0b93d6dab8-a6ecfeeeeb.zip/node_modules/@rushstack/node-core-library/",\
+ "packageDependencies": [\
+ ["@rushstack/node-core-library", "npm:3.63.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:4e9ad17c85095d4c9331f459fba57fb5b9a6171d5dd1cfdaf8e6813eff93c55eca427b0fc1e867f1d2dc84f40484dd7139d10b41a2fbf8671e8f05335366569d#npm:3.63.0", {\
+ "packageLocation": "./.yarn/__virtual__/@rushstack-node-core-library-virtual-59c9c9a071/0/cache/@rushstack-node-core-library-npm-3.63.0-0b93d6dab8-a6ecfeeeeb.zip/node_modules/@rushstack/node-core-library/",\
+ "packageDependencies": [\
+ ["@rushstack/node-core-library", "virtual:4e9ad17c85095d4c9331f459fba57fb5b9a6171d5dd1cfdaf8e6813eff93c55eca427b0fc1e867f1d2dc84f40484dd7139d10b41a2fbf8671e8f05335366569d#npm:3.63.0"],\
+ ["@types/node", null],\
+ ["colors", "npm:1.2.5"],\
+ ["fs-extra", "npm:7.0.1"],\
+ ["import-lazy", "npm:4.0.0"],\
+ ["jju", "npm:1.4.0"],\
+ ["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"],\
+ ["semver", "npm:7.5.4"],\
+ ["z-schema", "npm:5.0.5"]\
+ ],\
+ "packagePeers": [\
+ "@types/node"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rushstack/rig-package", [\
+ ["npm:0.5.1", {\
+ "packageLocation": "./.yarn/cache/@rushstack-rig-package-npm-0.5.1-48ae3999d4-a296125a51.zip/node_modules/@rushstack/rig-package/",\
+ "packageDependencies": [\
+ ["@rushstack/rig-package", "npm:0.5.1"],\
+ ["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"],\
+ ["strip-json-comments", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@rushstack/ts-command-line", [\
+ ["npm:4.17.1", {\
+ "packageLocation": "./.yarn/cache/@rushstack-ts-command-line-npm-4.17.1-479335d0b4-4fd27d2450.zip/node_modules/@rushstack/ts-command-line/",\
+ "packageDependencies": [\
+ ["@rushstack/ts-command-line", "npm:4.17.1"],\
+ ["@types/argparse", "npm:1.0.38"],\
+ ["argparse", "npm:1.0.10"],\
+ ["colors", "npm:1.2.5"],\
+ ["string-argv", "npm:0.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@sindresorhus/merge-streams", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/@sindresorhus-merge-streams-npm-1.0.0-2ae6684f8f-43d0771708.zip/node_modules/@sindresorhus/merge-streams/",\
+ "packageDependencies": [\
+ ["@sindresorhus/merge-streams", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@tokenizer/token", [\
+ ["npm:0.3.0", {\
+ "packageLocation": "./.yarn/cache/@tokenizer-token-npm-0.3.0-4441352cc5-7ab9a822d4.zip/node_modules/@tokenizer/token/",\
+ "packageDependencies": [\
+ ["@tokenizer/token", "npm:0.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/argparse", [\
+ ["npm:1.0.38", {\
+ "packageLocation": "./.yarn/cache/@types-argparse-npm-1.0.38-657c15204c-4fc892da5d.zip/node_modules/@types/argparse/",\
+ "packageDependencies": [\
+ ["@types/argparse", "npm:1.0.38"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/bn.js", [\
+ ["npm:5.1.5", {\
+ "packageLocation": "./.yarn/cache/@types-bn.js-npm-5.1.5-c2195eccd3-e9f375b43d.zip/node_modules/@types/bn.js/",\
+ "packageDependencies": [\
+ ["@types/bn.js", "npm:5.1.5"],\
+ ["@types/node", "npm:20.11.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/body-parser", [\
+ ["npm:1.19.5", {\
+ "packageLocation": "./.yarn/cache/@types-body-parser-npm-1.19.5-97fb106976-aebeb200f2.zip/node_modules/@types/body-parser/",\
+ "packageDependencies": [\
+ ["@types/body-parser", "npm:1.19.5"],\
+ ["@types/connect", "npm:3.4.38"],\
+ ["@types/node", "npm:20.11.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/connect", [\
+ ["npm:3.4.38", {\
+ "packageLocation": "./.yarn/cache/@types-connect-npm-3.4.38-a8a4c38337-2e1cdba2c4.zip/node_modules/@types/connect/",\
+ "packageDependencies": [\
+ ["@types/connect", "npm:3.4.38"],\
+ ["@types/node", "npm:20.11.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/elliptic", [\
+ ["npm:6.4.18", {\
+ "packageLocation": "./.yarn/cache/@types-elliptic-npm-6.4.18-07db1177bc-0c438130b9.zip/node_modules/@types/elliptic/",\
+ "packageDependencies": [\
+ ["@types/elliptic", "npm:6.4.18"],\
+ ["@types/bn.js", "npm:5.1.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/estree", [\
+ ["npm:1.0.5", {\
+ "packageLocation": "./.yarn/cache/@types-estree-npm-1.0.5-5b7faed3b4-b3b0e33428.zip/node_modules/@types/estree/",\
+ "packageDependencies": [\
+ ["@types/estree", "npm:1.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/express", [\
+ ["npm:4.17.21", {\
+ "packageLocation": "./.yarn/cache/@types-express-npm-4.17.21-be92a0245e-12e562c457.zip/node_modules/@types/express/",\
+ "packageDependencies": [\
+ ["@types/express", "npm:4.17.21"],\
+ ["@types/body-parser", "npm:1.19.5"],\
+ ["@types/express-serve-static-core", "npm:4.17.41"],\
+ ["@types/qs", "npm:6.9.11"],\
+ ["@types/serve-static", "npm:1.15.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/express-serve-static-core", [\
+ ["npm:4.17.41", {\
+ "packageLocation": "./.yarn/cache/@types-express-serve-static-core-npm-4.17.41-7d196a92fa-dc166cbf44.zip/node_modules/@types/express-serve-static-core/",\
+ "packageDependencies": [\
+ ["@types/express-serve-static-core", "npm:4.17.41"],\
+ ["@types/node", "npm:20.11.0"],\
+ ["@types/qs", "npm:6.9.11"],\
+ ["@types/range-parser", "npm:1.2.7"],\
+ ["@types/send", "npm:0.17.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/http-errors", [\
+ ["npm:2.0.4", {\
+ "packageLocation": "./.yarn/cache/@types-http-errors-npm-2.0.4-8b39ca5d7c-494670a57a.zip/node_modules/@types/http-errors/",\
+ "packageDependencies": [\
+ ["@types/http-errors", "npm:2.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/istanbul-lib-coverage", [\
+ ["npm:2.0.6", {\
+ "packageLocation": "./.yarn/cache/@types-istanbul-lib-coverage-npm-2.0.6-2ea31fda9c-3948088654.zip/node_modules/@types/istanbul-lib-coverage/",\
+ "packageDependencies": [\
+ ["@types/istanbul-lib-coverage", "npm:2.0.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/json-schema", [\
+ ["npm:7.0.15", {\
+ "packageLocation": "./.yarn/cache/@types-json-schema-npm-7.0.15-fd16381786-a996a745e6.zip/node_modules/@types/json-schema/",\
+ "packageDependencies": [\
+ ["@types/json-schema", "npm:7.0.15"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/json5", [\
+ ["npm:0.0.29", {\
+ "packageLocation": "./.yarn/cache/@types-json5-npm-0.0.29-f63a7916bd-6bf5337bc4.zip/node_modules/@types/json5/",\
+ "packageDependencies": [\
+ ["@types/json5", "npm:0.0.29"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/mime", [\
+ ["npm:1.3.5", {\
+ "packageLocation": "./.yarn/cache/@types-mime-npm-1.3.5-48d28990db-c2ee31cd9b.zip/node_modules/@types/mime/",\
+ "packageDependencies": [\
+ ["@types/mime", "npm:1.3.5"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.4", {\
+ "packageLocation": "./.yarn/cache/@types-mime-npm-3.0.4-5cb286d662-db478bc0f9.zip/node_modules/@types/mime/",\
+ "packageDependencies": [\
+ ["@types/mime", "npm:3.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/minimist", [\
+ ["npm:1.2.5", {\
+ "packageLocation": "./.yarn/cache/@types-minimist-npm-1.2.5-c85664a9d8-3f791258d8.zip/node_modules/@types/minimist/",\
+ "packageDependencies": [\
+ ["@types/minimist", "npm:1.2.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/node", [\
+ ["npm:20.11.0", {\
+ "packageLocation": "./.yarn/cache/@types-node-npm-20.11.0-cb757f0c2a-560aa850df.zip/node_modules/@types/node/",\
+ "packageDependencies": [\
+ ["@types/node", "npm:20.11.0"],\
+ ["undici-types", "npm:5.26.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/normalize-package-data", [\
+ ["npm:2.4.4", {\
+ "packageLocation": "./.yarn/cache/@types-normalize-package-data-npm-2.4.4-676a8ba353-aef7bb9b01.zip/node_modules/@types/normalize-package-data/",\
+ "packageDependencies": [\
+ ["@types/normalize-package-data", "npm:2.4.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/qs", [\
+ ["npm:6.9.11", {\
+ "packageLocation": "./.yarn/cache/@types-qs-npm-6.9.11-e12802ac61-657a50f05b.zip/node_modules/@types/qs/",\
+ "packageDependencies": [\
+ ["@types/qs", "npm:6.9.11"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/range-parser", [\
+ ["npm:1.2.7", {\
+ "packageLocation": "./.yarn/cache/@types-range-parser-npm-1.2.7-a83c0b6429-361bb3e964.zip/node_modules/@types/range-parser/",\
+ "packageDependencies": [\
+ ["@types/range-parser", "npm:1.2.7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/resolve", [\
+ ["npm:1.20.2", {\
+ "packageLocation": "./.yarn/cache/@types-resolve-npm-1.20.2-5fccb2ad46-c5b7e1770f.zip/node_modules/@types/resolve/",\
+ "packageDependencies": [\
+ ["@types/resolve", "npm:1.20.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/semver", [\
+ ["npm:7.5.6", {\
+ "packageLocation": "./.yarn/cache/@types-semver-npm-7.5.6-9d2637fc95-196dc32db5.zip/node_modules/@types/semver/",\
+ "packageDependencies": [\
+ ["@types/semver", "npm:7.5.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/send", [\
+ ["npm:0.17.4", {\
+ "packageLocation": "./.yarn/cache/@types-send-npm-0.17.4-9d7c55577f-7f17fa696c.zip/node_modules/@types/send/",\
+ "packageDependencies": [\
+ ["@types/send", "npm:0.17.4"],\
+ ["@types/mime", "npm:1.3.5"],\
+ ["@types/node", "npm:20.11.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@types/serve-static", [\
+ ["npm:1.15.5", {\
+ "packageLocation": "./.yarn/cache/@types-serve-static-npm-1.15.5-b911ffc092-811d1a2f7e.zip/node_modules/@types/serve-static/",\
+ "packageDependencies": [\
+ ["@types/serve-static", "npm:1.15.5"],\
+ ["@types/http-errors", "npm:2.0.4"],\
+ ["@types/mime", "npm:3.0.4"],\
+ ["@types/node", "npm:20.11.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@typescript-eslint/eslint-plugin", [\
+ ["npm:6.18.1", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-eslint-plugin-npm-6.18.1-afb406fb8f-fbcfae9b92.zip/node_modules/@typescript-eslint/eslint-plugin/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/eslint-plugin", "npm:6.18.1"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1", {\
+ "packageLocation": "./.yarn/__virtual__/@typescript-eslint-eslint-plugin-virtual-0c80d6cec1/0/cache/@typescript-eslint-eslint-plugin-npm-6.18.1-afb406fb8f-fbcfae9b92.zip/node_modules/@typescript-eslint/eslint-plugin/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/eslint-plugin", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["@eslint-community/regexpp", "npm:4.10.0"],\
+ ["@types/eslint", null],\
+ ["@types/typescript", null],\
+ ["@types/typescript-eslint__parser", null],\
+ ["@typescript-eslint/parser", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["@typescript-eslint/scope-manager", "npm:6.18.1"],\
+ ["@typescript-eslint/type-utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:6.18.1"],\
+ ["@typescript-eslint/utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:6.18.1"],\
+ ["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["eslint", "npm:8.56.0"],\
+ ["graphemer", "npm:1.4.0"],\
+ ["ignore", "npm:5.3.0"],\
+ ["natural-compare", "npm:1.4.0"],\
+ ["semver", "npm:7.5.4"],\
+ ["ts-api-utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:1.0.3"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "@types/typescript-eslint__parser",\
+ "@types/typescript",\
+ "@typescript-eslint/parser",\
+ "eslint",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@typescript-eslint/parser", [\
+ ["npm:6.18.1", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-parser-npm-6.18.1-5f9fac0abf-78cf87c49b.zip/node_modules/@typescript-eslint/parser/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/parser", "npm:6.18.1"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1", {\
+ "packageLocation": "./.yarn/__virtual__/@typescript-eslint-parser-virtual-01bdb5d101/0/cache/@typescript-eslint-parser-npm-6.18.1-5f9fac0abf-78cf87c49b.zip/node_modules/@typescript-eslint/parser/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/parser", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["@types/eslint", null],\
+ ["@types/typescript", null],\
+ ["@typescript-eslint/scope-manager", "npm:6.18.1"],\
+ ["@typescript-eslint/types", "npm:6.18.1"],\
+ ["@typescript-eslint/typescript-estree", "virtual:be6bfb49b5428d9c72a0cb13203452e77c9d44fe11a32d7b8023ffbd53cee614b089863c69283f68d64972fd9edd4465c802c37983c7e0e629bb20ff780d0fa6#npm:6.18.1"],\
+ ["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["eslint", "npm:8.56.0"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "@types/typescript",\
+ "eslint",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@typescript-eslint/scope-manager", [\
+ ["npm:6.18.1", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-scope-manager-npm-6.18.1-3f533b51d7-66ef86688a.zip/node_modules/@typescript-eslint/scope-manager/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/scope-manager", "npm:6.18.1"],\
+ ["@typescript-eslint/types", "npm:6.18.1"],\
+ ["@typescript-eslint/visitor-keys", "npm:6.18.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@typescript-eslint/type-utils", [\
+ ["npm:6.18.1", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-type-utils-npm-6.18.1-40d38d6f53-5198752a51.zip/node_modules/@typescript-eslint/type-utils/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/type-utils", "npm:6.18.1"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:6.18.1", {\
+ "packageLocation": "./.yarn/__virtual__/@typescript-eslint-type-utils-virtual-be6bfb49b5/0/cache/@typescript-eslint-type-utils-npm-6.18.1-40d38d6f53-5198752a51.zip/node_modules/@typescript-eslint/type-utils/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/type-utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:6.18.1"],\
+ ["@types/eslint", null],\
+ ["@types/typescript", null],\
+ ["@typescript-eslint/typescript-estree", "virtual:be6bfb49b5428d9c72a0cb13203452e77c9d44fe11a32d7b8023ffbd53cee614b089863c69283f68d64972fd9edd4465c802c37983c7e0e629bb20ff780d0fa6#npm:6.18.1"],\
+ ["@typescript-eslint/utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:6.18.1"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["eslint", "npm:8.56.0"],\
+ ["ts-api-utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:1.0.3"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "@types/typescript",\
+ "eslint",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@typescript-eslint/types", [\
+ ["npm:4.33.0", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-4.33.0-9e9b956afa-6c94780a58.zip/node_modules/@typescript-eslint/types/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/types", "npm:4.33.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.62.0", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-5.62.0-5c2e0aab15-7febd3a7f0.zip/node_modules/@typescript-eslint/types/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/types", "npm:5.62.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.18.1", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-types-npm-6.18.1-a106ef5c16-58c1a1bcf2.zip/node_modules/@typescript-eslint/types/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/types", "npm:6.18.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@typescript-eslint/typescript-estree", [\
+ ["npm:4.33.0", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-4.33.0-b6b79c10d0-67609a7bdd.zip/node_modules/@typescript-eslint/typescript-estree/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/typescript-estree", "npm:4.33.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["npm:5.62.0", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-5.62.0-5d1ea132a9-d7984a3e9d.zip/node_modules/@typescript-eslint/typescript-estree/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/typescript-estree", "npm:5.62.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["npm:6.18.1", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-typescript-estree-npm-6.18.1-8c1bf6eb4a-5bca8f58d3.zip/node_modules/@typescript-eslint/typescript-estree/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/typescript-estree", "npm:6.18.1"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:7acec9484f01c68f8aa5f9931e6ffc696653513b41af7f3d08663c42ada1d00ee091c13e0780af9dcf735ec8a6e052660a87dc109342f3525583cf5ed4b2167b#npm:5.62.0", {\
+ "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-d25122643b/0/cache/@typescript-eslint-typescript-estree-npm-5.62.0-5d1ea132a9-d7984a3e9d.zip/node_modules/@typescript-eslint/typescript-estree/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/typescript-estree", "virtual:7acec9484f01c68f8aa5f9931e6ffc696653513b41af7f3d08663c42ada1d00ee091c13e0780af9dcf735ec8a6e052660a87dc109342f3525583cf5ed4b2167b#npm:5.62.0"],\
+ ["@types/typescript", null],\
+ ["@typescript-eslint/types", "npm:5.62.0"],\
+ ["@typescript-eslint/visitor-keys", "npm:5.62.0"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["globby", "npm:11.1.0"],\
+ ["is-glob", "npm:4.0.3"],\
+ ["semver", "npm:7.5.4"],\
+ ["tsutils", "virtual:d25122643b329d297f1158bdbbeb452d30b524ea62c42db7395547701b59d0cea14496f7d76f91f55bbcf1d1440cf89bd89ae4b0cd0a6ebd7928883f9bf0dba3#npm:3.21.0"],\
+ ["typescript", "patch:typescript@npm%3A4.9.5#optional!builtin::version=4.9.5&hash=289587"]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["virtual:8e35e61358256be2b5d90a559e3a3772257ad03ed9eac447b59935c934deb801b60b5640e0d64c4d3d6d217d8ee32f9d0f8b6df724cdfa9f0a254f75b7b6a4c5#npm:6.18.1", {\
+ "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-45f7b3e074/0/cache/@typescript-eslint-typescript-estree-npm-6.18.1-8c1bf6eb4a-5bca8f58d3.zip/node_modules/@typescript-eslint/typescript-estree/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/typescript-estree", "virtual:8e35e61358256be2b5d90a559e3a3772257ad03ed9eac447b59935c934deb801b60b5640e0d64c4d3d6d217d8ee32f9d0f8b6df724cdfa9f0a254f75b7b6a4c5#npm:6.18.1"],\
+ ["@types/typescript", null],\
+ ["@typescript-eslint/types", "npm:6.18.1"],\
+ ["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["globby", "npm:11.1.0"],\
+ ["is-glob", "npm:4.0.3"],\
+ ["minimatch", "npm:9.0.3"],\
+ ["semver", "npm:7.5.4"],\
+ ["ts-api-utils", "virtual:45f7b3e074718861e9d412f1461999483dee0f73f35f1e6f12ded75c3c5b62cd2bcff5f531367f4b6732c1e89724ee8d5efc7a3515fd1f1d59d8f1ab11edf9ed#npm:1.0.3"],\
+ ["typescript", null]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["virtual:aa734fe5910ab2043ff5b76d2c49e3a3aff381cfe805800a92c03671e0b66da8ec7f2fc8ded6c6952cec7a57f0f439fa45d51213f03f478f98eb208ccfd5b76b#npm:4.33.0", {\
+ "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-40b7528656/0/cache/@typescript-eslint-typescript-estree-npm-4.33.0-b6b79c10d0-67609a7bdd.zip/node_modules/@typescript-eslint/typescript-estree/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/typescript-estree", "virtual:aa734fe5910ab2043ff5b76d2c49e3a3aff381cfe805800a92c03671e0b66da8ec7f2fc8ded6c6952cec7a57f0f439fa45d51213f03f478f98eb208ccfd5b76b#npm:4.33.0"],\
+ ["@types/typescript", null],\
+ ["@typescript-eslint/types", "npm:4.33.0"],\
+ ["@typescript-eslint/visitor-keys", "npm:4.33.0"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["globby", "npm:11.1.0"],\
+ ["is-glob", "npm:4.0.3"],\
+ ["semver", "npm:7.5.4"],\
+ ["tsutils", "virtual:40b7528656205285b7eb6c8a2b798d03c881f5fc5f312b0ac13d2de58079f2f1fefdc278b4177d7b19c2e1c30a289310b9c005566bdd606e08fd4846ffc54362#npm:3.21.0"],\
+ ["typescript", "patch:typescript@npm%3A3.9.10#optional!builtin::version=3.9.10&hash=3bd3d3"]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["virtual:be6bfb49b5428d9c72a0cb13203452e77c9d44fe11a32d7b8023ffbd53cee614b089863c69283f68d64972fd9edd4465c802c37983c7e0e629bb20ff780d0fa6#npm:6.18.1", {\
+ "packageLocation": "./.yarn/__virtual__/@typescript-eslint-typescript-estree-virtual-861dd30074/0/cache/@typescript-eslint-typescript-estree-npm-6.18.1-8c1bf6eb4a-5bca8f58d3.zip/node_modules/@typescript-eslint/typescript-estree/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/typescript-estree", "virtual:be6bfb49b5428d9c72a0cb13203452e77c9d44fe11a32d7b8023ffbd53cee614b089863c69283f68d64972fd9edd4465c802c37983c7e0e629bb20ff780d0fa6#npm:6.18.1"],\
+ ["@types/typescript", null],\
+ ["@typescript-eslint/types", "npm:6.18.1"],\
+ ["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["globby", "npm:11.1.0"],\
+ ["is-glob", "npm:4.0.3"],\
+ ["minimatch", "npm:9.0.3"],\
+ ["semver", "npm:7.5.4"],\
+ ["ts-api-utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:1.0.3"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@typescript-eslint/utils", [\
+ ["npm:6.18.1", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-utils-npm-6.18.1-6a422bc632-b9dcb2fa7c.zip/node_modules/@typescript-eslint/utils/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/utils", "npm:6.18.1"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:6.18.1", {\
+ "packageLocation": "./.yarn/__virtual__/@typescript-eslint-utils-virtual-8e35e61358/0/cache/@typescript-eslint-utils-npm-6.18.1-6a422bc632-b9dcb2fa7c.zip/node_modules/@typescript-eslint/utils/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:6.18.1"],\
+ ["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\
+ ["@types/eslint", null],\
+ ["@types/json-schema", "npm:7.0.15"],\
+ ["@types/semver", "npm:7.5.6"],\
+ ["@typescript-eslint/scope-manager", "npm:6.18.1"],\
+ ["@typescript-eslint/types", "npm:6.18.1"],\
+ ["@typescript-eslint/typescript-estree", "virtual:8e35e61358256be2b5d90a559e3a3772257ad03ed9eac447b59935c934deb801b60b5640e0d64c4d3d6d217d8ee32f9d0f8b6df724cdfa9f0a254f75b7b6a4c5#npm:6.18.1"],\
+ ["eslint", "npm:8.56.0"],\
+ ["semver", "npm:7.5.4"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "eslint"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@typescript-eslint/visitor-keys", [\
+ ["npm:4.33.0", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-4.33.0-8b7e72a3c9-95b3904db6.zip/node_modules/@typescript-eslint/visitor-keys/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/visitor-keys", "npm:4.33.0"],\
+ ["@typescript-eslint/types", "npm:4.33.0"],\
+ ["eslint-visitor-keys", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.62.0", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-5.62.0-da1af55f83-7c3b8e4148.zip/node_modules/@typescript-eslint/visitor-keys/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/visitor-keys", "npm:5.62.0"],\
+ ["@typescript-eslint/types", "npm:5.62.0"],\
+ ["eslint-visitor-keys", "npm:3.4.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.18.1", {\
+ "packageLocation": "./.yarn/cache/@typescript-eslint-visitor-keys-npm-6.18.1-1fdb3bad24-f3dacdd1db.zip/node_modules/@typescript-eslint/visitor-keys/",\
+ "packageDependencies": [\
+ ["@typescript-eslint/visitor-keys", "npm:6.18.1"],\
+ ["@typescript-eslint/types", "npm:6.18.1"],\
+ ["eslint-visitor-keys", "npm:3.4.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@ungap/structured-clone", [\
+ ["npm:1.2.0", {\
+ "packageLocation": "./.yarn/cache/@ungap-structured-clone-npm-1.2.0-648f0b82e0-8209c937cb.zip/node_modules/@ungap/structured-clone/",\
+ "packageDependencies": [\
+ ["@ungap/structured-clone", "npm:1.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["@vercel/nft", [\
+ ["npm:0.24.4", {\
+ "packageLocation": "./.yarn/cache/@vercel-nft-npm-0.24.4-80d5529913-1a845a8c15.zip/node_modules/@vercel/nft/",\
+ "packageDependencies": [\
+ ["@vercel/nft", "npm:0.24.4"],\
+ ["@mapbox/node-pre-gyp", "npm:1.0.11"],\
+ ["@rollup/pluginutils", "npm:4.2.1"],\
+ ["acorn", "npm:8.11.3"],\
+ ["async-sema", "npm:3.1.1"],\
+ ["bindings", "npm:1.5.0"],\
+ ["estree-walker", "npm:2.0.2"],\
+ ["glob", "npm:7.2.3"],\
+ ["graceful-fs", "npm:4.2.11"],\
+ ["micromatch", "npm:4.0.5"],\
+ ["node-gyp-build", "npm:4.8.0"],\
+ ["resolve-from", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["JSONStream", [\
+ ["npm:1.3.5", {\
+ "packageLocation": "./.yarn/cache/JSONStream-npm-1.3.5-1987f2e6dd-0f54694da3.zip/node_modules/JSONStream/",\
+ "packageDependencies": [\
+ ["JSONStream", "npm:1.3.5"],\
+ ["jsonparse", "npm:1.3.1"],\
+ ["through", "npm:2.3.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["abbrev", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/abbrev-npm-1.1.1-3659247eab-3f76267770.zip/node_modules/abbrev/",\
+ "packageDependencies": [\
+ ["abbrev", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/abbrev-npm-2.0.0-0eb38a17e5-f742a5a107.zip/node_modules/abbrev/",\
+ "packageDependencies": [\
+ ["abbrev", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["accepts", [\
+ ["npm:1.3.8", {\
+ "packageLocation": "./.yarn/cache/accepts-npm-1.3.8-9a812371c9-3a35c5f558.zip/node_modules/accepts/",\
+ "packageDependencies": [\
+ ["accepts", "npm:1.3.8"],\
+ ["mime-types", "npm:2.1.35"],\
+ ["negotiator", "npm:0.6.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["acorn", [\
+ ["npm:8.11.3", {\
+ "packageLocation": "./.yarn/cache/acorn-npm-8.11.3-0d7ab48b38-3ff155f881.zip/node_modules/acorn/",\
+ "packageDependencies": [\
+ ["acorn", "npm:8.11.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["acorn-jsx", [\
+ ["npm:5.3.2", {\
+ "packageLocation": "./.yarn/cache/acorn-jsx-npm-5.3.2-d7594599ea-4c54868fbe.zip/node_modules/acorn-jsx/",\
+ "packageDependencies": [\
+ ["acorn-jsx", "npm:5.3.2"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:a50722a5a9326b6a5f12350c494c4db3aa0f4caeac45e3e9e5fe071da20014ecfe738fe2ebe2c9c98abae81a4ea86b42f56d776b3bd5ec37f9ad3670c242b242#npm:5.3.2", {\
+ "packageLocation": "./.yarn/__virtual__/acorn-jsx-virtual-834321b202/0/cache/acorn-jsx-npm-5.3.2-d7594599ea-4c54868fbe.zip/node_modules/acorn-jsx/",\
+ "packageDependencies": [\
+ ["acorn-jsx", "virtual:a50722a5a9326b6a5f12350c494c4db3aa0f4caeac45e3e9e5fe071da20014ecfe738fe2ebe2c9c98abae81a4ea86b42f56d776b3bd5ec37f9ad3670c242b242#npm:5.3.2"],\
+ ["@types/acorn", null],\
+ ["acorn", "npm:8.11.3"]\
+ ],\
+ "packagePeers": [\
+ "@types/acorn",\
+ "acorn"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["acorn-walk", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/acorn-walk-npm-8.3.2-df039a42bf-7e2a8dad54.zip/node_modules/acorn-walk/",\
+ "packageDependencies": [\
+ ["acorn-walk", "npm:8.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["add-stream", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/add-stream-npm-1.0.0-a5a0c0498c-985014a14e.zip/node_modules/add-stream/",\
+ "packageDependencies": [\
+ ["add-stream", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["agent-base", [\
+ ["npm:6.0.2", {\
+ "packageLocation": "./.yarn/cache/agent-base-npm-6.0.2-428f325a93-dc4f757e40.zip/node_modules/agent-base/",\
+ "packageDependencies": [\
+ ["agent-base", "npm:6.0.2"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.1.0", {\
+ "packageLocation": "./.yarn/cache/agent-base-npm-7.1.0-4b12ba5111-fc974ab57f.zip/node_modules/agent-base/",\
+ "packageDependencies": [\
+ ["agent-base", "npm:7.1.0"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["aggregate-error", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/aggregate-error-npm-3.1.0-415a406f4e-a42f67faa7.zip/node_modules/aggregate-error/",\
+ "packageDependencies": [\
+ ["aggregate-error", "npm:3.1.0"],\
+ ["clean-stack", "npm:2.2.0"],\
+ ["indent-string", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.1", {\
+ "packageLocation": "./.yarn/cache/aggregate-error-npm-4.0.1-12d0501fb7-75fd739f5c.zip/node_modules/aggregate-error/",\
+ "packageDependencies": [\
+ ["aggregate-error", "npm:4.0.1"],\
+ ["clean-stack", "npm:4.2.0"],\
+ ["indent-string", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ajv", [\
+ ["npm:6.12.6", {\
+ "packageLocation": "./.yarn/cache/ajv-npm-6.12.6-4b5105e2b2-41e23642cb.zip/node_modules/ajv/",\
+ "packageDependencies": [\
+ ["ajv", "npm:6.12.6"],\
+ ["fast-deep-equal", "npm:3.1.3"],\
+ ["fast-json-stable-stringify", "npm:2.1.0"],\
+ ["json-schema-traverse", "npm:0.4.1"],\
+ ["uri-js", "npm:4.4.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:8.12.0", {\
+ "packageLocation": "./.yarn/cache/ajv-npm-8.12.0-3bf6e30741-ac4f72adf7.zip/node_modules/ajv/",\
+ "packageDependencies": [\
+ ["ajv", "npm:8.12.0"],\
+ ["fast-deep-equal", "npm:3.1.3"],\
+ ["json-schema-traverse", "npm:1.0.0"],\
+ ["require-from-string", "npm:2.0.2"],\
+ ["uri-js", "npm:4.4.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ajv-cli", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/ajv-cli-npm-5.0.0-e12d6f3c52-91c70cb399.zip/node_modules/ajv-cli/",\
+ "packageDependencies": [\
+ ["ajv-cli", "npm:5.0.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:5.0.0", {\
+ "packageLocation": "./.yarn/__virtual__/ajv-cli-virtual-d5efd73224/0/cache/ajv-cli-npm-5.0.0-e12d6f3c52-91c70cb399.zip/node_modules/ajv-cli/",\
+ "packageDependencies": [\
+ ["ajv-cli", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:5.0.0"],\
+ ["@types/ts-node", null],\
+ ["ajv", "npm:8.12.0"],\
+ ["fast-json-patch", "npm:2.2.1"],\
+ ["glob", "npm:7.2.3"],\
+ ["js-yaml", "npm:3.14.1"],\
+ ["json-schema-migrate", "npm:2.0.0"],\
+ ["json5", "npm:2.2.3"],\
+ ["minimist", "npm:1.2.8"],\
+ ["ts-node", null]\
+ ],\
+ "packagePeers": [\
+ "@types/ts-node",\
+ "ts-node"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ansi-escapes", [\
+ ["npm:4.3.2", {\
+ "packageLocation": "./.yarn/cache/ansi-escapes-npm-4.3.2-3ad173702f-da917be018.zip/node_modules/ansi-escapes/",\
+ "packageDependencies": [\
+ ["ansi-escapes", "npm:4.3.2"],\
+ ["type-fest", "npm:0.21.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ansi-regex", [\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/ansi-regex-npm-5.0.1-c963a48615-9a64bb8627.zip/node_modules/ansi-regex/",\
+ "packageDependencies": [\
+ ["ansi-regex", "npm:5.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.0.1", {\
+ "packageLocation": "./.yarn/cache/ansi-regex-npm-6.0.1-8d663a607d-cbe16dbd2c.zip/node_modules/ansi-regex/",\
+ "packageDependencies": [\
+ ["ansi-regex", "npm:6.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ansi-sequence-parser", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/ansi-sequence-parser-npm-1.1.1-4cfd5b85e2-ab2259ccf6.zip/node_modules/ansi-sequence-parser/",\
+ "packageDependencies": [\
+ ["ansi-sequence-parser", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ansi-styles", [\
+ ["npm:3.2.1", {\
+ "packageLocation": "./.yarn/cache/ansi-styles-npm-3.2.1-8cb8107983-ece5a8ef06.zip/node_modules/ansi-styles/",\
+ "packageDependencies": [\
+ ["ansi-styles", "npm:3.2.1"],\
+ ["color-convert", "npm:1.9.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.3.0", {\
+ "packageLocation": "./.yarn/cache/ansi-styles-npm-4.3.0-245c7d42c7-895a23929d.zip/node_modules/ansi-styles/",\
+ "packageDependencies": [\
+ ["ansi-styles", "npm:4.3.0"],\
+ ["color-convert", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.2.1", {\
+ "packageLocation": "./.yarn/cache/ansi-styles-npm-6.2.1-d43647018c-5d1ec38c12.zip/node_modules/ansi-styles/",\
+ "packageDependencies": [\
+ ["ansi-styles", "npm:6.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["any-promise", [\
+ ["npm:1.3.0", {\
+ "packageLocation": "./.yarn/cache/any-promise-npm-1.3.0-f34eeaa7e7-60f0298ed3.zip/node_modules/any-promise/",\
+ "packageDependencies": [\
+ ["any-promise", "npm:1.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["app-module-path", [\
+ ["npm:2.2.0", {\
+ "packageLocation": "./.yarn/cache/app-module-path-npm-2.2.0-71fdc42bce-0d6d581dce.zip/node_modules/app-module-path/",\
+ "packageDependencies": [\
+ ["app-module-path", "npm:2.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["aproba", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/aproba-npm-2.0.0-8716bcfde6-d06e26384a.zip/node_modules/aproba/",\
+ "packageDependencies": [\
+ ["aproba", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["are-we-there-yet", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/are-we-there-yet-npm-2.0.0-7d2f5201ce-375f753c10.zip/node_modules/are-we-there-yet/",\
+ "packageDependencies": [\
+ ["are-we-there-yet", "npm:2.0.0"],\
+ ["delegates", "npm:1.0.0"],\
+ ["readable-stream", "npm:3.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["argparse", [\
+ ["npm:1.0.10", {\
+ "packageLocation": "./.yarn/cache/argparse-npm-1.0.10-528934e59d-b2972c5c23.zip/node_modules/argparse/",\
+ "packageDependencies": [\
+ ["argparse", "npm:1.0.10"],\
+ ["sprintf-js", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/argparse-npm-2.0.1-faff7999e6-c5640c2d89.zip/node_modules/argparse/",\
+ "packageDependencies": [\
+ ["argparse", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array-buffer-byte-length", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/array-buffer-byte-length-npm-1.0.0-331671f28a-12f84f6418.zip/node_modules/array-buffer-byte-length/",\
+ "packageDependencies": [\
+ ["array-buffer-byte-length", "npm:1.0.0"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["is-array-buffer", "npm:3.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array-find-index", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/array-find-index-npm-1.0.2-a7d5fbff35-86b9485c74.zip/node_modules/array-find-index/",\
+ "packageDependencies": [\
+ ["array-find-index", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array-flatten", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/array-flatten-npm-1.1.1-9d94ad5f1d-806966c8ab.zip/node_modules/array-flatten/",\
+ "packageDependencies": [\
+ ["array-flatten", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array-ify", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/array-ify-npm-1.0.0-e09a371977-75c9c072fa.zip/node_modules/array-ify/",\
+ "packageDependencies": [\
+ ["array-ify", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array-includes", [\
+ ["npm:3.1.7", {\
+ "packageLocation": "./.yarn/cache/array-includes-npm-3.1.7-d32a5ee179-692907bd7f.zip/node_modules/array-includes/",\
+ "packageDependencies": [\
+ ["array-includes", "npm:3.1.7"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["is-string", "npm:1.0.7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array-timsort", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/array-timsort-npm-1.0.3-50b9e6724f-bd3a1707b6.zip/node_modules/array-timsort/",\
+ "packageDependencies": [\
+ ["array-timsort", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array-union", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/array-union-npm-2.1.0-4e4852b221-429897e681.zip/node_modules/array-union/",\
+ "packageDependencies": [\
+ ["array-union", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array.prototype.findlastindex", [\
+ ["npm:1.2.3", {\
+ "packageLocation": "./.yarn/cache/array.prototype.findlastindex-npm-1.2.3-2a36f4417b-2c5c4d3f07.zip/node_modules/array.prototype.findlastindex/",\
+ "packageDependencies": [\
+ ["array.prototype.findlastindex", "npm:1.2.3"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"],\
+ ["es-shim-unscopables", "npm:1.0.2"],\
+ ["get-intrinsic", "npm:1.2.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array.prototype.flat", [\
+ ["npm:1.3.2", {\
+ "packageLocation": "./.yarn/cache/array.prototype.flat-npm-1.3.2-350729f7f4-a578ed836a.zip/node_modules/array.prototype.flat/",\
+ "packageDependencies": [\
+ ["array.prototype.flat", "npm:1.3.2"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"],\
+ ["es-shim-unscopables", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["array.prototype.flatmap", [\
+ ["npm:1.3.2", {\
+ "packageLocation": "./.yarn/cache/array.prototype.flatmap-npm-1.3.2-5c6a4af226-67b3f1d602.zip/node_modules/array.prototype.flatmap/",\
+ "packageDependencies": [\
+ ["array.prototype.flatmap", "npm:1.3.2"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"],\
+ ["es-shim-unscopables", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["arraybuffer.prototype.slice", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/arraybuffer.prototype.slice-npm-1.0.2-4eda52ad8c-96b6e40e43.zip/node_modules/arraybuffer.prototype.slice/",\
+ "packageDependencies": [\
+ ["arraybuffer.prototype.slice", "npm:1.0.2"],\
+ ["array-buffer-byte-length", "npm:1.0.0"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["is-array-buffer", "npm:3.0.2"],\
+ ["is-shared-array-buffer", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["arrgv", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/arrgv-npm-1.0.2-2f5078bb50-7e6e782e6b.zip/node_modules/arrgv/",\
+ "packageDependencies": [\
+ ["arrgv", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["arrify", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/arrify-npm-1.0.1-affafba9fe-c35c8d1a81.zip/node_modules/arrify/",\
+ "packageDependencies": [\
+ ["arrify", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/arrify-npm-3.0.0-84cf7a301c-2e26601b84.zip/node_modules/arrify/",\
+ "packageDependencies": [\
+ ["arrify", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["asmcrypto.js", [\
+ ["npm:2.3.2", {\
+ "packageLocation": "./.yarn/cache/asmcrypto.js-npm-2.3.2-7e6e6cafba-777c0c5eab.zip/node_modules/asmcrypto.js/",\
+ "packageDependencies": [\
+ ["asmcrypto.js", "npm:2.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ast-module-types", [\
+ ["npm:2.7.1", {\
+ "packageLocation": "./.yarn/cache/ast-module-types-npm-2.7.1-1833572dd9-df94462e98.zip/node_modules/ast-module-types/",\
+ "packageDependencies": [\
+ ["ast-module-types", "npm:2.7.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/ast-module-types-npm-3.0.0-2f08e895f4-4270d4e90d.zip/node_modules/ast-module-types/",\
+ "packageDependencies": [\
+ ["ast-module-types", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/ast-module-types-npm-4.0.0-1d93ec3f90-5ade59e75a.zip/node_modules/ast-module-types/",\
+ "packageDependencies": [\
+ ["ast-module-types", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["async-sema", [\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/cache/async-sema-npm-3.1.1-a5453a4d6a-a16da9f7f2.zip/node_modules/async-sema/",\
+ "packageDependencies": [\
+ ["async-sema", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["at-least-node", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/at-least-node-npm-1.0.0-2b36e661fa-4c058baf6d.zip/node_modules/at-least-node/",\
+ "packageDependencies": [\
+ ["at-least-node", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ava", [\
+ ["npm:6.0.1", {\
+ "packageLocation": "./.yarn/cache/ava-npm-6.0.1-dbddac242f-dce43b3600.zip/node_modules/ava/",\
+ "packageDependencies": [\
+ ["ava", "npm:6.0.1"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.1", {\
+ "packageLocation": "./.yarn/__virtual__/ava-virtual-20275f09c0/0/cache/ava-npm-6.0.1-dbddac242f-dce43b3600.zip/node_modules/ava/",\
+ "packageDependencies": [\
+ ["ava", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.1"],\
+ ["@ava/typescript", "npm:4.1.0"],\
+ ["@types/ava__typescript", null],\
+ ["@vercel/nft", "npm:0.24.4"],\
+ ["acorn", "npm:8.11.3"],\
+ ["acorn-walk", "npm:8.3.2"],\
+ ["ansi-styles", "npm:6.2.1"],\
+ ["arrgv", "npm:1.0.2"],\
+ ["arrify", "npm:3.0.0"],\
+ ["callsites", "npm:4.1.0"],\
+ ["cbor", "npm:9.0.1"],\
+ ["chalk", "npm:5.3.0"],\
+ ["chunkd", "npm:2.0.1"],\
+ ["ci-info", "npm:4.0.0"],\
+ ["ci-parallel-vars", "npm:1.0.1"],\
+ ["cli-truncate", "npm:4.0.0"],\
+ ["code-excerpt", "npm:4.0.0"],\
+ ["common-path-prefix", "npm:3.0.0"],\
+ ["concordance", "npm:5.0.4"],\
+ ["currently-unhandled", "npm:0.4.1"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["emittery", "npm:1.0.1"],\
+ ["figures", "npm:6.0.1"],\
+ ["globby", "npm:14.0.0"],\
+ ["ignore-by-default", "npm:2.1.0"],\
+ ["indent-string", "npm:5.0.0"],\
+ ["is-plain-object", "npm:5.0.0"],\
+ ["is-promise", "npm:4.0.0"],\
+ ["matcher", "npm:5.0.0"],\
+ ["memoize", "npm:10.0.0"],\
+ ["ms", "npm:2.1.3"],\
+ ["p-map", "npm:6.0.0"],\
+ ["package-config", "npm:5.0.0"],\
+ ["picomatch", "npm:3.0.1"],\
+ ["plur", "npm:5.1.0"],\
+ ["pretty-ms", "npm:8.0.0"],\
+ ["resolve-cwd", "npm:3.0.0"],\
+ ["stack-utils", "npm:2.0.6"],\
+ ["strip-ansi", "npm:7.1.0"],\
+ ["supertap", "npm:3.0.1"],\
+ ["temp-dir", "npm:3.0.0"],\
+ ["write-file-atomic", "npm:5.0.1"],\
+ ["yargs", "npm:17.7.2"]\
+ ],\
+ "packagePeers": [\
+ "@ava/typescript",\
+ "@types/ava__typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["available-typed-arrays", [\
+ ["npm:1.0.5", {\
+ "packageLocation": "./.yarn/cache/available-typed-arrays-npm-1.0.5-88f321e4d3-c4df567ca7.zip/node_modules/available-typed-arrays/",\
+ "packageDependencies": [\
+ ["available-typed-arrays", "npm:1.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["balanced-match", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/balanced-match-npm-1.0.2-a53c126459-9308baf0a7.zip/node_modules/balanced-match/",\
+ "packageDependencies": [\
+ ["balanced-match", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["base-x", [\
+ ["npm:3.0.9", {\
+ "packageLocation": "./.yarn/cache/base-x-npm-3.0.9-7b2588e106-e6bbeae30b.zip/node_modules/base-x/",\
+ "packageDependencies": [\
+ ["base-x", "npm:3.0.9"],\
+ ["safe-buffer", "npm:5.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["base64-js", [\
+ ["npm:1.5.1", {\
+ "packageLocation": "./.yarn/cache/base64-js-npm-1.5.1-b2f7275641-f23823513b.zip/node_modules/base64-js/",\
+ "packageDependencies": [\
+ ["base64-js", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bech32", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/bech32-npm-2.0.0-ad98b7dd79-45e7cc6275.zip/node_modules/bech32/",\
+ "packageDependencies": [\
+ ["bech32", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["benchmark", [\
+ ["npm:2.1.4", {\
+ "packageLocation": "./.yarn/cache/benchmark-npm-2.1.4-3d024a205e-510224c01f.zip/node_modules/benchmark/",\
+ "packageDependencies": [\
+ ["benchmark", "npm:2.1.4"],\
+ ["lodash", "npm:4.17.21"],\
+ ["platform", "npm:1.3.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bigi", [\
+ ["npm:1.4.2", {\
+ "packageLocation": "./.yarn/cache/bigi-npm-1.4.2-e1940a4956-59acf628a3.zip/node_modules/bigi/",\
+ "packageDependencies": [\
+ ["bigi", "npm:1.4.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bindings", [\
+ ["npm:1.5.0", {\
+ "packageLocation": "./.yarn/cache/bindings-npm-1.5.0-77ce1d213c-3dab2491b4.zip/node_modules/bindings/",\
+ "packageDependencies": [\
+ ["bindings", "npm:1.5.0"],\
+ ["file-uri-to-path", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bip-schnorr", [\
+ ["npm:0.6.4", {\
+ "packageLocation": "./.yarn/cache/bip-schnorr-npm-0.6.4-9f0fad8f4b-64d0b45901.zip/node_modules/bip-schnorr/",\
+ "packageDependencies": [\
+ ["bip-schnorr", "npm:0.6.4"],\
+ ["bigi", "npm:1.4.2"],\
+ ["ecurve", "npm:1.0.6"],\
+ ["js-sha256", "npm:0.9.0"],\
+ ["randombytes", "npm:2.1.0"],\
+ ["safe-buffer", "npm:5.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bitcore-lib", [\
+ ["npm:10.0.23", {\
+ "packageLocation": "./.yarn/cache/bitcore-lib-npm-10.0.23-75b1927db3-23f9a639da.zip/node_modules/bitcore-lib/",\
+ "packageDependencies": [\
+ ["bitcore-lib", "npm:10.0.23"],\
+ ["bech32", "npm:2.0.0"],\
+ ["bip-schnorr", "npm:0.6.4"],\
+ ["bn.js", "npm:4.11.8"],\
+ ["bs58", "npm:4.0.1"],\
+ ["buffer-compare", "npm:1.1.1"],\
+ ["elliptic", "npm:6.5.4"],\
+ ["inherits", "npm:2.0.1"],\
+ ["lodash", "npm:4.17.21"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bitcore-lib-cash", [\
+ ["npm:10.0.23", {\
+ "packageLocation": "./.yarn/cache/bitcore-lib-cash-npm-10.0.23-880f1384b2-e865343dff.zip/node_modules/bitcore-lib-cash/",\
+ "packageDependencies": [\
+ ["bitcore-lib-cash", "npm:10.0.23"],\
+ ["bitcore-lib", "npm:10.0.23"],\
+ ["bn.js", "npm:4.11.8"],\
+ ["bs58", "npm:4.0.1"],\
+ ["buffer-compare", "npm:1.1.1"],\
+ ["elliptic", "npm:6.5.4"],\
+ ["inherits", "npm:2.0.1"],\
+ ["lodash", "npm:4.17.21"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bl", [\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/bl-npm-4.1.0-7f94cdcf3f-02847e1d2c.zip/node_modules/bl/",\
+ "packageDependencies": [\
+ ["bl", "npm:4.1.0"],\
+ ["buffer", "npm:5.7.1"],\
+ ["inherits", "npm:2.0.4"],\
+ ["readable-stream", "npm:3.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bluebird", [\
+ ["npm:3.7.2", {\
+ "packageLocation": "./.yarn/cache/bluebird-npm-3.7.2-6a54136ee3-680de03adc.zip/node_modules/bluebird/",\
+ "packageDependencies": [\
+ ["bluebird", "npm:3.7.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["blueimp-md5", [\
+ ["npm:2.19.0", {\
+ "packageLocation": "./.yarn/cache/blueimp-md5-npm-2.19.0-0a19585c8c-85d0434353.zip/node_modules/blueimp-md5/",\
+ "packageDependencies": [\
+ ["blueimp-md5", "npm:2.19.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bn.js", [\
+ ["npm:4.11.8", {\
+ "packageLocation": "./.yarn/cache/bn.js-npm-4.11.8-296affce9a-d1bd5f8721.zip/node_modules/bn.js/",\
+ "packageDependencies": [\
+ ["bn.js", "npm:4.11.8"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.12.0", {\
+ "packageLocation": "./.yarn/cache/bn.js-npm-4.12.0-3ec6c884f6-9736aaa317.zip/node_modules/bn.js/",\
+ "packageDependencies": [\
+ ["bn.js", "npm:4.12.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["body-parser", [\
+ ["npm:1.20.1", {\
+ "packageLocation": "./.yarn/cache/body-parser-npm-1.20.1-759fd14db9-a202d493e2.zip/node_modules/body-parser/",\
+ "packageDependencies": [\
+ ["body-parser", "npm:1.20.1"],\
+ ["bytes", "npm:3.1.2"],\
+ ["content-type", "npm:1.0.5"],\
+ ["debug", "virtual:3840e914156da5bf3a0152609f7597e38b893022314c08ba5b292edc820681760ec6c83dde1d34d78aa58a3f32c7d8c9d754f99860fa71136383ec1e2a87f57d#npm:2.6.9"],\
+ ["depd", "npm:2.0.0"],\
+ ["destroy", "npm:1.2.0"],\
+ ["http-errors", "npm:2.0.0"],\
+ ["iconv-lite", "npm:0.4.24"],\
+ ["on-finished", "npm:2.4.1"],\
+ ["qs", "npm:6.11.0"],\
+ ["raw-body", "npm:2.5.1"],\
+ ["type-is", "npm:1.6.18"],\
+ ["unpipe", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["brace-expansion", [\
+ ["npm:1.1.11", {\
+ "packageLocation": "./.yarn/cache/brace-expansion-npm-1.1.11-fb95eb05ad-695a56cd05.zip/node_modules/brace-expansion/",\
+ "packageDependencies": [\
+ ["brace-expansion", "npm:1.1.11"],\
+ ["balanced-match", "npm:1.0.2"],\
+ ["concat-map", "npm:0.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/brace-expansion-npm-2.0.1-17aa2616f9-b358f2fe06.zip/node_modules/brace-expansion/",\
+ "packageDependencies": [\
+ ["brace-expansion", "npm:2.0.1"],\
+ ["balanced-match", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["braces", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/braces-npm-3.0.2-782240b28a-321b4d6757.zip/node_modules/braces/",\
+ "packageDependencies": [\
+ ["braces", "npm:3.0.2"],\
+ ["fill-range", "npm:7.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["brorand", [\
+ ["npm:1.1.0", {\
+ "packageLocation": "./.yarn/cache/brorand-npm-1.1.0-ea86634c4b-6f366d7c49.zip/node_modules/brorand/",\
+ "packageDependencies": [\
+ ["brorand", "npm:1.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bs58", [\
+ ["npm:4.0.1", {\
+ "packageLocation": "./.yarn/cache/bs58-npm-4.0.1-8d2a7822b1-613a1b1441.zip/node_modules/bs58/",\
+ "packageDependencies": [\
+ ["bs58", "npm:4.0.1"],\
+ ["base-x", "npm:3.0.9"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["buffer", [\
+ ["npm:5.7.1", {\
+ "packageLocation": "./.yarn/cache/buffer-npm-5.7.1-513ef8259e-27cac81cff.zip/node_modules/buffer/",\
+ "packageDependencies": [\
+ ["buffer", "npm:5.7.1"],\
+ ["base64-js", "npm:1.5.1"],\
+ ["ieee754", "npm:1.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["buffer-compare", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/buffer-compare-npm-1.1.1-4ea57f3a1d-3c47e7a3b4.zip/node_modules/buffer-compare/",\
+ "packageDependencies": [\
+ ["buffer-compare", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["buffer-from", [\
+ ["npm:1.1.2", {\
+ "packageLocation": "./.yarn/cache/buffer-from-npm-1.1.2-03d2f20d7e-124fff9d66.zip/node_modules/buffer-from/",\
+ "packageDependencies": [\
+ ["buffer-from", "npm:1.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["builtin-modules", [\
+ ["npm:3.3.0", {\
+ "packageLocation": "./.yarn/cache/builtin-modules-npm-3.3.0-db4f3d32de-2cb3448b4f.zip/node_modules/builtin-modules/",\
+ "packageDependencies": [\
+ ["builtin-modules", "npm:3.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bundle-name", [\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/bundle-name-npm-4.1.0-4688335533-8e575981e7.zip/node_modules/bundle-name/",\
+ "packageDependencies": [\
+ ["bundle-name", "npm:4.1.0"],\
+ ["run-applescript", "npm:7.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["bytes", [\
+ ["npm:3.1.2", {\
+ "packageLocation": "./.yarn/cache/bytes-npm-3.1.2-28b8643004-76d1c43cbd.zip/node_modules/bytes/",\
+ "packageDependencies": [\
+ ["bytes", "npm:3.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["c8", [\
+ ["npm:9.0.0", {\
+ "packageLocation": "./.yarn/cache/c8-npm-9.0.0-a08ede145f-d1be07d8a7.zip/node_modules/c8/",\
+ "packageDependencies": [\
+ ["c8", "npm:9.0.0"],\
+ ["@bcoe/v8-coverage", "npm:0.2.3"],\
+ ["@istanbuljs/schema", "npm:0.1.3"],\
+ ["find-up", "npm:5.0.0"],\
+ ["foreground-child", "npm:3.1.1"],\
+ ["istanbul-lib-coverage", "npm:3.2.2"],\
+ ["istanbul-lib-report", "npm:3.0.1"],\
+ ["istanbul-reports", "npm:3.1.6"],\
+ ["test-exclude", "npm:6.0.0"],\
+ ["v8-to-istanbul", "npm:9.2.0"],\
+ ["yargs", "npm:17.7.2"],\
+ ["yargs-parser", "npm:21.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cacache", [\
+ ["npm:18.0.2", {\
+ "packageLocation": "./.yarn/cache/cacache-npm-18.0.2-d6329a1b9d-7992665305.zip/node_modules/cacache/",\
+ "packageDependencies": [\
+ ["cacache", "npm:18.0.2"],\
+ ["@npmcli/fs", "npm:3.1.0"],\
+ ["fs-minipass", "npm:3.0.3"],\
+ ["glob", "npm:10.3.10"],\
+ ["lru-cache", "npm:10.1.0"],\
+ ["minipass", "npm:7.0.4"],\
+ ["minipass-collect", "npm:2.0.1"],\
+ ["minipass-flush", "npm:1.0.5"],\
+ ["minipass-pipeline", "npm:1.2.4"],\
+ ["p-map", "npm:4.0.0"],\
+ ["ssri", "npm:10.0.5"],\
+ ["tar", "npm:6.2.0"],\
+ ["unique-filename", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cachedir", [\
+ ["npm:2.3.0", {\
+ "packageLocation": "./.yarn/cache/cachedir-npm-2.3.0-640dc16bbb-8380a4a4aa.zip/node_modules/cachedir/",\
+ "packageDependencies": [\
+ ["cachedir", "npm:2.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["call-bind", [\
+ ["npm:1.0.5", {\
+ "packageLocation": "./.yarn/cache/call-bind-npm-1.0.5-65600fae47-a6172c168f.zip/node_modules/call-bind/",\
+ "packageDependencies": [\
+ ["call-bind", "npm:1.0.5"],\
+ ["function-bind", "npm:1.1.2"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["set-function-length", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["callsites", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/callsites-npm-3.1.0-268f989910-fff9227740.zip/node_modules/callsites/",\
+ "packageDependencies": [\
+ ["callsites", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/callsites-npm-4.1.0-4af8da43e9-9170084412.zip/node_modules/callsites/",\
+ "packageDependencies": [\
+ ["callsites", "npm:4.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["camelcase", [\
+ ["npm:5.3.1", {\
+ "packageLocation": "./.yarn/cache/camelcase-npm-5.3.1-5db8af62c5-92ff9b443b.zip/node_modules/camelcase/",\
+ "packageDependencies": [\
+ ["camelcase", "npm:5.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["camelcase-keys", [\
+ ["npm:6.2.2", {\
+ "packageLocation": "./.yarn/cache/camelcase-keys-npm-6.2.2-d13777ec12-bf1a28348c.zip/node_modules/camelcase-keys/",\
+ "packageDependencies": [\
+ ["camelcase-keys", "npm:6.2.2"],\
+ ["camelcase", "npm:5.3.1"],\
+ ["map-obj", "npm:4.3.0"],\
+ ["quick-lru", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cbor", [\
+ ["npm:9.0.1", {\
+ "packageLocation": "./.yarn/cache/cbor-npm-9.0.1-3a5a6b7751-7a5148d31f.zip/node_modules/cbor/",\
+ "packageDependencies": [\
+ ["cbor", "npm:9.0.1"],\
+ ["nofilter", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["chalk", [\
+ ["npm:2.4.2", {\
+ "packageLocation": "./.yarn/cache/chalk-npm-2.4.2-3ea16dd91e-e6543f02ec.zip/node_modules/chalk/",\
+ "packageDependencies": [\
+ ["chalk", "npm:2.4.2"],\
+ ["ansi-styles", "npm:3.2.1"],\
+ ["escape-string-regexp", "npm:1.0.5"],\
+ ["supports-color", "npm:5.5.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.2", {\
+ "packageLocation": "./.yarn/cache/chalk-npm-4.1.2-ba8b67ab80-4a3fef5cc3.zip/node_modules/chalk/",\
+ "packageDependencies": [\
+ ["chalk", "npm:4.1.2"],\
+ ["ansi-styles", "npm:4.3.0"],\
+ ["supports-color", "npm:7.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.3.0", {\
+ "packageLocation": "./.yarn/cache/chalk-npm-5.3.0-d181999efb-8297d436b2.zip/node_modules/chalk/",\
+ "packageDependencies": [\
+ ["chalk", "npm:5.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["chalk-template", [\
+ ["npm:1.1.0", {\
+ "packageLocation": "./.yarn/cache/chalk-template-npm-1.1.0-2310bf686b-bb6eda6115.zip/node_modules/chalk-template/",\
+ "packageDependencies": [\
+ ["chalk-template", "npm:1.1.0"],\
+ ["chalk", "npm:5.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["chardet", [\
+ ["npm:0.7.0", {\
+ "packageLocation": "./.yarn/cache/chardet-npm-0.7.0-27933dd6c7-96e4731b9e.zip/node_modules/chardet/",\
+ "packageDependencies": [\
+ ["chardet", "npm:0.7.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["chownr", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/chownr-npm-2.0.0-638f1c9c61-594754e130.zip/node_modules/chownr/",\
+ "packageDependencies": [\
+ ["chownr", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["chuhai", [\
+ ["npm:1.2.0", {\
+ "packageLocation": "./.yarn/cache/chuhai-npm-1.2.0-3840e91415-af4683162b.zip/node_modules/chuhai/",\
+ "packageDependencies": [\
+ ["chuhai", "npm:1.2.0"],\
+ ["benchmark", "npm:2.1.4"],\
+ ["bluebird", "npm:3.7.2"],\
+ ["debug", "virtual:3840e914156da5bf3a0152609f7597e38b893022314c08ba5b292edc820681760ec6c83dde1d34d78aa58a3f32c7d8c9d754f99860fa71136383ec1e2a87f57d#npm:2.6.9"],\
+ ["fn-name", "npm:2.0.1"],\
+ ["lodash", "npm:4.17.21"],\
+ ["stack-utils", "npm:0.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["chunkd", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/chunkd-npm-2.0.1-2a1d1afad0-4e0c5aac60.zip/node_modules/chunkd/",\
+ "packageDependencies": [\
+ ["chunkd", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ci-info", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/ci-info-npm-4.0.0-90a0683096-ecc003e5b6.zip/node_modules/ci-info/",\
+ "packageDependencies": [\
+ ["ci-info", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ci-parallel-vars", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/ci-parallel-vars-npm-1.0.1-27c813d568-80952f699c.zip/node_modules/ci-parallel-vars/",\
+ "packageDependencies": [\
+ ["ci-parallel-vars", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["clean-stack", [\
+ ["npm:2.2.0", {\
+ "packageLocation": "./.yarn/cache/clean-stack-npm-2.2.0-a8ce435a5c-1f90262d5f.zip/node_modules/clean-stack/",\
+ "packageDependencies": [\
+ ["clean-stack", "npm:2.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.2.0", {\
+ "packageLocation": "./.yarn/cache/clean-stack-npm-4.2.0-bb0dff47b2-2bdf981a0f.zip/node_modules/clean-stack/",\
+ "packageDependencies": [\
+ ["clean-stack", "npm:4.2.0"],\
+ ["escape-string-regexp", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["clear-module", [\
+ ["npm:4.1.2", {\
+ "packageLocation": "./.yarn/cache/clear-module-npm-4.1.2-8178e7e490-73207f06af.zip/node_modules/clear-module/",\
+ "packageDependencies": [\
+ ["clear-module", "npm:4.1.2"],\
+ ["parent-module", "npm:2.0.0"],\
+ ["resolve-from", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cli-cursor", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/cli-cursor-npm-3.1.0-fee1e46b5e-92a2f98ff9.zip/node_modules/cli-cursor/",\
+ "packageDependencies": [\
+ ["cli-cursor", "npm:3.1.0"],\
+ ["restore-cursor", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cli-spinners", [\
+ ["npm:2.9.2", {\
+ "packageLocation": "./.yarn/cache/cli-spinners-npm-2.9.2-be9c08efee-907a1c227d.zip/node_modules/cli-spinners/",\
+ "packageDependencies": [\
+ ["cli-spinners", "npm:2.9.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cli-truncate", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/cli-truncate-npm-4.0.0-3113917cdb-d7f0b73e3d.zip/node_modules/cli-truncate/",\
+ "packageDependencies": [\
+ ["cli-truncate", "npm:4.0.0"],\
+ ["slice-ansi", "npm:5.0.0"],\
+ ["string-width", "npm:7.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cli-width", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/cli-width-npm-3.0.0-387b3f68f9-125a62810e.zip/node_modules/cli-width/",\
+ "packageDependencies": [\
+ ["cli-width", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cliui", [\
+ ["npm:7.0.4", {\
+ "packageLocation": "./.yarn/cache/cliui-npm-7.0.4-d6b8a9edb6-6035f5daf7.zip/node_modules/cliui/",\
+ "packageDependencies": [\
+ ["cliui", "npm:7.0.4"],\
+ ["string-width", "npm:4.2.3"],\
+ ["strip-ansi", "npm:6.0.1"],\
+ ["wrap-ansi", "npm:7.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:8.0.1", {\
+ "packageLocation": "./.yarn/cache/cliui-npm-8.0.1-3b029092cf-4bda0f09c3.zip/node_modules/cliui/",\
+ "packageDependencies": [\
+ ["cliui", "npm:8.0.1"],\
+ ["string-width", "npm:4.2.3"],\
+ ["strip-ansi", "npm:6.0.1"],\
+ ["wrap-ansi", "npm:7.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["clone", [\
+ ["npm:1.0.4", {\
+ "packageLocation": "./.yarn/cache/clone-npm-1.0.4-a610fcbcf9-2176952b36.zip/node_modules/clone/",\
+ "packageDependencies": [\
+ ["clone", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["code-excerpt", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/code-excerpt-npm-4.0.0-f453325e6e-b6c5a06e03.zip/node_modules/code-excerpt/",\
+ "packageDependencies": [\
+ ["code-excerpt", "npm:4.0.0"],\
+ ["convert-to-spaces", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["color-convert", [\
+ ["npm:1.9.3", {\
+ "packageLocation": "./.yarn/cache/color-convert-npm-1.9.3-1fe690075e-5ad3c53494.zip/node_modules/color-convert/",\
+ "packageDependencies": [\
+ ["color-convert", "npm:1.9.3"],\
+ ["color-name", "npm:1.1.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/color-convert-npm-2.0.1-79730e935b-37e1150172.zip/node_modules/color-convert/",\
+ "packageDependencies": [\
+ ["color-convert", "npm:2.0.1"],\
+ ["color-name", "npm:1.1.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["color-name", [\
+ ["npm:1.1.3", {\
+ "packageLocation": "./.yarn/cache/color-name-npm-1.1.3-728b7b5d39-566a3d42cc.zip/node_modules/color-name/",\
+ "packageDependencies": [\
+ ["color-name", "npm:1.1.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:1.1.4", {\
+ "packageLocation": "./.yarn/cache/color-name-npm-1.1.4-025792b0ea-a1a3f91415.zip/node_modules/color-name/",\
+ "packageDependencies": [\
+ ["color-name", "npm:1.1.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["color-support", [\
+ ["npm:1.1.3", {\
+ "packageLocation": "./.yarn/cache/color-support-npm-1.1.3-3be5c53455-8ffeaa270a.zip/node_modules/color-support/",\
+ "packageDependencies": [\
+ ["color-support", "npm:1.1.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["colors", [\
+ ["npm:1.2.5", {\
+ "packageLocation": "./.yarn/cache/colors-npm-1.2.5-891bb7682f-f4acebf2d2.zip/node_modules/colors/",\
+ "packageDependencies": [\
+ ["colors", "npm:1.2.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["commander", [\
+ ["npm:11.1.0", {\
+ "packageLocation": "./.yarn/cache/commander-npm-11.1.0-56e979613c-13cc6ac875.zip/node_modules/commander/",\
+ "packageDependencies": [\
+ ["commander", "npm:11.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.20.3", {\
+ "packageLocation": "./.yarn/cache/commander-npm-2.20.3-d8dcbaa39b-74c781a524.zip/node_modules/commander/",\
+ "packageDependencies": [\
+ ["commander", "npm:2.20.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.2.0", {\
+ "packageLocation": "./.yarn/cache/commander-npm-7.2.0-19178180f8-8d690ff13b.zip/node_modules/commander/",\
+ "packageDependencies": [\
+ ["commander", "npm:7.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:9.5.0", {\
+ "packageLocation": "./.yarn/cache/commander-npm-9.5.0-993b3f2434-5f7784fbda.zip/node_modules/commander/",\
+ "packageDependencies": [\
+ ["commander", "npm:9.5.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["comment-json", [\
+ ["npm:4.2.3", {\
+ "packageLocation": "./.yarn/cache/comment-json-npm-4.2.3-5f699ecc8d-e8a0d3a6d7.zip/node_modules/comment-json/",\
+ "packageDependencies": [\
+ ["comment-json", "npm:4.2.3"],\
+ ["array-timsort", "npm:1.0.3"],\
+ ["core-util-is", "npm:1.0.3"],\
+ ["esprima", "npm:4.0.1"],\
+ ["has-own-prop", "npm:2.0.0"],\
+ ["repeat-string", "npm:1.6.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["commitizen", [\
+ ["npm:4.3.0", {\
+ "packageLocation": "./.yarn/cache/commitizen-npm-4.3.0-3695cdaf66-889d2d28e3.zip/node_modules/commitizen/",\
+ "packageDependencies": [\
+ ["commitizen", "npm:4.3.0"],\
+ ["cachedir", "npm:2.3.0"],\
+ ["cz-conventional-changelog", "npm:3.3.0"],\
+ ["dedent", "npm:0.7.0"],\
+ ["detect-indent", "npm:6.1.0"],\
+ ["find-node-modules", "npm:2.1.3"],\
+ ["find-root", "npm:1.1.0"],\
+ ["fs-extra", "npm:9.1.0"],\
+ ["glob", "npm:7.2.3"],\
+ ["inquirer", "npm:8.2.5"],\
+ ["is-utf8", "npm:0.2.1"],\
+ ["lodash", "npm:4.17.21"],\
+ ["minimist", "npm:1.2.7"],\
+ ["strip-bom", "npm:4.0.0"],\
+ ["strip-json-comments", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["common-path-prefix", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/common-path-prefix-npm-3.0.0-68b78785c1-c4a74294e1.zip/node_modules/common-path-prefix/",\
+ "packageDependencies": [\
+ ["common-path-prefix", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["commondir", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/commondir-npm-1.0.1-291b790340-33a124960e.zip/node_modules/commondir/",\
+ "packageDependencies": [\
+ ["commondir", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["compare-func", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/compare-func-npm-2.0.0-9cd7852f23-78bd4dd4ed.zip/node_modules/compare-func/",\
+ "packageDependencies": [\
+ ["compare-func", "npm:2.0.0"],\
+ ["array-ify", "npm:1.0.0"],\
+ ["dot-prop", "npm:5.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["concat-map", [\
+ ["npm:0.0.1", {\
+ "packageLocation": "./.yarn/cache/concat-map-npm-0.0.1-85a921b7ee-c996b1cfdf.zip/node_modules/concat-map/",\
+ "packageDependencies": [\
+ ["concat-map", "npm:0.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["concat-stream", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/concat-stream-npm-2.0.0-8bb2ad5aa0-29565dd919.zip/node_modules/concat-stream/",\
+ "packageDependencies": [\
+ ["concat-stream", "npm:2.0.0"],\
+ ["buffer-from", "npm:1.1.2"],\
+ ["inherits", "npm:2.0.4"],\
+ ["readable-stream", "npm:3.6.2"],\
+ ["typedarray", "npm:0.0.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["concordance", [\
+ ["npm:5.0.4", {\
+ "packageLocation": "./.yarn/cache/concordance-npm-5.0.4-e641405dd9-59b440f330.zip/node_modules/concordance/",\
+ "packageDependencies": [\
+ ["concordance", "npm:5.0.4"],\
+ ["date-time", "npm:3.1.0"],\
+ ["esutils", "npm:2.0.3"],\
+ ["fast-diff", "npm:1.3.0"],\
+ ["js-string-escape", "npm:1.0.1"],\
+ ["lodash", "npm:4.17.21"],\
+ ["md5-hex", "npm:3.0.1"],\
+ ["semver", "npm:7.5.4"],\
+ ["well-known-symbols", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["configstore", [\
+ ["npm:6.0.0", {\
+ "packageLocation": "./.yarn/cache/configstore-npm-6.0.0-410b4e0bf5-6681a96038.zip/node_modules/configstore/",\
+ "packageDependencies": [\
+ ["configstore", "npm:6.0.0"],\
+ ["dot-prop", "npm:6.0.1"],\
+ ["graceful-fs", "npm:4.2.11"],\
+ ["unique-string", "npm:3.0.0"],\
+ ["write-file-atomic", "npm:3.0.3"],\
+ ["xdg-basedir", "npm:5.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["console-control-strings", [\
+ ["npm:1.1.0", {\
+ "packageLocation": "./.yarn/cache/console-control-strings-npm-1.1.0-e3160e5275-7ab51d30b5.zip/node_modules/console-control-strings/",\
+ "packageDependencies": [\
+ ["console-control-strings", "npm:1.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["content-disposition", [\
+ ["npm:0.5.4", {\
+ "packageLocation": "./.yarn/cache/content-disposition-npm-0.5.4-2d93678616-bac0316ebf.zip/node_modules/content-disposition/",\
+ "packageDependencies": [\
+ ["content-disposition", "npm:0.5.4"],\
+ ["safe-buffer", "npm:5.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["content-type", [\
+ ["npm:1.0.5", {\
+ "packageLocation": "./.yarn/cache/content-type-npm-1.0.5-3e037bf9ab-b76ebed15c.zip/node_modules/content-type/",\
+ "packageDependencies": [\
+ ["content-type", "npm:1.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog", [\
+ ["npm:3.1.25", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-npm-3.1.25-dfc69e696b-8065d5d742.zip/node_modules/conventional-changelog/",\
+ "packageDependencies": [\
+ ["conventional-changelog", "npm:3.1.25"],\
+ ["conventional-changelog-angular", "npm:5.0.13"],\
+ ["conventional-changelog-atom", "npm:2.0.8"],\
+ ["conventional-changelog-codemirror", "npm:2.0.8"],\
+ ["conventional-changelog-conventionalcommits", "npm:4.6.3"],\
+ ["conventional-changelog-core", "npm:4.2.4"],\
+ ["conventional-changelog-ember", "npm:2.0.9"],\
+ ["conventional-changelog-eslint", "npm:3.0.9"],\
+ ["conventional-changelog-express", "npm:2.0.6"],\
+ ["conventional-changelog-jquery", "npm:3.0.11"],\
+ ["conventional-changelog-jshint", "npm:2.0.9"],\
+ ["conventional-changelog-preset-loader", "npm:2.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-angular", [\
+ ["npm:5.0.13", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-angular-npm-5.0.13-50e4a302c4-bca711b835.zip/node_modules/conventional-changelog-angular/",\
+ "packageDependencies": [\
+ ["conventional-changelog-angular", "npm:5.0.13"],\
+ ["compare-func", "npm:2.0.0"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-atom", [\
+ ["npm:2.0.8", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-atom-npm-2.0.8-ab61571c15-1c7e971e8b.zip/node_modules/conventional-changelog-atom/",\
+ "packageDependencies": [\
+ ["conventional-changelog-atom", "npm:2.0.8"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-codemirror", [\
+ ["npm:2.0.8", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-codemirror-npm-2.0.8-342d72f6a3-467c8c0dae.zip/node_modules/conventional-changelog-codemirror/",\
+ "packageDependencies": [\
+ ["conventional-changelog-codemirror", "npm:2.0.8"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-config-spec", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-config-spec-npm-2.1.0-267a163a1a-9448758697.zip/node_modules/conventional-changelog-config-spec/",\
+ "packageDependencies": [\
+ ["conventional-changelog-config-spec", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-conventionalcommits", [\
+ ["npm:4.6.3", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-conventionalcommits-npm-4.6.3-8a4923dc62-f3b5e6132e.zip/node_modules/conventional-changelog-conventionalcommits/",\
+ "packageDependencies": [\
+ ["conventional-changelog-conventionalcommits", "npm:4.6.3"],\
+ ["compare-func", "npm:2.0.0"],\
+ ["lodash", "npm:4.17.21"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-core", [\
+ ["npm:4.2.4", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-core-npm-4.2.4-3507358941-4c9f303502.zip/node_modules/conventional-changelog-core/",\
+ "packageDependencies": [\
+ ["conventional-changelog-core", "npm:4.2.4"],\
+ ["add-stream", "npm:1.0.0"],\
+ ["conventional-changelog-writer", "npm:5.0.1"],\
+ ["conventional-commits-parser", "npm:3.2.4"],\
+ ["dateformat", "npm:3.0.3"],\
+ ["get-pkg-repo", "npm:4.2.1"],\
+ ["git-raw-commits", "npm:2.0.11"],\
+ ["git-remote-origin-url", "npm:2.0.0"],\
+ ["git-semver-tags", "npm:4.1.1"],\
+ ["lodash", "npm:4.17.21"],\
+ ["normalize-package-data", "npm:3.0.3"],\
+ ["q", "npm:1.5.1"],\
+ ["read-pkg", "npm:3.0.0"],\
+ ["read-pkg-up", "npm:3.0.0"],\
+ ["through2", "npm:4.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-ember", [\
+ ["npm:2.0.9", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-ember-npm-2.0.9-2276834930-bc37a1ec32.zip/node_modules/conventional-changelog-ember/",\
+ "packageDependencies": [\
+ ["conventional-changelog-ember", "npm:2.0.9"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-eslint", [\
+ ["npm:3.0.9", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-eslint-npm-3.0.9-62c523a901-340b3be510.zip/node_modules/conventional-changelog-eslint/",\
+ "packageDependencies": [\
+ ["conventional-changelog-eslint", "npm:3.0.9"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-express", [\
+ ["npm:2.0.6", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-express-npm-2.0.6-8a37ff0369-11a0286884.zip/node_modules/conventional-changelog-express/",\
+ "packageDependencies": [\
+ ["conventional-changelog-express", "npm:2.0.6"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-jquery", [\
+ ["npm:3.0.11", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-jquery-npm-3.0.11-d4ff10c6e2-5662ff1bee.zip/node_modules/conventional-changelog-jquery/",\
+ "packageDependencies": [\
+ ["conventional-changelog-jquery", "npm:3.0.11"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-jshint", [\
+ ["npm:2.0.9", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-jshint-npm-2.0.9-ef6b791bee-3048c3a02b.zip/node_modules/conventional-changelog-jshint/",\
+ "packageDependencies": [\
+ ["conventional-changelog-jshint", "npm:2.0.9"],\
+ ["compare-func", "npm:2.0.0"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-preset-loader", [\
+ ["npm:2.3.4", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-preset-loader-npm-2.3.4-a907f2e49a-a978bcd5fc.zip/node_modules/conventional-changelog-preset-loader/",\
+ "packageDependencies": [\
+ ["conventional-changelog-preset-loader", "npm:2.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-changelog-writer", [\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/conventional-changelog-writer-npm-5.0.1-c7d8f4132f-268b56a3e4.zip/node_modules/conventional-changelog-writer/",\
+ "packageDependencies": [\
+ ["conventional-changelog-writer", "npm:5.0.1"],\
+ ["conventional-commits-filter", "npm:2.0.7"],\
+ ["dateformat", "npm:3.0.3"],\
+ ["handlebars", "npm:4.7.8"],\
+ ["json-stringify-safe", "npm:5.0.1"],\
+ ["lodash", "npm:4.17.21"],\
+ ["meow", "npm:8.1.2"],\
+ ["semver", "npm:6.3.1"],\
+ ["split", "npm:1.0.1"],\
+ ["through2", "npm:4.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-commit-types", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/conventional-commit-types-npm-3.0.0-e12e37c124-609703fea6.zip/node_modules/conventional-commit-types/",\
+ "packageDependencies": [\
+ ["conventional-commit-types", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-commits-filter", [\
+ ["npm:2.0.7", {\
+ "packageLocation": "./.yarn/cache/conventional-commits-filter-npm-2.0.7-8762ee3bfa-df06fb2928.zip/node_modules/conventional-commits-filter/",\
+ "packageDependencies": [\
+ ["conventional-commits-filter", "npm:2.0.7"],\
+ ["lodash.ismatch", "npm:4.4.0"],\
+ ["modify-values", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-commits-parser", [\
+ ["npm:3.2.4", {\
+ "packageLocation": "./.yarn/cache/conventional-commits-parser-npm-3.2.4-d1ebb48cf6-122d7d7f99.zip/node_modules/conventional-commits-parser/",\
+ "packageDependencies": [\
+ ["conventional-commits-parser", "npm:3.2.4"],\
+ ["JSONStream", "npm:1.3.5"],\
+ ["is-text-path", "npm:1.0.1"],\
+ ["lodash", "npm:4.17.21"],\
+ ["meow", "npm:8.1.2"],\
+ ["split2", "npm:3.2.2"],\
+ ["through2", "npm:4.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["conventional-recommended-bump", [\
+ ["npm:6.1.0", {\
+ "packageLocation": "./.yarn/cache/conventional-recommended-bump-npm-6.1.0-18a6db0ce9-649e6230be.zip/node_modules/conventional-recommended-bump/",\
+ "packageDependencies": [\
+ ["conventional-recommended-bump", "npm:6.1.0"],\
+ ["concat-stream", "npm:2.0.0"],\
+ ["conventional-changelog-preset-loader", "npm:2.3.4"],\
+ ["conventional-commits-filter", "npm:2.0.7"],\
+ ["conventional-commits-parser", "npm:3.2.4"],\
+ ["git-raw-commits", "npm:2.0.11"],\
+ ["git-semver-tags", "npm:4.1.1"],\
+ ["meow", "npm:8.1.2"],\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["convert-source-map", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/convert-source-map-npm-2.0.0-7ab664dc4e-8f2f7a27a1.zip/node_modules/convert-source-map/",\
+ "packageDependencies": [\
+ ["convert-source-map", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["convert-to-spaces", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/convert-to-spaces-npm-2.0.1-c08fae1ac6-d90aa0e3b6.zip/node_modules/convert-to-spaces/",\
+ "packageDependencies": [\
+ ["convert-to-spaces", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cookie", [\
+ ["npm:0.5.0", {\
+ "packageLocation": "./.yarn/cache/cookie-npm-0.5.0-e2d58a161a-c01ca3ef8d.zip/node_modules/cookie/",\
+ "packageDependencies": [\
+ ["cookie", "npm:0.5.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cookie-signature", [\
+ ["npm:1.0.6", {\
+ "packageLocation": "./.yarn/cache/cookie-signature-npm-1.0.6-93f325f7f0-b36fd0d4e3.zip/node_modules/cookie-signature/",\
+ "packageDependencies": [\
+ ["cookie-signature", "npm:1.0.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["core-util-is", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/core-util-is-npm-1.0.3-ca74b76c90-90a0e40abb.zip/node_modules/core-util-is/",\
+ "packageDependencies": [\
+ ["core-util-is", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cosmiconfig", [\
+ ["npm:8.3.6", {\
+ "packageLocation": "./.yarn/cache/cosmiconfig-npm-8.3.6-a5566e2779-0382a9ed13.zip/node_modules/cosmiconfig/",\
+ "packageDependencies": [\
+ ["cosmiconfig", "npm:8.3.6"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:f5b98f17ad7ea81ab857071041c4ce431e85f7ad9573fd6e8cece457137e8a3cb24f7241d1c6f6a0018b320aaa8402caf4d54ddf5f10267d682064c4805d3882#npm:8.3.6", {\
+ "packageLocation": "./.yarn/__virtual__/cosmiconfig-virtual-3ff344a29a/0/cache/cosmiconfig-npm-8.3.6-a5566e2779-0382a9ed13.zip/node_modules/cosmiconfig/",\
+ "packageDependencies": [\
+ ["cosmiconfig", "virtual:f5b98f17ad7ea81ab857071041c4ce431e85f7ad9573fd6e8cece457137e8a3cb24f7241d1c6f6a0018b320aaa8402caf4d54ddf5f10267d682064c4805d3882#npm:8.3.6"],\
+ ["@types/typescript", null],\
+ ["import-fresh", "npm:3.3.0"],\
+ ["js-yaml", "npm:4.1.0"],\
+ ["parse-json", "npm:5.2.0"],\
+ ["path-type", "npm:4.0.0"],\
+ ["typescript", null]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cosmiconfig-typescript-loader", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/cosmiconfig-typescript-loader-npm-5.0.0-6462903b70-0eb1a767a5.zip/node_modules/cosmiconfig-typescript-loader/",\
+ "packageDependencies": [\
+ ["cosmiconfig-typescript-loader", "npm:5.0.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:f5b98f17ad7ea81ab857071041c4ce431e85f7ad9573fd6e8cece457137e8a3cb24f7241d1c6f6a0018b320aaa8402caf4d54ddf5f10267d682064c4805d3882#npm:5.0.0", {\
+ "packageLocation": "./.yarn/__virtual__/cosmiconfig-typescript-loader-virtual-99d7da4445/0/cache/cosmiconfig-typescript-loader-npm-5.0.0-6462903b70-0eb1a767a5.zip/node_modules/cosmiconfig-typescript-loader/",\
+ "packageDependencies": [\
+ ["cosmiconfig-typescript-loader", "virtual:f5b98f17ad7ea81ab857071041c4ce431e85f7ad9573fd6e8cece457137e8a3cb24f7241d1c6f6a0018b320aaa8402caf4d54ddf5f10267d682064c4805d3882#npm:5.0.0"],\
+ ["@types/cosmiconfig", null],\
+ ["@types/node", null],\
+ ["@types/typescript", null],\
+ ["cosmiconfig", "virtual:f5b98f17ad7ea81ab857071041c4ce431e85f7ad9573fd6e8cece457137e8a3cb24f7241d1c6f6a0018b320aaa8402caf4d54ddf5f10267d682064c4805d3882#npm:8.3.6"],\
+ ["jiti", "npm:1.21.0"],\
+ ["typescript", null]\
+ ],\
+ "packagePeers": [\
+ "@types/cosmiconfig",\
+ "@types/node",\
+ "@types/typescript",\
+ "cosmiconfig",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cp-file", [\
+ ["npm:10.0.0", {\
+ "packageLocation": "./.yarn/cache/cp-file-npm-10.0.0-2641285fb1-acff14b4d2.zip/node_modules/cp-file/",\
+ "packageDependencies": [\
+ ["cp-file", "npm:10.0.0"],\
+ ["graceful-fs", "npm:4.2.11"],\
+ ["nested-error-stacks", "npm:2.1.1"],\
+ ["p-event", "npm:5.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cpy", [\
+ ["npm:10.1.0", {\
+ "packageLocation": "./.yarn/cache/cpy-npm-10.1.0-4e4f5d40c2-17ba53784c.zip/node_modules/cpy/",\
+ "packageDependencies": [\
+ ["cpy", "npm:10.1.0"],\
+ ["arrify", "npm:3.0.0"],\
+ ["cp-file", "npm:10.0.0"],\
+ ["globby", "npm:13.2.2"],\
+ ["junk", "npm:4.0.1"],\
+ ["micromatch", "npm:4.0.5"],\
+ ["nested-error-stacks", "npm:2.1.1"],\
+ ["p-filter", "npm:3.0.0"],\
+ ["p-map", "npm:6.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cpy-cli", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/cpy-cli-npm-5.0.0-58ca287fe2-f309f2c2ee.zip/node_modules/cpy-cli/",\
+ "packageDependencies": [\
+ ["cpy-cli", "npm:5.0.0"],\
+ ["cpy", "npm:10.1.0"],\
+ ["meow", "npm:12.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cross-spawn", [\
+ ["npm:7.0.3", {\
+ "packageLocation": "./.yarn/cache/cross-spawn-npm-7.0.3-e4ff3e65b3-5738c31238.zip/node_modules/cross-spawn/",\
+ "packageDependencies": [\
+ ["cross-spawn", "npm:7.0.3"],\
+ ["path-key", "npm:3.1.1"],\
+ ["shebang-command", "npm:2.0.0"],\
+ ["which", "npm:2.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["crypto-random-string", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/crypto-random-string-npm-4.0.0-b9f0f76168-16e11a3c81.zip/node_modules/crypto-random-string/",\
+ "packageDependencies": [\
+ ["crypto-random-string", "npm:4.0.0"],\
+ ["type-fest", "npm:1.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cspell", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/cspell-npm-8.3.2-d3d68133fb-ca181c535d.zip/node_modules/cspell/",\
+ "packageDependencies": [\
+ ["cspell", "npm:8.3.2"],\
+ ["@cspell/cspell-json-reporter", "npm:8.3.2"],\
+ ["@cspell/cspell-pipe", "npm:8.3.2"],\
+ ["@cspell/cspell-types", "npm:8.3.2"],\
+ ["@cspell/dynamic-import", "npm:8.3.2"],\
+ ["chalk", "npm:5.3.0"],\
+ ["chalk-template", "npm:1.1.0"],\
+ ["commander", "npm:11.1.0"],\
+ ["cspell-gitignore", "npm:8.3.2"],\
+ ["cspell-glob", "npm:8.3.2"],\
+ ["cspell-io", "npm:8.3.2"],\
+ ["cspell-lib", "npm:8.3.2"],\
+ ["fast-glob", "npm:3.3.2"],\
+ ["fast-json-stable-stringify", "npm:2.1.0"],\
+ ["file-entry-cache", "npm:8.0.0"],\
+ ["get-stdin", "npm:9.0.0"],\
+ ["semver", "npm:7.5.4"],\
+ ["strip-ansi", "npm:7.1.0"],\
+ ["vscode-uri", "npm:3.0.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cspell-config-lib", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/cspell-config-lib-npm-8.3.2-23aa0ed7a8-96358891b8.zip/node_modules/cspell-config-lib/",\
+ "packageDependencies": [\
+ ["cspell-config-lib", "npm:8.3.2"],\
+ ["@cspell/cspell-types", "npm:8.3.2"],\
+ ["comment-json", "npm:4.2.3"],\
+ ["yaml", "npm:2.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cspell-dictionary", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/cspell-dictionary-npm-8.3.2-dcbcc7f44d-355cbe0cec.zip/node_modules/cspell-dictionary/",\
+ "packageDependencies": [\
+ ["cspell-dictionary", "npm:8.3.2"],\
+ ["@cspell/cspell-pipe", "npm:8.3.2"],\
+ ["@cspell/cspell-types", "npm:8.3.2"],\
+ ["cspell-trie-lib", "npm:8.3.2"],\
+ ["fast-equals", "npm:5.0.1"],\
+ ["gensequence", "npm:6.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cspell-gitignore", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/cspell-gitignore-npm-8.3.2-fac35a0208-ffd8584610.zip/node_modules/cspell-gitignore/",\
+ "packageDependencies": [\
+ ["cspell-gitignore", "npm:8.3.2"],\
+ ["cspell-glob", "npm:8.3.2"],\
+ ["find-up-simple", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cspell-glob", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/cspell-glob-npm-8.3.2-c098bc7796-8c7e43f45f.zip/node_modules/cspell-glob/",\
+ "packageDependencies": [\
+ ["cspell-glob", "npm:8.3.2"],\
+ ["micromatch", "npm:4.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cspell-grammar", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/cspell-grammar-npm-8.3.2-ab7ffca829-5298c7319a.zip/node_modules/cspell-grammar/",\
+ "packageDependencies": [\
+ ["cspell-grammar", "npm:8.3.2"],\
+ ["@cspell/cspell-pipe", "npm:8.3.2"],\
+ ["@cspell/cspell-types", "npm:8.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cspell-io", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/cspell-io-npm-8.3.2-ede9d006d1-c402c4bcbf.zip/node_modules/cspell-io/",\
+ "packageDependencies": [\
+ ["cspell-io", "npm:8.3.2"],\
+ ["@cspell/cspell-service-bus", "npm:8.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cspell-lib", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/cspell-lib-npm-8.3.2-bd9a169a49-6bd6f3fd37.zip/node_modules/cspell-lib/",\
+ "packageDependencies": [\
+ ["cspell-lib", "npm:8.3.2"],\
+ ["@cspell/cspell-bundled-dicts", "npm:8.3.2"],\
+ ["@cspell/cspell-pipe", "npm:8.3.2"],\
+ ["@cspell/cspell-resolver", "npm:8.3.2"],\
+ ["@cspell/cspell-types", "npm:8.3.2"],\
+ ["@cspell/dynamic-import", "npm:8.3.2"],\
+ ["@cspell/strong-weak-map", "npm:8.3.2"],\
+ ["clear-module", "npm:4.1.2"],\
+ ["comment-json", "npm:4.2.3"],\
+ ["configstore", "npm:6.0.0"],\
+ ["cspell-config-lib", "npm:8.3.2"],\
+ ["cspell-dictionary", "npm:8.3.2"],\
+ ["cspell-glob", "npm:8.3.2"],\
+ ["cspell-grammar", "npm:8.3.2"],\
+ ["cspell-io", "npm:8.3.2"],\
+ ["cspell-trie-lib", "npm:8.3.2"],\
+ ["fast-equals", "npm:5.0.1"],\
+ ["gensequence", "npm:6.0.0"],\
+ ["import-fresh", "npm:3.3.0"],\
+ ["resolve-from", "npm:5.0.0"],\
+ ["vscode-languageserver-textdocument", "npm:1.0.11"],\
+ ["vscode-uri", "npm:3.0.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cspell-trie-lib", [\
+ ["npm:8.3.2", {\
+ "packageLocation": "./.yarn/cache/cspell-trie-lib-npm-8.3.2-960ea676e2-c2e74b2fe1.zip/node_modules/cspell-trie-lib/",\
+ "packageDependencies": [\
+ ["cspell-trie-lib", "npm:8.3.2"],\
+ ["@cspell/cspell-pipe", "npm:8.3.2"],\
+ ["@cspell/cspell-types", "npm:8.3.2"],\
+ ["gensequence", "npm:6.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["currently-unhandled", [\
+ ["npm:0.4.1", {\
+ "packageLocation": "./.yarn/cache/currently-unhandled-npm-0.4.1-38eddab665-32d197689e.zip/node_modules/currently-unhandled/",\
+ "packageDependencies": [\
+ ["currently-unhandled", "npm:0.4.1"],\
+ ["array-find-index", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["cz-conventional-changelog", [\
+ ["npm:3.3.0", {\
+ "packageLocation": "./.yarn/cache/cz-conventional-changelog-npm-3.3.0-46c1d2629a-895d64bb60.zip/node_modules/cz-conventional-changelog/",\
+ "packageDependencies": [\
+ ["cz-conventional-changelog", "npm:3.3.0"],\
+ ["@commitlint/load", "npm:18.4.4"],\
+ ["chalk", "npm:2.4.2"],\
+ ["commitizen", "npm:4.3.0"],\
+ ["conventional-commit-types", "npm:3.0.0"],\
+ ["lodash.map", "npm:4.6.0"],\
+ ["longest", "npm:2.0.1"],\
+ ["word-wrap", "npm:1.2.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["dargs", [\
+ ["npm:7.0.0", {\
+ "packageLocation": "./.yarn/cache/dargs-npm-7.0.0-62701e0c7a-ec7f6a8315.zip/node_modules/dargs/",\
+ "packageDependencies": [\
+ ["dargs", "npm:7.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["date-time", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/date-time-npm-3.1.0-50f6af7aef-aa3e2e930d.zip/node_modules/date-time/",\
+ "packageDependencies": [\
+ ["date-time", "npm:3.1.0"],\
+ ["time-zone", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["dateformat", [\
+ ["npm:3.0.3", {\
+ "packageLocation": "./.yarn/cache/dateformat-npm-3.0.3-ed02e5ddbd-2effb8bef5.zip/node_modules/dateformat/",\
+ "packageDependencies": [\
+ ["dateformat", "npm:3.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["debug", [\
+ ["npm:2.6.9", {\
+ "packageLocation": "./.yarn/cache/debug-npm-2.6.9-7d4cb597dc-121908fb83.zip/node_modules/debug/",\
+ "packageDependencies": [\
+ ["debug", "npm:2.6.9"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["npm:3.2.7", {\
+ "packageLocation": "./.yarn/cache/debug-npm-3.2.7-754e818c7a-37d96ae42c.zip/node_modules/debug/",\
+ "packageDependencies": [\
+ ["debug", "npm:3.2.7"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["npm:4.3.4", {\
+ "packageLocation": "./.yarn/cache/debug-npm-4.3.4-4513954577-cedbec4529.zip/node_modules/debug/",\
+ "packageDependencies": [\
+ ["debug", "npm:4.3.4"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7", {\
+ "packageLocation": "./.yarn/__virtual__/debug-virtual-d2345003b7/0/cache/debug-npm-3.2.7-754e818c7a-37d96ae42c.zip/node_modules/debug/",\
+ "packageDependencies": [\
+ ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\
+ ["@types/supports-color", null],\
+ ["ms", "npm:2.1.3"],\
+ ["supports-color", null]\
+ ],\
+ "packagePeers": [\
+ "@types/supports-color",\
+ "supports-color"\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["virtual:3840e914156da5bf3a0152609f7597e38b893022314c08ba5b292edc820681760ec6c83dde1d34d78aa58a3f32c7d8c9d754f99860fa71136383ec1e2a87f57d#npm:2.6.9", {\
+ "packageLocation": "./.yarn/__virtual__/debug-virtual-73072f5d24/0/cache/debug-npm-2.6.9-7d4cb597dc-121908fb83.zip/node_modules/debug/",\
+ "packageDependencies": [\
+ ["debug", "virtual:3840e914156da5bf3a0152609f7597e38b893022314c08ba5b292edc820681760ec6c83dde1d34d78aa58a3f32c7d8c9d754f99860fa71136383ec1e2a87f57d#npm:2.6.9"],\
+ ["@types/supports-color", null],\
+ ["ms", "npm:2.0.0"],\
+ ["supports-color", null]\
+ ],\
+ "packagePeers": [\
+ "@types/supports-color",\
+ "supports-color"\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4", {\
+ "packageLocation": "./.yarn/__virtual__/debug-virtual-ede24543b9/0/cache/debug-npm-4.3.4-4513954577-cedbec4529.zip/node_modules/debug/",\
+ "packageDependencies": [\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["@types/supports-color", null],\
+ ["ms", "npm:2.1.2"],\
+ ["supports-color", null]\
+ ],\
+ "packagePeers": [\
+ "@types/supports-color",\
+ "supports-color"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["decamelize", [\
+ ["npm:1.2.0", {\
+ "packageLocation": "./.yarn/cache/decamelize-npm-1.2.0-c5a2fdc622-85c39fe8fb.zip/node_modules/decamelize/",\
+ "packageDependencies": [\
+ ["decamelize", "npm:1.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["decamelize-keys", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/decamelize-keys-npm-1.1.1-4cfa36ed4b-4ca3859331.zip/node_modules/decamelize-keys/",\
+ "packageDependencies": [\
+ ["decamelize-keys", "npm:1.1.1"],\
+ ["decamelize", "npm:1.2.0"],\
+ ["map-obj", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["dedent", [\
+ ["npm:0.7.0", {\
+ "packageLocation": "./.yarn/cache/dedent-npm-0.7.0-2dbb45a4c5-7c3aa00ddf.zip/node_modules/dedent/",\
+ "packageDependencies": [\
+ ["dedent", "npm:0.7.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["deep-extend", [\
+ ["npm:0.6.0", {\
+ "packageLocation": "./.yarn/cache/deep-extend-npm-0.6.0-e182924219-1c6b0abcdb.zip/node_modules/deep-extend/",\
+ "packageDependencies": [\
+ ["deep-extend", "npm:0.6.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["deep-is", [\
+ ["npm:0.1.4", {\
+ "packageLocation": "./.yarn/cache/deep-is-npm-0.1.4-88938b5a67-7f0ee496e0.zip/node_modules/deep-is/",\
+ "packageDependencies": [\
+ ["deep-is", "npm:0.1.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["deepmerge", [\
+ ["npm:4.3.1", {\
+ "packageLocation": "./.yarn/cache/deepmerge-npm-4.3.1-4f751a0844-e53481aaf1.zip/node_modules/deepmerge/",\
+ "packageDependencies": [\
+ ["deepmerge", "npm:4.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["deepmerge-ts", [\
+ ["npm:5.1.0", {\
+ "packageLocation": "./.yarn/cache/deepmerge-ts-npm-5.1.0-f2ee394fd9-28f810e6f3.zip/node_modules/deepmerge-ts/",\
+ "packageDependencies": [\
+ ["deepmerge-ts", "npm:5.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["default-browser", [\
+ ["npm:5.2.1", {\
+ "packageLocation": "./.yarn/cache/default-browser-npm-5.2.1-e2f8bca718-73f17dc3c5.zip/node_modules/default-browser/",\
+ "packageDependencies": [\
+ ["default-browser", "npm:5.2.1"],\
+ ["bundle-name", "npm:4.1.0"],\
+ ["default-browser-id", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["default-browser-id", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/default-browser-id-npm-5.0.0-41fa64d5bb-957fb88650.zip/node_modules/default-browser-id/",\
+ "packageDependencies": [\
+ ["default-browser-id", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["defaults", [\
+ ["npm:1.0.4", {\
+ "packageLocation": "./.yarn/cache/defaults-npm-1.0.4-f3fbaf2528-9cfbe498f5.zip/node_modules/defaults/",\
+ "packageDependencies": [\
+ ["defaults", "npm:1.0.4"],\
+ ["clone", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["define-data-property", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/define-data-property-npm-1.1.1-2b5156d112-77ef6e0bce.zip/node_modules/define-data-property/",\
+ "packageDependencies": [\
+ ["define-data-property", "npm:1.1.1"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["gopd", "npm:1.0.1"],\
+ ["has-property-descriptors", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["define-lazy-prop", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/define-lazy-prop-npm-3.0.0-6bb0fc1510-5ab0b2bf3f.zip/node_modules/define-lazy-prop/",\
+ "packageDependencies": [\
+ ["define-lazy-prop", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["define-properties", [\
+ ["npm:1.2.1", {\
+ "packageLocation": "./.yarn/cache/define-properties-npm-1.2.1-8a4d42413b-88a152319f.zip/node_modules/define-properties/",\
+ "packageDependencies": [\
+ ["define-properties", "npm:1.2.1"],\
+ ["define-data-property", "npm:1.1.1"],\
+ ["has-property-descriptors", "npm:1.0.1"],\
+ ["object-keys", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["delegates", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/delegates-npm-1.0.0-9b1942d75f-ba05874b91.zip/node_modules/delegates/",\
+ "packageDependencies": [\
+ ["delegates", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["depd", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/depd-npm-2.0.0-b6c51a4b43-58bd06ec20.zip/node_modules/depd/",\
+ "packageDependencies": [\
+ ["depd", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["dependency-tree", [\
+ ["npm:9.0.0", {\
+ "packageLocation": "./.yarn/cache/dependency-tree-npm-9.0.0-adb20d5fab-129d727df2.zip/node_modules/dependency-tree/",\
+ "packageDependencies": [\
+ ["dependency-tree", "npm:9.0.0"],\
+ ["commander", "npm:2.20.3"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["filing-cabinet", "npm:3.3.1"],\
+ ["precinct", "npm:9.2.1"],\
+ ["typescript", "patch:typescript@npm%3A4.9.5#optional!builtin::version=4.9.5&hash=289587"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["destroy", [\
+ ["npm:1.2.0", {\
+ "packageLocation": "./.yarn/cache/destroy-npm-1.2.0-6a511802e2-bd7633942f.zip/node_modules/destroy/",\
+ "packageDependencies": [\
+ ["destroy", "npm:1.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detect-file", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/detect-file-npm-1.0.0-a22ca7c5b6-c782a5f992.zip/node_modules/detect-file/",\
+ "packageDependencies": [\
+ ["detect-file", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detect-indent", [\
+ ["npm:6.1.0", {\
+ "packageLocation": "./.yarn/cache/detect-indent-npm-6.1.0-d8c441ff7a-dd83cdeda9.zip/node_modules/detect-indent/",\
+ "packageDependencies": [\
+ ["detect-indent", "npm:6.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detect-libc", [\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/detect-libc-npm-2.0.2-03afa59137-a9f4ffcd27.zip/node_modules/detect-libc/",\
+ "packageDependencies": [\
+ ["detect-libc", "npm:2.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detect-newline", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/detect-newline-npm-3.1.0-6d33fa8d37-c38cfc8eeb.zip/node_modules/detect-newline/",\
+ "packageDependencies": [\
+ ["detect-newline", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detective-amd", [\
+ ["npm:3.1.2", {\
+ "packageLocation": "./.yarn/cache/detective-amd-npm-3.1.2-e4c385792e-553d6df8a4.zip/node_modules/detective-amd/",\
+ "packageDependencies": [\
+ ["detective-amd", "npm:3.1.2"],\
+ ["ast-module-types", "npm:3.0.0"],\
+ ["escodegen", "npm:2.1.0"],\
+ ["get-amd-module-type", "npm:3.0.2"],\
+ ["node-source-walk", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.2.0", {\
+ "packageLocation": "./.yarn/cache/detective-amd-npm-4.2.0-ab3ac7d60a-7f91862f5b.zip/node_modules/detective-amd/",\
+ "packageDependencies": [\
+ ["detective-amd", "npm:4.2.0"],\
+ ["ast-module-types", "npm:4.0.0"],\
+ ["escodegen", "npm:2.1.0"],\
+ ["get-amd-module-type", "npm:4.1.0"],\
+ ["node-source-walk", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detective-cjs", [\
+ ["npm:3.1.3", {\
+ "packageLocation": "./.yarn/cache/detective-cjs-npm-3.1.3-61080007aa-990c5cfa63.zip/node_modules/detective-cjs/",\
+ "packageDependencies": [\
+ ["detective-cjs", "npm:3.1.3"],\
+ ["ast-module-types", "npm:3.0.0"],\
+ ["node-source-walk", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/detective-cjs-npm-4.1.0-0d445263e2-09fbc378a4.zip/node_modules/detective-cjs/",\
+ "packageDependencies": [\
+ ["detective-cjs", "npm:4.1.0"],\
+ ["ast-module-types", "npm:4.0.0"],\
+ ["node-source-walk", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detective-es6", [\
+ ["npm:2.2.2", {\
+ "packageLocation": "./.yarn/cache/detective-es6-npm-2.2.2-99504d5c48-9d07cc6af2.zip/node_modules/detective-es6/",\
+ "packageDependencies": [\
+ ["detective-es6", "npm:2.2.2"],\
+ ["node-source-walk", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/detective-es6-npm-3.0.1-23dcfc7269-52d6efd9f2.zip/node_modules/detective-es6/",\
+ "packageDependencies": [\
+ ["detective-es6", "npm:3.0.1"],\
+ ["node-source-walk", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detective-less", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/detective-less-npm-1.0.2-51713fb487-0ef2060684.zip/node_modules/detective-less/",\
+ "packageDependencies": [\
+ ["detective-less", "npm:1.0.2"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["gonzales-pe", "npm:4.3.0"],\
+ ["node-source-walk", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detective-postcss", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/detective-postcss-npm-4.0.0-3898e15a71-f6a134c29c.zip/node_modules/detective-postcss/",\
+ "packageDependencies": [\
+ ["detective-postcss", "npm:4.0.0"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["is-url", "npm:1.2.4"],\
+ ["postcss", "npm:8.4.33"],\
+ ["postcss-values-parser", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.1.3", {\
+ "packageLocation": "./.yarn/cache/detective-postcss-npm-6.1.3-23a358a5ec-7ad2eb7113.zip/node_modules/detective-postcss/",\
+ "packageDependencies": [\
+ ["detective-postcss", "npm:6.1.3"],\
+ ["is-url", "npm:1.2.4"],\
+ ["postcss", "npm:8.4.33"],\
+ ["postcss-values-parser", "virtual:23a358a5ecd6ab3181f7fc99cb0bf6fd4a0734b6e0a2eae05968d1aee7473261ac87704c1b5ed9c912b3faaebe60dd7819a21b2732f3649be486506b370c4c7e#npm:6.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detective-sass", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/detective-sass-npm-3.0.2-6ad220e065-b7f1df65e3.zip/node_modules/detective-sass/",\
+ "packageDependencies": [\
+ ["detective-sass", "npm:3.0.2"],\
+ ["gonzales-pe", "npm:4.3.0"],\
+ ["node-source-walk", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.3", {\
+ "packageLocation": "./.yarn/cache/detective-sass-npm-4.1.3-395275827c-ecfc77d18c.zip/node_modules/detective-sass/",\
+ "packageDependencies": [\
+ ["detective-sass", "npm:4.1.3"],\
+ ["gonzales-pe", "npm:4.3.0"],\
+ ["node-source-walk", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detective-scss", [\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/detective-scss-npm-2.0.2-ec5d066304-04fea8dd22.zip/node_modules/detective-scss/",\
+ "packageDependencies": [\
+ ["detective-scss", "npm:2.0.2"],\
+ ["gonzales-pe", "npm:4.3.0"],\
+ ["node-source-walk", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/cache/detective-scss-npm-3.1.1-52275ee032-53d5e10fe4.zip/node_modules/detective-scss/",\
+ "packageDependencies": [\
+ ["detective-scss", "npm:3.1.1"],\
+ ["gonzales-pe", "npm:4.3.0"],\
+ ["node-source-walk", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detective-stylus", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/detective-stylus-npm-1.0.3-e1fc341ca5-bf7b1aa069.zip/node_modules/detective-stylus/",\
+ "packageDependencies": [\
+ ["detective-stylus", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/detective-stylus-npm-2.0.1-6700998788-3af267855c.zip/node_modules/detective-stylus/",\
+ "packageDependencies": [\
+ ["detective-stylus", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/detective-stylus-npm-3.0.0-7d99db3d7a-7badcae3ae.zip/node_modules/detective-stylus/",\
+ "packageDependencies": [\
+ ["detective-stylus", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["detective-typescript", [\
+ ["npm:7.0.2", {\
+ "packageLocation": "./.yarn/cache/detective-typescript-npm-7.0.2-aa734fe591-19fa578e40.zip/node_modules/detective-typescript/",\
+ "packageDependencies": [\
+ ["detective-typescript", "npm:7.0.2"],\
+ ["@typescript-eslint/typescript-estree", "virtual:aa734fe5910ab2043ff5b76d2c49e3a3aff381cfe805800a92c03671e0b66da8ec7f2fc8ded6c6952cec7a57f0f439fa45d51213f03f478f98eb208ccfd5b76b#npm:4.33.0"],\
+ ["ast-module-types", "npm:2.7.1"],\
+ ["node-source-walk", "npm:4.3.0"],\
+ ["typescript", "patch:typescript@npm%3A3.9.10#optional!builtin::version=3.9.10&hash=3bd3d3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:9.1.1", {\
+ "packageLocation": "./.yarn/cache/detective-typescript-npm-9.1.1-7acec9484f-21f444b33b.zip/node_modules/detective-typescript/",\
+ "packageDependencies": [\
+ ["detective-typescript", "npm:9.1.1"],\
+ ["@typescript-eslint/typescript-estree", "virtual:7acec9484f01c68f8aa5f9931e6ffc696653513b41af7f3d08663c42ada1d00ee091c13e0780af9dcf735ec8a6e052660a87dc109342f3525583cf5ed4b2167b#npm:5.62.0"],\
+ ["ast-module-types", "npm:4.0.0"],\
+ ["node-source-walk", "npm:5.0.2"],\
+ ["typescript", "patch:typescript@npm%3A4.9.5#optional!builtin::version=4.9.5&hash=289587"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["dir-glob", [\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/dir-glob-npm-3.0.1-1aea628b1b-dcac00920a.zip/node_modules/dir-glob/",\
+ "packageDependencies": [\
+ ["dir-glob", "npm:3.0.1"],\
+ ["path-type", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["doctrine", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/doctrine-npm-2.1.0-ac15d049b7-b6416aaff1.zip/node_modules/doctrine/",\
+ "packageDependencies": [\
+ ["doctrine", "npm:2.1.0"],\
+ ["esutils", "npm:2.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/doctrine-npm-3.0.0-c6f1615f04-c96bdccabe.zip/node_modules/doctrine/",\
+ "packageDependencies": [\
+ ["doctrine", "npm:3.0.0"],\
+ ["esutils", "npm:2.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["dot-prop", [\
+ ["npm:5.3.0", {\
+ "packageLocation": "./.yarn/cache/dot-prop-npm-5.3.0-7bf6ee1eb8-93f0d343ef.zip/node_modules/dot-prop/",\
+ "packageDependencies": [\
+ ["dot-prop", "npm:5.3.0"],\
+ ["is-obj", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.0.1", {\
+ "packageLocation": "./.yarn/cache/dot-prop-npm-6.0.1-de66211710-30e51ec640.zip/node_modules/dot-prop/",\
+ "packageDependencies": [\
+ ["dot-prop", "npm:6.0.1"],\
+ ["is-obj", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["dotgitignore", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/dotgitignore-npm-2.1.0-fe0dd60e0e-92b7992423.zip/node_modules/dotgitignore/",\
+ "packageDependencies": [\
+ ["dotgitignore", "npm:2.1.0"],\
+ ["find-up", "npm:3.0.0"],\
+ ["minimatch", "npm:3.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eastasianwidth", [\
+ ["npm:0.2.0", {\
+ "packageLocation": "./.yarn/cache/eastasianwidth-npm-0.2.0-c37eb16bd1-26f364ebcd.zip/node_modules/eastasianwidth/",\
+ "packageDependencies": [\
+ ["eastasianwidth", "npm:0.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ecurve", [\
+ ["npm:1.0.6", {\
+ "packageLocation": "./.yarn/cache/ecurve-npm-1.0.6-002f57f49a-f480e5731a.zip/node_modules/ecurve/",\
+ "packageDependencies": [\
+ ["ecurve", "npm:1.0.6"],\
+ ["bigi", "npm:1.4.2"],\
+ ["safe-buffer", "npm:5.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ee-first", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/ee-first-npm-1.1.1-33f8535b39-b5bb125ee9.zip/node_modules/ee-first/",\
+ "packageDependencies": [\
+ ["ee-first", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["elliptic", [\
+ ["npm:6.5.4", {\
+ "packageLocation": "./.yarn/cache/elliptic-npm-6.5.4-0ca8204a86-5f36127029.zip/node_modules/elliptic/",\
+ "packageDependencies": [\
+ ["elliptic", "npm:6.5.4"],\
+ ["bn.js", "npm:4.12.0"],\
+ ["brorand", "npm:1.1.0"],\
+ ["hash.js", "npm:1.1.7"],\
+ ["hmac-drbg", "npm:1.0.1"],\
+ ["inherits", "npm:2.0.4"],\
+ ["minimalistic-assert", "npm:1.0.1"],\
+ ["minimalistic-crypto-utils", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["emittery", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/emittery-npm-1.0.1-3e4e6ba9b5-2587f2f42b.zip/node_modules/emittery/",\
+ "packageDependencies": [\
+ ["emittery", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["emoji-regex", [\
+ ["npm:10.3.0", {\
+ "packageLocation": "./.yarn/cache/emoji-regex-npm-10.3.0-0c9fc2ef7f-b4838e8dcd.zip/node_modules/emoji-regex/",\
+ "packageDependencies": [\
+ ["emoji-regex", "npm:10.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:8.0.0", {\
+ "packageLocation": "./.yarn/cache/emoji-regex-npm-8.0.0-213764015c-b6053ad399.zip/node_modules/emoji-regex/",\
+ "packageDependencies": [\
+ ["emoji-regex", "npm:8.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:9.2.2", {\
+ "packageLocation": "./.yarn/cache/emoji-regex-npm-9.2.2-e6fac8d058-af014e759a.zip/node_modules/emoji-regex/",\
+ "packageDependencies": [\
+ ["emoji-regex", "npm:9.2.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["encodeurl", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/encodeurl-npm-1.0.2-f8c8454c41-f6c2387379.zip/node_modules/encodeurl/",\
+ "packageDependencies": [\
+ ["encodeurl", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["encoding", [\
+ ["npm:0.1.13", {\
+ "packageLocation": "./.yarn/cache/encoding-npm-0.1.13-82a1837d30-36d938712f.zip/node_modules/encoding/",\
+ "packageDependencies": [\
+ ["encoding", "npm:0.1.13"],\
+ ["iconv-lite", "npm:0.6.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["enhanced-resolve", [\
+ ["npm:5.15.0", {\
+ "packageLocation": "./.yarn/cache/enhanced-resolve-npm-5.15.0-16eb7ddef9-69984a7990.zip/node_modules/enhanced-resolve/",\
+ "packageDependencies": [\
+ ["enhanced-resolve", "npm:5.15.0"],\
+ ["graceful-fs", "npm:4.2.11"],\
+ ["tapable", "npm:2.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["env-paths", [\
+ ["npm:2.2.1", {\
+ "packageLocation": "./.yarn/cache/env-paths-npm-2.2.1-7c7577428c-285325677b.zip/node_modules/env-paths/",\
+ "packageDependencies": [\
+ ["env-paths", "npm:2.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["err-code", [\
+ ["npm:2.0.3", {\
+ "packageLocation": "./.yarn/cache/err-code-npm-2.0.3-082e0ff9a7-b642f7b4dd.zip/node_modules/err-code/",\
+ "packageDependencies": [\
+ ["err-code", "npm:2.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["error-ex", [\
+ ["npm:1.3.2", {\
+ "packageLocation": "./.yarn/cache/error-ex-npm-1.3.2-5654f80c0f-ba827f8936.zip/node_modules/error-ex/",\
+ "packageDependencies": [\
+ ["error-ex", "npm:1.3.2"],\
+ ["is-arrayish", "npm:0.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["es-abstract", [\
+ ["npm:1.22.3", {\
+ "packageLocation": "./.yarn/cache/es-abstract-npm-1.22.3-15a58832e5-da31ec43b1.zip/node_modules/es-abstract/",\
+ "packageDependencies": [\
+ ["es-abstract", "npm:1.22.3"],\
+ ["array-buffer-byte-length", "npm:1.0.0"],\
+ ["arraybuffer.prototype.slice", "npm:1.0.2"],\
+ ["available-typed-arrays", "npm:1.0.5"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["es-set-tostringtag", "npm:2.0.2"],\
+ ["es-to-primitive", "npm:1.2.1"],\
+ ["function.prototype.name", "npm:1.1.6"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["get-symbol-description", "npm:1.0.0"],\
+ ["globalthis", "npm:1.0.3"],\
+ ["gopd", "npm:1.0.1"],\
+ ["has-property-descriptors", "npm:1.0.1"],\
+ ["has-proto", "npm:1.0.1"],\
+ ["has-symbols", "npm:1.0.3"],\
+ ["hasown", "npm:2.0.0"],\
+ ["internal-slot", "npm:1.0.6"],\
+ ["is-array-buffer", "npm:3.0.2"],\
+ ["is-callable", "npm:1.2.7"],\
+ ["is-negative-zero", "npm:2.0.2"],\
+ ["is-regex", "npm:1.1.4"],\
+ ["is-shared-array-buffer", "npm:1.0.2"],\
+ ["is-string", "npm:1.0.7"],\
+ ["is-typed-array", "npm:1.1.12"],\
+ ["is-weakref", "npm:1.0.2"],\
+ ["object-inspect", "npm:1.13.1"],\
+ ["object-keys", "npm:1.1.1"],\
+ ["object.assign", "npm:4.1.5"],\
+ ["regexp.prototype.flags", "npm:1.5.1"],\
+ ["safe-array-concat", "npm:1.0.1"],\
+ ["safe-regex-test", "npm:1.0.2"],\
+ ["string.prototype.trim", "npm:1.2.8"],\
+ ["string.prototype.trimend", "npm:1.0.7"],\
+ ["string.prototype.trimstart", "npm:1.0.7"],\
+ ["typed-array-buffer", "npm:1.0.0"],\
+ ["typed-array-byte-length", "npm:1.0.0"],\
+ ["typed-array-byte-offset", "npm:1.0.0"],\
+ ["typed-array-length", "npm:1.0.4"],\
+ ["unbox-primitive", "npm:1.0.2"],\
+ ["which-typed-array", "npm:1.1.13"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["es-set-tostringtag", [\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/es-set-tostringtag-npm-2.0.2-dae5ec6c58-176d6bd1be.zip/node_modules/es-set-tostringtag/",\
+ "packageDependencies": [\
+ ["es-set-tostringtag", "npm:2.0.2"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["has-tostringtag", "npm:1.0.0"],\
+ ["hasown", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["es-shim-unscopables", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/es-shim-unscopables-npm-1.0.2-a3056a4c0d-f495af7b4b.zip/node_modules/es-shim-unscopables/",\
+ "packageDependencies": [\
+ ["es-shim-unscopables", "npm:1.0.2"],\
+ ["hasown", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["es-to-primitive", [\
+ ["npm:1.2.1", {\
+ "packageLocation": "./.yarn/cache/es-to-primitive-npm-1.2.1-b7a7eac6c5-0886572b8d.zip/node_modules/es-to-primitive/",\
+ "packageDependencies": [\
+ ["es-to-primitive", "npm:1.2.1"],\
+ ["is-callable", "npm:1.2.7"],\
+ ["is-date-object", "npm:1.0.5"],\
+ ["is-symbol", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["escalade", [\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/cache/escalade-npm-3.1.1-e02da076aa-afd02e6ca9.zip/node_modules/escalade/",\
+ "packageDependencies": [\
+ ["escalade", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["escape-html", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/escape-html-npm-1.0.3-376c22ee74-524c739d77.zip/node_modules/escape-html/",\
+ "packageDependencies": [\
+ ["escape-html", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["escape-string-regexp", [\
+ ["npm:1.0.5", {\
+ "packageLocation": "./.yarn/cache/escape-string-regexp-npm-1.0.5-3284de402f-a968ad453d.zip/node_modules/escape-string-regexp/",\
+ "packageDependencies": [\
+ ["escape-string-regexp", "npm:1.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/escape-string-regexp-npm-2.0.0-aef69d2a25-2530479fe8.zip/node_modules/escape-string-regexp/",\
+ "packageDependencies": [\
+ ["escape-string-regexp", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/escape-string-regexp-npm-4.0.0-4b531d8d59-9497d4dd30.zip/node_modules/escape-string-regexp/",\
+ "packageDependencies": [\
+ ["escape-string-regexp", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/escape-string-regexp-npm-5.0.0-a663e825ce-6366f474c6.zip/node_modules/escape-string-regexp/",\
+ "packageDependencies": [\
+ ["escape-string-regexp", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["escodegen", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/escodegen-npm-2.1.0-e0bf940745-e1450a1f75.zip/node_modules/escodegen/",\
+ "packageDependencies": [\
+ ["escodegen", "npm:2.1.0"],\
+ ["esprima", "npm:4.0.1"],\
+ ["estraverse", "npm:5.3.0"],\
+ ["esutils", "npm:2.0.3"],\
+ ["source-map", "npm:0.6.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint", [\
+ ["npm:8.56.0", {\
+ "packageLocation": "./.yarn/cache/eslint-npm-8.56.0-6eec398a41-2be598f7da.zip/node_modules/eslint/",\
+ "packageDependencies": [\
+ ["eslint", "npm:8.56.0"],\
+ ["@eslint-community/eslint-utils", "virtual:6eec398a4132b5372ea5ffc0bc36d4c81602b7e444a89685d0d958016d8fd53df5c0c97c6a8bf99951469e2c6c06135dd192e9309f6e39b1a4c85e0faabe1f6b#npm:4.4.0"],\
+ ["@eslint-community/regexpp", "npm:4.10.0"],\
+ ["@eslint/eslintrc", "npm:2.1.4"],\
+ ["@eslint/js", "npm:8.56.0"],\
+ ["@humanwhocodes/config-array", "npm:0.11.14"],\
+ ["@humanwhocodes/module-importer", "npm:1.0.1"],\
+ ["@nodelib/fs.walk", "npm:1.2.8"],\
+ ["@ungap/structured-clone", "npm:1.2.0"],\
+ ["ajv", "npm:6.12.6"],\
+ ["chalk", "npm:4.1.2"],\
+ ["cross-spawn", "npm:7.0.3"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["doctrine", "npm:3.0.0"],\
+ ["escape-string-regexp", "npm:4.0.0"],\
+ ["eslint-scope", "npm:7.2.2"],\
+ ["eslint-visitor-keys", "npm:3.4.3"],\
+ ["espree", "npm:9.6.1"],\
+ ["esquery", "npm:1.5.0"],\
+ ["esutils", "npm:2.0.3"],\
+ ["fast-deep-equal", "npm:3.1.3"],\
+ ["file-entry-cache", "npm:6.0.1"],\
+ ["find-up", "npm:5.0.0"],\
+ ["glob-parent", "npm:6.0.2"],\
+ ["globals", "npm:13.24.0"],\
+ ["graphemer", "npm:1.4.0"],\
+ ["ignore", "npm:5.3.0"],\
+ ["imurmurhash", "npm:0.1.4"],\
+ ["is-glob", "npm:4.0.3"],\
+ ["is-path-inside", "npm:3.0.3"],\
+ ["js-yaml", "npm:4.1.0"],\
+ ["json-stable-stringify-without-jsonify", "npm:1.0.1"],\
+ ["levn", "npm:0.4.1"],\
+ ["lodash.merge", "npm:4.6.2"],\
+ ["minimatch", "npm:3.1.2"],\
+ ["natural-compare", "npm:1.4.0"],\
+ ["optionator", "npm:0.9.3"],\
+ ["strip-ansi", "npm:6.0.1"],\
+ ["text-table", "npm:0.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint-config-bitauth", [\
+ ["portal:./config/eslint-config-bitauth::locator=%40bitauth%2Flibauth%40workspace%3A.", {\
+ "packageLocation": "./config/eslint-config-bitauth/",\
+ "packageDependencies": [\
+ ["eslint-config-bitauth", "portal:./config/eslint-config-bitauth::locator=%40bitauth%2Flibauth%40workspace%3A."]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#portal:./config/eslint-config-bitauth::locator=%40bitauth%2Flibauth%40workspace%3A.", {\
+ "packageLocation": "./.yarn/__virtual__/eslint-config-bitauth-virtual-7c7cb0727b/1/config/eslint-config-bitauth/",\
+ "packageDependencies": [\
+ ["eslint-config-bitauth", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#portal:./config/eslint-config-bitauth::locator=%40bitauth%2Flibauth%40workspace%3A."],\
+ ["@types/eslint", null],\
+ ["@types/eslint-config-prettier", null],\
+ ["@types/eslint-plugin-eslint-comments", null],\
+ ["@types/eslint-plugin-functional", null],\
+ ["@types/eslint-plugin-import", null],\
+ ["@types/eslint-plugin-tsdoc", null],\
+ ["@types/typescript", null],\
+ ["@types/typescript-eslint__eslint-plugin", null],\
+ ["@types/typescript-eslint__parser", null],\
+ ["@typescript-eslint/eslint-plugin", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["@typescript-eslint/parser", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["eslint", "npm:8.56.0"],\
+ ["eslint-config-prettier", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:9.1.0"],\
+ ["eslint-plugin-eslint-comments", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:3.2.0"],\
+ ["eslint-plugin-functional", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.0"],\
+ ["eslint-plugin-import", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:2.29.1"],\
+ ["eslint-plugin-tsdoc", "npm:0.2.17"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint-config-prettier",\
+ "@types/eslint-plugin-eslint-comments",\
+ "@types/eslint-plugin-functional",\
+ "@types/eslint-plugin-import",\
+ "@types/eslint-plugin-tsdoc",\
+ "@types/eslint",\
+ "@types/typescript-eslint__eslint-plugin",\
+ "@types/typescript-eslint__parser",\
+ "@types/typescript",\
+ "@typescript-eslint/eslint-plugin",\
+ "@typescript-eslint/parser",\
+ "eslint-config-prettier",\
+ "eslint-plugin-eslint-comments",\
+ "eslint-plugin-functional",\
+ "eslint-plugin-import",\
+ "eslint-plugin-tsdoc",\
+ "eslint",\
+ "typescript"\
+ ],\
+ "linkType": "SOFT"\
+ }]\
+ ]],\
+ ["eslint-config-prettier", [\
+ ["npm:9.1.0", {\
+ "packageLocation": "./.yarn/cache/eslint-config-prettier-npm-9.1.0-0e1fd42d7d-6d332694b3.zip/node_modules/eslint-config-prettier/",\
+ "packageDependencies": [\
+ ["eslint-config-prettier", "npm:9.1.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:9.1.0", {\
+ "packageLocation": "./.yarn/__virtual__/eslint-config-prettier-virtual-bb000c0ba3/0/cache/eslint-config-prettier-npm-9.1.0-0e1fd42d7d-6d332694b3.zip/node_modules/eslint-config-prettier/",\
+ "packageDependencies": [\
+ ["eslint-config-prettier", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:9.1.0"],\
+ ["@types/eslint", null],\
+ ["eslint", "npm:8.56.0"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "eslint"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint-import-resolver-node", [\
+ ["npm:0.3.9", {\
+ "packageLocation": "./.yarn/cache/eslint-import-resolver-node-npm-0.3.9-2a426afc4b-0ea8a24a72.zip/node_modules/eslint-import-resolver-node/",\
+ "packageDependencies": [\
+ ["eslint-import-resolver-node", "npm:0.3.9"],\
+ ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\
+ ["is-core-module", "npm:2.13.1"],\
+ ["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint-module-utils", [\
+ ["npm:2.8.0", {\
+ "packageLocation": "./.yarn/cache/eslint-module-utils-npm-2.8.0-05e42bcab0-c7a8d1a58d.zip/node_modules/eslint-module-utils/",\
+ "packageDependencies": [\
+ ["eslint-module-utils", "npm:2.8.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:43aa4530715e727e25bba2c4996fd38e8d8ce2d8f6a1d9ee913eb73a1faac7177a5db105bc491396bc6a0d1c246eb19ecc3e90ca0412b3bc3f604ea2ada09079#npm:2.8.0", {\
+ "packageLocation": "./.yarn/__virtual__/eslint-module-utils-virtual-a41ab9732a/0/cache/eslint-module-utils-npm-2.8.0-05e42bcab0-c7a8d1a58d.zip/node_modules/eslint-module-utils/",\
+ "packageDependencies": [\
+ ["eslint-module-utils", "virtual:43aa4530715e727e25bba2c4996fd38e8d8ce2d8f6a1d9ee913eb73a1faac7177a5db105bc491396bc6a0d1c246eb19ecc3e90ca0412b3bc3f604ea2ada09079#npm:2.8.0"],\
+ ["@types/eslint", null],\
+ ["@types/eslint-import-resolver-node", null],\
+ ["@types/eslint-import-resolver-typescript", null],\
+ ["@types/eslint-import-resolver-webpack", null],\
+ ["@types/typescript-eslint__parser", null],\
+ ["@typescript-eslint/parser", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\
+ ["eslint", "npm:8.56.0"],\
+ ["eslint-import-resolver-node", "npm:0.3.9"],\
+ ["eslint-import-resolver-typescript", null],\
+ ["eslint-import-resolver-webpack", null]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint-import-resolver-node",\
+ "@types/eslint-import-resolver-typescript",\
+ "@types/eslint-import-resolver-webpack",\
+ "@types/eslint",\
+ "@types/typescript-eslint__parser",\
+ "@typescript-eslint/parser",\
+ "eslint-import-resolver-node",\
+ "eslint-import-resolver-typescript",\
+ "eslint-import-resolver-webpack",\
+ "eslint"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint-plugin-eslint-comments", [\
+ ["npm:3.2.0", {\
+ "packageLocation": "./.yarn/cache/eslint-plugin-eslint-comments-npm-3.2.0-b1dc85dfb2-c71db82459.zip/node_modules/eslint-plugin-eslint-comments/",\
+ "packageDependencies": [\
+ ["eslint-plugin-eslint-comments", "npm:3.2.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:3.2.0", {\
+ "packageLocation": "./.yarn/__virtual__/eslint-plugin-eslint-comments-virtual-f1ea3fd137/0/cache/eslint-plugin-eslint-comments-npm-3.2.0-b1dc85dfb2-c71db82459.zip/node_modules/eslint-plugin-eslint-comments/",\
+ "packageDependencies": [\
+ ["eslint-plugin-eslint-comments", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:3.2.0"],\
+ ["@types/eslint", null],\
+ ["escape-string-regexp", "npm:1.0.5"],\
+ ["eslint", "npm:8.56.0"],\
+ ["ignore", "npm:5.3.0"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "eslint"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint-plugin-functional", [\
+ ["npm:6.0.0", {\
+ "packageLocation": "./.yarn/cache/eslint-plugin-functional-npm-6.0.0-67c232f937-e08e744ae7.zip/node_modules/eslint-plugin-functional/",\
+ "packageDependencies": [\
+ ["eslint-plugin-functional", "npm:6.0.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.0", {\
+ "packageLocation": "./.yarn/__virtual__/eslint-plugin-functional-virtual-45ee868a16/0/cache/eslint-plugin-functional-npm-6.0.0-67c232f937-e08e744ae7.zip/node_modules/eslint-plugin-functional/",\
+ "packageDependencies": [\
+ ["eslint-plugin-functional", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.0.0"],\
+ ["@types/eslint", null],\
+ ["@types/typescript", null],\
+ ["@typescript-eslint/utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:6.18.1"],\
+ ["deepmerge-ts", "npm:5.1.0"],\
+ ["escape-string-regexp", "npm:4.0.0"],\
+ ["eslint", "npm:8.56.0"],\
+ ["is-immutable-type", "virtual:45ee868a16e5e16301bd5a061375b37c4ddadfda3dbc29a60eb33cc602493cb2833fdb5058487addec4d7d2fad1c6defdae2c5ae0c70fd6e7e1433365f3b484b#npm:2.0.1"],\
+ ["semver", "npm:7.5.4"],\
+ ["ts-api-utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:1.0.3"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "@types/typescript",\
+ "eslint",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint-plugin-import", [\
+ ["npm:2.29.1", {\
+ "packageLocation": "./.yarn/cache/eslint-plugin-import-npm-2.29.1-b94305f7dc-5f35dfbf4e.zip/node_modules/eslint-plugin-import/",\
+ "packageDependencies": [\
+ ["eslint-plugin-import", "npm:2.29.1"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:2.29.1", {\
+ "packageLocation": "./.yarn/__virtual__/eslint-plugin-import-virtual-43aa453071/0/cache/eslint-plugin-import-npm-2.29.1-b94305f7dc-5f35dfbf4e.zip/node_modules/eslint-plugin-import/",\
+ "packageDependencies": [\
+ ["eslint-plugin-import", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:2.29.1"],\
+ ["@types/eslint", null],\
+ ["@types/typescript-eslint__parser", null],\
+ ["@typescript-eslint/parser", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.18.1"],\
+ ["array-includes", "npm:3.1.7"],\
+ ["array.prototype.findlastindex", "npm:1.2.3"],\
+ ["array.prototype.flat", "npm:1.3.2"],\
+ ["array.prototype.flatmap", "npm:1.3.2"],\
+ ["debug", "virtual:2a426afc4b2eef43db12a540d29c2b5476640459bfcd5c24f86bb401cf8cce97e63bd81794d206a5643057e7f662643afd5ce3dfc4d4bfd8e706006c6309c5fa#npm:3.2.7"],\
+ ["doctrine", "npm:2.1.0"],\
+ ["eslint", "npm:8.56.0"],\
+ ["eslint-import-resolver-node", "npm:0.3.9"],\
+ ["eslint-module-utils", "virtual:43aa4530715e727e25bba2c4996fd38e8d8ce2d8f6a1d9ee913eb73a1faac7177a5db105bc491396bc6a0d1c246eb19ecc3e90ca0412b3bc3f604ea2ada09079#npm:2.8.0"],\
+ ["hasown", "npm:2.0.0"],\
+ ["is-core-module", "npm:2.13.1"],\
+ ["is-glob", "npm:4.0.3"],\
+ ["minimatch", "npm:3.1.2"],\
+ ["object.fromentries", "npm:2.0.7"],\
+ ["object.groupby", "npm:1.0.1"],\
+ ["object.values", "npm:1.1.7"],\
+ ["semver", "npm:6.3.1"],\
+ ["tsconfig-paths", "npm:3.15.0"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "@types/typescript-eslint__parser",\
+ "@typescript-eslint/parser",\
+ "eslint"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint-plugin-tsdoc", [\
+ ["npm:0.2.17", {\
+ "packageLocation": "./.yarn/cache/eslint-plugin-tsdoc-npm-0.2.17-a48e3f007d-26cad40b22.zip/node_modules/eslint-plugin-tsdoc/",\
+ "packageDependencies": [\
+ ["eslint-plugin-tsdoc", "npm:0.2.17"],\
+ ["@microsoft/tsdoc", "npm:0.14.2"],\
+ ["@microsoft/tsdoc-config", "npm:0.16.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint-scope", [\
+ ["npm:7.2.2", {\
+ "packageLocation": "./.yarn/cache/eslint-scope-npm-7.2.2-53cb0df8e8-613c267aea.zip/node_modules/eslint-scope/",\
+ "packageDependencies": [\
+ ["eslint-scope", "npm:7.2.2"],\
+ ["esrecurse", "npm:4.3.0"],\
+ ["estraverse", "npm:5.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["eslint-visitor-keys", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/eslint-visitor-keys-npm-2.1.0-c31806b6b9-9f0e3a2db7.zip/node_modules/eslint-visitor-keys/",\
+ "packageDependencies": [\
+ ["eslint-visitor-keys", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.4.3", {\
+ "packageLocation": "./.yarn/cache/eslint-visitor-keys-npm-3.4.3-a356ac7e46-92708e882c.zip/node_modules/eslint-visitor-keys/",\
+ "packageDependencies": [\
+ ["eslint-visitor-keys", "npm:3.4.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["espree", [\
+ ["npm:9.6.1", {\
+ "packageLocation": "./.yarn/cache/espree-npm-9.6.1-a50722a5a9-1a2e9b4699.zip/node_modules/espree/",\
+ "packageDependencies": [\
+ ["espree", "npm:9.6.1"],\
+ ["acorn", "npm:8.11.3"],\
+ ["acorn-jsx", "virtual:a50722a5a9326b6a5f12350c494c4db3aa0f4caeac45e3e9e5fe071da20014ecfe738fe2ebe2c9c98abae81a4ea86b42f56d776b3bd5ec37f9ad3670c242b242#npm:5.3.2"],\
+ ["eslint-visitor-keys", "npm:3.4.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["esprima", [\
+ ["npm:4.0.1", {\
+ "packageLocation": "./.yarn/cache/esprima-npm-4.0.1-1084e98778-ad4bab9ead.zip/node_modules/esprima/",\
+ "packageDependencies": [\
+ ["esprima", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["esquery", [\
+ ["npm:1.5.0", {\
+ "packageLocation": "./.yarn/cache/esquery-npm-1.5.0-d8f8a06879-a084bd049d.zip/node_modules/esquery/",\
+ "packageDependencies": [\
+ ["esquery", "npm:1.5.0"],\
+ ["estraverse", "npm:5.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["esrecurse", [\
+ ["npm:4.3.0", {\
+ "packageLocation": "./.yarn/cache/esrecurse-npm-4.3.0-10b86a887a-81a37116d1.zip/node_modules/esrecurse/",\
+ "packageDependencies": [\
+ ["esrecurse", "npm:4.3.0"],\
+ ["estraverse", "npm:5.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["estraverse", [\
+ ["npm:5.3.0", {\
+ "packageLocation": "./.yarn/cache/estraverse-npm-5.3.0-03284f8f63-1ff9447b96.zip/node_modules/estraverse/",\
+ "packageDependencies": [\
+ ["estraverse", "npm:5.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["estree-walker", [\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/estree-walker-npm-2.0.2-dfab42f65c-53a6c54e20.zip/node_modules/estree-walker/",\
+ "packageDependencies": [\
+ ["estree-walker", "npm:2.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["esutils", [\
+ ["npm:2.0.3", {\
+ "packageLocation": "./.yarn/cache/esutils-npm-2.0.3-f865beafd5-9a2fe69a41.zip/node_modules/esutils/",\
+ "packageDependencies": [\
+ ["esutils", "npm:2.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["etag", [\
+ ["npm:1.8.1", {\
+ "packageLocation": "./.yarn/cache/etag-npm-1.8.1-54a3b989d9-12be11ef62.zip/node_modules/etag/",\
+ "packageDependencies": [\
+ ["etag", "npm:1.8.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["execa", [\
+ ["npm:7.2.0", {\
+ "packageLocation": "./.yarn/cache/execa-npm-7.2.0-7797cafb24-098cd6a1bc.zip/node_modules/execa/",\
+ "packageDependencies": [\
+ ["execa", "npm:7.2.0"],\
+ ["cross-spawn", "npm:7.0.3"],\
+ ["get-stream", "npm:6.0.1"],\
+ ["human-signals", "npm:4.3.1"],\
+ ["is-stream", "npm:3.0.0"],\
+ ["merge-stream", "npm:2.0.0"],\
+ ["npm-run-path", "npm:5.2.0"],\
+ ["onetime", "npm:6.0.0"],\
+ ["signal-exit", "npm:3.0.7"],\
+ ["strip-final-newline", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["expand-tilde", [\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/expand-tilde-npm-2.0.2-a4020a62f5-205a604974.zip/node_modules/expand-tilde/",\
+ "packageDependencies": [\
+ ["expand-tilde", "npm:2.0.2"],\
+ ["homedir-polyfill", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["exponential-backoff", [\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/cache/exponential-backoff-npm-3.1.1-04df458b30-160456d2d6.zip/node_modules/exponential-backoff/",\
+ "packageDependencies": [\
+ ["exponential-backoff", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["express", [\
+ ["npm:4.18.2", {\
+ "packageLocation": "./.yarn/cache/express-npm-4.18.2-bb15ff679a-75af556306.zip/node_modules/express/",\
+ "packageDependencies": [\
+ ["express", "npm:4.18.2"],\
+ ["accepts", "npm:1.3.8"],\
+ ["array-flatten", "npm:1.1.1"],\
+ ["body-parser", "npm:1.20.1"],\
+ ["content-disposition", "npm:0.5.4"],\
+ ["content-type", "npm:1.0.5"],\
+ ["cookie", "npm:0.5.0"],\
+ ["cookie-signature", "npm:1.0.6"],\
+ ["debug", "virtual:3840e914156da5bf3a0152609f7597e38b893022314c08ba5b292edc820681760ec6c83dde1d34d78aa58a3f32c7d8c9d754f99860fa71136383ec1e2a87f57d#npm:2.6.9"],\
+ ["depd", "npm:2.0.0"],\
+ ["encodeurl", "npm:1.0.2"],\
+ ["escape-html", "npm:1.0.3"],\
+ ["etag", "npm:1.8.1"],\
+ ["finalhandler", "npm:1.2.0"],\
+ ["fresh", "npm:0.5.2"],\
+ ["http-errors", "npm:2.0.0"],\
+ ["merge-descriptors", "npm:1.0.1"],\
+ ["methods", "npm:1.1.2"],\
+ ["on-finished", "npm:2.4.1"],\
+ ["parseurl", "npm:1.3.3"],\
+ ["path-to-regexp", "npm:0.1.7"],\
+ ["proxy-addr", "npm:2.0.7"],\
+ ["qs", "npm:6.11.0"],\
+ ["range-parser", "npm:1.2.1"],\
+ ["safe-buffer", "npm:5.2.1"],\
+ ["send", "npm:0.18.0"],\
+ ["serve-static", "npm:1.15.0"],\
+ ["setprototypeof", "npm:1.2.0"],\
+ ["statuses", "npm:2.0.1"],\
+ ["type-is", "npm:1.6.18"],\
+ ["utils-merge", "npm:1.0.1"],\
+ ["vary", "npm:1.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["external-editor", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/external-editor-npm-3.1.0-878e7807af-c98f1ba3ef.zip/node_modules/external-editor/",\
+ "packageDependencies": [\
+ ["external-editor", "npm:3.1.0"],\
+ ["chardet", "npm:0.7.0"],\
+ ["iconv-lite", "npm:0.4.24"],\
+ ["tmp", "npm:0.0.33"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fast-check", [\
+ ["npm:3.15.0", {\
+ "packageLocation": "./.yarn/cache/fast-check-npm-3.15.0-5e1d76e115-eabd8203f2.zip/node_modules/fast-check/",\
+ "packageDependencies": [\
+ ["fast-check", "npm:3.15.0"],\
+ ["pure-rand", "npm:6.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fast-deep-equal", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/fast-deep-equal-npm-2.0.1-9c01e08a62-1602e0d6ed.zip/node_modules/fast-deep-equal/",\
+ "packageDependencies": [\
+ ["fast-deep-equal", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.1.3", {\
+ "packageLocation": "./.yarn/cache/fast-deep-equal-npm-3.1.3-790edcfcf5-40dedc862e.zip/node_modules/fast-deep-equal/",\
+ "packageDependencies": [\
+ ["fast-deep-equal", "npm:3.1.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fast-diff", [\
+ ["npm:1.3.0", {\
+ "packageLocation": "./.yarn/cache/fast-diff-npm-1.3.0-9f19e3b743-5c19af237e.zip/node_modules/fast-diff/",\
+ "packageDependencies": [\
+ ["fast-diff", "npm:1.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fast-equals", [\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/fast-equals-npm-5.0.1-bbae54ff7b-d7077b8b68.zip/node_modules/fast-equals/",\
+ "packageDependencies": [\
+ ["fast-equals", "npm:5.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fast-glob", [\
+ ["npm:3.3.2", {\
+ "packageLocation": "./.yarn/cache/fast-glob-npm-3.3.2-0a8cb4f2ca-42baad7b9c.zip/node_modules/fast-glob/",\
+ "packageDependencies": [\
+ ["fast-glob", "npm:3.3.2"],\
+ ["@nodelib/fs.stat", "npm:2.0.5"],\
+ ["@nodelib/fs.walk", "npm:1.2.8"],\
+ ["glob-parent", "npm:5.1.2"],\
+ ["merge2", "npm:1.4.1"],\
+ ["micromatch", "npm:4.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fast-json-patch", [\
+ ["npm:2.2.1", {\
+ "packageLocation": "./.yarn/cache/fast-json-patch-npm-2.2.1-63b021bb37-3200148b82.zip/node_modules/fast-json-patch/",\
+ "packageDependencies": [\
+ ["fast-json-patch", "npm:2.2.1"],\
+ ["fast-deep-equal", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fast-json-stable-stringify", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/fast-json-stable-stringify-npm-2.1.0-02e8905fda-7f081eb0b8.zip/node_modules/fast-json-stable-stringify/",\
+ "packageDependencies": [\
+ ["fast-json-stable-stringify", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fast-levenshtein", [\
+ ["npm:2.0.6", {\
+ "packageLocation": "./.yarn/cache/fast-levenshtein-npm-2.0.6-fcd74b8df5-111972b373.zip/node_modules/fast-levenshtein/",\
+ "packageDependencies": [\
+ ["fast-levenshtein", "npm:2.0.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fastq", [\
+ ["npm:1.16.0", {\
+ "packageLocation": "./.yarn/cache/fastq-npm-1.16.0-88070bb399-38c1b49adb.zip/node_modules/fastq/",\
+ "packageDependencies": [\
+ ["fastq", "npm:1.16.0"],\
+ ["reusify", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["figures", [\
+ ["npm:3.2.0", {\
+ "packageLocation": "./.yarn/cache/figures-npm-3.2.0-85d357e955-9c421646ed.zip/node_modules/figures/",\
+ "packageDependencies": [\
+ ["figures", "npm:3.2.0"],\
+ ["escape-string-regexp", "npm:1.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.0.1", {\
+ "packageLocation": "./.yarn/cache/figures-npm-6.0.1-2993bb3561-1bd53404e4.zip/node_modules/figures/",\
+ "packageDependencies": [\
+ ["figures", "npm:6.0.1"],\
+ ["is-unicode-supported", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["file-entry-cache", [\
+ ["npm:6.0.1", {\
+ "packageLocation": "./.yarn/cache/file-entry-cache-npm-6.0.1-31965cf0af-58473e8a82.zip/node_modules/file-entry-cache/",\
+ "packageDependencies": [\
+ ["file-entry-cache", "npm:6.0.1"],\
+ ["flat-cache", "npm:3.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:8.0.0", {\
+ "packageLocation": "./.yarn/cache/file-entry-cache-npm-8.0.0-5b09d19a83-9e2b5938b1.zip/node_modules/file-entry-cache/",\
+ "packageDependencies": [\
+ ["file-entry-cache", "npm:8.0.0"],\
+ ["flat-cache", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["file-type", [\
+ ["npm:18.7.0", {\
+ "packageLocation": "./.yarn/cache/file-type-npm-18.7.0-b585ca87df-bd06a5a5b2.zip/node_modules/file-type/",\
+ "packageDependencies": [\
+ ["file-type", "npm:18.7.0"],\
+ ["readable-web-to-node-stream", "npm:3.0.2"],\
+ ["strtok3", "npm:7.0.0"],\
+ ["token-types", "npm:5.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["file-uri-to-path", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/file-uri-to-path-npm-1.0.0-1043ac6206-3b545e3a34.zip/node_modules/file-uri-to-path/",\
+ "packageDependencies": [\
+ ["file-uri-to-path", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["filing-cabinet", [\
+ ["npm:3.3.1", {\
+ "packageLocation": "./.yarn/cache/filing-cabinet-npm-3.3.1-dc82007732-fef434fd0f.zip/node_modules/filing-cabinet/",\
+ "packageDependencies": [\
+ ["filing-cabinet", "npm:3.3.1"],\
+ ["app-module-path", "npm:2.2.0"],\
+ ["commander", "npm:2.20.3"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["enhanced-resolve", "npm:5.15.0"],\
+ ["is-relative-path", "npm:1.0.2"],\
+ ["module-definition", "npm:3.4.0"],\
+ ["module-lookup-amd", "npm:7.0.1"],\
+ ["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"],\
+ ["resolve-dependency-path", "npm:2.0.0"],\
+ ["sass-lookup", "npm:3.0.0"],\
+ ["stylus-lookup", "npm:3.0.2"],\
+ ["tsconfig-paths", "npm:3.15.0"],\
+ ["typescript", "patch:typescript@npm%3A3.9.10#optional!builtin::version=3.9.10&hash=3bd3d3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fill-range", [\
+ ["npm:7.0.1", {\
+ "packageLocation": "./.yarn/cache/fill-range-npm-7.0.1-b8b1817caa-7cdad7d426.zip/node_modules/fill-range/",\
+ "packageDependencies": [\
+ ["fill-range", "npm:7.0.1"],\
+ ["to-regex-range", "npm:5.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["finalhandler", [\
+ ["npm:1.2.0", {\
+ "packageLocation": "./.yarn/cache/finalhandler-npm-1.2.0-593d001463-64b7e5ff2a.zip/node_modules/finalhandler/",\
+ "packageDependencies": [\
+ ["finalhandler", "npm:1.2.0"],\
+ ["debug", "virtual:3840e914156da5bf3a0152609f7597e38b893022314c08ba5b292edc820681760ec6c83dde1d34d78aa58a3f32c7d8c9d754f99860fa71136383ec1e2a87f57d#npm:2.6.9"],\
+ ["encodeurl", "npm:1.0.2"],\
+ ["escape-html", "npm:1.0.3"],\
+ ["on-finished", "npm:2.4.1"],\
+ ["parseurl", "npm:1.3.3"],\
+ ["statuses", "npm:2.0.1"],\
+ ["unpipe", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["find-node-modules", [\
+ ["npm:2.1.3", {\
+ "packageLocation": "./.yarn/cache/find-node-modules-npm-2.1.3-431b2c5604-61fd830063.zip/node_modules/find-node-modules/",\
+ "packageDependencies": [\
+ ["find-node-modules", "npm:2.1.3"],\
+ ["findup-sync", "npm:4.0.0"],\
+ ["merge", "npm:2.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["find-root", [\
+ ["npm:1.1.0", {\
+ "packageLocation": "./.yarn/cache/find-root-npm-1.1.0-a16a94005f-1abc7f3bf2.zip/node_modules/find-root/",\
+ "packageDependencies": [\
+ ["find-root", "npm:1.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["find-up", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/find-up-npm-2.1.0-9f6cb1765c-c080875c9f.zip/node_modules/find-up/",\
+ "packageDependencies": [\
+ ["find-up", "npm:2.1.0"],\
+ ["locate-path", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/find-up-npm-3.0.0-a2d4b1b317-2c2e7d0a26.zip/node_modules/find-up/",\
+ "packageDependencies": [\
+ ["find-up", "npm:3.0.0"],\
+ ["locate-path", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/find-up-npm-4.1.0-c3ccf8d855-0406ee89eb.zip/node_modules/find-up/",\
+ "packageDependencies": [\
+ ["find-up", "npm:4.1.0"],\
+ ["locate-path", "npm:5.0.0"],\
+ ["path-exists", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/find-up-npm-5.0.0-e03e9b796d-062c5a83a9.zip/node_modules/find-up/",\
+ "packageDependencies": [\
+ ["find-up", "npm:5.0.0"],\
+ ["locate-path", "npm:6.0.0"],\
+ ["path-exists", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["find-up-simple", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/find-up-simple-npm-1.0.0-81eb875be8-de1ad5e55c.zip/node_modules/find-up-simple/",\
+ "packageDependencies": [\
+ ["find-up-simple", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["findup-sync", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/findup-sync-npm-4.0.0-3884c677a0-3e7de4d0af.zip/node_modules/findup-sync/",\
+ "packageDependencies": [\
+ ["findup-sync", "npm:4.0.0"],\
+ ["detect-file", "npm:1.0.0"],\
+ ["is-glob", "npm:4.0.3"],\
+ ["micromatch", "npm:4.0.5"],\
+ ["resolve-dir", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["flat-cache", [\
+ ["npm:3.2.0", {\
+ "packageLocation": "./.yarn/cache/flat-cache-npm-3.2.0-9a887f084e-b76f611bd5.zip/node_modules/flat-cache/",\
+ "packageDependencies": [\
+ ["flat-cache", "npm:3.2.0"],\
+ ["flatted", "npm:3.2.9"],\
+ ["keyv", "npm:4.5.4"],\
+ ["rimraf", "npm:3.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/flat-cache-npm-4.0.0-af74b9d632-8f99e27bb3.zip/node_modules/flat-cache/",\
+ "packageDependencies": [\
+ ["flat-cache", "npm:4.0.0"],\
+ ["flatted", "npm:3.2.9"],\
+ ["keyv", "npm:4.5.4"],\
+ ["rimraf", "npm:5.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["flatted", [\
+ ["npm:3.2.9", {\
+ "packageLocation": "./.yarn/cache/flatted-npm-3.2.9-0462256d3c-5c91c5a0a2.zip/node_modules/flatted/",\
+ "packageDependencies": [\
+ ["flatted", "npm:3.2.9"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["flatten", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/flatten-npm-1.0.3-87bf6559dd-9f9b1f3dcd.zip/node_modules/flatten/",\
+ "packageDependencies": [\
+ ["flatten", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fn-name", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/fn-name-npm-2.0.1-955ccc097e-e9fc78915b.zip/node_modules/fn-name/",\
+ "packageDependencies": [\
+ ["fn-name", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["for-each", [\
+ ["npm:0.3.3", {\
+ "packageLocation": "./.yarn/cache/for-each-npm-0.3.3-0010ca8cdd-22330d8a2d.zip/node_modules/for-each/",\
+ "packageDependencies": [\
+ ["for-each", "npm:0.3.3"],\
+ ["is-callable", "npm:1.2.7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["foreground-child", [\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/cache/foreground-child-npm-3.1.1-77e78ed774-9700a02856.zip/node_modules/foreground-child/",\
+ "packageDependencies": [\
+ ["foreground-child", "npm:3.1.1"],\
+ ["cross-spawn", "npm:7.0.3"],\
+ ["signal-exit", "npm:4.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["forwarded", [\
+ ["npm:0.2.0", {\
+ "packageLocation": "./.yarn/cache/forwarded-npm-0.2.0-6473dabe35-9b67c3fac8.zip/node_modules/forwarded/",\
+ "packageDependencies": [\
+ ["forwarded", "npm:0.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fresh", [\
+ ["npm:0.5.2", {\
+ "packageLocation": "./.yarn/cache/fresh-npm-0.5.2-ad2bb4c0a2-c6d27f3ed8.zip/node_modules/fresh/",\
+ "packageDependencies": [\
+ ["fresh", "npm:0.5.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fs-extra", [\
+ ["npm:7.0.1", {\
+ "packageLocation": "./.yarn/cache/fs-extra-npm-7.0.1-b33a5e53e9-1943bb2150.zip/node_modules/fs-extra/",\
+ "packageDependencies": [\
+ ["fs-extra", "npm:7.0.1"],\
+ ["graceful-fs", "npm:4.2.11"],\
+ ["jsonfile", "npm:4.0.0"],\
+ ["universalify", "npm:0.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:9.1.0", {\
+ "packageLocation": "./.yarn/cache/fs-extra-npm-9.1.0-983c2ddb4c-9b808bd884.zip/node_modules/fs-extra/",\
+ "packageDependencies": [\
+ ["fs-extra", "npm:9.1.0"],\
+ ["at-least-node", "npm:1.0.0"],\
+ ["graceful-fs", "npm:4.2.11"],\
+ ["jsonfile", "npm:6.1.0"],\
+ ["universalify", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fs-minipass", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/fs-minipass-npm-2.1.0-501ef87306-703d16522b.zip/node_modules/fs-minipass/",\
+ "packageDependencies": [\
+ ["fs-minipass", "npm:2.1.0"],\
+ ["minipass", "npm:3.3.6"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.3", {\
+ "packageLocation": "./.yarn/cache/fs-minipass-npm-3.0.3-d148d6ac19-63e80da2ff.zip/node_modules/fs-minipass/",\
+ "packageDependencies": [\
+ ["fs-minipass", "npm:3.0.3"],\
+ ["minipass", "npm:7.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fs.realpath", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/fs.realpath-npm-1.0.0-c8f05d8126-444cf1291d.zip/node_modules/fs.realpath/",\
+ "packageDependencies": [\
+ ["fs.realpath", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["fsevents", [\
+ ["patch:fsevents@npm%3A2.3.2#optional!builtin::version=2.3.2&hash=df0bf1", {\
+ "packageLocation": "./.yarn/unplugged/fsevents-patch-19706e7e35/node_modules/fsevents/",\
+ "packageDependencies": [\
+ ["fsevents", "patch:fsevents@npm%3A2.3.2#optional!builtin::version=2.3.2&hash=df0bf1"],\
+ ["node-gyp", "npm:10.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1", {\
+ "packageLocation": "./.yarn/unplugged/fsevents-patch-6b67494872/node_modules/fsevents/",\
+ "packageDependencies": [\
+ ["fsevents", "patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1"],\
+ ["node-gyp", "npm:10.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["function-bind", [\
+ ["npm:1.1.2", {\
+ "packageLocation": "./.yarn/cache/function-bind-npm-1.1.2-7a55be9b03-d8680ee1e5.zip/node_modules/function-bind/",\
+ "packageDependencies": [\
+ ["function-bind", "npm:1.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["function.prototype.name", [\
+ ["npm:1.1.6", {\
+ "packageLocation": "./.yarn/cache/function.prototype.name-npm-1.1.6-fd3a6a5cdd-9eae112949.zip/node_modules/function.prototype.name/",\
+ "packageDependencies": [\
+ ["function.prototype.name", "npm:1.1.6"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"],\
+ ["functions-have-names", "npm:1.2.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["functions-have-names", [\
+ ["npm:1.2.3", {\
+ "packageLocation": "./.yarn/cache/functions-have-names-npm-1.2.3-e5cf1e2208-33e77fd29b.zip/node_modules/functions-have-names/",\
+ "packageDependencies": [\
+ ["functions-have-names", "npm:1.2.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["gauge", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/gauge-npm-3.0.2-9e22f7af9e-75230ccaf2.zip/node_modules/gauge/",\
+ "packageDependencies": [\
+ ["gauge", "npm:3.0.2"],\
+ ["aproba", "npm:2.0.0"],\
+ ["color-support", "npm:1.1.3"],\
+ ["console-control-strings", "npm:1.1.0"],\
+ ["has-unicode", "npm:2.0.1"],\
+ ["object-assign", "npm:4.1.1"],\
+ ["signal-exit", "npm:3.0.7"],\
+ ["string-width", "npm:4.2.3"],\
+ ["strip-ansi", "npm:6.0.1"],\
+ ["wide-align", "npm:1.1.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["gensequence", [\
+ ["npm:6.0.0", {\
+ "packageLocation": "./.yarn/cache/gensequence-npm-6.0.0-6c97e84d9a-85c6928299.zip/node_modules/gensequence/",\
+ "packageDependencies": [\
+ ["gensequence", "npm:6.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["get-amd-module-type", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/get-amd-module-type-npm-3.0.2-466fbb8aa0-1017d6e812.zip/node_modules/get-amd-module-type/",\
+ "packageDependencies": [\
+ ["get-amd-module-type", "npm:3.0.2"],\
+ ["ast-module-types", "npm:3.0.0"],\
+ ["node-source-walk", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/get-amd-module-type-npm-4.1.0-b7d3afdf8c-3d011da95f.zip/node_modules/get-amd-module-type/",\
+ "packageDependencies": [\
+ ["get-amd-module-type", "npm:4.1.0"],\
+ ["ast-module-types", "npm:4.0.0"],\
+ ["node-source-walk", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["get-caller-file", [\
+ ["npm:2.0.5", {\
+ "packageLocation": "./.yarn/cache/get-caller-file-npm-2.0.5-80e8a86305-c6c7b60271.zip/node_modules/get-caller-file/",\
+ "packageDependencies": [\
+ ["get-caller-file", "npm:2.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["get-east-asian-width", [\
+ ["npm:1.2.0", {\
+ "packageLocation": "./.yarn/cache/get-east-asian-width-npm-1.2.0-6cd8491dbe-914b1e217c.zip/node_modules/get-east-asian-width/",\
+ "packageDependencies": [\
+ ["get-east-asian-width", "npm:1.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["get-intrinsic", [\
+ ["npm:1.2.2", {\
+ "packageLocation": "./.yarn/cache/get-intrinsic-npm-1.2.2-3f446d8847-4e7fb8adc6.zip/node_modules/get-intrinsic/",\
+ "packageDependencies": [\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["function-bind", "npm:1.1.2"],\
+ ["has-proto", "npm:1.0.1"],\
+ ["has-symbols", "npm:1.0.3"],\
+ ["hasown", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["get-own-enumerable-property-symbols", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/get-own-enumerable-property-symbols-npm-3.0.2-f143f9e8d3-103999855f.zip/node_modules/get-own-enumerable-property-symbols/",\
+ "packageDependencies": [\
+ ["get-own-enumerable-property-symbols", "npm:3.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["get-pkg-repo", [\
+ ["npm:4.2.1", {\
+ "packageLocation": "./.yarn/cache/get-pkg-repo-npm-4.2.1-b1cd052cb4-1338d2e048.zip/node_modules/get-pkg-repo/",\
+ "packageDependencies": [\
+ ["get-pkg-repo", "npm:4.2.1"],\
+ ["@hutson/parse-repository-url", "npm:3.0.2"],\
+ ["hosted-git-info", "npm:4.1.0"],\
+ ["through2", "npm:2.0.5"],\
+ ["yargs", "npm:16.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["get-stdin", [\
+ ["npm:9.0.0", {\
+ "packageLocation": "./.yarn/cache/get-stdin-npm-9.0.0-4221477153-7ef2edc0c8.zip/node_modules/get-stdin/",\
+ "packageDependencies": [\
+ ["get-stdin", "npm:9.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["get-stream", [\
+ ["npm:6.0.1", {\
+ "packageLocation": "./.yarn/cache/get-stream-npm-6.0.1-83e51a4642-49825d57d3.zip/node_modules/get-stream/",\
+ "packageDependencies": [\
+ ["get-stream", "npm:6.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["get-symbol-description", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/get-symbol-description-npm-1.0.0-9c95a4bc1f-23bc3b44c2.zip/node_modules/get-symbol-description/",\
+ "packageDependencies": [\
+ ["get-symbol-description", "npm:1.0.0"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["get-intrinsic", "npm:1.2.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["git-raw-commits", [\
+ ["npm:2.0.11", {\
+ "packageLocation": "./.yarn/cache/git-raw-commits-npm-2.0.11-b090f2f684-c9cee7ce11.zip/node_modules/git-raw-commits/",\
+ "packageDependencies": [\
+ ["git-raw-commits", "npm:2.0.11"],\
+ ["dargs", "npm:7.0.0"],\
+ ["lodash", "npm:4.17.21"],\
+ ["meow", "npm:8.1.2"],\
+ ["split2", "npm:3.2.2"],\
+ ["through2", "npm:4.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["git-remote-origin-url", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/git-remote-origin-url-npm-2.0.0-319debe0d1-3a846ce98e.zip/node_modules/git-remote-origin-url/",\
+ "packageDependencies": [\
+ ["git-remote-origin-url", "npm:2.0.0"],\
+ ["gitconfiglocal", "npm:1.0.0"],\
+ ["pify", "npm:2.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["git-semver-tags", [\
+ ["npm:4.1.1", {\
+ "packageLocation": "./.yarn/cache/git-semver-tags-npm-4.1.1-93b9747811-cd8c91c666.zip/node_modules/git-semver-tags/",\
+ "packageDependencies": [\
+ ["git-semver-tags", "npm:4.1.1"],\
+ ["meow", "npm:8.1.2"],\
+ ["semver", "npm:6.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["gitconfiglocal", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/gitconfiglocal-npm-1.0.0-905970379d-cfcb163448.zip/node_modules/gitconfiglocal/",\
+ "packageDependencies": [\
+ ["gitconfiglocal", "npm:1.0.0"],\
+ ["ini", "npm:1.3.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["glob", [\
+ ["npm:10.3.10", {\
+ "packageLocation": "./.yarn/cache/glob-npm-10.3.10-da1ef8b112-13d8a1feb7.zip/node_modules/glob/",\
+ "packageDependencies": [\
+ ["glob", "npm:10.3.10"],\
+ ["foreground-child", "npm:3.1.1"],\
+ ["jackspeak", "npm:2.3.6"],\
+ ["minimatch", "npm:9.0.3"],\
+ ["minipass", "npm:7.0.4"],\
+ ["path-scurry", "npm:1.10.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.2.3", {\
+ "packageLocation": "./.yarn/cache/glob-npm-7.2.3-2d866d17a5-65676153e2.zip/node_modules/glob/",\
+ "packageDependencies": [\
+ ["glob", "npm:7.2.3"],\
+ ["fs.realpath", "npm:1.0.0"],\
+ ["inflight", "npm:1.0.6"],\
+ ["inherits", "npm:2.0.4"],\
+ ["minimatch", "npm:3.1.2"],\
+ ["once", "npm:1.4.0"],\
+ ["path-is-absolute", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:8.1.0", {\
+ "packageLocation": "./.yarn/cache/glob-npm-8.1.0-65f64af8b1-cb0b5cab17.zip/node_modules/glob/",\
+ "packageDependencies": [\
+ ["glob", "npm:8.1.0"],\
+ ["fs.realpath", "npm:1.0.0"],\
+ ["inflight", "npm:1.0.6"],\
+ ["inherits", "npm:2.0.4"],\
+ ["minimatch", "npm:5.1.6"],\
+ ["once", "npm:1.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["glob-parent", [\
+ ["npm:5.1.2", {\
+ "packageLocation": "./.yarn/cache/glob-parent-npm-5.1.2-021ab32634-cab87638e2.zip/node_modules/glob-parent/",\
+ "packageDependencies": [\
+ ["glob-parent", "npm:5.1.2"],\
+ ["is-glob", "npm:4.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.0.2", {\
+ "packageLocation": "./.yarn/cache/glob-parent-npm-6.0.2-2cbef12738-317034d886.zip/node_modules/glob-parent/",\
+ "packageDependencies": [\
+ ["glob-parent", "npm:6.0.2"],\
+ ["is-glob", "npm:4.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["global-directory", [\
+ ["npm:4.0.1", {\
+ "packageLocation": "./.yarn/cache/global-directory-npm-4.0.1-1de95382fd-f9cbeef41d.zip/node_modules/global-directory/",\
+ "packageDependencies": [\
+ ["global-directory", "npm:4.0.1"],\
+ ["ini", "npm:4.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["global-dirs", [\
+ ["npm:0.1.1", {\
+ "packageLocation": "./.yarn/cache/global-dirs-npm-0.1.1-87c167e806-3608072e58.zip/node_modules/global-dirs/",\
+ "packageDependencies": [\
+ ["global-dirs", "npm:0.1.1"],\
+ ["ini", "npm:1.3.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["global-modules", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/global-modules-npm-1.0.0-70c522e57a-7d91ecf78d.zip/node_modules/global-modules/",\
+ "packageDependencies": [\
+ ["global-modules", "npm:1.0.0"],\
+ ["global-prefix", "npm:1.0.2"],\
+ ["is-windows", "npm:1.0.2"],\
+ ["resolve-dir", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["global-prefix", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/global-prefix-npm-1.0.2-a96996834b-d8037e300f.zip/node_modules/global-prefix/",\
+ "packageDependencies": [\
+ ["global-prefix", "npm:1.0.2"],\
+ ["expand-tilde", "npm:2.0.2"],\
+ ["homedir-polyfill", "npm:1.0.3"],\
+ ["ini", "npm:1.3.8"],\
+ ["is-windows", "npm:1.0.2"],\
+ ["which", "npm:1.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["globals", [\
+ ["npm:13.24.0", {\
+ "packageLocation": "./.yarn/cache/globals-npm-13.24.0-cc7713139c-d3c11aeea8.zip/node_modules/globals/",\
+ "packageDependencies": [\
+ ["globals", "npm:13.24.0"],\
+ ["type-fest", "npm:0.20.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["globalthis", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/globalthis-npm-1.0.3-96cd56020d-0db6e9af10.zip/node_modules/globalthis/",\
+ "packageDependencies": [\
+ ["globalthis", "npm:1.0.3"],\
+ ["define-properties", "npm:1.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["globby", [\
+ ["npm:11.1.0", {\
+ "packageLocation": "./.yarn/cache/globby-npm-11.1.0-bdcdf20c71-b39511b4af.zip/node_modules/globby/",\
+ "packageDependencies": [\
+ ["globby", "npm:11.1.0"],\
+ ["array-union", "npm:2.1.0"],\
+ ["dir-glob", "npm:3.0.1"],\
+ ["fast-glob", "npm:3.3.2"],\
+ ["ignore", "npm:5.3.0"],\
+ ["merge2", "npm:1.4.1"],\
+ ["slash", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:13.2.2", {\
+ "packageLocation": "./.yarn/cache/globby-npm-13.2.2-47efcd4a86-a8d7cc7cbe.zip/node_modules/globby/",\
+ "packageDependencies": [\
+ ["globby", "npm:13.2.2"],\
+ ["dir-glob", "npm:3.0.1"],\
+ ["fast-glob", "npm:3.3.2"],\
+ ["ignore", "npm:5.3.0"],\
+ ["merge2", "npm:1.4.1"],\
+ ["slash", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:14.0.0", {\
+ "packageLocation": "./.yarn/cache/globby-npm-14.0.0-3bccdd5188-6d98738a41.zip/node_modules/globby/",\
+ "packageDependencies": [\
+ ["globby", "npm:14.0.0"],\
+ ["@sindresorhus/merge-streams", "npm:1.0.0"],\
+ ["fast-glob", "npm:3.3.2"],\
+ ["ignore", "npm:5.3.0"],\
+ ["path-type", "npm:5.0.0"],\
+ ["slash", "npm:5.1.0"],\
+ ["unicorn-magic", "npm:0.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["gonzales-pe", [\
+ ["npm:4.3.0", {\
+ "packageLocation": "./.yarn/cache/gonzales-pe-npm-4.3.0-82921c6976-b99a6ef4bf.zip/node_modules/gonzales-pe/",\
+ "packageDependencies": [\
+ ["gonzales-pe", "npm:4.3.0"],\
+ ["minimist", "npm:1.2.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["gopd", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/gopd-npm-1.0.1-10c1d0b534-505c05487f.zip/node_modules/gopd/",\
+ "packageDependencies": [\
+ ["gopd", "npm:1.0.1"],\
+ ["get-intrinsic", "npm:1.2.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["graceful-fs", [\
+ ["npm:4.2.11", {\
+ "packageLocation": "./.yarn/cache/graceful-fs-npm-4.2.11-24bb648a68-386d011a55.zip/node_modules/graceful-fs/",\
+ "packageDependencies": [\
+ ["graceful-fs", "npm:4.2.11"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["graphemer", [\
+ ["npm:1.4.0", {\
+ "packageLocation": "./.yarn/cache/graphemer-npm-1.4.0-0627732d35-e951259d8c.zip/node_modules/graphemer/",\
+ "packageDependencies": [\
+ ["graphemer", "npm:1.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["handlebars", [\
+ ["npm:4.7.8", {\
+ "packageLocation": "./.yarn/cache/handlebars-npm-4.7.8-25244c2c82-7aff423ea3.zip/node_modules/handlebars/",\
+ "packageDependencies": [\
+ ["handlebars", "npm:4.7.8"],\
+ ["minimist", "npm:1.2.8"],\
+ ["neo-async", "npm:2.6.2"],\
+ ["source-map", "npm:0.6.1"],\
+ ["uglify-js", "npm:3.17.4"],\
+ ["wordwrap", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["hard-rejection", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/hard-rejection-npm-2.1.0-a80f2a977d-febc3343a1.zip/node_modules/hard-rejection/",\
+ "packageDependencies": [\
+ ["hard-rejection", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["has-bigints", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/has-bigints-npm-1.0.2-52732e614d-724eb1485b.zip/node_modules/has-bigints/",\
+ "packageDependencies": [\
+ ["has-bigints", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["has-flag", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/has-flag-npm-3.0.0-16ac11fe05-1c6c83b14b.zip/node_modules/has-flag/",\
+ "packageDependencies": [\
+ ["has-flag", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/has-flag-npm-4.0.0-32af9f0536-2e789c61b7.zip/node_modules/has-flag/",\
+ "packageDependencies": [\
+ ["has-flag", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["has-own-prop", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/has-own-prop-npm-2.0.0-d895adfe8c-2745497283.zip/node_modules/has-own-prop/",\
+ "packageDependencies": [\
+ ["has-own-prop", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["has-property-descriptors", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/has-property-descriptors-npm-1.0.1-61cd62fce3-d62ba94b40.zip/node_modules/has-property-descriptors/",\
+ "packageDependencies": [\
+ ["has-property-descriptors", "npm:1.0.1"],\
+ ["get-intrinsic", "npm:1.2.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["has-proto", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/has-proto-npm-1.0.1-631ea9d820-c8a8fe411f.zip/node_modules/has-proto/",\
+ "packageDependencies": [\
+ ["has-proto", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["has-symbols", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/has-symbols-npm-1.0.3-1986bff2c4-e6922b4345.zip/node_modules/has-symbols/",\
+ "packageDependencies": [\
+ ["has-symbols", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["has-tostringtag", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/has-tostringtag-npm-1.0.0-b1fcf3ab55-1cdba76b7d.zip/node_modules/has-tostringtag/",\
+ "packageDependencies": [\
+ ["has-tostringtag", "npm:1.0.0"],\
+ ["has-symbols", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["has-unicode", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/has-unicode-npm-2.0.1-893adb4747-ebdb2f4895.zip/node_modules/has-unicode/",\
+ "packageDependencies": [\
+ ["has-unicode", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["hash.js", [\
+ ["npm:1.1.7", {\
+ "packageLocation": "./.yarn/cache/hash.js-npm-1.1.7-f1ad187358-41ada59494.zip/node_modules/hash.js/",\
+ "packageDependencies": [\
+ ["hash.js", "npm:1.1.7"],\
+ ["inherits", "npm:2.0.4"],\
+ ["minimalistic-assert", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["hasown", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/hasown-npm-2.0.0-78b794ceef-5d415b114f.zip/node_modules/hasown/",\
+ "packageDependencies": [\
+ ["hasown", "npm:2.0.0"],\
+ ["function-bind", "npm:1.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["hmac-drbg", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/hmac-drbg-npm-1.0.1-3499ad31cd-f3d9ba31b4.zip/node_modules/hmac-drbg/",\
+ "packageDependencies": [\
+ ["hmac-drbg", "npm:1.0.1"],\
+ ["hash.js", "npm:1.1.7"],\
+ ["minimalistic-assert", "npm:1.0.1"],\
+ ["minimalistic-crypto-utils", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["homedir-polyfill", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/homedir-polyfill-npm-1.0.3-da1a29ce00-3c099844f9.zip/node_modules/homedir-polyfill/",\
+ "packageDependencies": [\
+ ["homedir-polyfill", "npm:1.0.3"],\
+ ["parse-passwd", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["hosted-git-info", [\
+ ["npm:2.8.9", {\
+ "packageLocation": "./.yarn/cache/hosted-git-info-npm-2.8.9-62c44fa93f-317cbc6b1b.zip/node_modules/hosted-git-info/",\
+ "packageDependencies": [\
+ ["hosted-git-info", "npm:2.8.9"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/hosted-git-info-npm-4.1.0-4efcdf8fd3-150fbcb001.zip/node_modules/hosted-git-info/",\
+ "packageDependencies": [\
+ ["hosted-git-info", "npm:4.1.0"],\
+ ["lru-cache", "npm:6.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["html-escaper", [\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/html-escaper-npm-2.0.2-38e51ef294-208e8a12de.zip/node_modules/html-escaper/",\
+ "packageDependencies": [\
+ ["html-escaper", "npm:2.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["http-cache-semantics", [\
+ ["npm:4.1.1", {\
+ "packageLocation": "./.yarn/cache/http-cache-semantics-npm-4.1.1-1120131375-ce1319b8a3.zip/node_modules/http-cache-semantics/",\
+ "packageDependencies": [\
+ ["http-cache-semantics", "npm:4.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["http-errors", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/http-errors-npm-2.0.0-3f1c503428-fc6f2715fe.zip/node_modules/http-errors/",\
+ "packageDependencies": [\
+ ["http-errors", "npm:2.0.0"],\
+ ["depd", "npm:2.0.0"],\
+ ["inherits", "npm:2.0.4"],\
+ ["setprototypeof", "npm:1.2.0"],\
+ ["statuses", "npm:2.0.1"],\
+ ["toidentifier", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["http-proxy-agent", [\
+ ["npm:7.0.0", {\
+ "packageLocation": "./.yarn/cache/http-proxy-agent-npm-7.0.0-106a57cc8c-a11574ff39.zip/node_modules/http-proxy-agent/",\
+ "packageDependencies": [\
+ ["http-proxy-agent", "npm:7.0.0"],\
+ ["agent-base", "npm:7.1.0"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["https-proxy-agent", [\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/https-proxy-agent-npm-5.0.1-42d65f358e-6dd639f034.zip/node_modules/https-proxy-agent/",\
+ "packageDependencies": [\
+ ["https-proxy-agent", "npm:5.0.1"],\
+ ["agent-base", "npm:6.0.2"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.0.2", {\
+ "packageLocation": "./.yarn/cache/https-proxy-agent-npm-7.0.2-83ea6a5d42-7735eb9007.zip/node_modules/https-proxy-agent/",\
+ "packageDependencies": [\
+ ["https-proxy-agent", "npm:7.0.2"],\
+ ["agent-base", "npm:7.1.0"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["human-signals", [\
+ ["npm:4.3.1", {\
+ "packageLocation": "./.yarn/cache/human-signals-npm-4.3.1-d723001512-40498b33fe.zip/node_modules/human-signals/",\
+ "packageDependencies": [\
+ ["human-signals", "npm:4.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["iconv-lite", [\
+ ["npm:0.4.24", {\
+ "packageLocation": "./.yarn/cache/iconv-lite-npm-0.4.24-c5c4ac6695-c6886a24cc.zip/node_modules/iconv-lite/",\
+ "packageDependencies": [\
+ ["iconv-lite", "npm:0.4.24"],\
+ ["safer-buffer", "npm:2.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:0.6.3", {\
+ "packageLocation": "./.yarn/cache/iconv-lite-npm-0.6.3-24b8aae27e-98102bc66b.zip/node_modules/iconv-lite/",\
+ "packageDependencies": [\
+ ["iconv-lite", "npm:0.6.3"],\
+ ["safer-buffer", "npm:2.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ieee754", [\
+ ["npm:1.2.1", {\
+ "packageLocation": "./.yarn/cache/ieee754-npm-1.2.1-fb63b3caeb-b0782ef5e0.zip/node_modules/ieee754/",\
+ "packageDependencies": [\
+ ["ieee754", "npm:1.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ignore", [\
+ ["npm:5.3.0", {\
+ "packageLocation": "./.yarn/cache/ignore-npm-5.3.0-fb0f5fa062-dc06bea5c2.zip/node_modules/ignore/",\
+ "packageDependencies": [\
+ ["ignore", "npm:5.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ignore-by-default", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/ignore-by-default-npm-2.1.0-996694cc00-3a6040dac2.zip/node_modules/ignore-by-default/",\
+ "packageDependencies": [\
+ ["ignore-by-default", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["import-fresh", [\
+ ["npm:3.3.0", {\
+ "packageLocation": "./.yarn/cache/import-fresh-npm-3.3.0-3e34265ca9-7f882953aa.zip/node_modules/import-fresh/",\
+ "packageDependencies": [\
+ ["import-fresh", "npm:3.3.0"],\
+ ["parent-module", "npm:1.0.1"],\
+ ["resolve-from", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["import-lazy", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/import-lazy-npm-4.0.0-3215653869-a3520313e2.zip/node_modules/import-lazy/",\
+ "packageDependencies": [\
+ ["import-lazy", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["import-meta-resolve", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/import-meta-resolve-npm-4.0.0-13a6ef4fd3-709375e01f.zip/node_modules/import-meta-resolve/",\
+ "packageDependencies": [\
+ ["import-meta-resolve", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["imurmurhash", [\
+ ["npm:0.1.4", {\
+ "packageLocation": "./.yarn/cache/imurmurhash-npm-0.1.4-610c5068a0-8b51313850.zip/node_modules/imurmurhash/",\
+ "packageDependencies": [\
+ ["imurmurhash", "npm:0.1.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["indent-string", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/indent-string-npm-4.0.0-7b717435b2-1e1904ddb0.zip/node_modules/indent-string/",\
+ "packageDependencies": [\
+ ["indent-string", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/indent-string-npm-5.0.0-35eaa3b052-8ee77b57d9.zip/node_modules/indent-string/",\
+ "packageDependencies": [\
+ ["indent-string", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["indexes-of", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/indexes-of-npm-1.0.1-5ce8500941-1ea1d2d001.zip/node_modules/indexes-of/",\
+ "packageDependencies": [\
+ ["indexes-of", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["inflight", [\
+ ["npm:1.0.6", {\
+ "packageLocation": "./.yarn/cache/inflight-npm-1.0.6-ccedb4b908-7faca22584.zip/node_modules/inflight/",\
+ "packageDependencies": [\
+ ["inflight", "npm:1.0.6"],\
+ ["once", "npm:1.4.0"],\
+ ["wrappy", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["inherits", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/inherits-npm-2.0.1-0011554c03-bfc7b37c21.zip/node_modules/inherits/",\
+ "packageDependencies": [\
+ ["inherits", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.4", {\
+ "packageLocation": "./.yarn/cache/inherits-npm-2.0.4-c66b3957a0-4e531f648b.zip/node_modules/inherits/",\
+ "packageDependencies": [\
+ ["inherits", "npm:2.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ini", [\
+ ["npm:1.3.8", {\
+ "packageLocation": "./.yarn/cache/ini-npm-1.3.8-fb5040b4c0-ec93838d23.zip/node_modules/ini/",\
+ "packageDependencies": [\
+ ["ini", "npm:1.3.8"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.1", {\
+ "packageLocation": "./.yarn/cache/ini-npm-4.1.1-01c2cbda7b-7fddc8dfd3.zip/node_modules/ini/",\
+ "packageDependencies": [\
+ ["ini", "npm:4.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["inquirer", [\
+ ["npm:8.2.5", {\
+ "packageLocation": "./.yarn/cache/inquirer-npm-8.2.5-ffce7548f9-e3e64e10f5.zip/node_modules/inquirer/",\
+ "packageDependencies": [\
+ ["inquirer", "npm:8.2.5"],\
+ ["ansi-escapes", "npm:4.3.2"],\
+ ["chalk", "npm:4.1.2"],\
+ ["cli-cursor", "npm:3.1.0"],\
+ ["cli-width", "npm:3.0.0"],\
+ ["external-editor", "npm:3.1.0"],\
+ ["figures", "npm:3.2.0"],\
+ ["lodash", "npm:4.17.21"],\
+ ["mute-stream", "npm:0.0.8"],\
+ ["ora", "npm:5.4.1"],\
+ ["run-async", "npm:2.4.1"],\
+ ["rxjs", "npm:7.8.1"],\
+ ["string-width", "npm:4.2.3"],\
+ ["strip-ansi", "npm:6.0.1"],\
+ ["through", "npm:2.3.8"],\
+ ["wrap-ansi", "npm:7.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["internal-slot", [\
+ ["npm:1.0.6", {\
+ "packageLocation": "./.yarn/cache/internal-slot-npm-1.0.6-1ed833e09a-aa37cafc8f.zip/node_modules/internal-slot/",\
+ "packageDependencies": [\
+ ["internal-slot", "npm:1.0.6"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["hasown", "npm:2.0.0"],\
+ ["side-channel", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ip", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/ip-npm-2.0.0-204facb3cc-8d186cc558.zip/node_modules/ip/",\
+ "packageDependencies": [\
+ ["ip", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ipaddr.js", [\
+ ["npm:1.9.1", {\
+ "packageLocation": "./.yarn/cache/ipaddr.js-npm-1.9.1-19ae7878b4-0486e77504.zip/node_modules/ipaddr.js/",\
+ "packageDependencies": [\
+ ["ipaddr.js", "npm:1.9.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["irregular-plurals", [\
+ ["npm:3.5.0", {\
+ "packageLocation": "./.yarn/cache/irregular-plurals-npm-3.5.0-2415613615-7c033bbe73.zip/node_modules/irregular-plurals/",\
+ "packageDependencies": [\
+ ["irregular-plurals", "npm:3.5.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-array-buffer", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/is-array-buffer-npm-3.0.2-0dec897785-40ed13a5f5.zip/node_modules/is-array-buffer/",\
+ "packageDependencies": [\
+ ["is-array-buffer", "npm:3.0.2"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["is-typed-array", "npm:1.1.12"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-arrayish", [\
+ ["npm:0.2.1", {\
+ "packageLocation": "./.yarn/cache/is-arrayish-npm-0.2.1-23927dfb15-e7fb686a73.zip/node_modules/is-arrayish/",\
+ "packageDependencies": [\
+ ["is-arrayish", "npm:0.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-bigint", [\
+ ["npm:1.0.4", {\
+ "packageLocation": "./.yarn/cache/is-bigint-npm-1.0.4-31c2eecbc9-eb9c88e418.zip/node_modules/is-bigint/",\
+ "packageDependencies": [\
+ ["is-bigint", "npm:1.0.4"],\
+ ["has-bigints", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-boolean-object", [\
+ ["npm:1.1.2", {\
+ "packageLocation": "./.yarn/cache/is-boolean-object-npm-1.1.2-ecbd575e6a-6090587f8a.zip/node_modules/is-boolean-object/",\
+ "packageDependencies": [\
+ ["is-boolean-object", "npm:1.1.2"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["has-tostringtag", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-builtin-module", [\
+ ["npm:3.2.1", {\
+ "packageLocation": "./.yarn/cache/is-builtin-module-npm-3.2.1-2f92a5d353-5a66937a03.zip/node_modules/is-builtin-module/",\
+ "packageDependencies": [\
+ ["is-builtin-module", "npm:3.2.1"],\
+ ["builtin-modules", "npm:3.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-callable", [\
+ ["npm:1.2.7", {\
+ "packageLocation": "./.yarn/cache/is-callable-npm-1.2.7-808a303e61-ceebaeb9d9.zip/node_modules/is-callable/",\
+ "packageDependencies": [\
+ ["is-callable", "npm:1.2.7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-core-module", [\
+ ["npm:2.13.1", {\
+ "packageLocation": "./.yarn/cache/is-core-module-npm-2.13.1-36e17434f9-2cba9903aa.zip/node_modules/is-core-module/",\
+ "packageDependencies": [\
+ ["is-core-module", "npm:2.13.1"],\
+ ["hasown", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-date-object", [\
+ ["npm:1.0.5", {\
+ "packageLocation": "./.yarn/cache/is-date-object-npm-1.0.5-88f3d08b5e-eed21e5dcc.zip/node_modules/is-date-object/",\
+ "packageDependencies": [\
+ ["is-date-object", "npm:1.0.5"],\
+ ["has-tostringtag", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-docker", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/is-docker-npm-3.0.0-1570e32177-d2c4f8e6d3.zip/node_modules/is-docker/",\
+ "packageDependencies": [\
+ ["is-docker", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-extglob", [\
+ ["npm:2.1.1", {\
+ "packageLocation": "./.yarn/cache/is-extglob-npm-2.1.1-0870ea68b5-5487da3569.zip/node_modules/is-extglob/",\
+ "packageDependencies": [\
+ ["is-extglob", "npm:2.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-fullwidth-code-point", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/is-fullwidth-code-point-npm-3.0.0-1ecf4ebee5-bb11d825e0.zip/node_modules/is-fullwidth-code-point/",\
+ "packageDependencies": [\
+ ["is-fullwidth-code-point", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/is-fullwidth-code-point-npm-4.0.0-848488b60d-df2a717e81.zip/node_modules/is-fullwidth-code-point/",\
+ "packageDependencies": [\
+ ["is-fullwidth-code-point", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-glob", [\
+ ["npm:4.0.3", {\
+ "packageLocation": "./.yarn/cache/is-glob-npm-4.0.3-cb87bf1bdb-17fb4014e2.zip/node_modules/is-glob/",\
+ "packageDependencies": [\
+ ["is-glob", "npm:4.0.3"],\
+ ["is-extglob", "npm:2.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-immutable-type", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/is-immutable-type-npm-2.0.1-a1c8e237b4-1ce7e6ea31.zip/node_modules/is-immutable-type/",\
+ "packageDependencies": [\
+ ["is-immutable-type", "npm:2.0.1"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:45ee868a16e5e16301bd5a061375b37c4ddadfda3dbc29a60eb33cc602493cb2833fdb5058487addec4d7d2fad1c6defdae2c5ae0c70fd6e7e1433365f3b484b#npm:2.0.1", {\
+ "packageLocation": "./.yarn/__virtual__/is-immutable-type-virtual-a47524ebd3/0/cache/is-immutable-type-npm-2.0.1-a1c8e237b4-1ce7e6ea31.zip/node_modules/is-immutable-type/",\
+ "packageDependencies": [\
+ ["is-immutable-type", "virtual:45ee868a16e5e16301bd5a061375b37c4ddadfda3dbc29a60eb33cc602493cb2833fdb5058487addec4d7d2fad1c6defdae2c5ae0c70fd6e7e1433365f3b484b#npm:2.0.1"],\
+ ["@types/eslint", null],\
+ ["@types/typescript", null],\
+ ["@typescript-eslint/type-utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:6.18.1"],\
+ ["eslint", "npm:8.56.0"],\
+ ["ts-api-utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:1.0.3"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "packagePeers": [\
+ "@types/eslint",\
+ "@types/typescript",\
+ "eslint",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-inside-container", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/is-inside-container-npm-1.0.0-f2c9e9bb96-a8efb0e84f.zip/node_modules/is-inside-container/",\
+ "packageDependencies": [\
+ ["is-inside-container", "npm:1.0.0"],\
+ ["is-docker", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-interactive", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/is-interactive-npm-1.0.0-7ff7c6e04a-dd47904dbf.zip/node_modules/is-interactive/",\
+ "packageDependencies": [\
+ ["is-interactive", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-lambda", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/is-lambda-npm-1.0.1-7ab55bc8a8-85fee098ae.zip/node_modules/is-lambda/",\
+ "packageDependencies": [\
+ ["is-lambda", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-module", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/is-module-npm-1.0.0-79ba918283-795a3914bc.zip/node_modules/is-module/",\
+ "packageDependencies": [\
+ ["is-module", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-negative-zero", [\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/is-negative-zero-npm-2.0.2-0adac91f15-eda024c158.zip/node_modules/is-negative-zero/",\
+ "packageDependencies": [\
+ ["is-negative-zero", "npm:2.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-number", [\
+ ["npm:7.0.0", {\
+ "packageLocation": "./.yarn/cache/is-number-npm-7.0.0-060086935c-b4686d0d30.zip/node_modules/is-number/",\
+ "packageDependencies": [\
+ ["is-number", "npm:7.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-number-object", [\
+ ["npm:1.0.7", {\
+ "packageLocation": "./.yarn/cache/is-number-object-npm-1.0.7-539d0e274d-aad266da1e.zip/node_modules/is-number-object/",\
+ "packageDependencies": [\
+ ["is-number-object", "npm:1.0.7"],\
+ ["has-tostringtag", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-obj", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/is-obj-npm-1.0.1-7d391539d7-5003acba0a.zip/node_modules/is-obj/",\
+ "packageDependencies": [\
+ ["is-obj", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/is-obj-npm-2.0.0-3d95e053f4-85044ed7ba.zip/node_modules/is-obj/",\
+ "packageDependencies": [\
+ ["is-obj", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-path-inside", [\
+ ["npm:3.0.3", {\
+ "packageLocation": "./.yarn/cache/is-path-inside-npm-3.0.3-2ea0ef44fd-cf7d4ac35f.zip/node_modules/is-path-inside/",\
+ "packageDependencies": [\
+ ["is-path-inside", "npm:3.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-plain-obj", [\
+ ["npm:1.1.0", {\
+ "packageLocation": "./.yarn/cache/is-plain-obj-npm-1.1.0-1046f64c0b-daaee1805a.zip/node_modules/is-plain-obj/",\
+ "packageDependencies": [\
+ ["is-plain-obj", "npm:1.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-plain-object", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/is-plain-object-npm-5.0.0-285b70faa3-893e42bad8.zip/node_modules/is-plain-object/",\
+ "packageDependencies": [\
+ ["is-plain-object", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-promise", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/is-promise-npm-4.0.0-1e3c05420c-ebd5c672d7.zip/node_modules/is-promise/",\
+ "packageDependencies": [\
+ ["is-promise", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-reference", [\
+ ["npm:1.2.1", {\
+ "packageLocation": "./.yarn/cache/is-reference-npm-1.2.1-87ca1743c8-7dc819fc8d.zip/node_modules/is-reference/",\
+ "packageDependencies": [\
+ ["is-reference", "npm:1.2.1"],\
+ ["@types/estree", "npm:1.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-regex", [\
+ ["npm:1.1.4", {\
+ "packageLocation": "./.yarn/cache/is-regex-npm-1.1.4-cca193ef11-bb72aae604.zip/node_modules/is-regex/",\
+ "packageDependencies": [\
+ ["is-regex", "npm:1.1.4"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["has-tostringtag", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-regexp", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/is-regexp-npm-1.0.0-8f95f51a0c-34cacda190.zip/node_modules/is-regexp/",\
+ "packageDependencies": [\
+ ["is-regexp", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-relative-path", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/is-relative-path-npm-1.0.2-920be97603-aaa1129bac.zip/node_modules/is-relative-path/",\
+ "packageDependencies": [\
+ ["is-relative-path", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-shared-array-buffer", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/is-shared-array-buffer-npm-1.0.2-32e4181fcd-cfeee6f171.zip/node_modules/is-shared-array-buffer/",\
+ "packageDependencies": [\
+ ["is-shared-array-buffer", "npm:1.0.2"],\
+ ["call-bind", "npm:1.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-stream", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/is-stream-npm-3.0.0-a77ac9a62e-eb2f7127af.zip/node_modules/is-stream/",\
+ "packageDependencies": [\
+ ["is-stream", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-string", [\
+ ["npm:1.0.7", {\
+ "packageLocation": "./.yarn/cache/is-string-npm-1.0.7-9f7066daed-905f805cbc.zip/node_modules/is-string/",\
+ "packageDependencies": [\
+ ["is-string", "npm:1.0.7"],\
+ ["has-tostringtag", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-symbol", [\
+ ["npm:1.0.4", {\
+ "packageLocation": "./.yarn/cache/is-symbol-npm-1.0.4-eb9baac703-9381dd015f.zip/node_modules/is-symbol/",\
+ "packageDependencies": [\
+ ["is-symbol", "npm:1.0.4"],\
+ ["has-symbols", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-text-path", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/is-text-path-npm-1.0.1-92c78fe58d-61c8650c29.zip/node_modules/is-text-path/",\
+ "packageDependencies": [\
+ ["is-text-path", "npm:1.0.1"],\
+ ["text-extensions", "npm:1.9.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-typed-array", [\
+ ["npm:1.1.12", {\
+ "packageLocation": "./.yarn/cache/is-typed-array-npm-1.1.12-6135c91b1a-9863e9cc72.zip/node_modules/is-typed-array/",\
+ "packageDependencies": [\
+ ["is-typed-array", "npm:1.1.12"],\
+ ["which-typed-array", "npm:1.1.13"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-typedarray", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/is-typedarray-npm-1.0.0-bbd99de5b6-4c096275ba.zip/node_modules/is-typedarray/",\
+ "packageDependencies": [\
+ ["is-typedarray", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-unicode-supported", [\
+ ["npm:0.1.0", {\
+ "packageLocation": "./.yarn/cache/is-unicode-supported-npm-0.1.0-0833e1bbfb-00cbe3455c.zip/node_modules/is-unicode-supported/",\
+ "packageDependencies": [\
+ ["is-unicode-supported", "npm:0.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/is-unicode-supported-npm-2.0.0-7daaafc111-3013dfb826.zip/node_modules/is-unicode-supported/",\
+ "packageDependencies": [\
+ ["is-unicode-supported", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-url", [\
+ ["npm:1.2.4", {\
+ "packageLocation": "./.yarn/cache/is-url-npm-1.2.4-0a28aeb560-0157a79874.zip/node_modules/is-url/",\
+ "packageDependencies": [\
+ ["is-url", "npm:1.2.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-url-superb", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/is-url-superb-npm-4.0.0-71f6df9bc1-354ea8246d.zip/node_modules/is-url-superb/",\
+ "packageDependencies": [\
+ ["is-url-superb", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-utf8", [\
+ ["npm:0.2.1", {\
+ "packageLocation": "./.yarn/cache/is-utf8-npm-0.2.1-46ab364e2f-3ed45e5b4d.zip/node_modules/is-utf8/",\
+ "packageDependencies": [\
+ ["is-utf8", "npm:0.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-weakref", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/is-weakref-npm-1.0.2-ff80e8c314-1545c5d172.zip/node_modules/is-weakref/",\
+ "packageDependencies": [\
+ ["is-weakref", "npm:1.0.2"],\
+ ["call-bind", "npm:1.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-windows", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/is-windows-npm-1.0.2-898cd6f3d7-b32f418ab3.zip/node_modules/is-windows/",\
+ "packageDependencies": [\
+ ["is-windows", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["is-wsl", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/is-wsl-npm-3.1.0-311c6d2265-d3317c1199.zip/node_modules/is-wsl/",\
+ "packageDependencies": [\
+ ["is-wsl", "npm:3.1.0"],\
+ ["is-inside-container", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["isarray", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/isarray-npm-1.0.0-db4f547720-18b5be6669.zip/node_modules/isarray/",\
+ "packageDependencies": [\
+ ["isarray", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.5", {\
+ "packageLocation": "./.yarn/cache/isarray-npm-2.0.5-4ba522212d-4199f14a7a.zip/node_modules/isarray/",\
+ "packageDependencies": [\
+ ["isarray", "npm:2.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["isexe", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/isexe-npm-2.0.0-b58870bd2e-228cfa503f.zip/node_modules/isexe/",\
+ "packageDependencies": [\
+ ["isexe", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/cache/isexe-npm-3.1.1-9c0061eead-9ec2576540.zip/node_modules/isexe/",\
+ "packageDependencies": [\
+ ["isexe", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["istanbul-lib-coverage", [\
+ ["npm:3.2.2", {\
+ "packageLocation": "./.yarn/cache/istanbul-lib-coverage-npm-3.2.2-5c0526e059-6c7ff21067.zip/node_modules/istanbul-lib-coverage/",\
+ "packageDependencies": [\
+ ["istanbul-lib-coverage", "npm:3.2.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["istanbul-lib-report", [\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/istanbul-lib-report-npm-3.0.1-b17446ab24-84323afb14.zip/node_modules/istanbul-lib-report/",\
+ "packageDependencies": [\
+ ["istanbul-lib-report", "npm:3.0.1"],\
+ ["istanbul-lib-coverage", "npm:3.2.2"],\
+ ["make-dir", "npm:4.0.0"],\
+ ["supports-color", "npm:7.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["istanbul-reports", [\
+ ["npm:3.1.6", {\
+ "packageLocation": "./.yarn/cache/istanbul-reports-npm-3.1.6-66918eb97f-ec3f1bdbc5.zip/node_modules/istanbul-reports/",\
+ "packageDependencies": [\
+ ["istanbul-reports", "npm:3.1.6"],\
+ ["html-escaper", "npm:2.0.2"],\
+ ["istanbul-lib-report", "npm:3.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["jackspeak", [\
+ ["npm:2.3.6", {\
+ "packageLocation": "./.yarn/cache/jackspeak-npm-2.3.6-42e1233172-f01d8f972d.zip/node_modules/jackspeak/",\
+ "packageDependencies": [\
+ ["jackspeak", "npm:2.3.6"],\
+ ["@isaacs/cliui", "npm:8.0.2"],\
+ ["@pkgjs/parseargs", "npm:0.11.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["jiti", [\
+ ["npm:1.21.0", {\
+ "packageLocation": "./.yarn/cache/jiti-npm-1.21.0-baebd5985a-7f361219fe.zip/node_modules/jiti/",\
+ "packageDependencies": [\
+ ["jiti", "npm:1.21.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["jju", [\
+ ["npm:1.4.0", {\
+ "packageLocation": "./.yarn/cache/jju-npm-1.4.0-670678eaa3-f3f444557e.zip/node_modules/jju/",\
+ "packageDependencies": [\
+ ["jju", "npm:1.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["js-sha256", [\
+ ["npm:0.9.0", {\
+ "packageLocation": "./.yarn/cache/js-sha256-npm-0.9.0-1aa718efaf-f20b9245f6.zip/node_modules/js-sha256/",\
+ "packageDependencies": [\
+ ["js-sha256", "npm:0.9.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["js-string-escape", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/js-string-escape-npm-1.0.1-8b8d76add3-2c33b9ff1b.zip/node_modules/js-string-escape/",\
+ "packageDependencies": [\
+ ["js-string-escape", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["js-tokens", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/js-tokens-npm-4.0.0-0ac852e9e2-e248708d37.zip/node_modules/js-tokens/",\
+ "packageDependencies": [\
+ ["js-tokens", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["js-yaml", [\
+ ["npm:3.13.1", {\
+ "packageLocation": "./.yarn/cache/js-yaml-npm-3.13.1-3a28ff3b75-6a4f78b998.zip/node_modules/js-yaml/",\
+ "packageDependencies": [\
+ ["js-yaml", "npm:3.13.1"],\
+ ["argparse", "npm:1.0.10"],\
+ ["esprima", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.14.1", {\
+ "packageLocation": "./.yarn/cache/js-yaml-npm-3.14.1-b968c6095e-6746baaaea.zip/node_modules/js-yaml/",\
+ "packageDependencies": [\
+ ["js-yaml", "npm:3.14.1"],\
+ ["argparse", "npm:1.0.10"],\
+ ["esprima", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/js-yaml-npm-4.1.0-3606f32312-184a24b4ea.zip/node_modules/js-yaml/",\
+ "packageDependencies": [\
+ ["js-yaml", "npm:4.1.0"],\
+ ["argparse", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["json-buffer", [\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/json-buffer-npm-3.0.1-f8f6d20603-0d1c91569d.zip/node_modules/json-buffer/",\
+ "packageDependencies": [\
+ ["json-buffer", "npm:3.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["json-parse-better-errors", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/json-parse-better-errors-npm-1.0.2-7f37637d19-2f1287a7c8.zip/node_modules/json-parse-better-errors/",\
+ "packageDependencies": [\
+ ["json-parse-better-errors", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["json-parse-even-better-errors", [\
+ ["npm:2.3.1", {\
+ "packageLocation": "./.yarn/cache/json-parse-even-better-errors-npm-2.3.1-144d62256e-140932564c.zip/node_modules/json-parse-even-better-errors/",\
+ "packageDependencies": [\
+ ["json-parse-even-better-errors", "npm:2.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["json-schema-migrate", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/json-schema-migrate-npm-2.0.0-87745c8332-9d14970cd1.zip/node_modules/json-schema-migrate/",\
+ "packageDependencies": [\
+ ["json-schema-migrate", "npm:2.0.0"],\
+ ["ajv", "npm:8.12.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["json-schema-traverse", [\
+ ["npm:0.4.1", {\
+ "packageLocation": "./.yarn/cache/json-schema-traverse-npm-0.4.1-4759091693-108fa90d4c.zip/node_modules/json-schema-traverse/",\
+ "packageDependencies": [\
+ ["json-schema-traverse", "npm:0.4.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/json-schema-traverse-npm-1.0.0-fb3684f4f0-71e30015d7.zip/node_modules/json-schema-traverse/",\
+ "packageDependencies": [\
+ ["json-schema-traverse", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["json-stable-stringify-without-jsonify", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/json-stable-stringify-without-jsonify-npm-1.0.1-b65772b28b-cb168b61fd.zip/node_modules/json-stable-stringify-without-jsonify/",\
+ "packageDependencies": [\
+ ["json-stable-stringify-without-jsonify", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["json-stringify-safe", [\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/json-stringify-safe-npm-5.0.1-064ddd6ab4-7dbf35cd04.zip/node_modules/json-stringify-safe/",\
+ "packageDependencies": [\
+ ["json-stringify-safe", "npm:5.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["json5", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/json5-npm-1.0.2-9607f93e30-9ee316bf21.zip/node_modules/json5/",\
+ "packageDependencies": [\
+ ["json5", "npm:1.0.2"],\
+ ["minimist", "npm:1.2.8"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.2.3", {\
+ "packageLocation": "./.yarn/cache/json5-npm-2.2.3-9962c55073-5a04eed948.zip/node_modules/json5/",\
+ "packageDependencies": [\
+ ["json5", "npm:2.2.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["jsonc-parser", [\
+ ["npm:3.2.0", {\
+ "packageLocation": "./.yarn/cache/jsonc-parser-npm-3.2.0-1896ece3b7-5a12d4d04d.zip/node_modules/jsonc-parser/",\
+ "packageDependencies": [\
+ ["jsonc-parser", "npm:3.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["jsonfile", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/jsonfile-npm-4.0.0-10ce3aea15-7dc94b628d.zip/node_modules/jsonfile/",\
+ "packageDependencies": [\
+ ["jsonfile", "npm:4.0.0"],\
+ ["graceful-fs", "npm:4.2.11"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.1.0", {\
+ "packageLocation": "./.yarn/cache/jsonfile-npm-6.1.0-20a4796cee-4f95b5e8a5.zip/node_modules/jsonfile/",\
+ "packageDependencies": [\
+ ["jsonfile", "npm:6.1.0"],\
+ ["graceful-fs", "npm:4.2.11"],\
+ ["universalify", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["jsonparse", [\
+ ["npm:1.3.1", {\
+ "packageLocation": "./.yarn/cache/jsonparse-npm-1.3.1-b6fde74828-89bc68080c.zip/node_modules/jsonparse/",\
+ "packageDependencies": [\
+ ["jsonparse", "npm:1.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["junk", [\
+ ["npm:4.0.1", {\
+ "packageLocation": "./.yarn/cache/junk-npm-4.0.1-989df0f7ae-091117a5dc.zip/node_modules/junk/",\
+ "packageDependencies": [\
+ ["junk", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["keyv", [\
+ ["npm:4.5.4", {\
+ "packageLocation": "./.yarn/cache/keyv-npm-4.5.4-4c8e2cf7f7-aa52f3c5e1.zip/node_modules/keyv/",\
+ "packageDependencies": [\
+ ["keyv", "npm:4.5.4"],\
+ ["json-buffer", "npm:3.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["kind-of", [\
+ ["npm:6.0.3", {\
+ "packageLocation": "./.yarn/cache/kind-of-npm-6.0.3-ab15f36220-61cdff9623.zip/node_modules/kind-of/",\
+ "packageDependencies": [\
+ ["kind-of", "npm:6.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["levn", [\
+ ["npm:0.4.1", {\
+ "packageLocation": "./.yarn/cache/levn-npm-0.4.1-d183b2d7bb-effb03cad7.zip/node_modules/levn/",\
+ "packageDependencies": [\
+ ["levn", "npm:0.4.1"],\
+ ["prelude-ls", "npm:1.2.1"],\
+ ["type-check", "npm:0.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lines-and-columns", [\
+ ["npm:1.2.4", {\
+ "packageLocation": "./.yarn/cache/lines-and-columns-npm-1.2.4-d6c7cc5799-3da6ee62d4.zip/node_modules/lines-and-columns/",\
+ "packageDependencies": [\
+ ["lines-and-columns", "npm:1.2.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["load-json-file", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/load-json-file-npm-4.0.0-c9f09d85eb-6b48f6a025.zip/node_modules/load-json-file/",\
+ "packageDependencies": [\
+ ["load-json-file", "npm:4.0.0"],\
+ ["graceful-fs", "npm:4.2.11"],\
+ ["parse-json", "npm:4.0.0"],\
+ ["pify", "npm:3.0.0"],\
+ ["strip-bom", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.0.1", {\
+ "packageLocation": "./.yarn/cache/load-json-file-npm-7.0.1-1d6057f4c4-7117459608.zip/node_modules/load-json-file/",\
+ "packageDependencies": [\
+ ["load-json-file", "npm:7.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["locate-path", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/locate-path-npm-2.0.0-673d28b0ea-24efa0e589.zip/node_modules/locate-path/",\
+ "packageDependencies": [\
+ ["locate-path", "npm:2.0.0"],\
+ ["p-locate", "npm:2.0.0"],\
+ ["path-exists", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/locate-path-npm-3.0.0-991671ae9f-3db394b782.zip/node_modules/locate-path/",\
+ "packageDependencies": [\
+ ["locate-path", "npm:3.0.0"],\
+ ["p-locate", "npm:3.0.0"],\
+ ["path-exists", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/locate-path-npm-5.0.0-46580c43e4-33a1c5247e.zip/node_modules/locate-path/",\
+ "packageDependencies": [\
+ ["locate-path", "npm:5.0.0"],\
+ ["p-locate", "npm:4.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.0.0", {\
+ "packageLocation": "./.yarn/cache/locate-path-npm-6.0.0-06a1e4c528-d3972ab70d.zip/node_modules/locate-path/",\
+ "packageDependencies": [\
+ ["locate-path", "npm:6.0.0"],\
+ ["p-locate", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lodash", [\
+ ["npm:4.17.21", {\
+ "packageLocation": "./.yarn/cache/lodash-npm-4.17.21-6382451519-d8cbea072b.zip/node_modules/lodash/",\
+ "packageDependencies": [\
+ ["lodash", "npm:4.17.21"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lodash.get", [\
+ ["npm:4.4.2", {\
+ "packageLocation": "./.yarn/cache/lodash.get-npm-4.4.2-7bda64ed87-48f40d471a.zip/node_modules/lodash.get/",\
+ "packageDependencies": [\
+ ["lodash.get", "npm:4.4.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lodash.isequal", [\
+ ["npm:4.5.0", {\
+ "packageLocation": "./.yarn/cache/lodash.isequal-npm-4.5.0-f8b0f64d63-dfdb2356db.zip/node_modules/lodash.isequal/",\
+ "packageDependencies": [\
+ ["lodash.isequal", "npm:4.5.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lodash.ismatch", [\
+ ["npm:4.4.0", {\
+ "packageLocation": "./.yarn/cache/lodash.ismatch-npm-4.4.0-e538fd6c3d-8f96a5dc4b.zip/node_modules/lodash.ismatch/",\
+ "packageDependencies": [\
+ ["lodash.ismatch", "npm:4.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lodash.isplainobject", [\
+ ["npm:4.0.6", {\
+ "packageLocation": "./.yarn/cache/lodash.isplainobject-npm-4.0.6-d73937742f-afd70b5c45.zip/node_modules/lodash.isplainobject/",\
+ "packageDependencies": [\
+ ["lodash.isplainobject", "npm:4.0.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lodash.map", [\
+ ["npm:4.6.0", {\
+ "packageLocation": "./.yarn/cache/lodash.map-npm-4.6.0-8013e2ad18-919fe767fa.zip/node_modules/lodash.map/",\
+ "packageDependencies": [\
+ ["lodash.map", "npm:4.6.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lodash.merge", [\
+ ["npm:4.6.2", {\
+ "packageLocation": "./.yarn/cache/lodash.merge-npm-4.6.2-77cb4416bf-402fa16a1e.zip/node_modules/lodash.merge/",\
+ "packageDependencies": [\
+ ["lodash.merge", "npm:4.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lodash.mergewith", [\
+ ["npm:4.6.2", {\
+ "packageLocation": "./.yarn/cache/lodash.mergewith-npm-4.6.2-7d2d4201ec-4adbed65ff.zip/node_modules/lodash.mergewith/",\
+ "packageDependencies": [\
+ ["lodash.mergewith", "npm:4.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lodash.uniq", [\
+ ["npm:4.5.0", {\
+ "packageLocation": "./.yarn/cache/lodash.uniq-npm-4.5.0-7c270dca85-262d400bb0.zip/node_modules/lodash.uniq/",\
+ "packageDependencies": [\
+ ["lodash.uniq", "npm:4.5.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["log-symbols", [\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/log-symbols-npm-4.1.0-0a13492d8b-67f445a9ff.zip/node_modules/log-symbols/",\
+ "packageDependencies": [\
+ ["log-symbols", "npm:4.1.0"],\
+ ["chalk", "npm:4.1.2"],\
+ ["is-unicode-supported", "npm:0.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["longest", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/longest-npm-2.0.1-4579de9937-f381993a55.zip/node_modules/longest/",\
+ "packageDependencies": [\
+ ["longest", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lru-cache", [\
+ ["npm:10.1.0", {\
+ "packageLocation": "./.yarn/cache/lru-cache-npm-10.1.0-f3d3a0f0ab-778bc8b262.zip/node_modules/lru-cache/",\
+ "packageDependencies": [\
+ ["lru-cache", "npm:10.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.0.0", {\
+ "packageLocation": "./.yarn/cache/lru-cache-npm-6.0.0-b4c8668fe1-cb53e58278.zip/node_modules/lru-cache/",\
+ "packageDependencies": [\
+ ["lru-cache", "npm:6.0.0"],\
+ ["yallist", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["lunr", [\
+ ["npm:2.3.9", {\
+ "packageLocation": "./.yarn/cache/lunr-npm-2.3.9-fa3aa9c2d6-77d7dbb4fb.zip/node_modules/lunr/",\
+ "packageDependencies": [\
+ ["lunr", "npm:2.3.9"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["madge", [\
+ ["npm:6.1.0", {\
+ "packageLocation": "./.yarn/cache/madge-npm-6.1.0-6e84c1d8df-2761d27af4.zip/node_modules/madge/",\
+ "packageDependencies": [\
+ ["madge", "npm:6.1.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.1.0", {\
+ "packageLocation": "./.yarn/__virtual__/madge-virtual-c21c430715/0/cache/madge-npm-6.1.0-6e84c1d8df-2761d27af4.zip/node_modules/madge/",\
+ "packageDependencies": [\
+ ["madge", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:6.1.0"],\
+ ["@types/typescript", null],\
+ ["chalk", "npm:4.1.2"],\
+ ["commander", "npm:7.2.0"],\
+ ["commondir", "npm:1.0.1"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["dependency-tree", "npm:9.0.0"],\
+ ["detective-amd", "npm:4.2.0"],\
+ ["detective-cjs", "npm:4.1.0"],\
+ ["detective-es6", "npm:3.0.1"],\
+ ["detective-less", "npm:1.0.2"],\
+ ["detective-postcss", "npm:6.1.3"],\
+ ["detective-sass", "npm:4.1.3"],\
+ ["detective-scss", "npm:3.1.1"],\
+ ["detective-stylus", "npm:2.0.1"],\
+ ["detective-typescript", "npm:9.1.1"],\
+ ["ora", "npm:5.4.1"],\
+ ["pluralize", "npm:8.0.0"],\
+ ["precinct", "npm:8.3.1"],\
+ ["pretty-ms", "npm:7.0.1"],\
+ ["rc", "npm:1.2.8"],\
+ ["stream-to-array", "npm:2.3.0"],\
+ ["ts-graphviz", "npm:1.8.1"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"],\
+ ["walkdir", "npm:0.4.1"]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["magic-string", [\
+ ["npm:0.30.5", {\
+ "packageLocation": "./.yarn/cache/magic-string-npm-0.30.5-dffb7e6a73-38ac220ca7.zip/node_modules/magic-string/",\
+ "packageDependencies": [\
+ ["magic-string", "npm:0.30.5"],\
+ ["@jridgewell/sourcemap-codec", "npm:1.4.15"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["make-dir", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/make-dir-npm-3.1.0-d1d7505142-56aaafefc4.zip/node_modules/make-dir/",\
+ "packageDependencies": [\
+ ["make-dir", "npm:3.1.0"],\
+ ["semver", "npm:6.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/make-dir-npm-4.0.0-ec3cd921cc-69b98a6c0b.zip/node_modules/make-dir/",\
+ "packageDependencies": [\
+ ["make-dir", "npm:4.0.0"],\
+ ["semver", "npm:7.5.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["make-fetch-happen", [\
+ ["npm:13.0.0", {\
+ "packageLocation": "./.yarn/cache/make-fetch-happen-npm-13.0.0-f87a92bb87-43b9f6dcbc.zip/node_modules/make-fetch-happen/",\
+ "packageDependencies": [\
+ ["make-fetch-happen", "npm:13.0.0"],\
+ ["@npmcli/agent", "npm:2.2.0"],\
+ ["cacache", "npm:18.0.2"],\
+ ["http-cache-semantics", "npm:4.1.1"],\
+ ["is-lambda", "npm:1.0.1"],\
+ ["minipass", "npm:7.0.4"],\
+ ["minipass-fetch", "npm:3.0.4"],\
+ ["minipass-flush", "npm:1.0.5"],\
+ ["minipass-pipeline", "npm:1.2.4"],\
+ ["negotiator", "npm:0.6.3"],\
+ ["promise-retry", "npm:2.0.1"],\
+ ["ssri", "npm:10.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["map-obj", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/map-obj-npm-1.0.1-fa55100fac-ccca88395e.zip/node_modules/map-obj/",\
+ "packageDependencies": [\
+ ["map-obj", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.3.0", {\
+ "packageLocation": "./.yarn/cache/map-obj-npm-4.3.0-d53e32935d-1c19e1c885.zip/node_modules/map-obj/",\
+ "packageDependencies": [\
+ ["map-obj", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["marked", [\
+ ["npm:4.3.0", {\
+ "packageLocation": "./.yarn/cache/marked-npm-4.3.0-e7ef9e874f-0013463855.zip/node_modules/marked/",\
+ "packageDependencies": [\
+ ["marked", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["matcher", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/matcher-npm-5.0.0-426d06a4f6-eda5471fc9.zip/node_modules/matcher/",\
+ "packageDependencies": [\
+ ["matcher", "npm:5.0.0"],\
+ ["escape-string-regexp", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["md5-hex", [\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/md5-hex-npm-3.0.1-d9f5f267ed-ee2b4d8da1.zip/node_modules/md5-hex/",\
+ "packageDependencies": [\
+ ["md5-hex", "npm:3.0.1"],\
+ ["blueimp-md5", "npm:2.19.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["media-typer", [\
+ ["npm:0.3.0", {\
+ "packageLocation": "./.yarn/cache/media-typer-npm-0.3.0-8674f8f0f5-d160f31246.zip/node_modules/media-typer/",\
+ "packageDependencies": [\
+ ["media-typer", "npm:0.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["memoize", [\
+ ["npm:10.0.0", {\
+ "packageLocation": "./.yarn/cache/memoize-npm-10.0.0-953b145644-1584351834.zip/node_modules/memoize/",\
+ "packageDependencies": [\
+ ["memoize", "npm:10.0.0"],\
+ ["mimic-function", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["meow", [\
+ ["npm:12.1.1", {\
+ "packageLocation": "./.yarn/cache/meow-npm-12.1.1-bd7858d088-a125ca99a3.zip/node_modules/meow/",\
+ "packageDependencies": [\
+ ["meow", "npm:12.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:8.1.2", {\
+ "packageLocation": "./.yarn/cache/meow-npm-8.1.2-bcfe48d4f3-9a8d90e616.zip/node_modules/meow/",\
+ "packageDependencies": [\
+ ["meow", "npm:8.1.2"],\
+ ["@types/minimist", "npm:1.2.5"],\
+ ["camelcase-keys", "npm:6.2.2"],\
+ ["decamelize-keys", "npm:1.1.1"],\
+ ["hard-rejection", "npm:2.1.0"],\
+ ["minimist-options", "npm:4.1.0"],\
+ ["normalize-package-data", "npm:3.0.3"],\
+ ["read-pkg-up", "npm:7.0.1"],\
+ ["redent", "npm:3.0.0"],\
+ ["trim-newlines", "npm:3.0.1"],\
+ ["type-fest", "npm:0.18.1"],\
+ ["yargs-parser", "npm:20.2.9"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["merge", [\
+ ["npm:2.1.1", {\
+ "packageLocation": "./.yarn/cache/merge-npm-2.1.1-90e7307c49-9e722a88f6.zip/node_modules/merge/",\
+ "packageDependencies": [\
+ ["merge", "npm:2.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["merge-descriptors", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/merge-descriptors-npm-1.0.1-615287aaa8-b67d07bd44.zip/node_modules/merge-descriptors/",\
+ "packageDependencies": [\
+ ["merge-descriptors", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["merge-stream", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/merge-stream-npm-2.0.0-2ac83efea5-867fdbb30a.zip/node_modules/merge-stream/",\
+ "packageDependencies": [\
+ ["merge-stream", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["merge2", [\
+ ["npm:1.4.1", {\
+ "packageLocation": "./.yarn/cache/merge2-npm-1.4.1-a2507bd06c-254a8a4605.zip/node_modules/merge2/",\
+ "packageDependencies": [\
+ ["merge2", "npm:1.4.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["methods", [\
+ ["npm:1.1.2", {\
+ "packageLocation": "./.yarn/cache/methods-npm-1.1.2-92f6fdb39b-bdf7cc72ff.zip/node_modules/methods/",\
+ "packageDependencies": [\
+ ["methods", "npm:1.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["micromatch", [\
+ ["npm:4.0.5", {\
+ "packageLocation": "./.yarn/cache/micromatch-npm-4.0.5-cfab5d7669-3d6505b20f.zip/node_modules/micromatch/",\
+ "packageDependencies": [\
+ ["micromatch", "npm:4.0.5"],\
+ ["braces", "npm:3.0.2"],\
+ ["picomatch", "npm:2.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["mime", [\
+ ["npm:1.6.0", {\
+ "packageLocation": "./.yarn/cache/mime-npm-1.6.0-60ae95038a-b92cd0adc4.zip/node_modules/mime/",\
+ "packageDependencies": [\
+ ["mime", "npm:1.6.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["mime-db", [\
+ ["npm:1.52.0", {\
+ "packageLocation": "./.yarn/cache/mime-db-npm-1.52.0-b5371d6fd2-0557a01dee.zip/node_modules/mime-db/",\
+ "packageDependencies": [\
+ ["mime-db", "npm:1.52.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["mime-types", [\
+ ["npm:2.1.35", {\
+ "packageLocation": "./.yarn/cache/mime-types-npm-2.1.35-dd9ea9f3e2-82fb07ec56.zip/node_modules/mime-types/",\
+ "packageDependencies": [\
+ ["mime-types", "npm:2.1.35"],\
+ ["mime-db", "npm:1.52.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["mimic-fn", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/mimic-fn-npm-2.1.0-4fbeb3abb4-b26f5479d7.zip/node_modules/mimic-fn/",\
+ "packageDependencies": [\
+ ["mimic-fn", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/mimic-fn-npm-4.0.0-feaeda79f7-de9cc32be9.zip/node_modules/mimic-fn/",\
+ "packageDependencies": [\
+ ["mimic-fn", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["mimic-function", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/mimic-function-npm-5.0.0-b0334c4f46-d822af182e.zip/node_modules/mimic-function/",\
+ "packageDependencies": [\
+ ["mimic-function", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["min-indent", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/min-indent-npm-1.0.1-77031f50e1-7e207bd5c2.zip/node_modules/min-indent/",\
+ "packageDependencies": [\
+ ["min-indent", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minimalistic-assert", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/minimalistic-assert-npm-1.0.1-dc8bb23d29-96730e5601.zip/node_modules/minimalistic-assert/",\
+ "packageDependencies": [\
+ ["minimalistic-assert", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minimalistic-crypto-utils", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/minimalistic-crypto-utils-npm-1.0.1-e66b10822e-790ecec8c5.zip/node_modules/minimalistic-crypto-utils/",\
+ "packageDependencies": [\
+ ["minimalistic-crypto-utils", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minimatch", [\
+ ["npm:3.1.2", {\
+ "packageLocation": "./.yarn/cache/minimatch-npm-3.1.2-9405269906-0262810a8f.zip/node_modules/minimatch/",\
+ "packageDependencies": [\
+ ["minimatch", "npm:3.1.2"],\
+ ["brace-expansion", "npm:1.1.11"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.1.6", {\
+ "packageLocation": "./.yarn/cache/minimatch-npm-5.1.6-1e71429f4c-3defdfd230.zip/node_modules/minimatch/",\
+ "packageDependencies": [\
+ ["minimatch", "npm:5.1.6"],\
+ ["brace-expansion", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:9.0.3", {\
+ "packageLocation": "./.yarn/cache/minimatch-npm-9.0.3-69d7d6fad5-85f407dcd3.zip/node_modules/minimatch/",\
+ "packageDependencies": [\
+ ["minimatch", "npm:9.0.3"],\
+ ["brace-expansion", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minimist", [\
+ ["npm:1.2.7", {\
+ "packageLocation": "./.yarn/cache/minimist-npm-1.2.7-51d33b1371-8808da67ca.zip/node_modules/minimist/",\
+ "packageDependencies": [\
+ ["minimist", "npm:1.2.7"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:1.2.8", {\
+ "packageLocation": "./.yarn/cache/minimist-npm-1.2.8-d7af7b1dce-19d3fcdca0.zip/node_modules/minimist/",\
+ "packageDependencies": [\
+ ["minimist", "npm:1.2.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minimist-options", [\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/minimist-options-npm-4.1.0-64ca250fc1-7871f9cdd1.zip/node_modules/minimist-options/",\
+ "packageDependencies": [\
+ ["minimist-options", "npm:4.1.0"],\
+ ["arrify", "npm:1.0.1"],\
+ ["is-plain-obj", "npm:1.1.0"],\
+ ["kind-of", "npm:6.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minipass", [\
+ ["npm:3.3.6", {\
+ "packageLocation": "./.yarn/cache/minipass-npm-3.3.6-b8d93a945b-a114746943.zip/node_modules/minipass/",\
+ "packageDependencies": [\
+ ["minipass", "npm:3.3.6"],\
+ ["yallist", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/minipass-npm-5.0.0-c64fb63c92-a91d8043f6.zip/node_modules/minipass/",\
+ "packageDependencies": [\
+ ["minipass", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.0.4", {\
+ "packageLocation": "./.yarn/cache/minipass-npm-7.0.4-eacb4e042e-6c7370a6df.zip/node_modules/minipass/",\
+ "packageDependencies": [\
+ ["minipass", "npm:7.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minipass-collect", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/minipass-collect-npm-2.0.1-73d3907e40-5167e73f62.zip/node_modules/minipass-collect/",\
+ "packageDependencies": [\
+ ["minipass-collect", "npm:2.0.1"],\
+ ["minipass", "npm:7.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minipass-fetch", [\
+ ["npm:3.0.4", {\
+ "packageLocation": "./.yarn/cache/minipass-fetch-npm-3.0.4-200ac7c66d-1b63c1f331.zip/node_modules/minipass-fetch/",\
+ "packageDependencies": [\
+ ["minipass-fetch", "npm:3.0.4"],\
+ ["encoding", "npm:0.1.13"],\
+ ["minipass", "npm:7.0.4"],\
+ ["minipass-sized", "npm:1.0.3"],\
+ ["minizlib", "npm:2.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minipass-flush", [\
+ ["npm:1.0.5", {\
+ "packageLocation": "./.yarn/cache/minipass-flush-npm-1.0.5-efe79d9826-2a51b63feb.zip/node_modules/minipass-flush/",\
+ "packageDependencies": [\
+ ["minipass-flush", "npm:1.0.5"],\
+ ["minipass", "npm:3.3.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minipass-pipeline", [\
+ ["npm:1.2.4", {\
+ "packageLocation": "./.yarn/cache/minipass-pipeline-npm-1.2.4-5924cb077f-cbda57cea2.zip/node_modules/minipass-pipeline/",\
+ "packageDependencies": [\
+ ["minipass-pipeline", "npm:1.2.4"],\
+ ["minipass", "npm:3.3.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minipass-sized", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/minipass-sized-npm-1.0.3-306d86f432-298f124753.zip/node_modules/minipass-sized/",\
+ "packageDependencies": [\
+ ["minipass-sized", "npm:1.0.3"],\
+ ["minipass", "npm:3.3.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["minizlib", [\
+ ["npm:2.1.2", {\
+ "packageLocation": "./.yarn/cache/minizlib-npm-2.1.2-ea89cd0cfb-64fae024e1.zip/node_modules/minizlib/",\
+ "packageDependencies": [\
+ ["minizlib", "npm:2.1.2"],\
+ ["minipass", "npm:3.3.6"],\
+ ["yallist", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["mkdirp", [\
+ ["npm:1.0.4", {\
+ "packageLocation": "./.yarn/cache/mkdirp-npm-1.0.4-37f6ef56b9-46ea0f3ffa.zip/node_modules/mkdirp/",\
+ "packageDependencies": [\
+ ["mkdirp", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["modify-values", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/modify-values-npm-1.0.1-9b2377e166-6acb1b82aa.zip/node_modules/modify-values/",\
+ "packageDependencies": [\
+ ["modify-values", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["module-definition", [\
+ ["npm:3.4.0", {\
+ "packageLocation": "./.yarn/cache/module-definition-npm-3.4.0-2eb7522283-be8582e61b.zip/node_modules/module-definition/",\
+ "packageDependencies": [\
+ ["module-definition", "npm:3.4.0"],\
+ ["ast-module-types", "npm:3.0.0"],\
+ ["node-source-walk", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/module-definition-npm-4.1.0-d712dfff19-199b8cec8e.zip/node_modules/module-definition/",\
+ "packageDependencies": [\
+ ["module-definition", "npm:4.1.0"],\
+ ["ast-module-types", "npm:4.0.0"],\
+ ["node-source-walk", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["module-lookup-amd", [\
+ ["npm:7.0.1", {\
+ "packageLocation": "./.yarn/cache/module-lookup-amd-npm-7.0.1-83d0a3e93f-25038b4b18.zip/node_modules/module-lookup-amd/",\
+ "packageDependencies": [\
+ ["module-lookup-amd", "npm:7.0.1"],\
+ ["commander", "npm:2.20.3"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["glob", "npm:7.2.3"],\
+ ["requirejs", "npm:2.3.6"],\
+ ["requirejs-config-file", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ms", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/ms-npm-2.0.0-9e1101a471-f8fda810b3.zip/node_modules/ms/",\
+ "packageDependencies": [\
+ ["ms", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.1.2", {\
+ "packageLocation": "./.yarn/cache/ms-npm-2.1.2-ec0c1512ff-a437714e2f.zip/node_modules/ms/",\
+ "packageDependencies": [\
+ ["ms", "npm:2.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.1.3", {\
+ "packageLocation": "./.yarn/cache/ms-npm-2.1.3-81ff3cfac1-d924b57e73.zip/node_modules/ms/",\
+ "packageDependencies": [\
+ ["ms", "npm:2.1.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["mute-stream", [\
+ ["npm:0.0.8", {\
+ "packageLocation": "./.yarn/cache/mute-stream-npm-0.0.8-489a7d6c2b-18d06d92e5.zip/node_modules/mute-stream/",\
+ "packageDependencies": [\
+ ["mute-stream", "npm:0.0.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["nanoid", [\
+ ["npm:3.3.7", {\
+ "packageLocation": "./.yarn/cache/nanoid-npm-3.3.7-98824ba130-e3fb661aa0.zip/node_modules/nanoid/",\
+ "packageDependencies": [\
+ ["nanoid", "npm:3.3.7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["natural-compare", [\
+ ["npm:1.4.0", {\
+ "packageLocation": "./.yarn/cache/natural-compare-npm-1.4.0-97b75b362d-f5f9a7974b.zip/node_modules/natural-compare/",\
+ "packageDependencies": [\
+ ["natural-compare", "npm:1.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["negotiator", [\
+ ["npm:0.6.3", {\
+ "packageLocation": "./.yarn/cache/negotiator-npm-0.6.3-9d50e36171-3ec9fd413e.zip/node_modules/negotiator/",\
+ "packageDependencies": [\
+ ["negotiator", "npm:0.6.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["neo-async", [\
+ ["npm:2.6.2", {\
+ "packageLocation": "./.yarn/cache/neo-async-npm-2.6.2-75d6902586-c2f5a604a5.zip/node_modules/neo-async/",\
+ "packageDependencies": [\
+ ["neo-async", "npm:2.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["nested-error-stacks", [\
+ ["npm:2.1.1", {\
+ "packageLocation": "./.yarn/cache/nested-error-stacks-npm-2.1.1-0b1da05af0-feec00417e.zip/node_modules/nested-error-stacks/",\
+ "packageDependencies": [\
+ ["nested-error-stacks", "npm:2.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["node-addon-api", [\
+ ["npm:5.1.0", {\
+ "packageLocation": "./.yarn/unplugged/node-addon-api-npm-5.1.0-b50d00f739/node_modules/node-addon-api/",\
+ "packageDependencies": [\
+ ["node-addon-api", "npm:5.1.0"],\
+ ["node-gyp", "npm:10.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["node-fetch", [\
+ ["npm:2.7.0", {\
+ "packageLocation": "./.yarn/cache/node-fetch-npm-2.7.0-587d57004e-b55786b602.zip/node_modules/node-fetch/",\
+ "packageDependencies": [\
+ ["node-fetch", "npm:2.7.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5547f15a2bb3d361d141532d43f94523f31e9edfe533f8367b3e26e300194e2978be03f56c09e100afcfee4c02b7fbe13c6ffcf58c613b457a86da522a2979f2#npm:2.7.0", {\
+ "packageLocation": "./.yarn/__virtual__/node-fetch-virtual-64b33d0816/0/cache/node-fetch-npm-2.7.0-587d57004e-b55786b602.zip/node_modules/node-fetch/",\
+ "packageDependencies": [\
+ ["node-fetch", "virtual:5547f15a2bb3d361d141532d43f94523f31e9edfe533f8367b3e26e300194e2978be03f56c09e100afcfee4c02b7fbe13c6ffcf58c613b457a86da522a2979f2#npm:2.7.0"],\
+ ["@types/encoding", null],\
+ ["encoding", null],\
+ ["whatwg-url", "npm:5.0.0"]\
+ ],\
+ "packagePeers": [\
+ "@types/encoding",\
+ "encoding"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["node-gyp", [\
+ ["npm:10.0.1", {\
+ "packageLocation": "./.yarn/unplugged/node-gyp-npm-10.0.1-48708ce70b/node_modules/node-gyp/",\
+ "packageDependencies": [\
+ ["node-gyp", "npm:10.0.1"],\
+ ["env-paths", "npm:2.2.1"],\
+ ["exponential-backoff", "npm:3.1.1"],\
+ ["glob", "npm:10.3.10"],\
+ ["graceful-fs", "npm:4.2.11"],\
+ ["make-fetch-happen", "npm:13.0.0"],\
+ ["nopt", "npm:7.2.0"],\
+ ["proc-log", "npm:3.0.0"],\
+ ["semver", "npm:7.5.4"],\
+ ["tar", "npm:6.2.0"],\
+ ["which", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["node-gyp-build", [\
+ ["npm:4.8.0", {\
+ "packageLocation": "./.yarn/cache/node-gyp-build-npm-4.8.0-effd06d874-85324be16f.zip/node_modules/node-gyp-build/",\
+ "packageDependencies": [\
+ ["node-gyp-build", "npm:4.8.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["node-source-walk", [\
+ ["npm:4.3.0", {\
+ "packageLocation": "./.yarn/cache/node-source-walk-npm-4.3.0-16523f4a14-ad20938206.zip/node_modules/node-source-walk/",\
+ "packageDependencies": [\
+ ["node-source-walk", "npm:4.3.0"],\
+ ["@babel/parser", "npm:7.23.6"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.2", {\
+ "packageLocation": "./.yarn/cache/node-source-walk-npm-5.0.2-c417ba875a-2be6236f91.zip/node_modules/node-source-walk/",\
+ "packageDependencies": [\
+ ["node-source-walk", "npm:5.0.2"],\
+ ["@babel/parser", "npm:7.23.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["nofilter", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/nofilter-npm-3.1.0-3c5ba47d92-92459f3864.zip/node_modules/nofilter/",\
+ "packageDependencies": [\
+ ["nofilter", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["nopt", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/nopt-npm-5.0.0-304b40fbfe-fc5c4f0715.zip/node_modules/nopt/",\
+ "packageDependencies": [\
+ ["nopt", "npm:5.0.0"],\
+ ["abbrev", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.2.0", {\
+ "packageLocation": "./.yarn/cache/nopt-npm-7.2.0-dd734b678d-9bd7198df6.zip/node_modules/nopt/",\
+ "packageDependencies": [\
+ ["nopt", "npm:7.2.0"],\
+ ["abbrev", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["normalize-package-data", [\
+ ["npm:2.5.0", {\
+ "packageLocation": "./.yarn/cache/normalize-package-data-npm-2.5.0-af0345deed-357cb1646d.zip/node_modules/normalize-package-data/",\
+ "packageDependencies": [\
+ ["normalize-package-data", "npm:2.5.0"],\
+ ["hosted-git-info", "npm:2.8.9"],\
+ ["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"],\
+ ["semver", "npm:5.7.2"],\
+ ["validate-npm-package-license", "npm:3.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.3", {\
+ "packageLocation": "./.yarn/cache/normalize-package-data-npm-3.0.3-1a49056685-e5d0f739ba.zip/node_modules/normalize-package-data/",\
+ "packageDependencies": [\
+ ["normalize-package-data", "npm:3.0.3"],\
+ ["hosted-git-info", "npm:4.1.0"],\
+ ["is-core-module", "npm:2.13.1"],\
+ ["semver", "npm:7.5.4"],\
+ ["validate-npm-package-license", "npm:3.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["normalize-path", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/normalize-path-npm-3.0.0-658ba7d77f-e008c8142b.zip/node_modules/normalize-path/",\
+ "packageDependencies": [\
+ ["normalize-path", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["npm-run-path", [\
+ ["npm:5.2.0", {\
+ "packageLocation": "./.yarn/cache/npm-run-path-npm-5.2.0-f449a9c258-7963c1f98e.zip/node_modules/npm-run-path/",\
+ "packageDependencies": [\
+ ["npm-run-path", "npm:5.2.0"],\
+ ["path-key", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["npmlog", [\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/npmlog-npm-5.0.1-366cab64a2-489ba51903.zip/node_modules/npmlog/",\
+ "packageDependencies": [\
+ ["npmlog", "npm:5.0.1"],\
+ ["are-we-there-yet", "npm:2.0.0"],\
+ ["console-control-strings", "npm:1.1.0"],\
+ ["gauge", "npm:3.0.2"],\
+ ["set-blocking", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["object-assign", [\
+ ["npm:4.1.1", {\
+ "packageLocation": "./.yarn/cache/object-assign-npm-4.1.1-1004ad6dec-1f4df99451.zip/node_modules/object-assign/",\
+ "packageDependencies": [\
+ ["object-assign", "npm:4.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["object-inspect", [\
+ ["npm:1.13.1", {\
+ "packageLocation": "./.yarn/cache/object-inspect-npm-1.13.1-fd038a2f0a-fad603f408.zip/node_modules/object-inspect/",\
+ "packageDependencies": [\
+ ["object-inspect", "npm:1.13.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["object-keys", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/object-keys-npm-1.1.1-1bf2f1be93-b11f7ccdbc.zip/node_modules/object-keys/",\
+ "packageDependencies": [\
+ ["object-keys", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["object.assign", [\
+ ["npm:4.1.5", {\
+ "packageLocation": "./.yarn/cache/object.assign-npm-4.1.5-aa3b2260ba-60108e1fa2.zip/node_modules/object.assign/",\
+ "packageDependencies": [\
+ ["object.assign", "npm:4.1.5"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["has-symbols", "npm:1.0.3"],\
+ ["object-keys", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["object.fromentries", [\
+ ["npm:2.0.7", {\
+ "packageLocation": "./.yarn/cache/object.fromentries-npm-2.0.7-2e38392540-071745c21f.zip/node_modules/object.fromentries/",\
+ "packageDependencies": [\
+ ["object.fromentries", "npm:2.0.7"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["object.groupby", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/object.groupby-npm-1.0.1-fc268391fe-61e41fbf08.zip/node_modules/object.groupby/",\
+ "packageDependencies": [\
+ ["object.groupby", "npm:1.0.1"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"],\
+ ["get-intrinsic", "npm:1.2.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["object.values", [\
+ ["npm:1.1.7", {\
+ "packageLocation": "./.yarn/cache/object.values-npm-1.1.7-deae619f88-e869d6a37f.zip/node_modules/object.values/",\
+ "packageDependencies": [\
+ ["object.values", "npm:1.1.7"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["on-finished", [\
+ ["npm:2.4.1", {\
+ "packageLocation": "./.yarn/cache/on-finished-npm-2.4.1-907af70f88-46fb11b906.zip/node_modules/on-finished/",\
+ "packageDependencies": [\
+ ["on-finished", "npm:2.4.1"],\
+ ["ee-first", "npm:1.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["once", [\
+ ["npm:1.4.0", {\
+ "packageLocation": "./.yarn/cache/once-npm-1.4.0-ccf03ef07a-5d48aca287.zip/node_modules/once/",\
+ "packageDependencies": [\
+ ["once", "npm:1.4.0"],\
+ ["wrappy", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["onetime", [\
+ ["npm:5.1.2", {\
+ "packageLocation": "./.yarn/cache/onetime-npm-5.1.2-3ed148fa42-ffcef6fbb2.zip/node_modules/onetime/",\
+ "packageDependencies": [\
+ ["onetime", "npm:5.1.2"],\
+ ["mimic-fn", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.0.0", {\
+ "packageLocation": "./.yarn/cache/onetime-npm-6.0.0-4f3684e29a-4eef7c6abf.zip/node_modules/onetime/",\
+ "packageDependencies": [\
+ ["onetime", "npm:6.0.0"],\
+ ["mimic-fn", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["open", [\
+ ["npm:10.0.3", {\
+ "packageLocation": "./.yarn/unplugged/open-npm-10.0.3-fafc8b8513/node_modules/open/",\
+ "packageDependencies": [\
+ ["open", "npm:10.0.3"],\
+ ["default-browser", "npm:5.2.1"],\
+ ["define-lazy-prop", "npm:3.0.0"],\
+ ["is-inside-container", "npm:1.0.0"],\
+ ["is-wsl", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["open-cli", [\
+ ["npm:8.0.0", {\
+ "packageLocation": "./.yarn/cache/open-cli-npm-8.0.0-5153900672-cbde1defbc.zip/node_modules/open-cli/",\
+ "packageDependencies": [\
+ ["open-cli", "npm:8.0.0"],\
+ ["file-type", "npm:18.7.0"],\
+ ["get-stdin", "npm:9.0.0"],\
+ ["meow", "npm:12.1.1"],\
+ ["open", "npm:10.0.3"],\
+ ["tempy", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["optionator", [\
+ ["npm:0.9.3", {\
+ "packageLocation": "./.yarn/cache/optionator-npm-0.9.3-56c3a4bf80-66fba794d4.zip/node_modules/optionator/",\
+ "packageDependencies": [\
+ ["optionator", "npm:0.9.3"],\
+ ["@aashutoshrathi/word-wrap", "npm:1.2.6"],\
+ ["deep-is", "npm:0.1.4"],\
+ ["fast-levenshtein", "npm:2.0.6"],\
+ ["levn", "npm:0.4.1"],\
+ ["prelude-ls", "npm:1.2.1"],\
+ ["type-check", "npm:0.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ora", [\
+ ["npm:5.4.1", {\
+ "packageLocation": "./.yarn/cache/ora-npm-5.4.1-4f0343adb7-10ff14aace.zip/node_modules/ora/",\
+ "packageDependencies": [\
+ ["ora", "npm:5.4.1"],\
+ ["bl", "npm:4.1.0"],\
+ ["chalk", "npm:4.1.2"],\
+ ["cli-cursor", "npm:3.1.0"],\
+ ["cli-spinners", "npm:2.9.2"],\
+ ["is-interactive", "npm:1.0.0"],\
+ ["is-unicode-supported", "npm:0.1.0"],\
+ ["log-symbols", "npm:4.1.0"],\
+ ["strip-ansi", "npm:6.0.1"],\
+ ["wcwidth", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["os-tmpdir", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/os-tmpdir-npm-1.0.2-e305b0689b-f438450224.zip/node_modules/os-tmpdir/",\
+ "packageDependencies": [\
+ ["os-tmpdir", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["p-event", [\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/p-event-npm-5.0.1-1f7dfbcfb3-2317171489.zip/node_modules/p-event/",\
+ "packageDependencies": [\
+ ["p-event", "npm:5.0.1"],\
+ ["p-timeout", "npm:5.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["p-filter", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/p-filter-npm-3.0.0-6c8ee98212-32e375fa6b.zip/node_modules/p-filter/",\
+ "packageDependencies": [\
+ ["p-filter", "npm:3.0.0"],\
+ ["p-map", "npm:5.5.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["p-limit", [\
+ ["npm:1.3.0", {\
+ "packageLocation": "./.yarn/cache/p-limit-npm-1.3.0-fdb471d864-5c1b1d53d1.zip/node_modules/p-limit/",\
+ "packageDependencies": [\
+ ["p-limit", "npm:1.3.0"],\
+ ["p-try", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.3.0", {\
+ "packageLocation": "./.yarn/cache/p-limit-npm-2.3.0-94a0310039-8da01ac53e.zip/node_modules/p-limit/",\
+ "packageDependencies": [\
+ ["p-limit", "npm:2.3.0"],\
+ ["p-try", "npm:2.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/p-limit-npm-3.1.0-05d2ede37f-9db675949d.zip/node_modules/p-limit/",\
+ "packageDependencies": [\
+ ["p-limit", "npm:3.1.0"],\
+ ["yocto-queue", "npm:0.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["p-locate", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/p-locate-npm-2.0.0-3a2ee263dd-82da4be88f.zip/node_modules/p-locate/",\
+ "packageDependencies": [\
+ ["p-locate", "npm:2.0.0"],\
+ ["p-limit", "npm:1.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/p-locate-npm-3.0.0-74de74f952-7b7f06f718.zip/node_modules/p-locate/",\
+ "packageDependencies": [\
+ ["p-locate", "npm:3.0.0"],\
+ ["p-limit", "npm:2.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/p-locate-npm-4.1.0-eec6872537-1b476ad69a.zip/node_modules/p-locate/",\
+ "packageDependencies": [\
+ ["p-locate", "npm:4.1.0"],\
+ ["p-limit", "npm:2.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/p-locate-npm-5.0.0-92cc7c7a3e-2290d627ab.zip/node_modules/p-locate/",\
+ "packageDependencies": [\
+ ["p-locate", "npm:5.0.0"],\
+ ["p-limit", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["p-map", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/p-map-npm-4.0.0-4677ae07c7-592c05bd62.zip/node_modules/p-map/",\
+ "packageDependencies": [\
+ ["p-map", "npm:4.0.0"],\
+ ["aggregate-error", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.5.0", {\
+ "packageLocation": "./.yarn/cache/p-map-npm-5.5.0-9758eb14ee-410bce846b.zip/node_modules/p-map/",\
+ "packageDependencies": [\
+ ["p-map", "npm:5.5.0"],\
+ ["aggregate-error", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.0.0", {\
+ "packageLocation": "./.yarn/cache/p-map-npm-6.0.0-9994e631f1-3fcfccf464.zip/node_modules/p-map/",\
+ "packageDependencies": [\
+ ["p-map", "npm:6.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["p-timeout", [\
+ ["npm:5.1.0", {\
+ "packageLocation": "./.yarn/cache/p-timeout-npm-5.1.0-11ca554b60-1b026cf9d5.zip/node_modules/p-timeout/",\
+ "packageDependencies": [\
+ ["p-timeout", "npm:5.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["p-try", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/p-try-npm-1.0.0-7373139e40-757ba31de5.zip/node_modules/p-try/",\
+ "packageDependencies": [\
+ ["p-try", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.2.0", {\
+ "packageLocation": "./.yarn/cache/p-try-npm-2.2.0-e0390dbaf8-c36c199077.zip/node_modules/p-try/",\
+ "packageDependencies": [\
+ ["p-try", "npm:2.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["package-config", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/package-config-npm-5.0.0-55054b7db9-f6c4893070.zip/node_modules/package-config/",\
+ "packageDependencies": [\
+ ["package-config", "npm:5.0.0"],\
+ ["find-up-simple", "npm:1.0.0"],\
+ ["load-json-file", "npm:7.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["parent-module", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/parent-module-npm-1.0.1-1fae11b095-c63d6e8000.zip/node_modules/parent-module/",\
+ "packageDependencies": [\
+ ["parent-module", "npm:1.0.1"],\
+ ["callsites", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/parent-module-npm-2.0.0-8434b3cd79-e4c5e34102.zip/node_modules/parent-module/",\
+ "packageDependencies": [\
+ ["parent-module", "npm:2.0.0"],\
+ ["callsites", "npm:3.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["parse-json", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/parse-json-npm-4.0.0-a6f7771010-8d80790b77.zip/node_modules/parse-json/",\
+ "packageDependencies": [\
+ ["parse-json", "npm:4.0.0"],\
+ ["error-ex", "npm:1.3.2"],\
+ ["json-parse-better-errors", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.2.0", {\
+ "packageLocation": "./.yarn/cache/parse-json-npm-5.2.0-00a63b1199-77947f2253.zip/node_modules/parse-json/",\
+ "packageDependencies": [\
+ ["parse-json", "npm:5.2.0"],\
+ ["@babel/code-frame", "npm:7.23.5"],\
+ ["error-ex", "npm:1.3.2"],\
+ ["json-parse-even-better-errors", "npm:2.3.1"],\
+ ["lines-and-columns", "npm:1.2.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["parse-ms", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/parse-ms-npm-2.1.0-de852c39bb-9c5c0a95c6.zip/node_modules/parse-ms/",\
+ "packageDependencies": [\
+ ["parse-ms", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/parse-ms-npm-3.0.0-3acf02c3f3-056b4a32a9.zip/node_modules/parse-ms/",\
+ "packageDependencies": [\
+ ["parse-ms", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["parse-passwd", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/parse-passwd-npm-1.0.0-ace6effa1d-1c05c05f95.zip/node_modules/parse-passwd/",\
+ "packageDependencies": [\
+ ["parse-passwd", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["parseurl", [\
+ ["npm:1.3.3", {\
+ "packageLocation": "./.yarn/cache/parseurl-npm-1.3.3-1542397e00-90dd4760d6.zip/node_modules/parseurl/",\
+ "packageDependencies": [\
+ ["parseurl", "npm:1.3.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["path-exists", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/path-exists-npm-3.0.0-e80371aa68-17d6a5664b.zip/node_modules/path-exists/",\
+ "packageDependencies": [\
+ ["path-exists", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/path-exists-npm-4.0.0-e9e4f63eb0-8c0bd3f523.zip/node_modules/path-exists/",\
+ "packageDependencies": [\
+ ["path-exists", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["path-is-absolute", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/path-is-absolute-npm-1.0.1-31bc695ffd-127da03c82.zip/node_modules/path-is-absolute/",\
+ "packageDependencies": [\
+ ["path-is-absolute", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["path-key", [\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/cache/path-key-npm-3.1.1-0e66ea8321-748c43efd5.zip/node_modules/path-key/",\
+ "packageDependencies": [\
+ ["path-key", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/path-key-npm-4.0.0-2bce99f089-794efeef32.zip/node_modules/path-key/",\
+ "packageDependencies": [\
+ ["path-key", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["path-parse", [\
+ ["npm:1.0.7", {\
+ "packageLocation": "./.yarn/cache/path-parse-npm-1.0.7-09564527b7-11ce261f9d.zip/node_modules/path-parse/",\
+ "packageDependencies": [\
+ ["path-parse", "npm:1.0.7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["path-scurry", [\
+ ["npm:1.10.1", {\
+ "packageLocation": "./.yarn/cache/path-scurry-npm-1.10.1-52bd946f2e-e5dc78a734.zip/node_modules/path-scurry/",\
+ "packageDependencies": [\
+ ["path-scurry", "npm:1.10.1"],\
+ ["lru-cache", "npm:10.1.0"],\
+ ["minipass", "npm:7.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["path-to-regexp", [\
+ ["npm:0.1.7", {\
+ "packageLocation": "./.yarn/cache/path-to-regexp-npm-0.1.7-2605347373-50a1ddb1af.zip/node_modules/path-to-regexp/",\
+ "packageDependencies": [\
+ ["path-to-regexp", "npm:0.1.7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["path-type", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/path-type-npm-3.0.0-252361a0eb-1332c632f1.zip/node_modules/path-type/",\
+ "packageDependencies": [\
+ ["path-type", "npm:3.0.0"],\
+ ["pify", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/path-type-npm-4.0.0-10d47fc86a-666f6973f3.zip/node_modules/path-type/",\
+ "packageDependencies": [\
+ ["path-type", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/path-type-npm-5.0.0-205dd6bae0-e8f4b15111.zip/node_modules/path-type/",\
+ "packageDependencies": [\
+ ["path-type", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["peek-readable", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/peek-readable-npm-5.0.0-c469f805e3-060aece3a9.zip/node_modules/peek-readable/",\
+ "packageDependencies": [\
+ ["peek-readable", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["picocolors", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/picocolors-npm-1.0.0-d81e0b1927-20a5b249e3.zip/node_modules/picocolors/",\
+ "packageDependencies": [\
+ ["picocolors", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["picomatch", [\
+ ["npm:2.3.1", {\
+ "packageLocation": "./.yarn/cache/picomatch-npm-2.3.1-c782cfd986-26c02b8d06.zip/node_modules/picomatch/",\
+ "packageDependencies": [\
+ ["picomatch", "npm:2.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/picomatch-npm-3.0.1-89bec5c025-70ec738569.zip/node_modules/picomatch/",\
+ "packageDependencies": [\
+ ["picomatch", "npm:3.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["pify", [\
+ ["npm:2.3.0", {\
+ "packageLocation": "./.yarn/cache/pify-npm-2.3.0-8b63310934-551ff8ab83.zip/node_modules/pify/",\
+ "packageDependencies": [\
+ ["pify", "npm:2.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/pify-npm-3.0.0-679ee405c8-fead19ed9d.zip/node_modules/pify/",\
+ "packageDependencies": [\
+ ["pify", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["platform", [\
+ ["npm:1.3.6", {\
+ "packageLocation": "./.yarn/cache/platform-npm-1.3.6-8c3cef9352-69f2eb692e.zip/node_modules/platform/",\
+ "packageDependencies": [\
+ ["platform", "npm:1.3.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["playwright", [\
+ ["npm:1.40.1", {\
+ "packageLocation": "./.yarn/cache/playwright-npm-1.40.1-68ec3f34c0-5dae164d1f.zip/node_modules/playwright/",\
+ "packageDependencies": [\
+ ["playwright", "npm:1.40.1"],\
+ ["fsevents", "patch:fsevents@npm%3A2.3.2#optional!builtin::version=2.3.2&hash=df0bf1"],\
+ ["playwright-core", "npm:1.40.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["playwright-core", [\
+ ["npm:1.40.1", {\
+ "packageLocation": "./.yarn/unplugged/playwright-core-npm-1.40.1-d5a17fae9e/node_modules/playwright-core/",\
+ "packageDependencies": [\
+ ["playwright-core", "npm:1.40.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["plur", [\
+ ["npm:5.1.0", {\
+ "packageLocation": "./.yarn/cache/plur-npm-5.1.0-a8abe6df1b-26bb622b85.zip/node_modules/plur/",\
+ "packageDependencies": [\
+ ["plur", "npm:5.1.0"],\
+ ["irregular-plurals", "npm:3.5.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["pluralize", [\
+ ["npm:8.0.0", {\
+ "packageLocation": "./.yarn/cache/pluralize-npm-8.0.0-f5f044ed52-2044cfc34b.zip/node_modules/pluralize/",\
+ "packageDependencies": [\
+ ["pluralize", "npm:8.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["postcss", [\
+ ["npm:8.4.33", {\
+ "packageLocation": "./.yarn/cache/postcss-npm-8.4.33-6ba8157009-16eda83458.zip/node_modules/postcss/",\
+ "packageDependencies": [\
+ ["postcss", "npm:8.4.33"],\
+ ["nanoid", "npm:3.3.7"],\
+ ["picocolors", "npm:1.0.0"],\
+ ["source-map-js", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["postcss-values-parser", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/postcss-values-parser-npm-2.0.1-b7d7dda30d-2ac07c134a.zip/node_modules/postcss-values-parser/",\
+ "packageDependencies": [\
+ ["postcss-values-parser", "npm:2.0.1"],\
+ ["flatten", "npm:1.0.3"],\
+ ["indexes-of", "npm:1.0.1"],\
+ ["uniq", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.0.2", {\
+ "packageLocation": "./.yarn/cache/postcss-values-parser-npm-6.0.2-2b25ce0808-633b8bc7c4.zip/node_modules/postcss-values-parser/",\
+ "packageDependencies": [\
+ ["postcss-values-parser", "npm:6.0.2"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:23a358a5ecd6ab3181f7fc99cb0bf6fd4a0734b6e0a2eae05968d1aee7473261ac87704c1b5ed9c912b3faaebe60dd7819a21b2732f3649be486506b370c4c7e#npm:6.0.2", {\
+ "packageLocation": "./.yarn/__virtual__/postcss-values-parser-virtual-4b360ec254/0/cache/postcss-values-parser-npm-6.0.2-2b25ce0808-633b8bc7c4.zip/node_modules/postcss-values-parser/",\
+ "packageDependencies": [\
+ ["postcss-values-parser", "virtual:23a358a5ecd6ab3181f7fc99cb0bf6fd4a0734b6e0a2eae05968d1aee7473261ac87704c1b5ed9c912b3faaebe60dd7819a21b2732f3649be486506b370c4c7e#npm:6.0.2"],\
+ ["@types/postcss", null],\
+ ["color-name", "npm:1.1.4"],\
+ ["is-url-superb", "npm:4.0.0"],\
+ ["postcss", "npm:8.4.33"],\
+ ["quote-unquote", "npm:1.0.0"]\
+ ],\
+ "packagePeers": [\
+ "@types/postcss",\
+ "postcss"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["precinct", [\
+ ["npm:8.3.1", {\
+ "packageLocation": "./.yarn/cache/precinct-npm-8.3.1-ee2c818667-90ef84805e.zip/node_modules/precinct/",\
+ "packageDependencies": [\
+ ["precinct", "npm:8.3.1"],\
+ ["commander", "npm:2.20.3"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["detective-amd", "npm:3.1.2"],\
+ ["detective-cjs", "npm:3.1.3"],\
+ ["detective-es6", "npm:2.2.2"],\
+ ["detective-less", "npm:1.0.2"],\
+ ["detective-postcss", "npm:4.0.0"],\
+ ["detective-sass", "npm:3.0.2"],\
+ ["detective-scss", "npm:2.0.2"],\
+ ["detective-stylus", "npm:1.0.3"],\
+ ["detective-typescript", "npm:7.0.2"],\
+ ["module-definition", "npm:3.4.0"],\
+ ["node-source-walk", "npm:4.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:9.2.1", {\
+ "packageLocation": "./.yarn/cache/precinct-npm-9.2.1-5348463d4e-16b2675561.zip/node_modules/precinct/",\
+ "packageDependencies": [\
+ ["precinct", "npm:9.2.1"],\
+ ["@dependents/detective-less", "npm:3.0.2"],\
+ ["commander", "npm:9.5.0"],\
+ ["detective-amd", "npm:4.2.0"],\
+ ["detective-cjs", "npm:4.1.0"],\
+ ["detective-es6", "npm:3.0.1"],\
+ ["detective-postcss", "npm:6.1.3"],\
+ ["detective-sass", "npm:4.1.3"],\
+ ["detective-scss", "npm:3.1.1"],\
+ ["detective-stylus", "npm:3.0.0"],\
+ ["detective-typescript", "npm:9.1.1"],\
+ ["module-definition", "npm:4.1.0"],\
+ ["node-source-walk", "npm:5.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["prelude-ls", [\
+ ["npm:1.2.1", {\
+ "packageLocation": "./.yarn/cache/prelude-ls-npm-1.2.1-3e4d272a55-b00d617431.zip/node_modules/prelude-ls/",\
+ "packageDependencies": [\
+ ["prelude-ls", "npm:1.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["prettier", [\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/unplugged/prettier-npm-3.1.1-072c31ec21/node_modules/prettier/",\
+ "packageDependencies": [\
+ ["prettier", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["pretty-ms", [\
+ ["npm:7.0.1", {\
+ "packageLocation": "./.yarn/cache/pretty-ms-npm-7.0.1-d748cac064-069aec9d93.zip/node_modules/pretty-ms/",\
+ "packageDependencies": [\
+ ["pretty-ms", "npm:7.0.1"],\
+ ["parse-ms", "npm:2.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:8.0.0", {\
+ "packageLocation": "./.yarn/cache/pretty-ms-npm-8.0.0-7a40e0b54a-e960d633ec.zip/node_modules/pretty-ms/",\
+ "packageDependencies": [\
+ ["pretty-ms", "npm:8.0.0"],\
+ ["parse-ms", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["proc-log", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/proc-log-npm-3.0.0-a8c21c2f0f-f66430e4ff.zip/node_modules/proc-log/",\
+ "packageDependencies": [\
+ ["proc-log", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["process-nextick-args", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/process-nextick-args-npm-2.0.1-b8d7971609-bec0892394.zip/node_modules/process-nextick-args/",\
+ "packageDependencies": [\
+ ["process-nextick-args", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["promise-retry", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/promise-retry-npm-2.0.1-871f0b01b7-9c7045a1a2.zip/node_modules/promise-retry/",\
+ "packageDependencies": [\
+ ["promise-retry", "npm:2.0.1"],\
+ ["err-code", "npm:2.0.3"],\
+ ["retry", "npm:0.12.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["proxy-addr", [\
+ ["npm:2.0.7", {\
+ "packageLocation": "./.yarn/cache/proxy-addr-npm-2.0.7-dae6552872-c3eed99978.zip/node_modules/proxy-addr/",\
+ "packageDependencies": [\
+ ["proxy-addr", "npm:2.0.7"],\
+ ["forwarded", "npm:0.2.0"],\
+ ["ipaddr.js", "npm:1.9.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["punycode", [\
+ ["npm:2.3.1", {\
+ "packageLocation": "./.yarn/cache/punycode-npm-2.3.1-97543c420d-14f76a8206.zip/node_modules/punycode/",\
+ "packageDependencies": [\
+ ["punycode", "npm:2.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["pure-rand", [\
+ ["npm:6.0.4", {\
+ "packageLocation": "./.yarn/cache/pure-rand-npm-6.0.4-0821a97867-0fe7b12f25.zip/node_modules/pure-rand/",\
+ "packageDependencies": [\
+ ["pure-rand", "npm:6.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["q", [\
+ ["npm:1.5.1", {\
+ "packageLocation": "./.yarn/cache/q-npm-1.5.1-a28b3cfeaf-7855fbdba1.zip/node_modules/q/",\
+ "packageDependencies": [\
+ ["q", "npm:1.5.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["qs", [\
+ ["npm:6.11.0", {\
+ "packageLocation": "./.yarn/cache/qs-npm-6.11.0-caf1bc9dea-4e4875e4d7.zip/node_modules/qs/",\
+ "packageDependencies": [\
+ ["qs", "npm:6.11.0"],\
+ ["side-channel", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["queue-microtask", [\
+ ["npm:1.2.3", {\
+ "packageLocation": "./.yarn/cache/queue-microtask-npm-1.2.3-fcc98e4e2d-900a93d3cd.zip/node_modules/queue-microtask/",\
+ "packageDependencies": [\
+ ["queue-microtask", "npm:1.2.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["quick-lru", [\
+ ["npm:4.0.1", {\
+ "packageLocation": "./.yarn/cache/quick-lru-npm-4.0.1-ef8aa17c9c-f9b1596fa7.zip/node_modules/quick-lru/",\
+ "packageDependencies": [\
+ ["quick-lru", "npm:4.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["quote-unquote", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/quote-unquote-npm-1.0.0-5aa1091ab3-eba86bb7f6.zip/node_modules/quote-unquote/",\
+ "packageDependencies": [\
+ ["quote-unquote", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["randombytes", [\
+ ["npm:2.1.0", {\
+ "packageLocation": "./.yarn/cache/randombytes-npm-2.1.0-e3da76bccf-50395efda7.zip/node_modules/randombytes/",\
+ "packageDependencies": [\
+ ["randombytes", "npm:2.1.0"],\
+ ["safe-buffer", "npm:5.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["range-parser", [\
+ ["npm:1.2.1", {\
+ "packageLocation": "./.yarn/cache/range-parser-npm-1.2.1-1a470fa390-96c032ac24.zip/node_modules/range-parser/",\
+ "packageDependencies": [\
+ ["range-parser", "npm:1.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["raw-body", [\
+ ["npm:2.5.1", {\
+ "packageLocation": "./.yarn/cache/raw-body-npm-2.5.1-9dd1d9fff9-5dad5a3a64.zip/node_modules/raw-body/",\
+ "packageDependencies": [\
+ ["raw-body", "npm:2.5.1"],\
+ ["bytes", "npm:3.1.2"],\
+ ["http-errors", "npm:2.0.0"],\
+ ["iconv-lite", "npm:0.4.24"],\
+ ["unpipe", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["rc", [\
+ ["npm:1.2.8", {\
+ "packageLocation": "./.yarn/cache/rc-npm-1.2.8-d6768ac936-24a0765315.zip/node_modules/rc/",\
+ "packageDependencies": [\
+ ["rc", "npm:1.2.8"],\
+ ["deep-extend", "npm:0.6.0"],\
+ ["ini", "npm:1.3.8"],\
+ ["minimist", "npm:1.2.8"],\
+ ["strip-json-comments", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["read-pkg", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/read-pkg-npm-3.0.0-41471436cb-65acf2df89.zip/node_modules/read-pkg/",\
+ "packageDependencies": [\
+ ["read-pkg", "npm:3.0.0"],\
+ ["load-json-file", "npm:4.0.0"],\
+ ["normalize-package-data", "npm:2.5.0"],\
+ ["path-type", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.2.0", {\
+ "packageLocation": "./.yarn/cache/read-pkg-npm-5.2.0-50426bd8dc-b51a17d4b5.zip/node_modules/read-pkg/",\
+ "packageDependencies": [\
+ ["read-pkg", "npm:5.2.0"],\
+ ["@types/normalize-package-data", "npm:2.4.4"],\
+ ["normalize-package-data", "npm:2.5.0"],\
+ ["parse-json", "npm:5.2.0"],\
+ ["type-fest", "npm:0.6.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["read-pkg-up", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/read-pkg-up-npm-3.0.0-3d7faf047f-2cd0a18026.zip/node_modules/read-pkg-up/",\
+ "packageDependencies": [\
+ ["read-pkg-up", "npm:3.0.0"],\
+ ["find-up", "npm:2.1.0"],\
+ ["read-pkg", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.0.1", {\
+ "packageLocation": "./.yarn/cache/read-pkg-up-npm-7.0.1-11895bed9a-82b3ac9fd7.zip/node_modules/read-pkg-up/",\
+ "packageDependencies": [\
+ ["read-pkg-up", "npm:7.0.1"],\
+ ["find-up", "npm:4.1.0"],\
+ ["read-pkg", "npm:5.2.0"],\
+ ["type-fest", "npm:0.8.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["readable-stream", [\
+ ["npm:2.3.8", {\
+ "packageLocation": "./.yarn/cache/readable-stream-npm-2.3.8-67a94c2cb1-7efdb01f38.zip/node_modules/readable-stream/",\
+ "packageDependencies": [\
+ ["readable-stream", "npm:2.3.8"],\
+ ["core-util-is", "npm:1.0.3"],\
+ ["inherits", "npm:2.0.4"],\
+ ["isarray", "npm:1.0.0"],\
+ ["process-nextick-args", "npm:2.0.1"],\
+ ["safe-buffer", "npm:5.1.2"],\
+ ["string_decoder", "npm:1.1.1"],\
+ ["util-deprecate", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.6.2", {\
+ "packageLocation": "./.yarn/cache/readable-stream-npm-3.6.2-d2a6069158-e37be5c79c.zip/node_modules/readable-stream/",\
+ "packageDependencies": [\
+ ["readable-stream", "npm:3.6.2"],\
+ ["inherits", "npm:2.0.4"],\
+ ["string_decoder", "npm:1.3.0"],\
+ ["util-deprecate", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["readable-web-to-node-stream", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/readable-web-to-node-stream-npm-3.0.2-682f5de297-533d5cd158.zip/node_modules/readable-web-to-node-stream/",\
+ "packageDependencies": [\
+ ["readable-web-to-node-stream", "npm:3.0.2"],\
+ ["readable-stream", "npm:3.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["redent", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/redent-npm-3.0.0-31892f4906-d64a6b5c0b.zip/node_modules/redent/",\
+ "packageDependencies": [\
+ ["redent", "npm:3.0.0"],\
+ ["indent-string", "npm:4.0.0"],\
+ ["strip-indent", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["regexp.prototype.flags", [\
+ ["npm:1.5.1", {\
+ "packageLocation": "./.yarn/cache/regexp.prototype.flags-npm-1.5.1-b8faeee306-1de7d214c0.zip/node_modules/regexp.prototype.flags/",\
+ "packageDependencies": [\
+ ["regexp.prototype.flags", "npm:1.5.1"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["set-function-name", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["repeat-string", [\
+ ["npm:1.6.1", {\
+ "packageLocation": "./.yarn/cache/repeat-string-npm-1.6.1-bc8e388655-87fa21bfdb.zip/node_modules/repeat-string/",\
+ "packageDependencies": [\
+ ["repeat-string", "npm:1.6.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["require-directory", [\
+ ["npm:2.1.1", {\
+ "packageLocation": "./.yarn/cache/require-directory-npm-2.1.1-8608aee50b-83aa76a7bc.zip/node_modules/require-directory/",\
+ "packageDependencies": [\
+ ["require-directory", "npm:2.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["require-from-string", [\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/require-from-string-npm-2.0.2-8557e0db12-aaa267e0c5.zip/node_modules/require-from-string/",\
+ "packageDependencies": [\
+ ["require-from-string", "npm:2.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["requirejs", [\
+ ["npm:2.3.6", {\
+ "packageLocation": "./.yarn/cache/requirejs-npm-2.3.6-cda05b5f88-945faa9a6d.zip/node_modules/requirejs/",\
+ "packageDependencies": [\
+ ["requirejs", "npm:2.3.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["requirejs-config-file", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/requirejs-config-file-npm-4.0.0-e89c26c364-18ea5b39a6.zip/node_modules/requirejs-config-file/",\
+ "packageDependencies": [\
+ ["requirejs-config-file", "npm:4.0.0"],\
+ ["esprima", "npm:4.0.1"],\
+ ["stringify-object", "npm:3.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["resolve", [\
+ ["patch:resolve@npm%3A1.19.0#optional!builtin::version=1.19.0&hash=c3c19d", {\
+ "packageLocation": "./.yarn/cache/resolve-patch-0e96ddcab0-254980f60d.zip/node_modules/resolve/",\
+ "packageDependencies": [\
+ ["resolve", "patch:resolve@npm%3A1.19.0#optional!builtin::version=1.19.0&hash=c3c19d"],\
+ ["is-core-module", "npm:2.13.1"],\
+ ["path-parse", "npm:1.0.7"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d", {\
+ "packageLocation": "./.yarn/cache/resolve-patch-4254c24959-0446f02443.zip/node_modules/resolve/",\
+ "packageDependencies": [\
+ ["resolve", "patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d"],\
+ ["is-core-module", "npm:2.13.1"],\
+ ["path-parse", "npm:1.0.7"],\
+ ["supports-preserve-symlinks-flag", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["resolve-cwd", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/resolve-cwd-npm-3.0.0-e6f4e296bf-e608a3ebd1.zip/node_modules/resolve-cwd/",\
+ "packageDependencies": [\
+ ["resolve-cwd", "npm:3.0.0"],\
+ ["resolve-from", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["resolve-dependency-path", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/resolve-dependency-path-npm-2.0.0-81572580e9-f5466505cc.zip/node_modules/resolve-dependency-path/",\
+ "packageDependencies": [\
+ ["resolve-dependency-path", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["resolve-dir", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/resolve-dir-npm-1.0.1-0a95903c18-8197ed13e4.zip/node_modules/resolve-dir/",\
+ "packageDependencies": [\
+ ["resolve-dir", "npm:1.0.1"],\
+ ["expand-tilde", "npm:2.0.2"],\
+ ["global-modules", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["resolve-from", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/resolve-from-npm-4.0.0-f758ec21bf-8408eec31a.zip/node_modules/resolve-from/",\
+ "packageDependencies": [\
+ ["resolve-from", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/resolve-from-npm-5.0.0-15c9db4d33-b21cb7f1fb.zip/node_modules/resolve-from/",\
+ "packageDependencies": [\
+ ["resolve-from", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["resolve-global", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/resolve-global-npm-1.0.0-9097e8a466-fda6ba81a0.zip/node_modules/resolve-global/",\
+ "packageDependencies": [\
+ ["resolve-global", "npm:1.0.0"],\
+ ["global-dirs", "npm:0.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["restore-cursor", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/restore-cursor-npm-3.1.0-52c5a4c98f-8051a371d6.zip/node_modules/restore-cursor/",\
+ "packageDependencies": [\
+ ["restore-cursor", "npm:3.1.0"],\
+ ["onetime", "npm:5.1.2"],\
+ ["signal-exit", "npm:3.0.7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["retry", [\
+ ["npm:0.12.0", {\
+ "packageLocation": "./.yarn/cache/retry-npm-0.12.0-72ac7fb4cc-59933e8501.zip/node_modules/retry/",\
+ "packageDependencies": [\
+ ["retry", "npm:0.12.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["reusify", [\
+ ["npm:1.0.4", {\
+ "packageLocation": "./.yarn/cache/reusify-npm-1.0.4-95ac4aec11-c19ef26e4e.zip/node_modules/reusify/",\
+ "packageDependencies": [\
+ ["reusify", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["rimraf", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/rimraf-npm-3.0.2-2cb7dac69a-9cb7757acb.zip/node_modules/rimraf/",\
+ "packageDependencies": [\
+ ["rimraf", "npm:3.0.2"],\
+ ["glob", "npm:7.2.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.5", {\
+ "packageLocation": "./.yarn/cache/rimraf-npm-5.0.5-19228633fd-d50dbe724f.zip/node_modules/rimraf/",\
+ "packageDependencies": [\
+ ["rimraf", "npm:5.0.5"],\
+ ["glob", "npm:10.3.10"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["rollup", [\
+ ["npm:4.9.4", {\
+ "packageLocation": "./.yarn/cache/rollup-npm-4.9.4-490f7b54b6-3a494f2d92.zip/node_modules/rollup/",\
+ "packageDependencies": [\
+ ["rollup", "npm:4.9.4"],\
+ ["@rollup/rollup-android-arm-eabi", "npm:4.9.4"],\
+ ["@rollup/rollup-android-arm64", "npm:4.9.4"],\
+ ["@rollup/rollup-darwin-arm64", "npm:4.9.4"],\
+ ["@rollup/rollup-darwin-x64", "npm:4.9.4"],\
+ ["@rollup/rollup-linux-arm-gnueabihf", "npm:4.9.4"],\
+ ["@rollup/rollup-linux-arm64-gnu", "npm:4.9.4"],\
+ ["@rollup/rollup-linux-arm64-musl", "npm:4.9.4"],\
+ ["@rollup/rollup-linux-riscv64-gnu", "npm:4.9.4"],\
+ ["@rollup/rollup-linux-x64-gnu", "npm:4.9.4"],\
+ ["@rollup/rollup-linux-x64-musl", "npm:4.9.4"],\
+ ["@rollup/rollup-win32-arm64-msvc", "npm:4.9.4"],\
+ ["@rollup/rollup-win32-ia32-msvc", "npm:4.9.4"],\
+ ["@rollup/rollup-win32-x64-msvc", "npm:4.9.4"],\
+ ["@types/estree", "npm:1.0.5"],\
+ ["fsevents", "patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["run-applescript", [\
+ ["npm:7.0.0", {\
+ "packageLocation": "./.yarn/cache/run-applescript-npm-7.0.0-b061c2c4fa-bd821bbf15.zip/node_modules/run-applescript/",\
+ "packageDependencies": [\
+ ["run-applescript", "npm:7.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["run-async", [\
+ ["npm:2.4.1", {\
+ "packageLocation": "./.yarn/cache/run-async-npm-2.4.1-a94bb90861-35a68c8f1d.zip/node_modules/run-async/",\
+ "packageDependencies": [\
+ ["run-async", "npm:2.4.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["run-parallel", [\
+ ["npm:1.2.0", {\
+ "packageLocation": "./.yarn/cache/run-parallel-npm-1.2.0-3f47ff2034-200b5ab25b.zip/node_modules/run-parallel/",\
+ "packageDependencies": [\
+ ["run-parallel", "npm:1.2.0"],\
+ ["queue-microtask", "npm:1.2.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["rxjs", [\
+ ["npm:7.8.1", {\
+ "packageLocation": "./.yarn/cache/rxjs-npm-7.8.1-41c443a75b-3c49c1ecd6.zip/node_modules/rxjs/",\
+ "packageDependencies": [\
+ ["rxjs", "npm:7.8.1"],\
+ ["tslib", "npm:2.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["safe-array-concat", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/safe-array-concat-npm-1.0.1-8a42907bbf-4b15ce5fce.zip/node_modules/safe-array-concat/",\
+ "packageDependencies": [\
+ ["safe-array-concat", "npm:1.0.1"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["has-symbols", "npm:1.0.3"],\
+ ["isarray", "npm:2.0.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["safe-buffer", [\
+ ["npm:5.1.2", {\
+ "packageLocation": "./.yarn/cache/safe-buffer-npm-5.1.2-c27fedf6c4-780ba6b5d9.zip/node_modules/safe-buffer/",\
+ "packageDependencies": [\
+ ["safe-buffer", "npm:5.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.2.1", {\
+ "packageLocation": "./.yarn/cache/safe-buffer-npm-5.2.1-3481c8aa9b-6501914237.zip/node_modules/safe-buffer/",\
+ "packageDependencies": [\
+ ["safe-buffer", "npm:5.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["safe-regex-test", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/safe-regex-test-npm-1.0.2-e7d7164d44-c24df9c3cb.zip/node_modules/safe-regex-test/",\
+ "packageDependencies": [\
+ ["safe-regex-test", "npm:1.0.2"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["is-regex", "npm:1.1.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["safe-stable-stringify", [\
+ ["npm:2.4.3", {\
+ "packageLocation": "./.yarn/cache/safe-stable-stringify-npm-2.4.3-d895741b40-81dede06b8.zip/node_modules/safe-stable-stringify/",\
+ "packageDependencies": [\
+ ["safe-stable-stringify", "npm:2.4.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["safer-buffer", [\
+ ["npm:2.1.2", {\
+ "packageLocation": "./.yarn/cache/safer-buffer-npm-2.1.2-8d5c0b705e-7e3c8b2e88.zip/node_modules/safer-buffer/",\
+ "packageDependencies": [\
+ ["safer-buffer", "npm:2.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["sass-lookup", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/sass-lookup-npm-3.0.0-c756430816-1e3f0887af.zip/node_modules/sass-lookup/",\
+ "packageDependencies": [\
+ ["sass-lookup", "npm:3.0.0"],\
+ ["commander", "npm:2.20.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["secp256k1", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/unplugged/secp256k1-npm-5.0.0-cbca9dfca0/node_modules/secp256k1/",\
+ "packageDependencies": [\
+ ["secp256k1", "npm:5.0.0"],\
+ ["elliptic", "npm:6.5.4"],\
+ ["node-addon-api", "npm:5.1.0"],\
+ ["node-gyp", "npm:10.0.1"],\
+ ["node-gyp-build", "npm:4.8.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["semver", [\
+ ["npm:5.7.2", {\
+ "packageLocation": "./.yarn/cache/semver-npm-5.7.2-938ee91eaa-e4cf10f86f.zip/node_modules/semver/",\
+ "packageDependencies": [\
+ ["semver", "npm:5.7.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:6.3.1", {\
+ "packageLocation": "./.yarn/cache/semver-npm-6.3.1-bcba31fdbe-e3d79b6090.zip/node_modules/semver/",\
+ "packageDependencies": [\
+ ["semver", "npm:6.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.5.4", {\
+ "packageLocation": "./.yarn/cache/semver-npm-7.5.4-c4ad957fcd-5160b06975.zip/node_modules/semver/",\
+ "packageDependencies": [\
+ ["semver", "npm:7.5.4"],\
+ ["lru-cache", "npm:6.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["send", [\
+ ["npm:0.18.0", {\
+ "packageLocation": "./.yarn/cache/send-npm-0.18.0-faadf6353f-0eb134d6a5.zip/node_modules/send/",\
+ "packageDependencies": [\
+ ["send", "npm:0.18.0"],\
+ ["debug", "virtual:3840e914156da5bf3a0152609f7597e38b893022314c08ba5b292edc820681760ec6c83dde1d34d78aa58a3f32c7d8c9d754f99860fa71136383ec1e2a87f57d#npm:2.6.9"],\
+ ["depd", "npm:2.0.0"],\
+ ["destroy", "npm:1.2.0"],\
+ ["encodeurl", "npm:1.0.2"],\
+ ["escape-html", "npm:1.0.3"],\
+ ["etag", "npm:1.8.1"],\
+ ["fresh", "npm:0.5.2"],\
+ ["http-errors", "npm:2.0.0"],\
+ ["mime", "npm:1.6.0"],\
+ ["ms", "npm:2.1.3"],\
+ ["on-finished", "npm:2.4.1"],\
+ ["range-parser", "npm:1.2.1"],\
+ ["statuses", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["serialize-error", [\
+ ["npm:7.0.1", {\
+ "packageLocation": "./.yarn/cache/serialize-error-npm-7.0.1-c0b3f881a0-7982937d57.zip/node_modules/serialize-error/",\
+ "packageDependencies": [\
+ ["serialize-error", "npm:7.0.1"],\
+ ["type-fest", "npm:0.13.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["serve-static", [\
+ ["npm:1.15.0", {\
+ "packageLocation": "./.yarn/cache/serve-static-npm-1.15.0-86c81879f5-fa9f0e21a5.zip/node_modules/serve-static/",\
+ "packageDependencies": [\
+ ["serve-static", "npm:1.15.0"],\
+ ["encodeurl", "npm:1.0.2"],\
+ ["escape-html", "npm:1.0.3"],\
+ ["parseurl", "npm:1.3.3"],\
+ ["send", "npm:0.18.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["set-blocking", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/set-blocking-npm-2.0.0-49e2cffa24-9f8c1b2d80.zip/node_modules/set-blocking/",\
+ "packageDependencies": [\
+ ["set-blocking", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["set-function-length", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/set-function-length-npm-1.1.1-d362bf8221-a29e255c11.zip/node_modules/set-function-length/",\
+ "packageDependencies": [\
+ ["set-function-length", "npm:1.1.1"],\
+ ["define-data-property", "npm:1.1.1"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["gopd", "npm:1.0.1"],\
+ ["has-property-descriptors", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["set-function-name", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/set-function-name-npm-2.0.1-a9f970eea0-6be7d3e15b.zip/node_modules/set-function-name/",\
+ "packageDependencies": [\
+ ["set-function-name", "npm:2.0.1"],\
+ ["define-data-property", "npm:1.1.1"],\
+ ["functions-have-names", "npm:1.2.3"],\
+ ["has-property-descriptors", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["setprototypeof", [\
+ ["npm:1.2.0", {\
+ "packageLocation": "./.yarn/cache/setprototypeof-npm-1.2.0-0fedbdcd3a-6873317302.zip/node_modules/setprototypeof/",\
+ "packageDependencies": [\
+ ["setprototypeof", "npm:1.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["shebang-command", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/shebang-command-npm-2.0.0-eb2b01921d-a41692e7d8.zip/node_modules/shebang-command/",\
+ "packageDependencies": [\
+ ["shebang-command", "npm:2.0.0"],\
+ ["shebang-regex", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["shebang-regex", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/shebang-regex-npm-3.0.0-899a0cd65e-1dbed0726d.zip/node_modules/shebang-regex/",\
+ "packageDependencies": [\
+ ["shebang-regex", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["shiki", [\
+ ["npm:0.14.7", {\
+ "packageLocation": "./.yarn/cache/shiki-npm-0.14.7-a8806632f6-5c7fcbb870.zip/node_modules/shiki/",\
+ "packageDependencies": [\
+ ["shiki", "npm:0.14.7"],\
+ ["ansi-sequence-parser", "npm:1.1.1"],\
+ ["jsonc-parser", "npm:3.2.0"],\
+ ["vscode-oniguruma", "npm:1.7.0"],\
+ ["vscode-textmate", "npm:8.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["side-channel", [\
+ ["npm:1.0.4", {\
+ "packageLocation": "./.yarn/cache/side-channel-npm-1.0.4-e1f38b9e06-054a5d23ee.zip/node_modules/side-channel/",\
+ "packageDependencies": [\
+ ["side-channel", "npm:1.0.4"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["object-inspect", "npm:1.13.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["signal-exit", [\
+ ["npm:3.0.7", {\
+ "packageLocation": "./.yarn/cache/signal-exit-npm-3.0.7-bd270458a3-25d272fa73.zip/node_modules/signal-exit/",\
+ "packageDependencies": [\
+ ["signal-exit", "npm:3.0.7"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.1.0", {\
+ "packageLocation": "./.yarn/cache/signal-exit-npm-4.1.0-61fb957687-41602dce54.zip/node_modules/signal-exit/",\
+ "packageDependencies": [\
+ ["signal-exit", "npm:4.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["slash", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/slash-npm-3.0.0-b87de2279a-e18488c6a4.zip/node_modules/slash/",\
+ "packageDependencies": [\
+ ["slash", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/slash-npm-4.0.0-ce4bbc4a80-b522ca75d8.zip/node_modules/slash/",\
+ "packageDependencies": [\
+ ["slash", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.1.0", {\
+ "packageLocation": "./.yarn/cache/slash-npm-5.1.0-718a84282e-eb48b815ca.zip/node_modules/slash/",\
+ "packageDependencies": [\
+ ["slash", "npm:5.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["slice-ansi", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/slice-ansi-npm-5.0.0-8cd4f226df-2d4d40b2a9.zip/node_modules/slice-ansi/",\
+ "packageDependencies": [\
+ ["slice-ansi", "npm:5.0.0"],\
+ ["ansi-styles", "npm:6.2.1"],\
+ ["is-fullwidth-code-point", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["smart-buffer", [\
+ ["npm:4.2.0", {\
+ "packageLocation": "./.yarn/cache/smart-buffer-npm-4.2.0-5ac3f668bb-a16775323e.zip/node_modules/smart-buffer/",\
+ "packageDependencies": [\
+ ["smart-buffer", "npm:4.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["socks", [\
+ ["npm:2.7.1", {\
+ "packageLocation": "./.yarn/cache/socks-npm-2.7.1-17f2b53052-43f69dbc9f.zip/node_modules/socks/",\
+ "packageDependencies": [\
+ ["socks", "npm:2.7.1"],\
+ ["ip", "npm:2.0.0"],\
+ ["smart-buffer", "npm:4.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["socks-proxy-agent", [\
+ ["npm:8.0.2", {\
+ "packageLocation": "./.yarn/cache/socks-proxy-agent-npm-8.0.2-df165543cf-a842402fc9.zip/node_modules/socks-proxy-agent/",\
+ "packageDependencies": [\
+ ["socks-proxy-agent", "npm:8.0.2"],\
+ ["agent-base", "npm:7.1.0"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"],\
+ ["socks", "npm:2.7.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["source-map", [\
+ ["npm:0.6.1", {\
+ "packageLocation": "./.yarn/cache/source-map-npm-0.6.1-1a3621db16-ab55398007.zip/node_modules/source-map/",\
+ "packageDependencies": [\
+ ["source-map", "npm:0.6.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["source-map-js", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/source-map-js-npm-1.0.2-ee4f9f9b30-32f2dfd1e9.zip/node_modules/source-map-js/",\
+ "packageDependencies": [\
+ ["source-map-js", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["source-map-support", [\
+ ["npm:0.5.21", {\
+ "packageLocation": "./.yarn/cache/source-map-support-npm-0.5.21-09ca99e250-9ee09942f4.zip/node_modules/source-map-support/",\
+ "packageDependencies": [\
+ ["source-map-support", "npm:0.5.21"],\
+ ["buffer-from", "npm:1.1.2"],\
+ ["source-map", "npm:0.6.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["spdx-correct", [\
+ ["npm:3.2.0", {\
+ "packageLocation": "./.yarn/cache/spdx-correct-npm-3.2.0-ffae008484-49208f0086.zip/node_modules/spdx-correct/",\
+ "packageDependencies": [\
+ ["spdx-correct", "npm:3.2.0"],\
+ ["spdx-expression-parse", "npm:3.0.1"],\
+ ["spdx-license-ids", "npm:3.0.16"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["spdx-exceptions", [\
+ ["npm:2.3.0", {\
+ "packageLocation": "./.yarn/cache/spdx-exceptions-npm-2.3.0-2b68dad75a-83089e77d2.zip/node_modules/spdx-exceptions/",\
+ "packageDependencies": [\
+ ["spdx-exceptions", "npm:2.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["spdx-expression-parse", [\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/spdx-expression-parse-npm-3.0.1-b718cbb35a-6f8a41c877.zip/node_modules/spdx-expression-parse/",\
+ "packageDependencies": [\
+ ["spdx-expression-parse", "npm:3.0.1"],\
+ ["spdx-exceptions", "npm:2.3.0"],\
+ ["spdx-license-ids", "npm:3.0.16"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["spdx-license-ids", [\
+ ["npm:3.0.16", {\
+ "packageLocation": "./.yarn/cache/spdx-license-ids-npm-3.0.16-354ed86dd0-7d88b8f013.zip/node_modules/spdx-license-ids/",\
+ "packageDependencies": [\
+ ["spdx-license-ids", "npm:3.0.16"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["split", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/split-npm-1.0.1-88871d88a2-7f489e7ed5.zip/node_modules/split/",\
+ "packageDependencies": [\
+ ["split", "npm:1.0.1"],\
+ ["through", "npm:2.3.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["split2", [\
+ ["npm:3.2.2", {\
+ "packageLocation": "./.yarn/cache/split2-npm-3.2.2-4ccd21b4f7-2dad5603c5.zip/node_modules/split2/",\
+ "packageDependencies": [\
+ ["split2", "npm:3.2.2"],\
+ ["readable-stream", "npm:3.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["sprintf-js", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/sprintf-js-npm-1.0.3-73f0a322fa-ecadcfe4c7.zip/node_modules/sprintf-js/",\
+ "packageDependencies": [\
+ ["sprintf-js", "npm:1.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ssri", [\
+ ["npm:10.0.5", {\
+ "packageLocation": "./.yarn/cache/ssri-npm-10.0.5-1a7557d04d-b091f2ae92.zip/node_modules/ssri/",\
+ "packageDependencies": [\
+ ["ssri", "npm:10.0.5"],\
+ ["minipass", "npm:7.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["stack-utils", [\
+ ["npm:0.4.0", {\
+ "packageLocation": "./.yarn/cache/stack-utils-npm-0.4.0-99cc707eb9-febb0ed190.zip/node_modules/stack-utils/",\
+ "packageDependencies": [\
+ ["stack-utils", "npm:0.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.6", {\
+ "packageLocation": "./.yarn/cache/stack-utils-npm-2.0.6-2be1099696-651c9f8766.zip/node_modules/stack-utils/",\
+ "packageDependencies": [\
+ ["stack-utils", "npm:2.0.6"],\
+ ["escape-string-regexp", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["standard-version", [\
+ ["npm:9.5.0", {\
+ "packageLocation": "./.yarn/cache/standard-version-npm-9.5.0-5662d02730-22aab8f476.zip/node_modules/standard-version/",\
+ "packageDependencies": [\
+ ["standard-version", "npm:9.5.0"],\
+ ["chalk", "npm:2.4.2"],\
+ ["conventional-changelog", "npm:3.1.25"],\
+ ["conventional-changelog-config-spec", "npm:2.1.0"],\
+ ["conventional-changelog-conventionalcommits", "npm:4.6.3"],\
+ ["conventional-recommended-bump", "npm:6.1.0"],\
+ ["detect-indent", "npm:6.1.0"],\
+ ["detect-newline", "npm:3.1.0"],\
+ ["dotgitignore", "npm:2.1.0"],\
+ ["figures", "npm:3.2.0"],\
+ ["find-up", "npm:5.0.0"],\
+ ["git-semver-tags", "npm:4.1.1"],\
+ ["semver", "npm:7.5.4"],\
+ ["stringify-package", "npm:1.0.1"],\
+ ["yargs", "npm:16.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["statuses", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/statuses-npm-2.0.1-81d2b97fee-34378b207a.zip/node_modules/statuses/",\
+ "packageDependencies": [\
+ ["statuses", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["stream-to-array", [\
+ ["npm:2.3.0", {\
+ "packageLocation": "./.yarn/cache/stream-to-array-npm-2.3.0-eaa32c31d8-19d66e4e3c.zip/node_modules/stream-to-array/",\
+ "packageDependencies": [\
+ ["stream-to-array", "npm:2.3.0"],\
+ ["any-promise", "npm:1.3.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["string-argv", [\
+ ["npm:0.3.2", {\
+ "packageLocation": "./.yarn/cache/string-argv-npm-0.3.2-6e057a88f1-75c02a8375.zip/node_modules/string-argv/",\
+ "packageDependencies": [\
+ ["string-argv", "npm:0.3.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["string-width", [\
+ ["npm:4.2.3", {\
+ "packageLocation": "./.yarn/cache/string-width-npm-4.2.3-2c27177bae-1e525e92e5.zip/node_modules/string-width/",\
+ "packageDependencies": [\
+ ["string-width", "npm:4.2.3"],\
+ ["emoji-regex", "npm:8.0.0"],\
+ ["is-fullwidth-code-point", "npm:3.0.0"],\
+ ["strip-ansi", "npm:6.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.1.2", {\
+ "packageLocation": "./.yarn/cache/string-width-npm-5.1.2-bf60531341-ab9c426444.zip/node_modules/string-width/",\
+ "packageDependencies": [\
+ ["string-width", "npm:5.1.2"],\
+ ["eastasianwidth", "npm:0.2.0"],\
+ ["emoji-regex", "npm:9.2.2"],\
+ ["strip-ansi", "npm:7.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.0.0", {\
+ "packageLocation": "./.yarn/cache/string-width-npm-7.0.0-1bcc0b3bce-8ffaeeccf4.zip/node_modules/string-width/",\
+ "packageDependencies": [\
+ ["string-width", "npm:7.0.0"],\
+ ["emoji-regex", "npm:10.3.0"],\
+ ["get-east-asian-width", "npm:1.2.0"],\
+ ["strip-ansi", "npm:7.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["string.prototype.trim", [\
+ ["npm:1.2.8", {\
+ "packageLocation": "./.yarn/cache/string.prototype.trim-npm-1.2.8-7ed4517ce8-4f76c58390.zip/node_modules/string.prototype.trim/",\
+ "packageDependencies": [\
+ ["string.prototype.trim", "npm:1.2.8"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["string.prototype.trimend", [\
+ ["npm:1.0.7", {\
+ "packageLocation": "./.yarn/cache/string.prototype.trimend-npm-1.0.7-159b9dcfbc-53c24911c7.zip/node_modules/string.prototype.trimend/",\
+ "packageDependencies": [\
+ ["string.prototype.trimend", "npm:1.0.7"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["string.prototype.trimstart", [\
+ ["npm:1.0.7", {\
+ "packageLocation": "./.yarn/cache/string.prototype.trimstart-npm-1.0.7-ae2f803b78-0bcf391b41.zip/node_modules/string.prototype.trimstart/",\
+ "packageDependencies": [\
+ ["string.prototype.trimstart", "npm:1.0.7"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["define-properties", "npm:1.2.1"],\
+ ["es-abstract", "npm:1.22.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["string_decoder", [\
+ ["npm:1.1.1", {\
+ "packageLocation": "./.yarn/cache/string_decoder-npm-1.1.1-e46a6c1353-b4f89f3a92.zip/node_modules/string_decoder/",\
+ "packageDependencies": [\
+ ["string_decoder", "npm:1.1.1"],\
+ ["safe-buffer", "npm:5.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:1.3.0", {\
+ "packageLocation": "./.yarn/cache/string_decoder-npm-1.3.0-2422117fd0-810614ddb0.zip/node_modules/string_decoder/",\
+ "packageDependencies": [\
+ ["string_decoder", "npm:1.3.0"],\
+ ["safe-buffer", "npm:5.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["stringify-object", [\
+ ["npm:3.3.0", {\
+ "packageLocation": "./.yarn/cache/stringify-object-npm-3.3.0-3e6784f7df-ba8078f841.zip/node_modules/stringify-object/",\
+ "packageDependencies": [\
+ ["stringify-object", "npm:3.3.0"],\
+ ["get-own-enumerable-property-symbols", "npm:3.0.2"],\
+ ["is-obj", "npm:1.0.1"],\
+ ["is-regexp", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["stringify-package", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/stringify-package-npm-1.0.1-dfc7255692-d531d27f29.zip/node_modules/stringify-package/",\
+ "packageDependencies": [\
+ ["stringify-package", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["strip-ansi", [\
+ ["npm:6.0.1", {\
+ "packageLocation": "./.yarn/cache/strip-ansi-npm-6.0.1-caddc7cb40-1ae5f212a1.zip/node_modules/strip-ansi/",\
+ "packageDependencies": [\
+ ["strip-ansi", "npm:6.0.1"],\
+ ["ansi-regex", "npm:5.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.1.0", {\
+ "packageLocation": "./.yarn/cache/strip-ansi-npm-7.1.0-7453b80b79-a198c3762e.zip/node_modules/strip-ansi/",\
+ "packageDependencies": [\
+ ["strip-ansi", "npm:7.1.0"],\
+ ["ansi-regex", "npm:6.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["strip-bom", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/strip-bom-npm-3.0.0-71e8f81ff9-51201f50e0.zip/node_modules/strip-bom/",\
+ "packageDependencies": [\
+ ["strip-bom", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/strip-bom-npm-4.0.0-97d367a64d-26abad1172.zip/node_modules/strip-bom/",\
+ "packageDependencies": [\
+ ["strip-bom", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["strip-final-newline", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/strip-final-newline-npm-3.0.0-7972cbec8b-a771a17901.zip/node_modules/strip-final-newline/",\
+ "packageDependencies": [\
+ ["strip-final-newline", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["strip-indent", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/strip-indent-npm-3.0.0-519e75a28d-ae0deaf41c.zip/node_modules/strip-indent/",\
+ "packageDependencies": [\
+ ["strip-indent", "npm:3.0.0"],\
+ ["min-indent", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["strip-json-comments", [\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/strip-json-comments-npm-2.0.1-e7883b2d04-b509231cbd.zip/node_modules/strip-json-comments/",\
+ "packageDependencies": [\
+ ["strip-json-comments", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:3.1.1", {\
+ "packageLocation": "./.yarn/cache/strip-json-comments-npm-3.1.1-dcb2324823-9681a6257b.zip/node_modules/strip-json-comments/",\
+ "packageDependencies": [\
+ ["strip-json-comments", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["strtok3", [\
+ ["npm:7.0.0", {\
+ "packageLocation": "./.yarn/cache/strtok3-npm-7.0.0-bb1edd9ba5-63a72b10a3.zip/node_modules/strtok3/",\
+ "packageDependencies": [\
+ ["strtok3", "npm:7.0.0"],\
+ ["@tokenizer/token", "npm:0.3.0"],\
+ ["peek-readable", "npm:5.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["stylus-lookup", [\
+ ["npm:3.0.2", {\
+ "packageLocation": "./.yarn/cache/stylus-lookup-npm-3.0.2-fed0f86b51-cf387d99e1.zip/node_modules/stylus-lookup/",\
+ "packageDependencies": [\
+ ["stylus-lookup", "npm:3.0.2"],\
+ ["commander", "npm:2.20.3"],\
+ ["debug", "virtual:4b12ba5111caf7e8338099bdbc7cb046a9f8e079a44e74d0c03dca469876e3071ebbe671c5e90ae6b78ae33e22c205fa5ed32169a4aabd1404b13c56d09986e1#npm:4.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["supertap", [\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/supertap-npm-3.0.1-d7c04bcbf0-8164674f2e.zip/node_modules/supertap/",\
+ "packageDependencies": [\
+ ["supertap", "npm:3.0.1"],\
+ ["indent-string", "npm:5.0.0"],\
+ ["js-yaml", "npm:3.14.1"],\
+ ["serialize-error", "npm:7.0.1"],\
+ ["strip-ansi", "npm:7.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["supports-color", [\
+ ["npm:5.5.0", {\
+ "packageLocation": "./.yarn/cache/supports-color-npm-5.5.0-183ac537bc-6ae5ff319b.zip/node_modules/supports-color/",\
+ "packageDependencies": [\
+ ["supports-color", "npm:5.5.0"],\
+ ["has-flag", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:7.2.0", {\
+ "packageLocation": "./.yarn/cache/supports-color-npm-7.2.0-606bfcf7da-afb4c88521.zip/node_modules/supports-color/",\
+ "packageDependencies": [\
+ ["supports-color", "npm:7.2.0"],\
+ ["has-flag", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["supports-preserve-symlinks-flag", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/supports-preserve-symlinks-flag-npm-1.0.0-f17c4d0028-6c40323407.zip/node_modules/supports-preserve-symlinks-flag/",\
+ "packageDependencies": [\
+ ["supports-preserve-symlinks-flag", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["tapable", [\
+ ["npm:2.2.1", {\
+ "packageLocation": "./.yarn/cache/tapable-npm-2.2.1-8cf5ff3039-bc40e6efe1.zip/node_modules/tapable/",\
+ "packageDependencies": [\
+ ["tapable", "npm:2.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["tar", [\
+ ["npm:6.2.0", {\
+ "packageLocation": "./.yarn/cache/tar-npm-6.2.0-3eb25205a7-02ca064a1a.zip/node_modules/tar/",\
+ "packageDependencies": [\
+ ["tar", "npm:6.2.0"],\
+ ["chownr", "npm:2.0.0"],\
+ ["fs-minipass", "npm:2.1.0"],\
+ ["minipass", "npm:5.0.0"],\
+ ["minizlib", "npm:2.1.2"],\
+ ["mkdirp", "npm:1.0.4"],\
+ ["yallist", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["temp-dir", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/temp-dir-npm-3.0.0-70414c7a63-a86978a400.zip/node_modules/temp-dir/",\
+ "packageDependencies": [\
+ ["temp-dir", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["tempy", [\
+ ["npm:3.1.0", {\
+ "packageLocation": "./.yarn/cache/tempy-npm-3.1.0-53fa9712c8-b88e70baa8.zip/node_modules/tempy/",\
+ "packageDependencies": [\
+ ["tempy", "npm:3.1.0"],\
+ ["is-stream", "npm:3.0.0"],\
+ ["temp-dir", "npm:3.0.0"],\
+ ["type-fest", "npm:2.19.0"],\
+ ["unique-string", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["test-exclude", [\
+ ["npm:6.0.0", {\
+ "packageLocation": "./.yarn/cache/test-exclude-npm-6.0.0-3fb03d69df-019d33d81a.zip/node_modules/test-exclude/",\
+ "packageDependencies": [\
+ ["test-exclude", "npm:6.0.0"],\
+ ["@istanbuljs/schema", "npm:0.1.3"],\
+ ["glob", "npm:7.2.3"],\
+ ["minimatch", "npm:3.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["text-extensions", [\
+ ["npm:1.9.0", {\
+ "packageLocation": "./.yarn/cache/text-extensions-npm-1.9.0-87655d768f-9ad5a9f723.zip/node_modules/text-extensions/",\
+ "packageDependencies": [\
+ ["text-extensions", "npm:1.9.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["text-table", [\
+ ["npm:0.2.0", {\
+ "packageLocation": "./.yarn/cache/text-table-npm-0.2.0-d92a778b59-02805740c1.zip/node_modules/text-table/",\
+ "packageDependencies": [\
+ ["text-table", "npm:0.2.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["through", [\
+ ["npm:2.3.8", {\
+ "packageLocation": "./.yarn/cache/through-npm-2.3.8-df5f72a16e-4b09f37740.zip/node_modules/through/",\
+ "packageDependencies": [\
+ ["through", "npm:2.3.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["through2", [\
+ ["npm:2.0.5", {\
+ "packageLocation": "./.yarn/cache/through2-npm-2.0.5-77d90f13cd-cbfe5b5794.zip/node_modules/through2/",\
+ "packageDependencies": [\
+ ["through2", "npm:2.0.5"],\
+ ["readable-stream", "npm:2.3.8"],\
+ ["xtend", "npm:4.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.2", {\
+ "packageLocation": "./.yarn/cache/through2-npm-4.0.2-da7b2da443-3741564ae9.zip/node_modules/through2/",\
+ "packageDependencies": [\
+ ["through2", "npm:4.0.2"],\
+ ["readable-stream", "npm:3.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["time-zone", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/time-zone-npm-1.0.0-0522e3467f-d00ebd8850.zip/node_modules/time-zone/",\
+ "packageDependencies": [\
+ ["time-zone", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["tmp", [\
+ ["npm:0.0.33", {\
+ "packageLocation": "./.yarn/cache/tmp-npm-0.0.33-bcbf65df2a-69863947b8.zip/node_modules/tmp/",\
+ "packageDependencies": [\
+ ["tmp", "npm:0.0.33"],\
+ ["os-tmpdir", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["to-fast-properties", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/to-fast-properties-npm-2.0.0-0dc60cc481-b214d21dbf.zip/node_modules/to-fast-properties/",\
+ "packageDependencies": [\
+ ["to-fast-properties", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["to-regex-range", [\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/to-regex-range-npm-5.0.1-f1e8263b00-487988b0a1.zip/node_modules/to-regex-range/",\
+ "packageDependencies": [\
+ ["to-regex-range", "npm:5.0.1"],\
+ ["is-number", "npm:7.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["toidentifier", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/toidentifier-npm-1.0.1-f759712599-9393727993.zip/node_modules/toidentifier/",\
+ "packageDependencies": [\
+ ["toidentifier", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["token-types", [\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/token-types-npm-5.0.1-a86fdb8b12-cb671b2b52.zip/node_modules/token-types/",\
+ "packageDependencies": [\
+ ["token-types", "npm:5.0.1"],\
+ ["@tokenizer/token", "npm:0.3.0"],\
+ ["ieee754", "npm:1.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["tr46", [\
+ ["npm:0.0.3", {\
+ "packageLocation": "./.yarn/cache/tr46-npm-0.0.3-de53018915-047cb209a6.zip/node_modules/tr46/",\
+ "packageDependencies": [\
+ ["tr46", "npm:0.0.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["trim-newlines", [\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/trim-newlines-npm-3.0.1-22f1f216de-03cfefde6c.zip/node_modules/trim-newlines/",\
+ "packageDependencies": [\
+ ["trim-newlines", "npm:3.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ts-api-utils", [\
+ ["npm:1.0.3", {\
+ "packageLocation": "./.yarn/cache/ts-api-utils-npm-1.0.3-992f360d9b-9408338819.zip/node_modules/ts-api-utils/",\
+ "packageDependencies": [\
+ ["ts-api-utils", "npm:1.0.3"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:1.0.3", {\
+ "packageLocation": "./.yarn/__virtual__/ts-api-utils-virtual-041da0d5de/0/cache/ts-api-utils-npm-1.0.3-992f360d9b-9408338819.zip/node_modules/ts-api-utils/",\
+ "packageDependencies": [\
+ ["ts-api-utils", "virtual:0c80d6cec1950204664266603588af918fb05a5ef5842a6b010ae6734f59b484f7638a203b0dd52e3d58b49a186aef919870ade9b3e057260f6dc0042d33b19f#npm:1.0.3"],\
+ ["@types/typescript", null],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["virtual:45f7b3e074718861e9d412f1461999483dee0f73f35f1e6f12ded75c3c5b62cd2bcff5f531367f4b6732c1e89724ee8d5efc7a3515fd1f1d59d8f1ab11edf9ed#npm:1.0.3", {\
+ "packageLocation": "./.yarn/__virtual__/ts-api-utils-virtual-4242d16f1c/0/cache/ts-api-utils-npm-1.0.3-992f360d9b-9408338819.zip/node_modules/ts-api-utils/",\
+ "packageDependencies": [\
+ ["ts-api-utils", "virtual:45f7b3e074718861e9d412f1461999483dee0f73f35f1e6f12ded75c3c5b62cd2bcff5f531367f4b6732c1e89724ee8d5efc7a3515fd1f1d59d8f1ab11edf9ed#npm:1.0.3"],\
+ ["@types/typescript", null],\
+ ["typescript", null]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ts-graphviz", [\
+ ["npm:1.8.1", {\
+ "packageLocation": "./.yarn/cache/ts-graphviz-npm-1.8.1-5af04a2735-3dcb089675.zip/node_modules/ts-graphviz/",\
+ "packageDependencies": [\
+ ["ts-graphviz", "npm:1.8.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["ts-json-schema-generator", [\
+ ["npm:1.5.0", {\
+ "packageLocation": "./.yarn/cache/ts-json-schema-generator-npm-1.5.0-6a03d41094-7868e8920c.zip/node_modules/ts-json-schema-generator/",\
+ "packageDependencies": [\
+ ["ts-json-schema-generator", "npm:1.5.0"],\
+ ["@types/json-schema", "npm:7.0.15"],\
+ ["commander", "npm:11.1.0"],\
+ ["glob", "npm:8.1.0"],\
+ ["json5", "npm:2.2.3"],\
+ ["normalize-path", "npm:3.0.0"],\
+ ["safe-stable-stringify", "npm:2.4.3"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["tsconfig-paths", [\
+ ["npm:3.15.0", {\
+ "packageLocation": "./.yarn/cache/tsconfig-paths-npm-3.15.0-ff68930e0e-5b4f301a2b.zip/node_modules/tsconfig-paths/",\
+ "packageDependencies": [\
+ ["tsconfig-paths", "npm:3.15.0"],\
+ ["@types/json5", "npm:0.0.29"],\
+ ["json5", "npm:1.0.2"],\
+ ["minimist", "npm:1.2.8"],\
+ ["strip-bom", "npm:3.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["tslib", [\
+ ["npm:1.14.1", {\
+ "packageLocation": "./.yarn/cache/tslib-npm-1.14.1-102499115e-69ae09c49e.zip/node_modules/tslib/",\
+ "packageDependencies": [\
+ ["tslib", "npm:1.14.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.6.2", {\
+ "packageLocation": "./.yarn/cache/tslib-npm-2.6.2-4fc8c068d9-e03a8a4271.zip/node_modules/tslib/",\
+ "packageDependencies": [\
+ ["tslib", "npm:2.6.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["tsutils", [\
+ ["npm:3.21.0", {\
+ "packageLocation": "./.yarn/cache/tsutils-npm-3.21.0-347e6636c5-02f19e458e.zip/node_modules/tsutils/",\
+ "packageDependencies": [\
+ ["tsutils", "npm:3.21.0"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:40b7528656205285b7eb6c8a2b798d03c881f5fc5f312b0ac13d2de58079f2f1fefdc278b4177d7b19c2e1c30a289310b9c005566bdd606e08fd4846ffc54362#npm:3.21.0", {\
+ "packageLocation": "./.yarn/__virtual__/tsutils-virtual-16a67883a9/0/cache/tsutils-npm-3.21.0-347e6636c5-02f19e458e.zip/node_modules/tsutils/",\
+ "packageDependencies": [\
+ ["tsutils", "virtual:40b7528656205285b7eb6c8a2b798d03c881f5fc5f312b0ac13d2de58079f2f1fefdc278b4177d7b19c2e1c30a289310b9c005566bdd606e08fd4846ffc54362#npm:3.21.0"],\
+ ["@types/typescript", null],\
+ ["tslib", "npm:1.14.1"],\
+ ["typescript", "patch:typescript@npm%3A3.9.10#optional!builtin::version=3.9.10&hash=3bd3d3"]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["virtual:d25122643b329d297f1158bdbbeb452d30b524ea62c42db7395547701b59d0cea14496f7d76f91f55bbcf1d1440cf89bd89ae4b0cd0a6ebd7928883f9bf0dba3#npm:3.21.0", {\
+ "packageLocation": "./.yarn/__virtual__/tsutils-virtual-8ac2d3a52a/0/cache/tsutils-npm-3.21.0-347e6636c5-02f19e458e.zip/node_modules/tsutils/",\
+ "packageDependencies": [\
+ ["tsutils", "virtual:d25122643b329d297f1158bdbbeb452d30b524ea62c42db7395547701b59d0cea14496f7d76f91f55bbcf1d1440cf89bd89ae4b0cd0a6ebd7928883f9bf0dba3#npm:3.21.0"],\
+ ["@types/typescript", null],\
+ ["tslib", "npm:1.14.1"],\
+ ["typescript", "patch:typescript@npm%3A4.9.5#optional!builtin::version=4.9.5&hash=289587"]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["type-check", [\
+ ["npm:0.4.0", {\
+ "packageLocation": "./.yarn/cache/type-check-npm-0.4.0-60565800ce-7b3fd0ed43.zip/node_modules/type-check/",\
+ "packageDependencies": [\
+ ["type-check", "npm:0.4.0"],\
+ ["prelude-ls", "npm:1.2.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["type-fest", [\
+ ["npm:0.13.1", {\
+ "packageLocation": "./.yarn/cache/type-fest-npm-0.13.1-7f4486b973-0c0fa07ae5.zip/node_modules/type-fest/",\
+ "packageDependencies": [\
+ ["type-fest", "npm:0.13.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:0.18.1", {\
+ "packageLocation": "./.yarn/cache/type-fest-npm-0.18.1-47b079775d-303f5ecf40.zip/node_modules/type-fest/",\
+ "packageDependencies": [\
+ ["type-fest", "npm:0.18.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:0.20.2", {\
+ "packageLocation": "./.yarn/cache/type-fest-npm-0.20.2-b36432617f-dea9df45ea.zip/node_modules/type-fest/",\
+ "packageDependencies": [\
+ ["type-fest", "npm:0.20.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:0.21.3", {\
+ "packageLocation": "./.yarn/cache/type-fest-npm-0.21.3-5ff2a9c6fd-902bd57bfa.zip/node_modules/type-fest/",\
+ "packageDependencies": [\
+ ["type-fest", "npm:0.21.3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:0.6.0", {\
+ "packageLocation": "./.yarn/cache/type-fest-npm-0.6.0-76b229965b-0c585c2641.zip/node_modules/type-fest/",\
+ "packageDependencies": [\
+ ["type-fest", "npm:0.6.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:0.8.1", {\
+ "packageLocation": "./.yarn/cache/type-fest-npm-0.8.1-351ad028fe-dffbb99329.zip/node_modules/type-fest/",\
+ "packageDependencies": [\
+ ["type-fest", "npm:0.8.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:1.4.0", {\
+ "packageLocation": "./.yarn/cache/type-fest-npm-1.4.0-7dd848962a-a3c0f4ee28.zip/node_modules/type-fest/",\
+ "packageDependencies": [\
+ ["type-fest", "npm:1.4.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.19.0", {\
+ "packageLocation": "./.yarn/cache/type-fest-npm-2.19.0-918b953248-a5a7ecf2e6.zip/node_modules/type-fest/",\
+ "packageDependencies": [\
+ ["type-fest", "npm:2.19.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["type-is", [\
+ ["npm:1.6.18", {\
+ "packageLocation": "./.yarn/cache/type-is-npm-1.6.18-6dee4d4961-a23daeb538.zip/node_modules/type-is/",\
+ "packageDependencies": [\
+ ["type-is", "npm:1.6.18"],\
+ ["media-typer", "npm:0.3.0"],\
+ ["mime-types", "npm:2.1.35"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["typed-array-buffer", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/typed-array-buffer-npm-1.0.0-95cb610310-ebad66cdf0.zip/node_modules/typed-array-buffer/",\
+ "packageDependencies": [\
+ ["typed-array-buffer", "npm:1.0.0"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["get-intrinsic", "npm:1.2.2"],\
+ ["is-typed-array", "npm:1.1.12"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["typed-array-byte-length", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/typed-array-byte-length-npm-1.0.0-94d79975ca-6696435d53.zip/node_modules/typed-array-byte-length/",\
+ "packageDependencies": [\
+ ["typed-array-byte-length", "npm:1.0.0"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["for-each", "npm:0.3.3"],\
+ ["has-proto", "npm:1.0.1"],\
+ ["is-typed-array", "npm:1.1.12"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["typed-array-byte-offset", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/typed-array-byte-offset-npm-1.0.0-8cbb911cf5-4036ce007a.zip/node_modules/typed-array-byte-offset/",\
+ "packageDependencies": [\
+ ["typed-array-byte-offset", "npm:1.0.0"],\
+ ["available-typed-arrays", "npm:1.0.5"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["for-each", "npm:0.3.3"],\
+ ["has-proto", "npm:1.0.1"],\
+ ["is-typed-array", "npm:1.1.12"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["typed-array-length", [\
+ ["npm:1.0.4", {\
+ "packageLocation": "./.yarn/cache/typed-array-length-npm-1.0.4-92771b81fc-c5163c0103.zip/node_modules/typed-array-length/",\
+ "packageDependencies": [\
+ ["typed-array-length", "npm:1.0.4"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["for-each", "npm:0.3.3"],\
+ ["is-typed-array", "npm:1.1.12"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["typedarray", [\
+ ["npm:0.0.6", {\
+ "packageLocation": "./.yarn/cache/typedarray-npm-0.0.6-37638b2241-6005cb31df.zip/node_modules/typedarray/",\
+ "packageDependencies": [\
+ ["typedarray", "npm:0.0.6"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["typedarray-to-buffer", [\
+ ["npm:3.1.5", {\
+ "packageLocation": "./.yarn/cache/typedarray-to-buffer-npm-3.1.5-aadc11995e-4ac5b7a93d.zip/node_modules/typedarray-to-buffer/",\
+ "packageDependencies": [\
+ ["typedarray-to-buffer", "npm:3.1.5"],\
+ ["is-typedarray", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["typedoc", [\
+ ["npm:0.25.7", {\
+ "packageLocation": "./.yarn/cache/typedoc-npm-0.25.7-621017eed7-e663be0534.zip/node_modules/typedoc/",\
+ "packageDependencies": [\
+ ["typedoc", "npm:0.25.7"]\
+ ],\
+ "linkType": "SOFT"\
+ }],\
+ ["virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:0.25.7", {\
+ "packageLocation": "./.yarn/__virtual__/typedoc-virtual-7347403c21/0/cache/typedoc-npm-0.25.7-621017eed7-e663be0534.zip/node_modules/typedoc/",\
+ "packageDependencies": [\
+ ["typedoc", "virtual:5e2c2634f4a5e533cb699d8f9b1c4acc34ccf947e45d7ed30f8385999c64d0ad7826196b49f3aef89d9e3c624e9036dc9c2773fa1ea27b516851dbf6b3663df5#npm:0.25.7"],\
+ ["@types/typescript", null],\
+ ["lunr", "npm:2.3.9"],\
+ ["marked", "npm:4.3.0"],\
+ ["minimatch", "npm:9.0.3"],\
+ ["shiki", "npm:0.14.7"],\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "packagePeers": [\
+ "@types/typescript",\
+ "typescript"\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["typescript", [\
+ ["patch:typescript@npm%3A3.9.10#optional!builtin::version=3.9.10&hash=3bd3d3", {\
+ "packageLocation": "./.yarn/cache/typescript-patch-24818892bd-9041fb3886.zip/node_modules/typescript/",\
+ "packageDependencies": [\
+ ["typescript", "patch:typescript@npm%3A3.9.10#optional!builtin::version=3.9.10&hash=3bd3d3"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["patch:typescript@npm%3A4.9.5#optional!builtin::version=4.9.5&hash=289587", {\
+ "packageLocation": "./.yarn/cache/typescript-patch-32ada147aa-e3333f887c.zip/node_modules/typescript/",\
+ "packageDependencies": [\
+ ["typescript", "patch:typescript@npm%3A4.9.5#optional!builtin::version=4.9.5&hash=289587"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7", {\
+ "packageLocation": "./.yarn/cache/typescript-patch-4778c7998b-1d0a5f4ce4.zip/node_modules/typescript/",\
+ "packageDependencies": [\
+ ["typescript", "patch:typescript@npm%3A5.3.3#optional!builtin::version=5.3.3&hash=e012d7"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["uglify-js", [\
+ ["npm:3.17.4", {\
+ "packageLocation": "./.yarn/cache/uglify-js-npm-3.17.4-58d4ab56aa-8b7fcdca69.zip/node_modules/uglify-js/",\
+ "packageDependencies": [\
+ ["uglify-js", "npm:3.17.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["unbox-primitive", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/unbox-primitive-npm-1.0.2-cb56a05066-81ca2e8113.zip/node_modules/unbox-primitive/",\
+ "packageDependencies": [\
+ ["unbox-primitive", "npm:1.0.2"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["has-bigints", "npm:1.0.2"],\
+ ["has-symbols", "npm:1.0.3"],\
+ ["which-boxed-primitive", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["undici-types", [\
+ ["npm:5.26.5", {\
+ "packageLocation": "./.yarn/cache/undici-types-npm-5.26.5-de4f7c7bb9-bb673d7876.zip/node_modules/undici-types/",\
+ "packageDependencies": [\
+ ["undici-types", "npm:5.26.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["unicorn-magic", [\
+ ["npm:0.1.0", {\
+ "packageLocation": "./.yarn/cache/unicorn-magic-npm-0.1.0-12d4f6ff8b-e4ed0de05b.zip/node_modules/unicorn-magic/",\
+ "packageDependencies": [\
+ ["unicorn-magic", "npm:0.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["uniq", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/uniq-npm-1.0.1-5cab2dd0f3-369dca4a07.zip/node_modules/uniq/",\
+ "packageDependencies": [\
+ ["uniq", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["unique-filename", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/unique-filename-npm-3.0.0-77d68e0a45-6363e40b2f.zip/node_modules/unique-filename/",\
+ "packageDependencies": [\
+ ["unique-filename", "npm:3.0.0"],\
+ ["unique-slug", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["unique-slug", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/unique-slug-npm-4.0.0-e6b08f28aa-cb811d9d54.zip/node_modules/unique-slug/",\
+ "packageDependencies": [\
+ ["unique-slug", "npm:4.0.0"],\
+ ["imurmurhash", "npm:0.1.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["unique-string", [\
+ ["npm:3.0.0", {\
+ "packageLocation": "./.yarn/cache/unique-string-npm-3.0.0-1a556e406a-b35ea034b1.zip/node_modules/unique-string/",\
+ "packageDependencies": [\
+ ["unique-string", "npm:3.0.0"],\
+ ["crypto-random-string", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["universalify", [\
+ ["npm:0.1.2", {\
+ "packageLocation": "./.yarn/cache/universalify-npm-0.1.2-9b22d31d2d-e70e0339f6.zip/node_modules/universalify/",\
+ "packageDependencies": [\
+ ["universalify", "npm:0.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.1", {\
+ "packageLocation": "./.yarn/cache/universalify-npm-2.0.1-040ba5a21e-73e8ee3809.zip/node_modules/universalify/",\
+ "packageDependencies": [\
+ ["universalify", "npm:2.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["unpipe", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/unpipe-npm-1.0.0-2ed2a3c2bf-193400255b.zip/node_modules/unpipe/",\
+ "packageDependencies": [\
+ ["unpipe", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["uri-js", [\
+ ["npm:4.4.1", {\
+ "packageLocation": "./.yarn/cache/uri-js-npm-4.4.1-66d11cbcaf-4ef57b45aa.zip/node_modules/uri-js/",\
+ "packageDependencies": [\
+ ["uri-js", "npm:4.4.1"],\
+ ["punycode", "npm:2.3.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["util-deprecate", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/util-deprecate-npm-1.0.2-e3fe1a219c-41a5bdd214.zip/node_modules/util-deprecate/",\
+ "packageDependencies": [\
+ ["util-deprecate", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["utils-merge", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/utils-merge-npm-1.0.1-363bbdfbca-02ba649de1.zip/node_modules/utils-merge/",\
+ "packageDependencies": [\
+ ["utils-merge", "npm:1.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["v8-to-istanbul", [\
+ ["npm:9.2.0", {\
+ "packageLocation": "./.yarn/cache/v8-to-istanbul-npm-9.2.0-fb333cc45f-e691ba4dd0.zip/node_modules/v8-to-istanbul/",\
+ "packageDependencies": [\
+ ["v8-to-istanbul", "npm:9.2.0"],\
+ ["@jridgewell/trace-mapping", "npm:0.3.20"],\
+ ["@types/istanbul-lib-coverage", "npm:2.0.6"],\
+ ["convert-source-map", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["validate-npm-package-license", [\
+ ["npm:3.0.4", {\
+ "packageLocation": "./.yarn/cache/validate-npm-package-license-npm-3.0.4-7af8adc7a8-7b91e455a8.zip/node_modules/validate-npm-package-license/",\
+ "packageDependencies": [\
+ ["validate-npm-package-license", "npm:3.0.4"],\
+ ["spdx-correct", "npm:3.2.0"],\
+ ["spdx-expression-parse", "npm:3.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["validator", [\
+ ["npm:13.11.0", {\
+ "packageLocation": "./.yarn/cache/validator-npm-13.11.0-f0143e2784-0107da3add.zip/node_modules/validator/",\
+ "packageDependencies": [\
+ ["validator", "npm:13.11.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["vary", [\
+ ["npm:1.1.2", {\
+ "packageLocation": "./.yarn/cache/vary-npm-1.1.2-b49f70ae63-f15d588d79.zip/node_modules/vary/",\
+ "packageDependencies": [\
+ ["vary", "npm:1.1.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["vscode-languageserver-textdocument", [\
+ ["npm:1.0.11", {\
+ "packageLocation": "./.yarn/cache/vscode-languageserver-textdocument-npm-1.0.11-6fc94d2b7b-1996a38e24.zip/node_modules/vscode-languageserver-textdocument/",\
+ "packageDependencies": [\
+ ["vscode-languageserver-textdocument", "npm:1.0.11"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["vscode-oniguruma", [\
+ ["npm:1.7.0", {\
+ "packageLocation": "./.yarn/cache/vscode-oniguruma-npm-1.7.0-07cc55fbcc-bef0073c66.zip/node_modules/vscode-oniguruma/",\
+ "packageDependencies": [\
+ ["vscode-oniguruma", "npm:1.7.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["vscode-textmate", [\
+ ["npm:8.0.0", {\
+ "packageLocation": "./.yarn/cache/vscode-textmate-npm-8.0.0-2deb0cc7cf-836f7fe73f.zip/node_modules/vscode-textmate/",\
+ "packageDependencies": [\
+ ["vscode-textmate", "npm:8.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["vscode-uri", [\
+ ["npm:3.0.8", {\
+ "packageLocation": "./.yarn/cache/vscode-uri-npm-3.0.8-56f46b9d24-f7f217f526.zip/node_modules/vscode-uri/",\
+ "packageDependencies": [\
+ ["vscode-uri", "npm:3.0.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["walkdir", [\
+ ["npm:0.4.1", {\
+ "packageLocation": "./.yarn/cache/walkdir-npm-0.4.1-de0c3aebeb-88e635aa93.zip/node_modules/walkdir/",\
+ "packageDependencies": [\
+ ["walkdir", "npm:0.4.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["wcwidth", [\
+ ["npm:1.0.1", {\
+ "packageLocation": "./.yarn/cache/wcwidth-npm-1.0.1-05fa596453-5b61ca583a.zip/node_modules/wcwidth/",\
+ "packageDependencies": [\
+ ["wcwidth", "npm:1.0.1"],\
+ ["defaults", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["webidl-conversions", [\
+ ["npm:3.0.1", {\
+ "packageLocation": "./.yarn/cache/webidl-conversions-npm-3.0.1-60310f6a2b-5612d5f3e5.zip/node_modules/webidl-conversions/",\
+ "packageDependencies": [\
+ ["webidl-conversions", "npm:3.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["well-known-symbols", [\
+ ["npm:2.0.0", {\
+ "packageLocation": "./.yarn/cache/well-known-symbols-npm-2.0.0-16fb8dedc6-cb6c12e988.zip/node_modules/well-known-symbols/",\
+ "packageDependencies": [\
+ ["well-known-symbols", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["whatwg-url", [\
+ ["npm:5.0.0", {\
+ "packageLocation": "./.yarn/cache/whatwg-url-npm-5.0.0-374fb45e60-1588bed84d.zip/node_modules/whatwg-url/",\
+ "packageDependencies": [\
+ ["whatwg-url", "npm:5.0.0"],\
+ ["tr46", "npm:0.0.3"],\
+ ["webidl-conversions", "npm:3.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["which", [\
+ ["npm:1.3.1", {\
+ "packageLocation": "./.yarn/cache/which-npm-1.3.1-f0ebb8bdd8-e945a8b6bb.zip/node_modules/which/",\
+ "packageDependencies": [\
+ ["which", "npm:1.3.1"],\
+ ["isexe", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:2.0.2", {\
+ "packageLocation": "./.yarn/cache/which-npm-2.0.2-320ddf72f7-66522872a7.zip/node_modules/which/",\
+ "packageDependencies": [\
+ ["which", "npm:2.0.2"],\
+ ["isexe", "npm:2.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/which-npm-4.0.0-dd31cd4928-449fa5c44e.zip/node_modules/which/",\
+ "packageDependencies": [\
+ ["which", "npm:4.0.0"],\
+ ["isexe", "npm:3.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["which-boxed-primitive", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/which-boxed-primitive-npm-1.0.2-e214f9ae5a-0a62a03c00.zip/node_modules/which-boxed-primitive/",\
+ "packageDependencies": [\
+ ["which-boxed-primitive", "npm:1.0.2"],\
+ ["is-bigint", "npm:1.0.4"],\
+ ["is-boolean-object", "npm:1.1.2"],\
+ ["is-number-object", "npm:1.0.7"],\
+ ["is-string", "npm:1.0.7"],\
+ ["is-symbol", "npm:1.0.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["which-typed-array", [\
+ ["npm:1.1.13", {\
+ "packageLocation": "./.yarn/cache/which-typed-array-npm-1.1.13-92c18b4878-9f5f1c4291.zip/node_modules/which-typed-array/",\
+ "packageDependencies": [\
+ ["which-typed-array", "npm:1.1.13"],\
+ ["available-typed-arrays", "npm:1.0.5"],\
+ ["call-bind", "npm:1.0.5"],\
+ ["for-each", "npm:0.3.3"],\
+ ["gopd", "npm:1.0.1"],\
+ ["has-tostringtag", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["wide-align", [\
+ ["npm:1.1.5", {\
+ "packageLocation": "./.yarn/cache/wide-align-npm-1.1.5-889d77e592-1d9c2a3e36.zip/node_modules/wide-align/",\
+ "packageDependencies": [\
+ ["wide-align", "npm:1.1.5"],\
+ ["string-width", "npm:4.2.3"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["word-wrap", [\
+ ["npm:1.2.5", {\
+ "packageLocation": "./.yarn/cache/word-wrap-npm-1.2.5-42d00c4b09-e0e4a1ca27.zip/node_modules/word-wrap/",\
+ "packageDependencies": [\
+ ["word-wrap", "npm:1.2.5"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["wordwrap", [\
+ ["npm:1.0.0", {\
+ "packageLocation": "./.yarn/cache/wordwrap-npm-1.0.0-ae57a645e8-7ed2e44f3c.zip/node_modules/wordwrap/",\
+ "packageDependencies": [\
+ ["wordwrap", "npm:1.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["wrap-ansi", [\
+ ["npm:7.0.0", {\
+ "packageLocation": "./.yarn/cache/wrap-ansi-npm-7.0.0-ad6e1a0554-d15fc12c11.zip/node_modules/wrap-ansi/",\
+ "packageDependencies": [\
+ ["wrap-ansi", "npm:7.0.0"],\
+ ["ansi-styles", "npm:4.3.0"],\
+ ["string-width", "npm:4.2.3"],\
+ ["strip-ansi", "npm:6.0.1"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:8.1.0", {\
+ "packageLocation": "./.yarn/cache/wrap-ansi-npm-8.1.0-26a4e6ae28-138ff58a41.zip/node_modules/wrap-ansi/",\
+ "packageDependencies": [\
+ ["wrap-ansi", "npm:8.1.0"],\
+ ["ansi-styles", "npm:6.2.1"],\
+ ["string-width", "npm:5.1.2"],\
+ ["strip-ansi", "npm:7.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["wrappy", [\
+ ["npm:1.0.2", {\
+ "packageLocation": "./.yarn/cache/wrappy-npm-1.0.2-916de4d4b3-56fece1a40.zip/node_modules/wrappy/",\
+ "packageDependencies": [\
+ ["wrappy", "npm:1.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["write-file-atomic", [\
+ ["npm:3.0.3", {\
+ "packageLocation": "./.yarn/cache/write-file-atomic-npm-3.0.3-d948a237da-7fb67affd8.zip/node_modules/write-file-atomic/",\
+ "packageDependencies": [\
+ ["write-file-atomic", "npm:3.0.3"],\
+ ["imurmurhash", "npm:0.1.4"],\
+ ["is-typedarray", "npm:1.0.0"],\
+ ["signal-exit", "npm:3.0.7"],\
+ ["typedarray-to-buffer", "npm:3.1.5"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:5.0.1", {\
+ "packageLocation": "./.yarn/cache/write-file-atomic-npm-5.0.1-52283db6ee-e8c850a8e3.zip/node_modules/write-file-atomic/",\
+ "packageDependencies": [\
+ ["write-file-atomic", "npm:5.0.1"],\
+ ["imurmurhash", "npm:0.1.4"],\
+ ["signal-exit", "npm:4.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["xdg-basedir", [\
+ ["npm:5.1.0", {\
+ "packageLocation": "./.yarn/cache/xdg-basedir-npm-5.1.0-589d73b54c-c88efabc71.zip/node_modules/xdg-basedir/",\
+ "packageDependencies": [\
+ ["xdg-basedir", "npm:5.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["xtend", [\
+ ["npm:4.0.2", {\
+ "packageLocation": "./.yarn/cache/xtend-npm-4.0.2-7f2375736e-366ae4783e.zip/node_modules/xtend/",\
+ "packageDependencies": [\
+ ["xtend", "npm:4.0.2"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["y18n", [\
+ ["npm:5.0.8", {\
+ "packageLocation": "./.yarn/cache/y18n-npm-5.0.8-5f3a0a7e62-4df2842c36.zip/node_modules/y18n/",\
+ "packageDependencies": [\
+ ["y18n", "npm:5.0.8"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["yallist", [\
+ ["npm:4.0.0", {\
+ "packageLocation": "./.yarn/cache/yallist-npm-4.0.0-b493d9e907-2286b5e8db.zip/node_modules/yallist/",\
+ "packageDependencies": [\
+ ["yallist", "npm:4.0.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["yaml", [\
+ ["npm:2.3.4", {\
+ "packageLocation": "./.yarn/cache/yaml-npm-2.3.4-8bb6dc2c0d-cf03b68f8f.zip/node_modules/yaml/",\
+ "packageDependencies": [\
+ ["yaml", "npm:2.3.4"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["yargs", [\
+ ["npm:16.2.0", {\
+ "packageLocation": "./.yarn/cache/yargs-npm-16.2.0-547873d425-b1dbfefa67.zip/node_modules/yargs/",\
+ "packageDependencies": [\
+ ["yargs", "npm:16.2.0"],\
+ ["cliui", "npm:7.0.4"],\
+ ["escalade", "npm:3.1.1"],\
+ ["get-caller-file", "npm:2.0.5"],\
+ ["require-directory", "npm:2.1.1"],\
+ ["string-width", "npm:4.2.3"],\
+ ["y18n", "npm:5.0.8"],\
+ ["yargs-parser", "npm:20.2.9"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:17.7.2", {\
+ "packageLocation": "./.yarn/cache/yargs-npm-17.7.2-80b62638e1-ccd7e723e6.zip/node_modules/yargs/",\
+ "packageDependencies": [\
+ ["yargs", "npm:17.7.2"],\
+ ["cliui", "npm:8.0.1"],\
+ ["escalade", "npm:3.1.1"],\
+ ["get-caller-file", "npm:2.0.5"],\
+ ["require-directory", "npm:2.1.1"],\
+ ["string-width", "npm:4.2.3"],\
+ ["y18n", "npm:5.0.8"],\
+ ["yargs-parser", "npm:21.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["yargs-parser", [\
+ ["npm:20.2.9", {\
+ "packageLocation": "./.yarn/cache/yargs-parser-npm-20.2.9-a1d19e598d-0685a8e58b.zip/node_modules/yargs-parser/",\
+ "packageDependencies": [\
+ ["yargs-parser", "npm:20.2.9"]\
+ ],\
+ "linkType": "HARD"\
+ }],\
+ ["npm:21.1.1", {\
+ "packageLocation": "./.yarn/cache/yargs-parser-npm-21.1.1-8fdc003314-f84b5e4816.zip/node_modules/yargs-parser/",\
+ "packageDependencies": [\
+ ["yargs-parser", "npm:21.1.1"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["yocto-queue", [\
+ ["npm:0.1.0", {\
+ "packageLocation": "./.yarn/cache/yocto-queue-npm-0.1.0-c6c9a7db29-dceb44c285.zip/node_modules/yocto-queue/",\
+ "packageDependencies": [\
+ ["yocto-queue", "npm:0.1.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]],\
+ ["z-schema", [\
+ ["npm:5.0.5", {\
+ "packageLocation": "./.yarn/cache/z-schema-npm-5.0.5-94fb0e21a9-e4c812cfe6.zip/node_modules/z-schema/",\
+ "packageDependencies": [\
+ ["z-schema", "npm:5.0.5"],\
+ ["commander", "npm:9.5.0"],\
+ ["lodash.get", "npm:4.4.2"],\
+ ["lodash.isequal", "npm:4.5.0"],\
+ ["validator", "npm:13.11.0"]\
+ ],\
+ "linkType": "HARD"\
+ }]\
+ ]]\
+ ]\
+}';
+
+function $$SETUP_STATE(hydrateRuntimeState, basePath) {
+ return hydrateRuntimeState(JSON.parse(RAW_RUNTIME_STATE), {basePath: basePath || __dirname});
+}
+
+const fs = require('fs');
+const path = require('path');
+const crypto = require('crypto');
+const os = require('os');
+const events = require('events');
+const nodeUtils = require('util');
+const stream = require('stream');
+const zlib = require('zlib');
+const require$$0 = require('module');
+const StringDecoder = require('string_decoder');
+const url = require('url');
+const buffer = require('buffer');
+const readline = require('readline');
+const assert = require('assert');
+
+const _interopDefaultLegacy = e => e && typeof e === 'object' && 'default' in e ? e : { default: e };
+
+function _interopNamespace(e) {
+ if (e && e.__esModule) return e;
+ const n = Object.create(null);
+ if (e) {
+ for (const k in e) {
+ if (k !== 'default') {
+ const d = Object.getOwnPropertyDescriptor(e, k);
+ Object.defineProperty(n, k, d.get ? d : {
+ enumerable: true,
+ get: () => e[k]
+ });
+ }
+ }
+ }
+ n.default = e;
+ return Object.freeze(n);
+}
+
+const fs__default = /*#__PURE__*/_interopDefaultLegacy(fs);
+const path__default = /*#__PURE__*/_interopDefaultLegacy(path);
+const nodeUtils__namespace = /*#__PURE__*/_interopNamespace(nodeUtils);
+const zlib__default = /*#__PURE__*/_interopDefaultLegacy(zlib);
+const require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0);
+const StringDecoder__default = /*#__PURE__*/_interopDefaultLegacy(StringDecoder);
+const buffer__default = /*#__PURE__*/_interopDefaultLegacy(buffer);
+const assert__default = /*#__PURE__*/_interopDefaultLegacy(assert);
+
+const S_IFMT = 61440;
+const S_IFDIR = 16384;
+const S_IFREG = 32768;
+const S_IFLNK = 40960;
+const SAFE_TIME = 456789e3;
+
+function makeError$1(code, message) {
+ return Object.assign(new Error(`${code}: ${message}`), { code });
+}
+function EBUSY(message) {
+ return makeError$1(`EBUSY`, message);
+}
+function ENOSYS(message, reason) {
+ return makeError$1(`ENOSYS`, `${message}, ${reason}`);
+}
+function EINVAL(reason) {
+ return makeError$1(`EINVAL`, `invalid argument, ${reason}`);
+}
+function EBADF(reason) {
+ return makeError$1(`EBADF`, `bad file descriptor, ${reason}`);
+}
+function ENOENT(reason) {
+ return makeError$1(`ENOENT`, `no such file or directory, ${reason}`);
+}
+function ENOTDIR(reason) {
+ return makeError$1(`ENOTDIR`, `not a directory, ${reason}`);
+}
+function EISDIR(reason) {
+ return makeError$1(`EISDIR`, `illegal operation on a directory, ${reason}`);
+}
+function EEXIST(reason) {
+ return makeError$1(`EEXIST`, `file already exists, ${reason}`);
+}
+function EROFS(reason) {
+ return makeError$1(`EROFS`, `read-only filesystem, ${reason}`);
+}
+function ENOTEMPTY(reason) {
+ return makeError$1(`ENOTEMPTY`, `directory not empty, ${reason}`);
+}
+function EOPNOTSUPP(reason) {
+ return makeError$1(`EOPNOTSUPP`, `operation not supported, ${reason}`);
+}
+function ERR_DIR_CLOSED() {
+ return makeError$1(`ERR_DIR_CLOSED`, `Directory handle was closed`);
+}
+
+const DEFAULT_MODE = S_IFREG | 420;
+class StatEntry {
+ constructor() {
+ this.uid = 0;
+ this.gid = 0;
+ this.size = 0;
+ this.blksize = 0;
+ this.atimeMs = 0;
+ this.mtimeMs = 0;
+ this.ctimeMs = 0;
+ this.birthtimeMs = 0;
+ this.atime = new Date(0);
+ this.mtime = new Date(0);
+ this.ctime = new Date(0);
+ this.birthtime = new Date(0);
+ this.dev = 0;
+ this.ino = 0;
+ this.mode = DEFAULT_MODE;
+ this.nlink = 1;
+ this.rdev = 0;
+ this.blocks = 1;
+ }
+ isBlockDevice() {
+ return false;
+ }
+ isCharacterDevice() {
+ return false;
+ }
+ isDirectory() {
+ return (this.mode & S_IFMT) === S_IFDIR;
+ }
+ isFIFO() {
+ return false;
+ }
+ isFile() {
+ return (this.mode & S_IFMT) === S_IFREG;
+ }
+ isSocket() {
+ return false;
+ }
+ isSymbolicLink() {
+ return (this.mode & S_IFMT) === S_IFLNK;
+ }
+}
+class BigIntStatsEntry {
+ constructor() {
+ this.uid = BigInt(0);
+ this.gid = BigInt(0);
+ this.size = BigInt(0);
+ this.blksize = BigInt(0);
+ this.atimeMs = BigInt(0);
+ this.mtimeMs = BigInt(0);
+ this.ctimeMs = BigInt(0);
+ this.birthtimeMs = BigInt(0);
+ this.atimeNs = BigInt(0);
+ this.mtimeNs = BigInt(0);
+ this.ctimeNs = BigInt(0);
+ this.birthtimeNs = BigInt(0);
+ this.atime = new Date(0);
+ this.mtime = new Date(0);
+ this.ctime = new Date(0);
+ this.birthtime = new Date(0);
+ this.dev = BigInt(0);
+ this.ino = BigInt(0);
+ this.mode = BigInt(DEFAULT_MODE);
+ this.nlink = BigInt(1);
+ this.rdev = BigInt(0);
+ this.blocks = BigInt(1);
+ }
+ isBlockDevice() {
+ return false;
+ }
+ isCharacterDevice() {
+ return false;
+ }
+ isDirectory() {
+ return (this.mode & BigInt(S_IFMT)) === BigInt(S_IFDIR);
+ }
+ isFIFO() {
+ return false;
+ }
+ isFile() {
+ return (this.mode & BigInt(S_IFMT)) === BigInt(S_IFREG);
+ }
+ isSocket() {
+ return false;
+ }
+ isSymbolicLink() {
+ return (this.mode & BigInt(S_IFMT)) === BigInt(S_IFLNK);
+ }
+}
+function makeDefaultStats() {
+ return new StatEntry();
+}
+function clearStats(stats) {
+ for (const key in stats) {
+ if (Object.hasOwn(stats, key)) {
+ const element = stats[key];
+ if (typeof element === `number`) {
+ stats[key] = 0;
+ } else if (typeof element === `bigint`) {
+ stats[key] = BigInt(0);
+ } else if (nodeUtils__namespace.types.isDate(element)) {
+ stats[key] = new Date(0);
+ }
+ }
+ }
+ return stats;
+}
+function convertToBigIntStats(stats) {
+ const bigintStats = new BigIntStatsEntry();
+ for (const key in stats) {
+ if (Object.hasOwn(stats, key)) {
+ const element = stats[key];
+ if (typeof element === `number`) {
+ bigintStats[key] = BigInt(element);
+ } else if (nodeUtils__namespace.types.isDate(element)) {
+ bigintStats[key] = new Date(element);
+ }
+ }
+ }
+ bigintStats.atimeNs = bigintStats.atimeMs * BigInt(1e6);
+ bigintStats.mtimeNs = bigintStats.mtimeMs * BigInt(1e6);
+ bigintStats.ctimeNs = bigintStats.ctimeMs * BigInt(1e6);
+ bigintStats.birthtimeNs = bigintStats.birthtimeMs * BigInt(1e6);
+ return bigintStats;
+}
+function areStatsEqual(a, b) {
+ if (a.atimeMs !== b.atimeMs)
+ return false;
+ if (a.birthtimeMs !== b.birthtimeMs)
+ return false;
+ if (a.blksize !== b.blksize)
+ return false;
+ if (a.blocks !== b.blocks)
+ return false;
+ if (a.ctimeMs !== b.ctimeMs)
+ return false;
+ if (a.dev !== b.dev)
+ return false;
+ if (a.gid !== b.gid)
+ return false;
+ if (a.ino !== b.ino)
+ return false;
+ if (a.isBlockDevice() !== b.isBlockDevice())
+ return false;
+ if (a.isCharacterDevice() !== b.isCharacterDevice())
+ return false;
+ if (a.isDirectory() !== b.isDirectory())
+ return false;
+ if (a.isFIFO() !== b.isFIFO())
+ return false;
+ if (a.isFile() !== b.isFile())
+ return false;
+ if (a.isSocket() !== b.isSocket())
+ return false;
+ if (a.isSymbolicLink() !== b.isSymbolicLink())
+ return false;
+ if (a.mode !== b.mode)
+ return false;
+ if (a.mtimeMs !== b.mtimeMs)
+ return false;
+ if (a.nlink !== b.nlink)
+ return false;
+ if (a.rdev !== b.rdev)
+ return false;
+ if (a.size !== b.size)
+ return false;
+ if (a.uid !== b.uid)
+ return false;
+ const aN = a;
+ const bN = b;
+ if (aN.atimeNs !== bN.atimeNs)
+ return false;
+ if (aN.mtimeNs !== bN.mtimeNs)
+ return false;
+ if (aN.ctimeNs !== bN.ctimeNs)
+ return false;
+ if (aN.birthtimeNs !== bN.birthtimeNs)
+ return false;
+ return true;
+}
+
+const PortablePath = {
+ root: `/`,
+ dot: `.`,
+ parent: `..`
+};
+const Filename = {
+ home: `~`,
+ nodeModules: `node_modules`,
+ manifest: `package.json`,
+ lockfile: `yarn.lock`,
+ virtual: `__virtual__`,
+ pnpJs: `.pnp.js`,
+ pnpCjs: `.pnp.cjs`,
+ pnpData: `.pnp.data.json`,
+ pnpEsmLoader: `.pnp.loader.mjs`,
+ rc: `.yarnrc.yml`,
+ env: `.env`
+};
+const npath = Object.create(path__default.default);
+const ppath = Object.create(path__default.default.posix);
+npath.cwd = () => process.cwd();
+ppath.cwd = process.platform === `win32` ? () => toPortablePath(process.cwd()) : process.cwd;
+if (process.platform === `win32`) {
+ ppath.resolve = (...segments) => {
+ if (segments.length > 0 && ppath.isAbsolute(segments[0])) {
+ return path__default.default.posix.resolve(...segments);
+ } else {
+ return path__default.default.posix.resolve(ppath.cwd(), ...segments);
+ }
+ };
+}
+const contains = function(pathUtils, from, to) {
+ from = pathUtils.normalize(from);
+ to = pathUtils.normalize(to);
+ if (from === to)
+ return `.`;
+ if (!from.endsWith(pathUtils.sep))
+ from = from + pathUtils.sep;
+ if (to.startsWith(from)) {
+ return to.slice(from.length);
+ } else {
+ return null;
+ }
+};
+npath.contains = (from, to) => contains(npath, from, to);
+ppath.contains = (from, to) => contains(ppath, from, to);
+const WINDOWS_PATH_REGEXP = /^([a-zA-Z]:.*)$/;
+const UNC_WINDOWS_PATH_REGEXP = /^\/\/(\.\/)?(.*)$/;
+const PORTABLE_PATH_REGEXP = /^\/([a-zA-Z]:.*)$/;
+const UNC_PORTABLE_PATH_REGEXP = /^\/unc\/(\.dot\/)?(.*)$/;
+function fromPortablePathWin32(p) {
+ let portablePathMatch, uncPortablePathMatch;
+ if (portablePathMatch = p.match(PORTABLE_PATH_REGEXP))
+ p = portablePathMatch[1];
+ else if (uncPortablePathMatch = p.match(UNC_PORTABLE_PATH_REGEXP))
+ p = `\\\\${uncPortablePathMatch[1] ? `.\\` : ``}${uncPortablePathMatch[2]}`;
+ else
+ return p;
+ return p.replace(/\//g, `\\`);
+}
+function toPortablePathWin32(p) {
+ p = p.replace(/\\/g, `/`);
+ let windowsPathMatch, uncWindowsPathMatch;
+ if (windowsPathMatch = p.match(WINDOWS_PATH_REGEXP))
+ p = `/${windowsPathMatch[1]}`;
+ else if (uncWindowsPathMatch = p.match(UNC_WINDOWS_PATH_REGEXP))
+ p = `/unc/${uncWindowsPathMatch[1] ? `.dot/` : ``}${uncWindowsPathMatch[2]}`;
+ return p;
+}
+const toPortablePath = process.platform === `win32` ? toPortablePathWin32 : (p) => p;
+const fromPortablePath = process.platform === `win32` ? fromPortablePathWin32 : (p) => p;
+npath.fromPortablePath = fromPortablePath;
+npath.toPortablePath = toPortablePath;
+function convertPath(targetPathUtils, sourcePath) {
+ return targetPathUtils === npath ? fromPortablePath(sourcePath) : toPortablePath(sourcePath);
+}
+
+const defaultTime = new Date(SAFE_TIME * 1e3);
+const defaultTimeMs = defaultTime.getTime();
+async function copyPromise(destinationFs, destination, sourceFs, source, opts) {
+ const normalizedDestination = destinationFs.pathUtils.normalize(destination);
+ const normalizedSource = sourceFs.pathUtils.normalize(source);
+ const prelayout = [];
+ const postlayout = [];
+ const { atime, mtime } = opts.stableTime ? { atime: defaultTime, mtime: defaultTime } : await sourceFs.lstatPromise(normalizedSource);
+ await destinationFs.mkdirpPromise(destinationFs.pathUtils.dirname(destination), { utimes: [atime, mtime] });
+ await copyImpl(prelayout, postlayout, destinationFs, normalizedDestination, sourceFs, normalizedSource, { ...opts, didParentExist: true });
+ for (const operation of prelayout)
+ await operation();
+ await Promise.all(postlayout.map((operation) => {
+ return operation();
+ }));
+}
+async function copyImpl(prelayout, postlayout, destinationFs, destination, sourceFs, source, opts) {
+ const destinationStat = opts.didParentExist ? await maybeLStat(destinationFs, destination) : null;
+ const sourceStat = await sourceFs.lstatPromise(source);
+ const { atime, mtime } = opts.stableTime ? { atime: defaultTime, mtime: defaultTime } : sourceStat;
+ let updated;
+ switch (true) {
+ case sourceStat.isDirectory():
+ {
+ updated = await copyFolder(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts);
+ }
+ break;
+ case sourceStat.isFile():
+ {
+ updated = await copyFile(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts);
+ }
+ break;
+ case sourceStat.isSymbolicLink():
+ {
+ updated = await copySymlink(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts);
+ }
+ break;
+ default:
+ {
+ throw new Error(`Unsupported file type (${sourceStat.mode})`);
+ }
+ }
+ if (opts.linkStrategy?.type !== `HardlinkFromIndex` || !sourceStat.isFile()) {
+ if (updated || destinationStat?.mtime?.getTime() !== mtime.getTime() || destinationStat?.atime?.getTime() !== atime.getTime()) {
+ postlayout.push(() => destinationFs.lutimesPromise(destination, atime, mtime));
+ updated = true;
+ }
+ if (destinationStat === null || (destinationStat.mode & 511) !== (sourceStat.mode & 511)) {
+ postlayout.push(() => destinationFs.chmodPromise(destination, sourceStat.mode & 511));
+ updated = true;
+ }
+ }
+ return updated;
+}
+async function maybeLStat(baseFs, p) {
+ try {
+ return await baseFs.lstatPromise(p);
+ } catch (e) {
+ return null;
+ }
+}
+async function copyFolder(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) {
+ if (destinationStat !== null && !destinationStat.isDirectory()) {
+ if (opts.overwrite) {
+ prelayout.push(async () => destinationFs.removePromise(destination));
+ destinationStat = null;
+ } else {
+ return false;
+ }
+ }
+ let updated = false;
+ if (destinationStat === null) {
+ prelayout.push(async () => {
+ try {
+ await destinationFs.mkdirPromise(destination, { mode: sourceStat.mode });
+ } catch (err) {
+ if (err.code !== `EEXIST`) {
+ throw err;
+ }
+ }
+ });
+ updated = true;
+ }
+ const entries = await sourceFs.readdirPromise(source);
+ const nextOpts = opts.didParentExist && !destinationStat ? { ...opts, didParentExist: false } : opts;
+ if (opts.stableSort) {
+ for (const entry of entries.sort()) {
+ if (await copyImpl(prelayout, postlayout, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts)) {
+ updated = true;
+ }
+ }
+ } else {
+ const entriesUpdateStatus = await Promise.all(entries.map(async (entry) => {
+ await copyImpl(prelayout, postlayout, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts);
+ }));
+ if (entriesUpdateStatus.some((status) => status)) {
+ updated = true;
+ }
+ }
+ return updated;
+}
+async function copyFileViaIndex(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts, linkStrategy) {
+ const sourceHash = await sourceFs.checksumFilePromise(source, { algorithm: `sha1` });
+ const indexPath = destinationFs.pathUtils.join(linkStrategy.indexPath, sourceHash.slice(0, 2), `${sourceHash}.dat`);
+ let AtomicBehavior;
+ ((AtomicBehavior2) => {
+ AtomicBehavior2[AtomicBehavior2["Lock"] = 0] = "Lock";
+ AtomicBehavior2[AtomicBehavior2["Rename"] = 1] = "Rename";
+ })(AtomicBehavior || (AtomicBehavior = {}));
+ let atomicBehavior = 1 /* Rename */;
+ let indexStat = await maybeLStat(destinationFs, indexPath);
+ if (destinationStat) {
+ const isDestinationHardlinkedFromIndex = indexStat && destinationStat.dev === indexStat.dev && destinationStat.ino === indexStat.ino;
+ const isIndexModified = indexStat?.mtimeMs !== defaultTimeMs;
+ if (isDestinationHardlinkedFromIndex) {
+ if (isIndexModified && linkStrategy.autoRepair) {
+ atomicBehavior = 0 /* Lock */;
+ indexStat = null;
+ }
+ }
+ if (!isDestinationHardlinkedFromIndex) {
+ if (opts.overwrite) {
+ prelayout.push(async () => destinationFs.removePromise(destination));
+ destinationStat = null;
+ } else {
+ return false;
+ }
+ }
+ }
+ const tempPath = !indexStat && atomicBehavior === 1 /* Rename */ ? `${indexPath}.${Math.floor(Math.random() * 4294967296).toString(16).padStart(8, `0`)}` : null;
+ let tempPathCleaned = false;
+ prelayout.push(async () => {
+ if (!indexStat) {
+ if (atomicBehavior === 0 /* Lock */) {
+ await destinationFs.lockPromise(indexPath, async () => {
+ const content = await sourceFs.readFilePromise(source);
+ await destinationFs.writeFilePromise(indexPath, content);
+ });
+ }
+ if (atomicBehavior === 1 /* Rename */ && tempPath) {
+ const content = await sourceFs.readFilePromise(source);
+ await destinationFs.writeFilePromise(tempPath, content);
+ try {
+ await destinationFs.linkPromise(tempPath, indexPath);
+ } catch (err) {
+ if (err.code === `EEXIST`) {
+ tempPathCleaned = true;
+ await destinationFs.unlinkPromise(tempPath);
+ } else {
+ throw err;
+ }
+ }
+ }
+ }
+ if (!destinationStat) {
+ await destinationFs.linkPromise(indexPath, destination);
+ }
+ });
+ postlayout.push(async () => {
+ if (!indexStat)
+ await destinationFs.lutimesPromise(indexPath, defaultTime, defaultTime);
+ if (tempPath && !tempPathCleaned) {
+ await destinationFs.unlinkPromise(tempPath);
+ }
+ });
+ return false;
+}
+async function copyFileDirect(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) {
+ if (destinationStat !== null) {
+ if (opts.overwrite) {
+ prelayout.push(async () => destinationFs.removePromise(destination));
+ destinationStat = null;
+ } else {
+ return false;
+ }
+ }
+ prelayout.push(async () => {
+ const content = await sourceFs.readFilePromise(source);
+ await destinationFs.writeFilePromise(destination, content);
+ });
+ return true;
+}
+async function copyFile(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) {
+ if (opts.linkStrategy?.type === `HardlinkFromIndex`) {
+ return copyFileViaIndex(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts, opts.linkStrategy);
+ } else {
+ return copyFileDirect(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts);
+ }
+}
+async function copySymlink(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) {
+ if (destinationStat !== null) {
+ if (opts.overwrite) {
+ prelayout.push(async () => destinationFs.removePromise(destination));
+ destinationStat = null;
+ } else {
+ return false;
+ }
+ }
+ prelayout.push(async () => {
+ await destinationFs.symlinkPromise(convertPath(destinationFs.pathUtils, await sourceFs.readlinkPromise(source)), destination);
+ });
+ return true;
+}
+
+class CustomDir {
+ constructor(path, nextDirent, opts = {}) {
+ this.path = path;
+ this.nextDirent = nextDirent;
+ this.opts = opts;
+ this.closed = false;
+ }
+ throwIfClosed() {
+ if (this.closed) {
+ throw ERR_DIR_CLOSED();
+ }
+ }
+ async *[Symbol.asyncIterator]() {
+ try {
+ let dirent;
+ while ((dirent = await this.read()) !== null) {
+ yield dirent;
+ }
+ } finally {
+ await this.close();
+ }
+ }
+ read(cb) {
+ const dirent = this.readSync();
+ if (typeof cb !== `undefined`)
+ return cb(null, dirent);
+ return Promise.resolve(dirent);
+ }
+ readSync() {
+ this.throwIfClosed();
+ return this.nextDirent();
+ }
+ close(cb) {
+ this.closeSync();
+ if (typeof cb !== `undefined`)
+ return cb(null);
+ return Promise.resolve();
+ }
+ closeSync() {
+ this.throwIfClosed();
+ this.opts.onClose?.();
+ this.closed = true;
+ }
+}
+function opendir(fakeFs, path, entries, opts) {
+ const nextDirent = () => {
+ const filename = entries.shift();
+ if (typeof filename === `undefined`)
+ return null;
+ const entryPath = fakeFs.pathUtils.join(path, filename);
+ return Object.assign(fakeFs.statSync(entryPath), {
+ name: filename,
+ path: void 0
+ });
+ };
+ return new CustomDir(path, nextDirent, opts);
+}
+
+function assertStatus(current, expected) {
+ if (current !== expected) {
+ throw new Error(`Invalid StatWatcher status: expected '${expected}', got '${current}'`);
+ }
+}
+class CustomStatWatcher extends events.EventEmitter {
+ constructor(fakeFs, path, { bigint = false } = {}) {
+ super();
+ this.status = "ready" /* Ready */;
+ this.changeListeners = /* @__PURE__ */ new Map();
+ this.startTimeout = null;
+ this.fakeFs = fakeFs;
+ this.path = path;
+ this.bigint = bigint;
+ this.lastStats = this.stat();
+ }
+ static create(fakeFs, path, opts) {
+ const statWatcher = new CustomStatWatcher(fakeFs, path, opts);
+ statWatcher.start();
+ return statWatcher;
+ }
+ start() {
+ assertStatus(this.status, "ready" /* Ready */);
+ this.status = "running" /* Running */;
+ this.startTimeout = setTimeout(() => {
+ this.startTimeout = null;
+ if (!this.fakeFs.existsSync(this.path)) {
+ this.emit("change" /* Change */, this.lastStats, this.lastStats);
+ }
+ }, 3);
+ }
+ stop() {
+ assertStatus(this.status, "running" /* Running */);
+ this.status = "stopped" /* Stopped */;
+ if (this.startTimeout !== null) {
+ clearTimeout(this.startTimeout);
+ this.startTimeout = null;
+ }
+ this.emit("stop" /* Stop */);
+ }
+ stat() {
+ try {
+ return this.fakeFs.statSync(this.path, { bigint: this.bigint });
+ } catch (error) {
+ const statInstance = this.bigint ? new BigIntStatsEntry() : new StatEntry();
+ return clearStats(statInstance);
+ }
+ }
+ makeInterval(opts) {
+ const interval = setInterval(() => {
+ const currentStats = this.stat();
+ const previousStats = this.lastStats;
+ if (areStatsEqual(currentStats, previousStats))
+ return;
+ this.lastStats = currentStats;
+ this.emit("change" /* Change */, currentStats, previousStats);
+ }, opts.interval);
+ return opts.persistent ? interval : interval.unref();
+ }
+ registerChangeListener(listener, opts) {
+ this.addListener("change" /* Change */, listener);
+ this.changeListeners.set(listener, this.makeInterval(opts));
+ }
+ unregisterChangeListener(listener) {
+ this.removeListener("change" /* Change */, listener);
+ const interval = this.changeListeners.get(listener);
+ if (typeof interval !== `undefined`)
+ clearInterval(interval);
+ this.changeListeners.delete(listener);
+ }
+ unregisterAllChangeListeners() {
+ for (const listener of this.changeListeners.keys()) {
+ this.unregisterChangeListener(listener);
+ }
+ }
+ hasChangeListeners() {
+ return this.changeListeners.size > 0;
+ }
+ ref() {
+ for (const interval of this.changeListeners.values())
+ interval.ref();
+ return this;
+ }
+ unref() {
+ for (const interval of this.changeListeners.values())
+ interval.unref();
+ return this;
+ }
+}
+
+const statWatchersByFakeFS = /* @__PURE__ */ new WeakMap();
+function watchFile(fakeFs, path, a, b) {
+ let bigint;
+ let persistent;
+ let interval;
+ let listener;
+ switch (typeof a) {
+ case `function`:
+ {
+ bigint = false;
+ persistent = true;
+ interval = 5007;
+ listener = a;
+ }
+ break;
+ default:
+ {
+ ({
+ bigint = false,
+ persistent = true,
+ interval = 5007
+ } = a);
+ listener = b;
+ }
+ break;
+ }
+ let statWatchers = statWatchersByFakeFS.get(fakeFs);
+ if (typeof statWatchers === `undefined`)
+ statWatchersByFakeFS.set(fakeFs, statWatchers = /* @__PURE__ */ new Map());
+ let statWatcher = statWatchers.get(path);
+ if (typeof statWatcher === `undefined`) {
+ statWatcher = CustomStatWatcher.create(fakeFs, path, { bigint });
+ statWatchers.set(path, statWatcher);
+ }
+ statWatcher.registerChangeListener(listener, { persistent, interval });
+ return statWatcher;
+}
+function unwatchFile(fakeFs, path, cb) {
+ const statWatchers = statWatchersByFakeFS.get(fakeFs);
+ if (typeof statWatchers === `undefined`)
+ return;
+ const statWatcher = statWatchers.get(path);
+ if (typeof statWatcher === `undefined`)
+ return;
+ if (typeof cb === `undefined`)
+ statWatcher.unregisterAllChangeListeners();
+ else
+ statWatcher.unregisterChangeListener(cb);
+ if (!statWatcher.hasChangeListeners()) {
+ statWatcher.stop();
+ statWatchers.delete(path);
+ }
+}
+function unwatchAllFiles(fakeFs) {
+ const statWatchers = statWatchersByFakeFS.get(fakeFs);
+ if (typeof statWatchers === `undefined`)
+ return;
+ for (const path of statWatchers.keys()) {
+ unwatchFile(fakeFs, path);
+ }
+}
+
+class FakeFS {
+ constructor(pathUtils) {
+ this.pathUtils = pathUtils;
+ }
+ async *genTraversePromise(init, { stableSort = false } = {}) {
+ const stack = [init];
+ while (stack.length > 0) {
+ const p = stack.shift();
+ const entry = await this.lstatPromise(p);
+ if (entry.isDirectory()) {
+ const entries = await this.readdirPromise(p);
+ if (stableSort) {
+ for (const entry2 of entries.sort()) {
+ stack.push(this.pathUtils.join(p, entry2));
+ }
+ } else {
+ throw new Error(`Not supported`);
+ }
+ } else {
+ yield p;
+ }
+ }
+ }
+ async checksumFilePromise(path, { algorithm = `sha512` } = {}) {
+ const fd = await this.openPromise(path, `r`);
+ try {
+ const CHUNK_SIZE = 65536;
+ const chunk = Buffer.allocUnsafeSlow(CHUNK_SIZE);
+ const hash = crypto.createHash(algorithm);
+ let bytesRead = 0;
+ while ((bytesRead = await this.readPromise(fd, chunk, 0, CHUNK_SIZE)) !== 0)
+ hash.update(bytesRead === CHUNK_SIZE ? chunk : chunk.slice(0, bytesRead));
+ return hash.digest(`hex`);
+ } finally {
+ await this.closePromise(fd);
+ }
+ }
+ async removePromise(p, { recursive = true, maxRetries = 5 } = {}) {
+ let stat;
+ try {
+ stat = await this.lstatPromise(p);
+ } catch (error) {
+ if (error.code === `ENOENT`) {
+ return;
+ } else {
+ throw error;
+ }
+ }
+ if (stat.isDirectory()) {
+ if (recursive) {
+ const entries = await this.readdirPromise(p);
+ await Promise.all(entries.map((entry) => {
+ return this.removePromise(this.pathUtils.resolve(p, entry));
+ }));
+ }
+ for (let t = 0; t <= maxRetries; t++) {
+ try {
+ await this.rmdirPromise(p);
+ break;
+ } catch (error) {
+ if (error.code !== `EBUSY` && error.code !== `ENOTEMPTY`) {
+ throw error;
+ } else if (t < maxRetries) {
+ await new Promise((resolve) => setTimeout(resolve, t * 100));
+ }
+ }
+ }
+ } else {
+ await this.unlinkPromise(p);
+ }
+ }
+ removeSync(p, { recursive = true } = {}) {
+ let stat;
+ try {
+ stat = this.lstatSync(p);
+ } catch (error) {
+ if (error.code === `ENOENT`) {
+ return;
+ } else {
+ throw error;
+ }
+ }
+ if (stat.isDirectory()) {
+ if (recursive)
+ for (const entry of this.readdirSync(p))
+ this.removeSync(this.pathUtils.resolve(p, entry));
+ this.rmdirSync(p);
+ } else {
+ this.unlinkSync(p);
+ }
+ }
+ async mkdirpPromise(p, { chmod, utimes } = {}) {
+ p = this.resolve(p);
+ if (p === this.pathUtils.dirname(p))
+ return void 0;
+ const parts = p.split(this.pathUtils.sep);
+ let createdDirectory;
+ for (let u = 2; u <= parts.length; ++u) {
+ const subPath = parts.slice(0, u).join(this.pathUtils.sep);
+ if (!this.existsSync(subPath)) {
+ try {
+ await this.mkdirPromise(subPath);
+ } catch (error) {
+ if (error.code === `EEXIST`) {
+ continue;
+ } else {
+ throw error;
+ }
+ }
+ createdDirectory ??= subPath;
+ if (chmod != null)
+ await this.chmodPromise(subPath, chmod);
+ if (utimes != null) {
+ await this.utimesPromise(subPath, utimes[0], utimes[1]);
+ } else {
+ const parentStat = await this.statPromise(this.pathUtils.dirname(subPath));
+ await this.utimesPromise(subPath, parentStat.atime, parentStat.mtime);
+ }
+ }
+ }
+ return createdDirectory;
+ }
+ mkdirpSync(p, { chmod, utimes } = {}) {
+ p = this.resolve(p);
+ if (p === this.pathUtils.dirname(p))
+ return void 0;
+ const parts = p.split(this.pathUtils.sep);
+ let createdDirectory;
+ for (let u = 2; u <= parts.length; ++u) {
+ const subPath = parts.slice(0, u).join(this.pathUtils.sep);
+ if (!this.existsSync(subPath)) {
+ try {
+ this.mkdirSync(subPath);
+ } catch (error) {
+ if (error.code === `EEXIST`) {
+ continue;
+ } else {
+ throw error;
+ }
+ }
+ createdDirectory ??= subPath;
+ if (chmod != null)
+ this.chmodSync(subPath, chmod);
+ if (utimes != null) {
+ this.utimesSync(subPath, utimes[0], utimes[1]);
+ } else {
+ const parentStat = this.statSync(this.pathUtils.dirname(subPath));
+ this.utimesSync(subPath, parentStat.atime, parentStat.mtime);
+ }
+ }
+ }
+ return createdDirectory;
+ }
+ async copyPromise(destination, source, { baseFs = this, overwrite = true, stableSort = false, stableTime = false, linkStrategy = null } = {}) {
+ return await copyPromise(this, destination, baseFs, source, { overwrite, stableSort, stableTime, linkStrategy });
+ }
+ copySync(destination, source, { baseFs = this, overwrite = true } = {}) {
+ const stat = baseFs.lstatSync(source);
+ const exists = this.existsSync(destination);
+ if (stat.isDirectory()) {
+ this.mkdirpSync(destination);
+ const directoryListing = baseFs.readdirSync(source);
+ for (const entry of directoryListing) {
+ this.copySync(this.pathUtils.join(destination, entry), baseFs.pathUtils.join(source, entry), { baseFs, overwrite });
+ }
+ } else if (stat.isFile()) {
+ if (!exists || overwrite) {
+ if (exists)
+ this.removeSync(destination);
+ const content = baseFs.readFileSync(source);
+ this.writeFileSync(destination, content);
+ }
+ } else if (stat.isSymbolicLink()) {
+ if (!exists || overwrite) {
+ if (exists)
+ this.removeSync(destination);
+ const target = baseFs.readlinkSync(source);
+ this.symlinkSync(convertPath(this.pathUtils, target), destination);
+ }
+ } else {
+ throw new Error(`Unsupported file type (file: ${source}, mode: 0o${stat.mode.toString(8).padStart(6, `0`)})`);
+ }
+ const mode = stat.mode & 511;
+ this.chmodSync(destination, mode);
+ }
+ async changeFilePromise(p, content, opts = {}) {
+ if (Buffer.isBuffer(content)) {
+ return this.changeFileBufferPromise(p, content, opts);
+ } else {
+ return this.changeFileTextPromise(p, content, opts);
+ }
+ }
+ async changeFileBufferPromise(p, content, { mode } = {}) {
+ let current = Buffer.alloc(0);
+ try {
+ current = await this.readFilePromise(p);
+ } catch (error) {
+ }
+ if (Buffer.compare(current, content) === 0)
+ return;
+ await this.writeFilePromise(p, content, { mode });
+ }
+ async changeFileTextPromise(p, content, { automaticNewlines, mode } = {}) {
+ let current = ``;
+ try {
+ current = await this.readFilePromise(p, `utf8`);
+ } catch (error) {
+ }
+ const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
+ if (current === normalizedContent)
+ return;
+ await this.writeFilePromise(p, normalizedContent, { mode });
+ }
+ changeFileSync(p, content, opts = {}) {
+ if (Buffer.isBuffer(content)) {
+ return this.changeFileBufferSync(p, content, opts);
+ } else {
+ return this.changeFileTextSync(p, content, opts);
+ }
+ }
+ changeFileBufferSync(p, content, { mode } = {}) {
+ let current = Buffer.alloc(0);
+ try {
+ current = this.readFileSync(p);
+ } catch (error) {
+ }
+ if (Buffer.compare(current, content) === 0)
+ return;
+ this.writeFileSync(p, content, { mode });
+ }
+ changeFileTextSync(p, content, { automaticNewlines = false, mode } = {}) {
+ let current = ``;
+ try {
+ current = this.readFileSync(p, `utf8`);
+ } catch (error) {
+ }
+ const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
+ if (current === normalizedContent)
+ return;
+ this.writeFileSync(p, normalizedContent, { mode });
+ }
+ async movePromise(fromP, toP) {
+ try {
+ await this.renamePromise(fromP, toP);
+ } catch (error) {
+ if (error.code === `EXDEV`) {
+ await this.copyPromise(toP, fromP);
+ await this.removePromise(fromP);
+ } else {
+ throw error;
+ }
+ }
+ }
+ moveSync(fromP, toP) {
+ try {
+ this.renameSync(fromP, toP);
+ } catch (error) {
+ if (error.code === `EXDEV`) {
+ this.copySync(toP, fromP);
+ this.removeSync(fromP);
+ } else {
+ throw error;
+ }
+ }
+ }
+ async lockPromise(affectedPath, callback) {
+ const lockPath = `${affectedPath}.flock`;
+ const interval = 1e3 / 60;
+ const startTime = Date.now();
+ let fd = null;
+ const isAlive = async () => {
+ let pid;
+ try {
+ [pid] = await this.readJsonPromise(lockPath);
+ } catch (error) {
+ return Date.now() - startTime < 500;
+ }
+ try {
+ process.kill(pid, 0);
+ return true;
+ } catch (error) {
+ return false;
+ }
+ };
+ while (fd === null) {
+ try {
+ fd = await this.openPromise(lockPath, `wx`);
+ } catch (error) {
+ if (error.code === `EEXIST`) {
+ if (!await isAlive()) {
+ try {
+ await this.unlinkPromise(lockPath);
+ continue;
+ } catch (error2) {
+ }
+ }
+ if (Date.now() - startTime < 60 * 1e3) {
+ await new Promise((resolve) => setTimeout(resolve, interval));
+ } else {
+ throw new Error(`Couldn't acquire a lock in a reasonable time (via ${lockPath})`);
+ }
+ } else {
+ throw error;
+ }
+ }
+ }
+ await this.writePromise(fd, JSON.stringify([process.pid]));
+ try {
+ return await callback();
+ } finally {
+ try {
+ await this.closePromise(fd);
+ await this.unlinkPromise(lockPath);
+ } catch (error) {
+ }
+ }
+ }
+ async readJsonPromise(p) {
+ const content = await this.readFilePromise(p, `utf8`);
+ try {
+ return JSON.parse(content);
+ } catch (error) {
+ error.message += ` (in ${p})`;
+ throw error;
+ }
+ }
+ readJsonSync(p) {
+ const content = this.readFileSync(p, `utf8`);
+ try {
+ return JSON.parse(content);
+ } catch (error) {
+ error.message += ` (in ${p})`;
+ throw error;
+ }
+ }
+ async writeJsonPromise(p, data, { compact = false } = {}) {
+ const space = compact ? 0 : 2;
+ return await this.writeFilePromise(p, `${JSON.stringify(data, null, space)}
+`);
+ }
+ writeJsonSync(p, data, { compact = false } = {}) {
+ const space = compact ? 0 : 2;
+ return this.writeFileSync(p, `${JSON.stringify(data, null, space)}
+`);
+ }
+ async preserveTimePromise(p, cb) {
+ const stat = await this.lstatPromise(p);
+ const result = await cb();
+ if (typeof result !== `undefined`)
+ p = result;
+ await this.lutimesPromise(p, stat.atime, stat.mtime);
+ }
+ async preserveTimeSync(p, cb) {
+ const stat = this.lstatSync(p);
+ const result = cb();
+ if (typeof result !== `undefined`)
+ p = result;
+ this.lutimesSync(p, stat.atime, stat.mtime);
+ }
+}
+class BasePortableFakeFS extends FakeFS {
+ constructor() {
+ super(ppath);
+ }
+}
+function getEndOfLine(content) {
+ const matches = content.match(/\r?\n/g);
+ if (matches === null)
+ return os.EOL;
+ const crlf = matches.filter((nl) => nl === `\r
+`).length;
+ const lf = matches.length - crlf;
+ return crlf > lf ? `\r
+` : `
+`;
+}
+function normalizeLineEndings(originalContent, newContent) {
+ return newContent.replace(/\r?\n/g, getEndOfLine(originalContent));
+}
+
+class ProxiedFS extends FakeFS {
+ getExtractHint(hints) {
+ return this.baseFs.getExtractHint(hints);
+ }
+ resolve(path) {
+ return this.mapFromBase(this.baseFs.resolve(this.mapToBase(path)));
+ }
+ getRealPath() {
+ return this.mapFromBase(this.baseFs.getRealPath());
+ }
+ async openPromise(p, flags, mode) {
+ return this.baseFs.openPromise(this.mapToBase(p), flags, mode);
+ }
+ openSync(p, flags, mode) {
+ return this.baseFs.openSync(this.mapToBase(p), flags, mode);
+ }
+ async opendirPromise(p, opts) {
+ return Object.assign(await this.baseFs.opendirPromise(this.mapToBase(p), opts), { path: p });
+ }
+ opendirSync(p, opts) {
+ return Object.assign(this.baseFs.opendirSync(this.mapToBase(p), opts), { path: p });
+ }
+ async readPromise(fd, buffer, offset, length, position) {
+ return await this.baseFs.readPromise(fd, buffer, offset, length, position);
+ }
+ readSync(fd, buffer, offset, length, position) {
+ return this.baseFs.readSync(fd, buffer, offset, length, position);
+ }
+ async writePromise(fd, buffer, offset, length, position) {
+ if (typeof buffer === `string`) {
+ return await this.baseFs.writePromise(fd, buffer, offset);
+ } else {
+ return await this.baseFs.writePromise(fd, buffer, offset, length, position);
+ }
+ }
+ writeSync(fd, buffer, offset, length, position) {
+ if (typeof buffer === `string`) {
+ return this.baseFs.writeSync(fd, buffer, offset);
+ } else {
+ return this.baseFs.writeSync(fd, buffer, offset, length, position);
+ }
+ }
+ async closePromise(fd) {
+ return this.baseFs.closePromise(fd);
+ }
+ closeSync(fd) {
+ this.baseFs.closeSync(fd);
+ }
+ createReadStream(p, opts) {
+ return this.baseFs.createReadStream(p !== null ? this.mapToBase(p) : p, opts);
+ }
+ createWriteStream(p, opts) {
+ return this.baseFs.createWriteStream(p !== null ? this.mapToBase(p) : p, opts);
+ }
+ async realpathPromise(p) {
+ return this.mapFromBase(await this.baseFs.realpathPromise(this.mapToBase(p)));
+ }
+ realpathSync(p) {
+ return this.mapFromBase(this.baseFs.realpathSync(this.mapToBase(p)));
+ }
+ async existsPromise(p) {
+ return this.baseFs.existsPromise(this.mapToBase(p));
+ }
+ existsSync(p) {
+ return this.baseFs.existsSync(this.mapToBase(p));
+ }
+ accessSync(p, mode) {
+ return this.baseFs.accessSync(this.mapToBase(p), mode);
+ }
+ async accessPromise(p, mode) {
+ return this.baseFs.accessPromise(this.mapToBase(p), mode);
+ }
+ async statPromise(p, opts) {
+ return this.baseFs.statPromise(this.mapToBase(p), opts);
+ }
+ statSync(p, opts) {
+ return this.baseFs.statSync(this.mapToBase(p), opts);
+ }
+ async fstatPromise(fd, opts) {
+ return this.baseFs.fstatPromise(fd, opts);
+ }
+ fstatSync(fd, opts) {
+ return this.baseFs.fstatSync(fd, opts);
+ }
+ lstatPromise(p, opts) {
+ return this.baseFs.lstatPromise(this.mapToBase(p), opts);
+ }
+ lstatSync(p, opts) {
+ return this.baseFs.lstatSync(this.mapToBase(p), opts);
+ }
+ async fchmodPromise(fd, mask) {
+ return this.baseFs.fchmodPromise(fd, mask);
+ }
+ fchmodSync(fd, mask) {
+ return this.baseFs.fchmodSync(fd, mask);
+ }
+ async chmodPromise(p, mask) {
+ return this.baseFs.chmodPromise(this.mapToBase(p), mask);
+ }
+ chmodSync(p, mask) {
+ return this.baseFs.chmodSync(this.mapToBase(p), mask);
+ }
+ async fchownPromise(fd, uid, gid) {
+ return this.baseFs.fchownPromise(fd, uid, gid);
+ }
+ fchownSync(fd, uid, gid) {
+ return this.baseFs.fchownSync(fd, uid, gid);
+ }
+ async chownPromise(p, uid, gid) {
+ return this.baseFs.chownPromise(this.mapToBase(p), uid, gid);
+ }
+ chownSync(p, uid, gid) {
+ return this.baseFs.chownSync(this.mapToBase(p), uid, gid);
+ }
+ async renamePromise(oldP, newP) {
+ return this.baseFs.renamePromise(this.mapToBase(oldP), this.mapToBase(newP));
+ }
+ renameSync(oldP, newP) {
+ return this.baseFs.renameSync(this.mapToBase(oldP), this.mapToBase(newP));
+ }
+ async copyFilePromise(sourceP, destP, flags = 0) {
+ return this.baseFs.copyFilePromise(this.mapToBase(sourceP), this.mapToBase(destP), flags);
+ }
+ copyFileSync(sourceP, destP, flags = 0) {
+ return this.baseFs.copyFileSync(this.mapToBase(sourceP), this.mapToBase(destP), flags);
+ }
+ async appendFilePromise(p, content, opts) {
+ return this.baseFs.appendFilePromise(this.fsMapToBase(p), content, opts);
+ }
+ appendFileSync(p, content, opts) {
+ return this.baseFs.appendFileSync(this.fsMapToBase(p), content, opts);
+ }
+ async writeFilePromise(p, content, opts) {
+ return this.baseFs.writeFilePromise(this.fsMapToBase(p), content, opts);
+ }
+ writeFileSync(p, content, opts) {
+ return this.baseFs.writeFileSync(this.fsMapToBase(p), content, opts);
+ }
+ async unlinkPromise(p) {
+ return this.baseFs.unlinkPromise(this.mapToBase(p));
+ }
+ unlinkSync(p) {
+ return this.baseFs.unlinkSync(this.mapToBase(p));
+ }
+ async utimesPromise(p, atime, mtime) {
+ return this.baseFs.utimesPromise(this.mapToBase(p), atime, mtime);
+ }
+ utimesSync(p, atime, mtime) {
+ return this.baseFs.utimesSync(this.mapToBase(p), atime, mtime);
+ }
+ async lutimesPromise(p, atime, mtime) {
+ return this.baseFs.lutimesPromise(this.mapToBase(p), atime, mtime);
+ }
+ lutimesSync(p, atime, mtime) {
+ return this.baseFs.lutimesSync(this.mapToBase(p), atime, mtime);
+ }
+ async mkdirPromise(p, opts) {
+ return this.baseFs.mkdirPromise(this.mapToBase(p), opts);
+ }
+ mkdirSync(p, opts) {
+ return this.baseFs.mkdirSync(this.mapToBase(p), opts);
+ }
+ async rmdirPromise(p, opts) {
+ return this.baseFs.rmdirPromise(this.mapToBase(p), opts);
+ }
+ rmdirSync(p, opts) {
+ return this.baseFs.rmdirSync(this.mapToBase(p), opts);
+ }
+ async linkPromise(existingP, newP) {
+ return this.baseFs.linkPromise(this.mapToBase(existingP), this.mapToBase(newP));
+ }
+ linkSync(existingP, newP) {
+ return this.baseFs.linkSync(this.mapToBase(existingP), this.mapToBase(newP));
+ }
+ async symlinkPromise(target, p, type) {
+ const mappedP = this.mapToBase(p);
+ if (this.pathUtils.isAbsolute(target))
+ return this.baseFs.symlinkPromise(this.mapToBase(target), mappedP, type);
+ const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target));
+ const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget);
+ return this.baseFs.symlinkPromise(mappedTarget, mappedP, type);
+ }
+ symlinkSync(target, p, type) {
+ const mappedP = this.mapToBase(p);
+ if (this.pathUtils.isAbsolute(target))
+ return this.baseFs.symlinkSync(this.mapToBase(target), mappedP, type);
+ const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target));
+ const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget);
+ return this.baseFs.symlinkSync(mappedTarget, mappedP, type);
+ }
+ async readFilePromise(p, encoding) {
+ return this.baseFs.readFilePromise(this.fsMapToBase(p), encoding);
+ }
+ readFileSync(p, encoding) {
+ return this.baseFs.readFileSync(this.fsMapToBase(p), encoding);
+ }
+ readdirPromise(p, opts) {
+ return this.baseFs.readdirPromise(this.mapToBase(p), opts);
+ }
+ readdirSync(p, opts) {
+ return this.baseFs.readdirSync(this.mapToBase(p), opts);
+ }
+ async readlinkPromise(p) {
+ return this.mapFromBase(await this.baseFs.readlinkPromise(this.mapToBase(p)));
+ }
+ readlinkSync(p) {
+ return this.mapFromBase(this.baseFs.readlinkSync(this.mapToBase(p)));
+ }
+ async truncatePromise(p, len) {
+ return this.baseFs.truncatePromise(this.mapToBase(p), len);
+ }
+ truncateSync(p, len) {
+ return this.baseFs.truncateSync(this.mapToBase(p), len);
+ }
+ async ftruncatePromise(fd, len) {
+ return this.baseFs.ftruncatePromise(fd, len);
+ }
+ ftruncateSync(fd, len) {
+ return this.baseFs.ftruncateSync(fd, len);
+ }
+ watch(p, a, b) {
+ return this.baseFs.watch(
+ this.mapToBase(p),
+ a,
+ b
+ );
+ }
+ watchFile(p, a, b) {
+ return this.baseFs.watchFile(
+ this.mapToBase(p),
+ a,
+ b
+ );
+ }
+ unwatchFile(p, cb) {
+ return this.baseFs.unwatchFile(this.mapToBase(p), cb);
+ }
+ fsMapToBase(p) {
+ if (typeof p === `number`) {
+ return p;
+ } else {
+ return this.mapToBase(p);
+ }
+ }
+}
+
+function direntToPortable(dirent) {
+ const portableDirent = dirent;
+ if (typeof dirent.path === `string`)
+ portableDirent.path = npath.toPortablePath(dirent.path);
+ return portableDirent;
+}
+class NodeFS extends BasePortableFakeFS {
+ constructor(realFs = fs__default.default) {
+ super();
+ this.realFs = realFs;
+ }
+ getExtractHint() {
+ return false;
+ }
+ getRealPath() {
+ return PortablePath.root;
+ }
+ resolve(p) {
+ return ppath.resolve(p);
+ }
+ async openPromise(p, flags, mode) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.open(npath.fromPortablePath(p), flags, mode, this.makeCallback(resolve, reject));
+ });
+ }
+ openSync(p, flags, mode) {
+ return this.realFs.openSync(npath.fromPortablePath(p), flags, mode);
+ }
+ async opendirPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (typeof opts !== `undefined`) {
+ this.realFs.opendir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.opendir(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ }).then((dir) => {
+ const dirWithFixedPath = dir;
+ Object.defineProperty(dirWithFixedPath, `path`, {
+ value: p,
+ configurable: true,
+ writable: true
+ });
+ return dirWithFixedPath;
+ });
+ }
+ opendirSync(p, opts) {
+ const dir = typeof opts !== `undefined` ? this.realFs.opendirSync(npath.fromPortablePath(p), opts) : this.realFs.opendirSync(npath.fromPortablePath(p));
+ const dirWithFixedPath = dir;
+ Object.defineProperty(dirWithFixedPath, `path`, {
+ value: p,
+ configurable: true,
+ writable: true
+ });
+ return dirWithFixedPath;
+ }
+ async readPromise(fd, buffer, offset = 0, length = 0, position = -1) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.read(fd, buffer, offset, length, position, (error, bytesRead) => {
+ if (error) {
+ reject(error);
+ } else {
+ resolve(bytesRead);
+ }
+ });
+ });
+ }
+ readSync(fd, buffer, offset, length, position) {
+ return this.realFs.readSync(fd, buffer, offset, length, position);
+ }
+ async writePromise(fd, buffer, offset, length, position) {
+ return await new Promise((resolve, reject) => {
+ if (typeof buffer === `string`) {
+ return this.realFs.write(fd, buffer, offset, this.makeCallback(resolve, reject));
+ } else {
+ return this.realFs.write(fd, buffer, offset, length, position, this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ writeSync(fd, buffer, offset, length, position) {
+ if (typeof buffer === `string`) {
+ return this.realFs.writeSync(fd, buffer, offset);
+ } else {
+ return this.realFs.writeSync(fd, buffer, offset, length, position);
+ }
+ }
+ async closePromise(fd) {
+ await new Promise((resolve, reject) => {
+ this.realFs.close(fd, this.makeCallback(resolve, reject));
+ });
+ }
+ closeSync(fd) {
+ this.realFs.closeSync(fd);
+ }
+ createReadStream(p, opts) {
+ const realPath = p !== null ? npath.fromPortablePath(p) : p;
+ return this.realFs.createReadStream(realPath, opts);
+ }
+ createWriteStream(p, opts) {
+ const realPath = p !== null ? npath.fromPortablePath(p) : p;
+ return this.realFs.createWriteStream(realPath, opts);
+ }
+ async realpathPromise(p) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.realpath(npath.fromPortablePath(p), {}, this.makeCallback(resolve, reject));
+ }).then((path) => {
+ return npath.toPortablePath(path);
+ });
+ }
+ realpathSync(p) {
+ return npath.toPortablePath(this.realFs.realpathSync(npath.fromPortablePath(p), {}));
+ }
+ async existsPromise(p) {
+ return await new Promise((resolve) => {
+ this.realFs.exists(npath.fromPortablePath(p), resolve);
+ });
+ }
+ accessSync(p, mode) {
+ return this.realFs.accessSync(npath.fromPortablePath(p), mode);
+ }
+ async accessPromise(p, mode) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.access(npath.fromPortablePath(p), mode, this.makeCallback(resolve, reject));
+ });
+ }
+ existsSync(p) {
+ return this.realFs.existsSync(npath.fromPortablePath(p));
+ }
+ async statPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ this.realFs.stat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.stat(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ statSync(p, opts) {
+ if (opts) {
+ return this.realFs.statSync(npath.fromPortablePath(p), opts);
+ } else {
+ return this.realFs.statSync(npath.fromPortablePath(p));
+ }
+ }
+ async fstatPromise(fd, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ this.realFs.fstat(fd, opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.fstat(fd, this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ fstatSync(fd, opts) {
+ if (opts) {
+ return this.realFs.fstatSync(fd, opts);
+ } else {
+ return this.realFs.fstatSync(fd);
+ }
+ }
+ async lstatPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ this.realFs.lstat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.lstat(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ lstatSync(p, opts) {
+ if (opts) {
+ return this.realFs.lstatSync(npath.fromPortablePath(p), opts);
+ } else {
+ return this.realFs.lstatSync(npath.fromPortablePath(p));
+ }
+ }
+ async fchmodPromise(fd, mask) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.fchmod(fd, mask, this.makeCallback(resolve, reject));
+ });
+ }
+ fchmodSync(fd, mask) {
+ return this.realFs.fchmodSync(fd, mask);
+ }
+ async chmodPromise(p, mask) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.chmod(npath.fromPortablePath(p), mask, this.makeCallback(resolve, reject));
+ });
+ }
+ chmodSync(p, mask) {
+ return this.realFs.chmodSync(npath.fromPortablePath(p), mask);
+ }
+ async fchownPromise(fd, uid, gid) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.fchown(fd, uid, gid, this.makeCallback(resolve, reject));
+ });
+ }
+ fchownSync(fd, uid, gid) {
+ return this.realFs.fchownSync(fd, uid, gid);
+ }
+ async chownPromise(p, uid, gid) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.chown(npath.fromPortablePath(p), uid, gid, this.makeCallback(resolve, reject));
+ });
+ }
+ chownSync(p, uid, gid) {
+ return this.realFs.chownSync(npath.fromPortablePath(p), uid, gid);
+ }
+ async renamePromise(oldP, newP) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.rename(npath.fromPortablePath(oldP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject));
+ });
+ }
+ renameSync(oldP, newP) {
+ return this.realFs.renameSync(npath.fromPortablePath(oldP), npath.fromPortablePath(newP));
+ }
+ async copyFilePromise(sourceP, destP, flags = 0) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.copyFile(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags, this.makeCallback(resolve, reject));
+ });
+ }
+ copyFileSync(sourceP, destP, flags = 0) {
+ return this.realFs.copyFileSync(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags);
+ }
+ async appendFilePromise(p, content, opts) {
+ return await new Promise((resolve, reject) => {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ if (opts) {
+ this.realFs.appendFile(fsNativePath, content, opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.appendFile(fsNativePath, content, this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ appendFileSync(p, content, opts) {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ if (opts) {
+ this.realFs.appendFileSync(fsNativePath, content, opts);
+ } else {
+ this.realFs.appendFileSync(fsNativePath, content);
+ }
+ }
+ async writeFilePromise(p, content, opts) {
+ return await new Promise((resolve, reject) => {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ if (opts) {
+ this.realFs.writeFile(fsNativePath, content, opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.writeFile(fsNativePath, content, this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ writeFileSync(p, content, opts) {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ if (opts) {
+ this.realFs.writeFileSync(fsNativePath, content, opts);
+ } else {
+ this.realFs.writeFileSync(fsNativePath, content);
+ }
+ }
+ async unlinkPromise(p) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.unlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ });
+ }
+ unlinkSync(p) {
+ return this.realFs.unlinkSync(npath.fromPortablePath(p));
+ }
+ async utimesPromise(p, atime, mtime) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.utimes(npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject));
+ });
+ }
+ utimesSync(p, atime, mtime) {
+ this.realFs.utimesSync(npath.fromPortablePath(p), atime, mtime);
+ }
+ async lutimesPromise(p, atime, mtime) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.lutimes(npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject));
+ });
+ }
+ lutimesSync(p, atime, mtime) {
+ this.realFs.lutimesSync(npath.fromPortablePath(p), atime, mtime);
+ }
+ async mkdirPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.mkdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ });
+ }
+ mkdirSync(p, opts) {
+ return this.realFs.mkdirSync(npath.fromPortablePath(p), opts);
+ }
+ async rmdirPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ this.realFs.rmdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.rmdir(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ rmdirSync(p, opts) {
+ return this.realFs.rmdirSync(npath.fromPortablePath(p), opts);
+ }
+ async linkPromise(existingP, newP) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.link(npath.fromPortablePath(existingP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject));
+ });
+ }
+ linkSync(existingP, newP) {
+ return this.realFs.linkSync(npath.fromPortablePath(existingP), npath.fromPortablePath(newP));
+ }
+ async symlinkPromise(target, p, type) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.symlink(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type, this.makeCallback(resolve, reject));
+ });
+ }
+ symlinkSync(target, p, type) {
+ return this.realFs.symlinkSync(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type);
+ }
+ async readFilePromise(p, encoding) {
+ return await new Promise((resolve, reject) => {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ this.realFs.readFile(fsNativePath, encoding, this.makeCallback(resolve, reject));
+ });
+ }
+ readFileSync(p, encoding) {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ return this.realFs.readFileSync(fsNativePath, encoding);
+ }
+ async readdirPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ if (opts.recursive && process.platform === `win32`) {
+ if (opts.withFileTypes) {
+ this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback((results) => resolve(results.map(direntToPortable)), reject));
+ } else {
+ this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback((results) => resolve(results.map(npath.toPortablePath)), reject));
+ }
+ } else {
+ this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ }
+ } else {
+ this.realFs.readdir(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ readdirSync(p, opts) {
+ if (opts) {
+ if (opts.recursive && process.platform === `win32`) {
+ if (opts.withFileTypes) {
+ return this.realFs.readdirSync(npath.fromPortablePath(p), opts).map(direntToPortable);
+ } else {
+ return this.realFs.readdirSync(npath.fromPortablePath(p), opts).map(npath.toPortablePath);
+ }
+ } else {
+ return this.realFs.readdirSync(npath.fromPortablePath(p), opts);
+ }
+ } else {
+ return this.realFs.readdirSync(npath.fromPortablePath(p));
+ }
+ }
+ async readlinkPromise(p) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.readlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }).then((path) => {
+ return npath.toPortablePath(path);
+ });
+ }
+ readlinkSync(p) {
+ return npath.toPortablePath(this.realFs.readlinkSync(npath.fromPortablePath(p)));
+ }
+ async truncatePromise(p, len) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.truncate(npath.fromPortablePath(p), len, this.makeCallback(resolve, reject));
+ });
+ }
+ truncateSync(p, len) {
+ return this.realFs.truncateSync(npath.fromPortablePath(p), len);
+ }
+ async ftruncatePromise(fd, len) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.ftruncate(fd, len, this.makeCallback(resolve, reject));
+ });
+ }
+ ftruncateSync(fd, len) {
+ return this.realFs.ftruncateSync(fd, len);
+ }
+ watch(p, a, b) {
+ return this.realFs.watch(
+ npath.fromPortablePath(p),
+ a,
+ b
+ );
+ }
+ watchFile(p, a, b) {
+ return this.realFs.watchFile(
+ npath.fromPortablePath(p),
+ a,
+ b
+ );
+ }
+ unwatchFile(p, cb) {
+ return this.realFs.unwatchFile(npath.fromPortablePath(p), cb);
+ }
+ makeCallback(resolve, reject) {
+ return (err, result) => {
+ if (err) {
+ reject(err);
+ } else {
+ resolve(result);
+ }
+ };
+ }
+}
+
+const MOUNT_MASK = 4278190080;
+class MountFS extends BasePortableFakeFS {
+ constructor({ baseFs = new NodeFS(), filter = null, magicByte = 42, maxOpenFiles = Infinity, useCache = true, maxAge = 5e3, typeCheck = fs.constants.S_IFREG, getMountPoint, factoryPromise, factorySync }) {
+ if (Math.floor(magicByte) !== magicByte || !(magicByte > 1 && magicByte <= 127))
+ throw new Error(`The magic byte must be set to a round value between 1 and 127 included`);
+ super();
+ this.fdMap = /* @__PURE__ */ new Map();
+ this.nextFd = 3;
+ this.isMount = /* @__PURE__ */ new Set();
+ this.notMount = /* @__PURE__ */ new Set();
+ this.realPaths = /* @__PURE__ */ new Map();
+ this.limitOpenFilesTimeout = null;
+ this.baseFs = baseFs;
+ this.mountInstances = useCache ? /* @__PURE__ */ new Map() : null;
+ this.factoryPromise = factoryPromise;
+ this.factorySync = factorySync;
+ this.filter = filter;
+ this.getMountPoint = getMountPoint;
+ this.magic = magicByte << 24;
+ this.maxAge = maxAge;
+ this.maxOpenFiles = maxOpenFiles;
+ this.typeCheck = typeCheck;
+ }
+ getExtractHint(hints) {
+ return this.baseFs.getExtractHint(hints);
+ }
+ getRealPath() {
+ return this.baseFs.getRealPath();
+ }
+ saveAndClose() {
+ unwatchAllFiles(this);
+ if (this.mountInstances) {
+ for (const [path, { childFs }] of this.mountInstances.entries()) {
+ childFs.saveAndClose?.();
+ this.mountInstances.delete(path);
+ }
+ }
+ }
+ discardAndClose() {
+ unwatchAllFiles(this);
+ if (this.mountInstances) {
+ for (const [path, { childFs }] of this.mountInstances.entries()) {
+ childFs.discardAndClose?.();
+ this.mountInstances.delete(path);
+ }
+ }
+ }
+ resolve(p) {
+ return this.baseFs.resolve(p);
+ }
+ remapFd(mountFs, fd) {
+ const remappedFd = this.nextFd++ | this.magic;
+ this.fdMap.set(remappedFd, [mountFs, fd]);
+ return remappedFd;
+ }
+ async openPromise(p, flags, mode) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.openPromise(p, flags, mode);
+ }, async (mountFs, { subPath }) => {
+ return this.remapFd(mountFs, await mountFs.openPromise(subPath, flags, mode));
+ });
+ }
+ openSync(p, flags, mode) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.openSync(p, flags, mode);
+ }, (mountFs, { subPath }) => {
+ return this.remapFd(mountFs, mountFs.openSync(subPath, flags, mode));
+ });
+ }
+ async opendirPromise(p, opts) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.opendirPromise(p, opts);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.opendirPromise(subPath, opts);
+ }, {
+ requireSubpath: false
+ });
+ }
+ opendirSync(p, opts) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.opendirSync(p, opts);
+ }, (mountFs, { subPath }) => {
+ return mountFs.opendirSync(subPath, opts);
+ }, {
+ requireSubpath: false
+ });
+ }
+ async readPromise(fd, buffer, offset, length, position) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return await this.baseFs.readPromise(fd, buffer, offset, length, position);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`read`);
+ const [mountFs, realFd] = entry;
+ return await mountFs.readPromise(realFd, buffer, offset, length, position);
+ }
+ readSync(fd, buffer, offset, length, position) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.readSync(fd, buffer, offset, length, position);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`readSync`);
+ const [mountFs, realFd] = entry;
+ return mountFs.readSync(realFd, buffer, offset, length, position);
+ }
+ async writePromise(fd, buffer, offset, length, position) {
+ if ((fd & MOUNT_MASK) !== this.magic) {
+ if (typeof buffer === `string`) {
+ return await this.baseFs.writePromise(fd, buffer, offset);
+ } else {
+ return await this.baseFs.writePromise(fd, buffer, offset, length, position);
+ }
+ }
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`write`);
+ const [mountFs, realFd] = entry;
+ if (typeof buffer === `string`) {
+ return await mountFs.writePromise(realFd, buffer, offset);
+ } else {
+ return await mountFs.writePromise(realFd, buffer, offset, length, position);
+ }
+ }
+ writeSync(fd, buffer, offset, length, position) {
+ if ((fd & MOUNT_MASK) !== this.magic) {
+ if (typeof buffer === `string`) {
+ return this.baseFs.writeSync(fd, buffer, offset);
+ } else {
+ return this.baseFs.writeSync(fd, buffer, offset, length, position);
+ }
+ }
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`writeSync`);
+ const [mountFs, realFd] = entry;
+ if (typeof buffer === `string`) {
+ return mountFs.writeSync(realFd, buffer, offset);
+ } else {
+ return mountFs.writeSync(realFd, buffer, offset, length, position);
+ }
+ }
+ async closePromise(fd) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return await this.baseFs.closePromise(fd);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`close`);
+ this.fdMap.delete(fd);
+ const [mountFs, realFd] = entry;
+ return await mountFs.closePromise(realFd);
+ }
+ closeSync(fd) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.closeSync(fd);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`closeSync`);
+ this.fdMap.delete(fd);
+ const [mountFs, realFd] = entry;
+ return mountFs.closeSync(realFd);
+ }
+ createReadStream(p, opts) {
+ if (p === null)
+ return this.baseFs.createReadStream(p, opts);
+ return this.makeCallSync(p, () => {
+ return this.baseFs.createReadStream(p, opts);
+ }, (mountFs, { archivePath, subPath }) => {
+ const stream = mountFs.createReadStream(subPath, opts);
+ stream.path = npath.fromPortablePath(this.pathUtils.join(archivePath, subPath));
+ return stream;
+ });
+ }
+ createWriteStream(p, opts) {
+ if (p === null)
+ return this.baseFs.createWriteStream(p, opts);
+ return this.makeCallSync(p, () => {
+ return this.baseFs.createWriteStream(p, opts);
+ }, (mountFs, { subPath }) => {
+ return mountFs.createWriteStream(subPath, opts);
+ });
+ }
+ async realpathPromise(p) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.realpathPromise(p);
+ }, async (mountFs, { archivePath, subPath }) => {
+ let realArchivePath = this.realPaths.get(archivePath);
+ if (typeof realArchivePath === `undefined`) {
+ realArchivePath = await this.baseFs.realpathPromise(archivePath);
+ this.realPaths.set(archivePath, realArchivePath);
+ }
+ return this.pathUtils.join(realArchivePath, this.pathUtils.relative(PortablePath.root, await mountFs.realpathPromise(subPath)));
+ });
+ }
+ realpathSync(p) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.realpathSync(p);
+ }, (mountFs, { archivePath, subPath }) => {
+ let realArchivePath = this.realPaths.get(archivePath);
+ if (typeof realArchivePath === `undefined`) {
+ realArchivePath = this.baseFs.realpathSync(archivePath);
+ this.realPaths.set(archivePath, realArchivePath);
+ }
+ return this.pathUtils.join(realArchivePath, this.pathUtils.relative(PortablePath.root, mountFs.realpathSync(subPath)));
+ });
+ }
+ async existsPromise(p) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.existsPromise(p);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.existsPromise(subPath);
+ });
+ }
+ existsSync(p) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.existsSync(p);
+ }, (mountFs, { subPath }) => {
+ return mountFs.existsSync(subPath);
+ });
+ }
+ async accessPromise(p, mode) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.accessPromise(p, mode);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.accessPromise(subPath, mode);
+ });
+ }
+ accessSync(p, mode) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.accessSync(p, mode);
+ }, (mountFs, { subPath }) => {
+ return mountFs.accessSync(subPath, mode);
+ });
+ }
+ async statPromise(p, opts) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.statPromise(p, opts);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.statPromise(subPath, opts);
+ });
+ }
+ statSync(p, opts) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.statSync(p, opts);
+ }, (mountFs, { subPath }) => {
+ return mountFs.statSync(subPath, opts);
+ });
+ }
+ async fstatPromise(fd, opts) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.fstatPromise(fd, opts);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`fstat`);
+ const [mountFs, realFd] = entry;
+ return mountFs.fstatPromise(realFd, opts);
+ }
+ fstatSync(fd, opts) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.fstatSync(fd, opts);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`fstatSync`);
+ const [mountFs, realFd] = entry;
+ return mountFs.fstatSync(realFd, opts);
+ }
+ async lstatPromise(p, opts) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.lstatPromise(p, opts);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.lstatPromise(subPath, opts);
+ });
+ }
+ lstatSync(p, opts) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.lstatSync(p, opts);
+ }, (mountFs, { subPath }) => {
+ return mountFs.lstatSync(subPath, opts);
+ });
+ }
+ async fchmodPromise(fd, mask) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.fchmodPromise(fd, mask);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`fchmod`);
+ const [mountFs, realFd] = entry;
+ return mountFs.fchmodPromise(realFd, mask);
+ }
+ fchmodSync(fd, mask) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.fchmodSync(fd, mask);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`fchmodSync`);
+ const [mountFs, realFd] = entry;
+ return mountFs.fchmodSync(realFd, mask);
+ }
+ async chmodPromise(p, mask) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.chmodPromise(p, mask);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.chmodPromise(subPath, mask);
+ });
+ }
+ chmodSync(p, mask) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.chmodSync(p, mask);
+ }, (mountFs, { subPath }) => {
+ return mountFs.chmodSync(subPath, mask);
+ });
+ }
+ async fchownPromise(fd, uid, gid) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.fchownPromise(fd, uid, gid);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`fchown`);
+ const [zipFs, realFd] = entry;
+ return zipFs.fchownPromise(realFd, uid, gid);
+ }
+ fchownSync(fd, uid, gid) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.fchownSync(fd, uid, gid);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`fchownSync`);
+ const [zipFs, realFd] = entry;
+ return zipFs.fchownSync(realFd, uid, gid);
+ }
+ async chownPromise(p, uid, gid) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.chownPromise(p, uid, gid);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.chownPromise(subPath, uid, gid);
+ });
+ }
+ chownSync(p, uid, gid) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.chownSync(p, uid, gid);
+ }, (mountFs, { subPath }) => {
+ return mountFs.chownSync(subPath, uid, gid);
+ });
+ }
+ async renamePromise(oldP, newP) {
+ return await this.makeCallPromise(oldP, async () => {
+ return await this.makeCallPromise(newP, async () => {
+ return await this.baseFs.renamePromise(oldP, newP);
+ }, async () => {
+ throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` });
+ });
+ }, async (mountFsO, { subPath: subPathO }) => {
+ return await this.makeCallPromise(newP, async () => {
+ throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` });
+ }, async (mountFsN, { subPath: subPathN }) => {
+ if (mountFsO !== mountFsN) {
+ throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` });
+ } else {
+ return await mountFsO.renamePromise(subPathO, subPathN);
+ }
+ });
+ });
+ }
+ renameSync(oldP, newP) {
+ return this.makeCallSync(oldP, () => {
+ return this.makeCallSync(newP, () => {
+ return this.baseFs.renameSync(oldP, newP);
+ }, () => {
+ throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` });
+ });
+ }, (mountFsO, { subPath: subPathO }) => {
+ return this.makeCallSync(newP, () => {
+ throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` });
+ }, (mountFsN, { subPath: subPathN }) => {
+ if (mountFsO !== mountFsN) {
+ throw Object.assign(new Error(`EEXDEV: cross-device link not permitted`), { code: `EEXDEV` });
+ } else {
+ return mountFsO.renameSync(subPathO, subPathN);
+ }
+ });
+ });
+ }
+ async copyFilePromise(sourceP, destP, flags = 0) {
+ const fallback = async (sourceFs, sourceP2, destFs, destP2) => {
+ if ((flags & fs.constants.COPYFILE_FICLONE_FORCE) !== 0)
+ throw Object.assign(new Error(`EXDEV: cross-device clone not permitted, copyfile '${sourceP2}' -> ${destP2}'`), { code: `EXDEV` });
+ if (flags & fs.constants.COPYFILE_EXCL && await this.existsPromise(sourceP2))
+ throw Object.assign(new Error(`EEXIST: file already exists, copyfile '${sourceP2}' -> '${destP2}'`), { code: `EEXIST` });
+ let content;
+ try {
+ content = await sourceFs.readFilePromise(sourceP2);
+ } catch (error) {
+ throw Object.assign(new Error(`EINVAL: invalid argument, copyfile '${sourceP2}' -> '${destP2}'`), { code: `EINVAL` });
+ }
+ await destFs.writeFilePromise(destP2, content);
+ };
+ return await this.makeCallPromise(sourceP, async () => {
+ return await this.makeCallPromise(destP, async () => {
+ return await this.baseFs.copyFilePromise(sourceP, destP, flags);
+ }, async (mountFsD, { subPath: subPathD }) => {
+ return await fallback(this.baseFs, sourceP, mountFsD, subPathD);
+ });
+ }, async (mountFsS, { subPath: subPathS }) => {
+ return await this.makeCallPromise(destP, async () => {
+ return await fallback(mountFsS, subPathS, this.baseFs, destP);
+ }, async (mountFsD, { subPath: subPathD }) => {
+ if (mountFsS !== mountFsD) {
+ return await fallback(mountFsS, subPathS, mountFsD, subPathD);
+ } else {
+ return await mountFsS.copyFilePromise(subPathS, subPathD, flags);
+ }
+ });
+ });
+ }
+ copyFileSync(sourceP, destP, flags = 0) {
+ const fallback = (sourceFs, sourceP2, destFs, destP2) => {
+ if ((flags & fs.constants.COPYFILE_FICLONE_FORCE) !== 0)
+ throw Object.assign(new Error(`EXDEV: cross-device clone not permitted, copyfile '${sourceP2}' -> ${destP2}'`), { code: `EXDEV` });
+ if (flags & fs.constants.COPYFILE_EXCL && this.existsSync(sourceP2))
+ throw Object.assign(new Error(`EEXIST: file already exists, copyfile '${sourceP2}' -> '${destP2}'`), { code: `EEXIST` });
+ let content;
+ try {
+ content = sourceFs.readFileSync(sourceP2);
+ } catch (error) {
+ throw Object.assign(new Error(`EINVAL: invalid argument, copyfile '${sourceP2}' -> '${destP2}'`), { code: `EINVAL` });
+ }
+ destFs.writeFileSync(destP2, content);
+ };
+ return this.makeCallSync(sourceP, () => {
+ return this.makeCallSync(destP, () => {
+ return this.baseFs.copyFileSync(sourceP, destP, flags);
+ }, (mountFsD, { subPath: subPathD }) => {
+ return fallback(this.baseFs, sourceP, mountFsD, subPathD);
+ });
+ }, (mountFsS, { subPath: subPathS }) => {
+ return this.makeCallSync(destP, () => {
+ return fallback(mountFsS, subPathS, this.baseFs, destP);
+ }, (mountFsD, { subPath: subPathD }) => {
+ if (mountFsS !== mountFsD) {
+ return fallback(mountFsS, subPathS, mountFsD, subPathD);
+ } else {
+ return mountFsS.copyFileSync(subPathS, subPathD, flags);
+ }
+ });
+ });
+ }
+ async appendFilePromise(p, content, opts) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.appendFilePromise(p, content, opts);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.appendFilePromise(subPath, content, opts);
+ });
+ }
+ appendFileSync(p, content, opts) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.appendFileSync(p, content, opts);
+ }, (mountFs, { subPath }) => {
+ return mountFs.appendFileSync(subPath, content, opts);
+ });
+ }
+ async writeFilePromise(p, content, opts) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.writeFilePromise(p, content, opts);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.writeFilePromise(subPath, content, opts);
+ });
+ }
+ writeFileSync(p, content, opts) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.writeFileSync(p, content, opts);
+ }, (mountFs, { subPath }) => {
+ return mountFs.writeFileSync(subPath, content, opts);
+ });
+ }
+ async unlinkPromise(p) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.unlinkPromise(p);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.unlinkPromise(subPath);
+ });
+ }
+ unlinkSync(p) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.unlinkSync(p);
+ }, (mountFs, { subPath }) => {
+ return mountFs.unlinkSync(subPath);
+ });
+ }
+ async utimesPromise(p, atime, mtime) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.utimesPromise(p, atime, mtime);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.utimesPromise(subPath, atime, mtime);
+ });
+ }
+ utimesSync(p, atime, mtime) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.utimesSync(p, atime, mtime);
+ }, (mountFs, { subPath }) => {
+ return mountFs.utimesSync(subPath, atime, mtime);
+ });
+ }
+ async lutimesPromise(p, atime, mtime) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.lutimesPromise(p, atime, mtime);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.lutimesPromise(subPath, atime, mtime);
+ });
+ }
+ lutimesSync(p, atime, mtime) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.lutimesSync(p, atime, mtime);
+ }, (mountFs, { subPath }) => {
+ return mountFs.lutimesSync(subPath, atime, mtime);
+ });
+ }
+ async mkdirPromise(p, opts) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.mkdirPromise(p, opts);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.mkdirPromise(subPath, opts);
+ });
+ }
+ mkdirSync(p, opts) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.mkdirSync(p, opts);
+ }, (mountFs, { subPath }) => {
+ return mountFs.mkdirSync(subPath, opts);
+ });
+ }
+ async rmdirPromise(p, opts) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.rmdirPromise(p, opts);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.rmdirPromise(subPath, opts);
+ });
+ }
+ rmdirSync(p, opts) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.rmdirSync(p, opts);
+ }, (mountFs, { subPath }) => {
+ return mountFs.rmdirSync(subPath, opts);
+ });
+ }
+ async linkPromise(existingP, newP) {
+ return await this.makeCallPromise(newP, async () => {
+ return await this.baseFs.linkPromise(existingP, newP);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.linkPromise(existingP, subPath);
+ });
+ }
+ linkSync(existingP, newP) {
+ return this.makeCallSync(newP, () => {
+ return this.baseFs.linkSync(existingP, newP);
+ }, (mountFs, { subPath }) => {
+ return mountFs.linkSync(existingP, subPath);
+ });
+ }
+ async symlinkPromise(target, p, type) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.symlinkPromise(target, p, type);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.symlinkPromise(target, subPath);
+ });
+ }
+ symlinkSync(target, p, type) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.symlinkSync(target, p, type);
+ }, (mountFs, { subPath }) => {
+ return mountFs.symlinkSync(target, subPath);
+ });
+ }
+ async readFilePromise(p, encoding) {
+ return this.makeCallPromise(p, async () => {
+ return await this.baseFs.readFilePromise(p, encoding);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.readFilePromise(subPath, encoding);
+ });
+ }
+ readFileSync(p, encoding) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.readFileSync(p, encoding);
+ }, (mountFs, { subPath }) => {
+ return mountFs.readFileSync(subPath, encoding);
+ });
+ }
+ async readdirPromise(p, opts) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.readdirPromise(p, opts);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.readdirPromise(subPath, opts);
+ }, {
+ requireSubpath: false
+ });
+ }
+ readdirSync(p, opts) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.readdirSync(p, opts);
+ }, (mountFs, { subPath }) => {
+ return mountFs.readdirSync(subPath, opts);
+ }, {
+ requireSubpath: false
+ });
+ }
+ async readlinkPromise(p) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.readlinkPromise(p);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.readlinkPromise(subPath);
+ });
+ }
+ readlinkSync(p) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.readlinkSync(p);
+ }, (mountFs, { subPath }) => {
+ return mountFs.readlinkSync(subPath);
+ });
+ }
+ async truncatePromise(p, len) {
+ return await this.makeCallPromise(p, async () => {
+ return await this.baseFs.truncatePromise(p, len);
+ }, async (mountFs, { subPath }) => {
+ return await mountFs.truncatePromise(subPath, len);
+ });
+ }
+ truncateSync(p, len) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.truncateSync(p, len);
+ }, (mountFs, { subPath }) => {
+ return mountFs.truncateSync(subPath, len);
+ });
+ }
+ async ftruncatePromise(fd, len) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.ftruncatePromise(fd, len);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`ftruncate`);
+ const [mountFs, realFd] = entry;
+ return mountFs.ftruncatePromise(realFd, len);
+ }
+ ftruncateSync(fd, len) {
+ if ((fd & MOUNT_MASK) !== this.magic)
+ return this.baseFs.ftruncateSync(fd, len);
+ const entry = this.fdMap.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`ftruncateSync`);
+ const [mountFs, realFd] = entry;
+ return mountFs.ftruncateSync(realFd, len);
+ }
+ watch(p, a, b) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.watch(
+ p,
+ a,
+ b
+ );
+ }, (mountFs, { subPath }) => {
+ return mountFs.watch(
+ subPath,
+ a,
+ b
+ );
+ });
+ }
+ watchFile(p, a, b) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.watchFile(
+ p,
+ a,
+ b
+ );
+ }, () => {
+ return watchFile(this, p, a, b);
+ });
+ }
+ unwatchFile(p, cb) {
+ return this.makeCallSync(p, () => {
+ return this.baseFs.unwatchFile(p, cb);
+ }, () => {
+ return unwatchFile(this, p, cb);
+ });
+ }
+ async makeCallPromise(p, discard, accept, { requireSubpath = true } = {}) {
+ if (typeof p !== `string`)
+ return await discard();
+ const normalizedP = this.resolve(p);
+ const mountInfo = this.findMount(normalizedP);
+ if (!mountInfo)
+ return await discard();
+ if (requireSubpath && mountInfo.subPath === `/`)
+ return await discard();
+ return await this.getMountPromise(mountInfo.archivePath, async (mountFs) => await accept(mountFs, mountInfo));
+ }
+ makeCallSync(p, discard, accept, { requireSubpath = true } = {}) {
+ if (typeof p !== `string`)
+ return discard();
+ const normalizedP = this.resolve(p);
+ const mountInfo = this.findMount(normalizedP);
+ if (!mountInfo)
+ return discard();
+ if (requireSubpath && mountInfo.subPath === `/`)
+ return discard();
+ return this.getMountSync(mountInfo.archivePath, (mountFs) => accept(mountFs, mountInfo));
+ }
+ findMount(p) {
+ if (this.filter && !this.filter.test(p))
+ return null;
+ let filePath = ``;
+ while (true) {
+ const pathPartWithArchive = p.substring(filePath.length);
+ const mountPoint = this.getMountPoint(pathPartWithArchive, filePath);
+ if (!mountPoint)
+ return null;
+ filePath = this.pathUtils.join(filePath, mountPoint);
+ if (!this.isMount.has(filePath)) {
+ if (this.notMount.has(filePath))
+ continue;
+ try {
+ if (this.typeCheck !== null && (this.baseFs.lstatSync(filePath).mode & fs.constants.S_IFMT) !== this.typeCheck) {
+ this.notMount.add(filePath);
+ continue;
+ }
+ } catch {
+ return null;
+ }
+ this.isMount.add(filePath);
+ }
+ return {
+ archivePath: filePath,
+ subPath: this.pathUtils.join(PortablePath.root, p.substring(filePath.length))
+ };
+ }
+ }
+ limitOpenFiles(max) {
+ if (this.mountInstances === null)
+ return;
+ const now = Date.now();
+ let nextExpiresAt = now + this.maxAge;
+ let closeCount = max === null ? 0 : this.mountInstances.size - max;
+ for (const [path, { childFs, expiresAt, refCount }] of this.mountInstances.entries()) {
+ if (refCount !== 0 || childFs.hasOpenFileHandles?.()) {
+ continue;
+ } else if (now >= expiresAt) {
+ childFs.saveAndClose?.();
+ this.mountInstances.delete(path);
+ closeCount -= 1;
+ continue;
+ } else if (max === null || closeCount <= 0) {
+ nextExpiresAt = expiresAt;
+ break;
+ }
+ childFs.saveAndClose?.();
+ this.mountInstances.delete(path);
+ closeCount -= 1;
+ }
+ if (this.limitOpenFilesTimeout === null && (max === null && this.mountInstances.size > 0 || max !== null) && isFinite(nextExpiresAt)) {
+ this.limitOpenFilesTimeout = setTimeout(() => {
+ this.limitOpenFilesTimeout = null;
+ this.limitOpenFiles(null);
+ }, nextExpiresAt - now).unref();
+ }
+ }
+ async getMountPromise(p, accept) {
+ if (this.mountInstances) {
+ let cachedMountFs = this.mountInstances.get(p);
+ if (!cachedMountFs) {
+ const createFsInstance = await this.factoryPromise(this.baseFs, p);
+ cachedMountFs = this.mountInstances.get(p);
+ if (!cachedMountFs) {
+ cachedMountFs = {
+ childFs: createFsInstance(),
+ expiresAt: 0,
+ refCount: 0
+ };
+ }
+ }
+ this.mountInstances.delete(p);
+ this.limitOpenFiles(this.maxOpenFiles - 1);
+ this.mountInstances.set(p, cachedMountFs);
+ cachedMountFs.expiresAt = Date.now() + this.maxAge;
+ cachedMountFs.refCount += 1;
+ try {
+ return await accept(cachedMountFs.childFs);
+ } finally {
+ cachedMountFs.refCount -= 1;
+ }
+ } else {
+ const mountFs = (await this.factoryPromise(this.baseFs, p))();
+ try {
+ return await accept(mountFs);
+ } finally {
+ mountFs.saveAndClose?.();
+ }
+ }
+ }
+ getMountSync(p, accept) {
+ if (this.mountInstances) {
+ let cachedMountFs = this.mountInstances.get(p);
+ if (!cachedMountFs) {
+ cachedMountFs = {
+ childFs: this.factorySync(this.baseFs, p),
+ expiresAt: 0,
+ refCount: 0
+ };
+ }
+ this.mountInstances.delete(p);
+ this.limitOpenFiles(this.maxOpenFiles - 1);
+ this.mountInstances.set(p, cachedMountFs);
+ cachedMountFs.expiresAt = Date.now() + this.maxAge;
+ return accept(cachedMountFs.childFs);
+ } else {
+ const childFs = this.factorySync(this.baseFs, p);
+ try {
+ return accept(childFs);
+ } finally {
+ childFs.saveAndClose?.();
+ }
+ }
+ }
+}
+
+class PosixFS extends ProxiedFS {
+ constructor(baseFs) {
+ super(npath);
+ this.baseFs = baseFs;
+ }
+ mapFromBase(path) {
+ return npath.fromPortablePath(path);
+ }
+ mapToBase(path) {
+ return npath.toPortablePath(path);
+ }
+}
+
+const NUMBER_REGEXP = /^[0-9]+$/;
+const VIRTUAL_REGEXP = /^(\/(?:[^/]+\/)*?(?:\$\$virtual|__virtual__))((?:\/((?:[^/]+-)?[a-f0-9]+)(?:\/([^/]+))?)?((?:\/.*)?))$/;
+const VALID_COMPONENT = /^([^/]+-)?[a-f0-9]+$/;
+class VirtualFS extends ProxiedFS {
+ constructor({ baseFs = new NodeFS() } = {}) {
+ super(ppath);
+ this.baseFs = baseFs;
+ }
+ static makeVirtualPath(base, component, to) {
+ if (ppath.basename(base) !== `__virtual__`)
+ throw new Error(`Assertion failed: Virtual folders must be named "__virtual__"`);
+ if (!ppath.basename(component).match(VALID_COMPONENT))
+ throw new Error(`Assertion failed: Virtual components must be ended by an hexadecimal hash`);
+ const target = ppath.relative(ppath.dirname(base), to);
+ const segments = target.split(`/`);
+ let depth = 0;
+ while (depth < segments.length && segments[depth] === `..`)
+ depth += 1;
+ const finalSegments = segments.slice(depth);
+ const fullVirtualPath = ppath.join(base, component, String(depth), ...finalSegments);
+ return fullVirtualPath;
+ }
+ static resolveVirtual(p) {
+ const match = p.match(VIRTUAL_REGEXP);
+ if (!match || !match[3] && match[5])
+ return p;
+ const target = ppath.dirname(match[1]);
+ if (!match[3] || !match[4])
+ return target;
+ const isnum = NUMBER_REGEXP.test(match[4]);
+ if (!isnum)
+ return p;
+ const depth = Number(match[4]);
+ const backstep = `../`.repeat(depth);
+ const subpath = match[5] || `.`;
+ return VirtualFS.resolveVirtual(ppath.join(target, backstep, subpath));
+ }
+ getExtractHint(hints) {
+ return this.baseFs.getExtractHint(hints);
+ }
+ getRealPath() {
+ return this.baseFs.getRealPath();
+ }
+ realpathSync(p) {
+ const match = p.match(VIRTUAL_REGEXP);
+ if (!match)
+ return this.baseFs.realpathSync(p);
+ if (!match[5])
+ return p;
+ const realpath = this.baseFs.realpathSync(this.mapToBase(p));
+ return VirtualFS.makeVirtualPath(match[1], match[3], realpath);
+ }
+ async realpathPromise(p) {
+ const match = p.match(VIRTUAL_REGEXP);
+ if (!match)
+ return await this.baseFs.realpathPromise(p);
+ if (!match[5])
+ return p;
+ const realpath = await this.baseFs.realpathPromise(this.mapToBase(p));
+ return VirtualFS.makeVirtualPath(match[1], match[3], realpath);
+ }
+ mapToBase(p) {
+ if (p === ``)
+ return p;
+ if (this.pathUtils.isAbsolute(p))
+ return VirtualFS.resolveVirtual(p);
+ const resolvedRoot = VirtualFS.resolveVirtual(this.baseFs.resolve(PortablePath.dot));
+ const resolvedP = VirtualFS.resolveVirtual(this.baseFs.resolve(p));
+ return ppath.relative(resolvedRoot, resolvedP) || PortablePath.dot;
+ }
+ mapFromBase(p) {
+ return p;
+ }
+}
+
+class NodePathFS extends ProxiedFS {
+ constructor(baseFs) {
+ super(npath);
+ this.baseFs = baseFs;
+ }
+ mapFromBase(path) {
+ return path;
+ }
+ mapToBase(path) {
+ if (typeof path === `string`)
+ return path;
+ if (path instanceof url.URL)
+ return url.fileURLToPath(path);
+ if (Buffer.isBuffer(path)) {
+ const str = path.toString();
+ if (!isUtf8(path, str))
+ throw new Error(`Non-utf8 buffers are not supported at the moment. Please upvote the following issue if you encounter this error: https://github.com/yarnpkg/berry/issues/4942`);
+ return str;
+ }
+ throw new Error(`Unsupported path type: ${nodeUtils.inspect(path)}`);
+ }
+}
+function isUtf8(buf, str) {
+ if (typeof buffer__default.default.isUtf8 !== `undefined`)
+ return buffer__default.default.isUtf8(buf);
+ return Buffer.byteLength(str) === buf.byteLength;
+}
+
+var _a, _b, _c, _d;
+const kBaseFs = Symbol(`kBaseFs`);
+const kFd = Symbol(`kFd`);
+const kClosePromise = Symbol(`kClosePromise`);
+const kCloseResolve = Symbol(`kCloseResolve`);
+const kCloseReject = Symbol(`kCloseReject`);
+const kRefs = Symbol(`kRefs`);
+const kRef = Symbol(`kRef`);
+const kUnref = Symbol(`kUnref`);
+class FileHandle {
+ constructor(fd, baseFs) {
+ this[_a] = 1;
+ this[_b] = void 0;
+ this[_c] = void 0;
+ this[_d] = void 0;
+ this[kBaseFs] = baseFs;
+ this[kFd] = fd;
+ }
+ get fd() {
+ return this[kFd];
+ }
+ async appendFile(data, options) {
+ try {
+ this[kRef](this.appendFile);
+ const encoding = (typeof options === `string` ? options : options?.encoding) ?? void 0;
+ return await this[kBaseFs].appendFilePromise(this.fd, data, encoding ? { encoding } : void 0);
+ } finally {
+ this[kUnref]();
+ }
+ }
+ async chown(uid, gid) {
+ try {
+ this[kRef](this.chown);
+ return await this[kBaseFs].fchownPromise(this.fd, uid, gid);
+ } finally {
+ this[kUnref]();
+ }
+ }
+ async chmod(mode) {
+ try {
+ this[kRef](this.chmod);
+ return await this[kBaseFs].fchmodPromise(this.fd, mode);
+ } finally {
+ this[kUnref]();
+ }
+ }
+ createReadStream(options) {
+ return this[kBaseFs].createReadStream(null, { ...options, fd: this.fd });
+ }
+ createWriteStream(options) {
+ return this[kBaseFs].createWriteStream(null, { ...options, fd: this.fd });
+ }
+ datasync() {
+ throw new Error(`Method not implemented.`);
+ }
+ sync() {
+ throw new Error(`Method not implemented.`);
+ }
+ async read(bufferOrOptions, offset, length, position) {
+ try {
+ this[kRef](this.read);
+ let buffer;
+ if (!Buffer.isBuffer(bufferOrOptions)) {
+ bufferOrOptions ??= {};
+ buffer = bufferOrOptions.buffer ?? Buffer.alloc(16384);
+ offset = bufferOrOptions.offset || 0;
+ length = bufferOrOptions.length ?? buffer.byteLength;
+ position = bufferOrOptions.position ?? null;
+ } else {
+ buffer = bufferOrOptions;
+ }
+ offset ??= 0;
+ length ??= 0;
+ if (length === 0) {
+ return {
+ bytesRead: length,
+ buffer
+ };
+ }
+ const bytesRead = await this[kBaseFs].readPromise(this.fd, buffer, offset, length, position);
+ return {
+ bytesRead,
+ buffer
+ };
+ } finally {
+ this[kUnref]();
+ }
+ }
+ async readFile(options) {
+ try {
+ this[kRef](this.readFile);
+ const encoding = (typeof options === `string` ? options : options?.encoding) ?? void 0;
+ return await this[kBaseFs].readFilePromise(this.fd, encoding);
+ } finally {
+ this[kUnref]();
+ }
+ }
+ readLines(options) {
+ return readline.createInterface({
+ input: this.createReadStream(options),
+ crlfDelay: Infinity
+ });
+ }
+ async stat(opts) {
+ try {
+ this[kRef](this.stat);
+ return await this[kBaseFs].fstatPromise(this.fd, opts);
+ } finally {
+ this[kUnref]();
+ }
+ }
+ async truncate(len) {
+ try {
+ this[kRef](this.truncate);
+ return await this[kBaseFs].ftruncatePromise(this.fd, len);
+ } finally {
+ this[kUnref]();
+ }
+ }
+ utimes(atime, mtime) {
+ throw new Error(`Method not implemented.`);
+ }
+ async writeFile(data, options) {
+ try {
+ this[kRef](this.writeFile);
+ const encoding = (typeof options === `string` ? options : options?.encoding) ?? void 0;
+ await this[kBaseFs].writeFilePromise(this.fd, data, encoding);
+ } finally {
+ this[kUnref]();
+ }
+ }
+ async write(...args) {
+ try {
+ this[kRef](this.write);
+ if (ArrayBuffer.isView(args[0])) {
+ const [buffer, offset, length, position] = args;
+ const bytesWritten = await this[kBaseFs].writePromise(this.fd, buffer, offset ?? void 0, length ?? void 0, position ?? void 0);
+ return { bytesWritten, buffer };
+ } else {
+ const [data, position, encoding] = args;
+ const bytesWritten = await this[kBaseFs].writePromise(this.fd, data, position, encoding);
+ return { bytesWritten, buffer: data };
+ }
+ } finally {
+ this[kUnref]();
+ }
+ }
+ async writev(buffers, position) {
+ try {
+ this[kRef](this.writev);
+ let bytesWritten = 0;
+ if (typeof position !== `undefined`) {
+ for (const buffer of buffers) {
+ const writeResult = await this.write(buffer, void 0, void 0, position);
+ bytesWritten += writeResult.bytesWritten;
+ position += writeResult.bytesWritten;
+ }
+ } else {
+ for (const buffer of buffers) {
+ const writeResult = await this.write(buffer);
+ bytesWritten += writeResult.bytesWritten;
+ }
+ }
+ return {
+ buffers,
+ bytesWritten
+ };
+ } finally {
+ this[kUnref]();
+ }
+ }
+ readv(buffers, position) {
+ throw new Error(`Method not implemented.`);
+ }
+ close() {
+ if (this[kFd] === -1)
+ return Promise.resolve();
+ if (this[kClosePromise])
+ return this[kClosePromise];
+ this[kRefs]--;
+ if (this[kRefs] === 0) {
+ const fd = this[kFd];
+ this[kFd] = -1;
+ this[kClosePromise] = this[kBaseFs].closePromise(fd).finally(() => {
+ this[kClosePromise] = void 0;
+ });
+ } else {
+ this[kClosePromise] = new Promise((resolve, reject) => {
+ this[kCloseResolve] = resolve;
+ this[kCloseReject] = reject;
+ }).finally(() => {
+ this[kClosePromise] = void 0;
+ this[kCloseReject] = void 0;
+ this[kCloseResolve] = void 0;
+ });
+ }
+ return this[kClosePromise];
+ }
+ [(_a = kRefs, _b = kClosePromise, _c = kCloseResolve, _d = kCloseReject, kRef)](caller) {
+ if (this[kFd] === -1) {
+ const err = new Error(`file closed`);
+ err.code = `EBADF`;
+ err.syscall = caller.name;
+ throw err;
+ }
+ this[kRefs]++;
+ }
+ [kUnref]() {
+ this[kRefs]--;
+ if (this[kRefs] === 0) {
+ const fd = this[kFd];
+ this[kFd] = -1;
+ this[kBaseFs].closePromise(fd).then(this[kCloseResolve], this[kCloseReject]);
+ }
+ }
+}
+
+const SYNC_IMPLEMENTATIONS = /* @__PURE__ */ new Set([
+ `accessSync`,
+ `appendFileSync`,
+ `createReadStream`,
+ `createWriteStream`,
+ `chmodSync`,
+ `fchmodSync`,
+ `chownSync`,
+ `fchownSync`,
+ `closeSync`,
+ `copyFileSync`,
+ `linkSync`,
+ `lstatSync`,
+ `fstatSync`,
+ `lutimesSync`,
+ `mkdirSync`,
+ `openSync`,
+ `opendirSync`,
+ `readlinkSync`,
+ `readFileSync`,
+ `readdirSync`,
+ `readlinkSync`,
+ `realpathSync`,
+ `renameSync`,
+ `rmdirSync`,
+ `statSync`,
+ `symlinkSync`,
+ `truncateSync`,
+ `ftruncateSync`,
+ `unlinkSync`,
+ `unwatchFile`,
+ `utimesSync`,
+ `watch`,
+ `watchFile`,
+ `writeFileSync`,
+ `writeSync`
+]);
+const ASYNC_IMPLEMENTATIONS = /* @__PURE__ */ new Set([
+ `accessPromise`,
+ `appendFilePromise`,
+ `fchmodPromise`,
+ `chmodPromise`,
+ `fchownPromise`,
+ `chownPromise`,
+ `closePromise`,
+ `copyFilePromise`,
+ `linkPromise`,
+ `fstatPromise`,
+ `lstatPromise`,
+ `lutimesPromise`,
+ `mkdirPromise`,
+ `openPromise`,
+ `opendirPromise`,
+ `readdirPromise`,
+ `realpathPromise`,
+ `readFilePromise`,
+ `readdirPromise`,
+ `readlinkPromise`,
+ `renamePromise`,
+ `rmdirPromise`,
+ `statPromise`,
+ `symlinkPromise`,
+ `truncatePromise`,
+ `ftruncatePromise`,
+ `unlinkPromise`,
+ `utimesPromise`,
+ `writeFilePromise`,
+ `writeSync`
+]);
+function patchFs(patchedFs, fakeFs) {
+ fakeFs = new NodePathFS(fakeFs);
+ const setupFn = (target, name, replacement) => {
+ const orig = target[name];
+ target[name] = replacement;
+ if (typeof orig?.[nodeUtils.promisify.custom] !== `undefined`) {
+ replacement[nodeUtils.promisify.custom] = orig[nodeUtils.promisify.custom];
+ }
+ };
+ {
+ setupFn(patchedFs, `exists`, (p, ...args) => {
+ const hasCallback = typeof args[args.length - 1] === `function`;
+ const callback = hasCallback ? args.pop() : () => {
+ };
+ process.nextTick(() => {
+ fakeFs.existsPromise(p).then((exists) => {
+ callback(exists);
+ }, () => {
+ callback(false);
+ });
+ });
+ });
+ setupFn(patchedFs, `read`, (...args) => {
+ let [fd, buffer, offset, length, position, callback] = args;
+ if (args.length <= 3) {
+ let options = {};
+ if (args.length < 3) {
+ callback = args[1];
+ } else {
+ options = args[1];
+ callback = args[2];
+ }
+ ({
+ buffer = Buffer.alloc(16384),
+ offset = 0,
+ length = buffer.byteLength,
+ position
+ } = options);
+ }
+ if (offset == null)
+ offset = 0;
+ length |= 0;
+ if (length === 0) {
+ process.nextTick(() => {
+ callback(null, 0, buffer);
+ });
+ return;
+ }
+ if (position == null)
+ position = -1;
+ process.nextTick(() => {
+ fakeFs.readPromise(fd, buffer, offset, length, position).then((bytesRead) => {
+ callback(null, bytesRead, buffer);
+ }, (error) => {
+ callback(error, 0, buffer);
+ });
+ });
+ });
+ for (const fnName of ASYNC_IMPLEMENTATIONS) {
+ const origName = fnName.replace(/Promise$/, ``);
+ if (typeof patchedFs[origName] === `undefined`)
+ continue;
+ const fakeImpl = fakeFs[fnName];
+ if (typeof fakeImpl === `undefined`)
+ continue;
+ const wrapper = (...args) => {
+ const hasCallback = typeof args[args.length - 1] === `function`;
+ const callback = hasCallback ? args.pop() : () => {
+ };
+ process.nextTick(() => {
+ fakeImpl.apply(fakeFs, args).then((result) => {
+ callback(null, result);
+ }, (error) => {
+ callback(error);
+ });
+ });
+ };
+ setupFn(patchedFs, origName, wrapper);
+ }
+ patchedFs.realpath.native = patchedFs.realpath;
+ }
+ {
+ setupFn(patchedFs, `existsSync`, (p) => {
+ try {
+ return fakeFs.existsSync(p);
+ } catch (error) {
+ return false;
+ }
+ });
+ setupFn(patchedFs, `readSync`, (...args) => {
+ let [fd, buffer, offset, length, position] = args;
+ if (args.length <= 3) {
+ const options = args[2] || {};
+ ({ offset = 0, length = buffer.byteLength, position } = options);
+ }
+ if (offset == null)
+ offset = 0;
+ length |= 0;
+ if (length === 0)
+ return 0;
+ if (position == null)
+ position = -1;
+ return fakeFs.readSync(fd, buffer, offset, length, position);
+ });
+ for (const fnName of SYNC_IMPLEMENTATIONS) {
+ const origName = fnName;
+ if (typeof patchedFs[origName] === `undefined`)
+ continue;
+ const fakeImpl = fakeFs[fnName];
+ if (typeof fakeImpl === `undefined`)
+ continue;
+ setupFn(patchedFs, origName, fakeImpl.bind(fakeFs));
+ }
+ patchedFs.realpathSync.native = patchedFs.realpathSync;
+ }
+ {
+ const patchedFsPromises = patchedFs.promises;
+ for (const fnName of ASYNC_IMPLEMENTATIONS) {
+ const origName = fnName.replace(/Promise$/, ``);
+ if (typeof patchedFsPromises[origName] === `undefined`)
+ continue;
+ const fakeImpl = fakeFs[fnName];
+ if (typeof fakeImpl === `undefined`)
+ continue;
+ if (fnName === `open`)
+ continue;
+ setupFn(patchedFsPromises, origName, (pathLike, ...args) => {
+ if (pathLike instanceof FileHandle) {
+ return pathLike[origName].apply(pathLike, args);
+ } else {
+ return fakeImpl.call(fakeFs, pathLike, ...args);
+ }
+ });
+ }
+ setupFn(patchedFsPromises, `open`, async (...args) => {
+ const fd = await fakeFs.openPromise(...args);
+ return new FileHandle(fd, fakeFs);
+ });
+ }
+ {
+ patchedFs.read[nodeUtils.promisify.custom] = async (fd, buffer, ...args) => {
+ const res = fakeFs.readPromise(fd, buffer, ...args);
+ return { bytesRead: await res, buffer };
+ };
+ patchedFs.write[nodeUtils.promisify.custom] = async (fd, buffer, ...args) => {
+ const res = fakeFs.writePromise(fd, buffer, ...args);
+ return { bytesWritten: await res, buffer };
+ };
+ }
+}
+
+let cachedInstance;
+let registeredFactory = () => {
+ throw new Error(`Assertion failed: No libzip instance is available, and no factory was configured`);
+};
+function setFactory(factory) {
+ registeredFactory = factory;
+}
+function getInstance() {
+ if (typeof cachedInstance === `undefined`)
+ cachedInstance = registeredFactory();
+ return cachedInstance;
+}
+
+var libzipSync = {exports: {}};
+
+(function (module, exports) {
+var frozenFs = Object.assign({}, fs__default.default);
+var createModule = function() {
+ var _scriptDir = void 0;
+ if (typeof __filename !== "undefined")
+ _scriptDir = _scriptDir || __filename;
+ return function(createModule2) {
+ createModule2 = createModule2 || {};
+ var Module = typeof createModule2 !== "undefined" ? createModule2 : {};
+ var readyPromiseResolve, readyPromiseReject;
+ Module["ready"] = new Promise(function(resolve, reject) {
+ readyPromiseResolve = resolve;
+ readyPromiseReject = reject;
+ });
+ var moduleOverrides = {};
+ var key;
+ for (key in Module) {
+ if (Module.hasOwnProperty(key)) {
+ moduleOverrides[key] = Module[key];
+ }
+ }
+ var scriptDirectory = "";
+ function locateFile(path) {
+ if (Module["locateFile"]) {
+ return Module["locateFile"](path, scriptDirectory);
+ }
+ return scriptDirectory + path;
+ }
+ var read_, readBinary;
+ var nodeFS;
+ var nodePath;
+ {
+ {
+ scriptDirectory = __dirname + "/";
+ }
+ read_ = function shell_read(filename, binary) {
+ var ret = tryParseAsDataURI(filename);
+ if (ret) {
+ return binary ? ret : ret.toString();
+ }
+ if (!nodeFS)
+ nodeFS = frozenFs;
+ if (!nodePath)
+ nodePath = path__default.default;
+ filename = nodePath["normalize"](filename);
+ return nodeFS["readFileSync"](filename, binary ? null : "utf8");
+ };
+ readBinary = function readBinary2(filename) {
+ var ret = read_(filename, true);
+ if (!ret.buffer) {
+ ret = new Uint8Array(ret);
+ }
+ assert(ret.buffer);
+ return ret;
+ };
+ if (process["argv"].length > 1) {
+ process["argv"][1].replace(/\\/g, "/");
+ }
+ process["argv"].slice(2);
+ Module["inspect"] = function() {
+ return "[Emscripten Module object]";
+ };
+ }
+ Module["print"] || console.log.bind(console);
+ var err = Module["printErr"] || console.warn.bind(console);
+ for (key in moduleOverrides) {
+ if (moduleOverrides.hasOwnProperty(key)) {
+ Module[key] = moduleOverrides[key];
+ }
+ }
+ moduleOverrides = null;
+ if (Module["arguments"])
+ ;
+ if (Module["thisProgram"])
+ ;
+ if (Module["quit"])
+ ;
+ var wasmBinary;
+ if (Module["wasmBinary"])
+ wasmBinary = Module["wasmBinary"];
+ Module["noExitRuntime"] || true;
+ if (typeof WebAssembly !== "object") {
+ abort("no native wasm support detected");
+ }
+ function getValue(ptr, type, noSafe) {
+ type = type || "i8";
+ if (type.charAt(type.length - 1) === "*")
+ type = "i32";
+ switch (type) {
+ case "i1":
+ return HEAP8[ptr >> 0];
+ case "i8":
+ return HEAP8[ptr >> 0];
+ case "i16":
+ return LE_HEAP_LOAD_I16((ptr >> 1) * 2);
+ case "i32":
+ return LE_HEAP_LOAD_I32((ptr >> 2) * 4);
+ case "i64":
+ return LE_HEAP_LOAD_I32((ptr >> 2) * 4);
+ case "float":
+ return LE_HEAP_LOAD_F32((ptr >> 2) * 4);
+ case "double":
+ return LE_HEAP_LOAD_F64((ptr >> 3) * 8);
+ default:
+ abort("invalid type for getValue: " + type);
+ }
+ return null;
+ }
+ var wasmMemory;
+ var ABORT = false;
+ function assert(condition, text) {
+ if (!condition) {
+ abort("Assertion failed: " + text);
+ }
+ }
+ function getCFunc(ident) {
+ var func = Module["_" + ident];
+ assert(
+ func,
+ "Cannot call unknown function " + ident + ", make sure it is exported"
+ );
+ return func;
+ }
+ function ccall(ident, returnType, argTypes, args, opts) {
+ var toC = {
+ string: function(str) {
+ var ret2 = 0;
+ if (str !== null && str !== void 0 && str !== 0) {
+ var len = (str.length << 2) + 1;
+ ret2 = stackAlloc(len);
+ stringToUTF8(str, ret2, len);
+ }
+ return ret2;
+ },
+ array: function(arr) {
+ var ret2 = stackAlloc(arr.length);
+ writeArrayToMemory(arr, ret2);
+ return ret2;
+ }
+ };
+ function convertReturnValue(ret2) {
+ if (returnType === "string")
+ return UTF8ToString(ret2);
+ if (returnType === "boolean")
+ return Boolean(ret2);
+ return ret2;
+ }
+ var func = getCFunc(ident);
+ var cArgs = [];
+ var stack = 0;
+ if (args) {
+ for (var i = 0; i < args.length; i++) {
+ var converter = toC[argTypes[i]];
+ if (converter) {
+ if (stack === 0)
+ stack = stackSave();
+ cArgs[i] = converter(args[i]);
+ } else {
+ cArgs[i] = args[i];
+ }
+ }
+ }
+ var ret = func.apply(null, cArgs);
+ ret = convertReturnValue(ret);
+ if (stack !== 0)
+ stackRestore(stack);
+ return ret;
+ }
+ function cwrap(ident, returnType, argTypes, opts) {
+ argTypes = argTypes || [];
+ var numericArgs = argTypes.every(function(type) {
+ return type === "number";
+ });
+ var numericRet = returnType !== "string";
+ if (numericRet && numericArgs && !opts) {
+ return getCFunc(ident);
+ }
+ return function() {
+ return ccall(ident, returnType, argTypes, arguments);
+ };
+ }
+ var UTF8Decoder = new TextDecoder("utf8");
+ function UTF8ToString(ptr, maxBytesToRead) {
+ if (!ptr)
+ return "";
+ var maxPtr = ptr + maxBytesToRead;
+ for (var end = ptr; !(end >= maxPtr) && HEAPU8[end]; )
+ ++end;
+ return UTF8Decoder.decode(HEAPU8.subarray(ptr, end));
+ }
+ function stringToUTF8Array(str, heap, outIdx, maxBytesToWrite) {
+ if (!(maxBytesToWrite > 0))
+ return 0;
+ var startIdx = outIdx;
+ var endIdx = outIdx + maxBytesToWrite - 1;
+ for (var i = 0; i < str.length; ++i) {
+ var u = str.charCodeAt(i);
+ if (u >= 55296 && u <= 57343) {
+ var u1 = str.charCodeAt(++i);
+ u = 65536 + ((u & 1023) << 10) | u1 & 1023;
+ }
+ if (u <= 127) {
+ if (outIdx >= endIdx)
+ break;
+ heap[outIdx++] = u;
+ } else if (u <= 2047) {
+ if (outIdx + 1 >= endIdx)
+ break;
+ heap[outIdx++] = 192 | u >> 6;
+ heap[outIdx++] = 128 | u & 63;
+ } else if (u <= 65535) {
+ if (outIdx + 2 >= endIdx)
+ break;
+ heap[outIdx++] = 224 | u >> 12;
+ heap[outIdx++] = 128 | u >> 6 & 63;
+ heap[outIdx++] = 128 | u & 63;
+ } else {
+ if (outIdx + 3 >= endIdx)
+ break;
+ heap[outIdx++] = 240 | u >> 18;
+ heap[outIdx++] = 128 | u >> 12 & 63;
+ heap[outIdx++] = 128 | u >> 6 & 63;
+ heap[outIdx++] = 128 | u & 63;
+ }
+ }
+ heap[outIdx] = 0;
+ return outIdx - startIdx;
+ }
+ function stringToUTF8(str, outPtr, maxBytesToWrite) {
+ return stringToUTF8Array(str, HEAPU8, outPtr, maxBytesToWrite);
+ }
+ function lengthBytesUTF8(str) {
+ var len = 0;
+ for (var i = 0; i < str.length; ++i) {
+ var u = str.charCodeAt(i);
+ if (u >= 55296 && u <= 57343)
+ u = 65536 + ((u & 1023) << 10) | str.charCodeAt(++i) & 1023;
+ if (u <= 127)
+ ++len;
+ else if (u <= 2047)
+ len += 2;
+ else if (u <= 65535)
+ len += 3;
+ else
+ len += 4;
+ }
+ return len;
+ }
+ function allocateUTF8(str) {
+ var size = lengthBytesUTF8(str) + 1;
+ var ret = _malloc(size);
+ if (ret)
+ stringToUTF8Array(str, HEAP8, ret, size);
+ return ret;
+ }
+ function writeArrayToMemory(array, buffer2) {
+ HEAP8.set(array, buffer2);
+ }
+ function alignUp(x, multiple) {
+ if (x % multiple > 0) {
+ x += multiple - x % multiple;
+ }
+ return x;
+ }
+ var buffer, HEAP8, HEAPU8;
+ var HEAP_DATA_VIEW;
+ function updateGlobalBufferAndViews(buf) {
+ buffer = buf;
+ Module["HEAP_DATA_VIEW"] = HEAP_DATA_VIEW = new DataView(buf);
+ Module["HEAP8"] = HEAP8 = new Int8Array(buf);
+ Module["HEAP16"] = new Int16Array(buf);
+ Module["HEAP32"] = new Int32Array(buf);
+ Module["HEAPU8"] = HEAPU8 = new Uint8Array(buf);
+ Module["HEAPU16"] = new Uint16Array(buf);
+ Module["HEAPU32"] = new Uint32Array(buf);
+ Module["HEAPF32"] = new Float32Array(buf);
+ Module["HEAPF64"] = new Float64Array(buf);
+ }
+ Module["INITIAL_MEMORY"] || 16777216;
+ var wasmTable;
+ var __ATPRERUN__ = [];
+ var __ATINIT__ = [];
+ var __ATPOSTRUN__ = [];
+ function preRun() {
+ if (Module["preRun"]) {
+ if (typeof Module["preRun"] == "function")
+ Module["preRun"] = [Module["preRun"]];
+ while (Module["preRun"].length) {
+ addOnPreRun(Module["preRun"].shift());
+ }
+ }
+ callRuntimeCallbacks(__ATPRERUN__);
+ }
+ function initRuntime() {
+ callRuntimeCallbacks(__ATINIT__);
+ }
+ function postRun() {
+ if (Module["postRun"]) {
+ if (typeof Module["postRun"] == "function")
+ Module["postRun"] = [Module["postRun"]];
+ while (Module["postRun"].length) {
+ addOnPostRun(Module["postRun"].shift());
+ }
+ }
+ callRuntimeCallbacks(__ATPOSTRUN__);
+ }
+ function addOnPreRun(cb) {
+ __ATPRERUN__.unshift(cb);
+ }
+ function addOnInit(cb) {
+ __ATINIT__.unshift(cb);
+ }
+ function addOnPostRun(cb) {
+ __ATPOSTRUN__.unshift(cb);
+ }
+ var runDependencies = 0;
+ var dependenciesFulfilled = null;
+ function addRunDependency(id) {
+ runDependencies++;
+ if (Module["monitorRunDependencies"]) {
+ Module["monitorRunDependencies"](runDependencies);
+ }
+ }
+ function removeRunDependency(id) {
+ runDependencies--;
+ if (Module["monitorRunDependencies"]) {
+ Module["monitorRunDependencies"](runDependencies);
+ }
+ if (runDependencies == 0) {
+ if (dependenciesFulfilled) {
+ var callback = dependenciesFulfilled;
+ dependenciesFulfilled = null;
+ callback();
+ }
+ }
+ }
+ Module["preloadedImages"] = {};
+ Module["preloadedAudios"] = {};
+ function abort(what) {
+ if (Module["onAbort"]) {
+ Module["onAbort"](what);
+ }
+ what += "";
+ err(what);
+ ABORT = true;
+ what = "abort(" + what + "). Build with -s ASSERTIONS=1 for more info.";
+ var e = new WebAssembly.RuntimeError(what);
+ readyPromiseReject(e);
+ throw e;
+ }
+ var dataURIPrefix = "data:application/octet-stream;base64,";
+ function isDataURI(filename) {
+ return filename.startsWith(dataURIPrefix);
+ }
+ var wasmBinaryFile = "data:application/octet-stream;base64,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QCAAKAJIIgEgASADaiADEAcaAkAgAyAAKAJsIgFNBEAgACABIANrNgJsDAELIABCADcCbAsgACAAKAJoIANrIgE2AmggACAAKAJYIANrNgJYIAEgACgChC5JBEAgACABNgKELgsgAEH8gAEoAgARAwAgAiADaiECCwJAIAAoAgAiASgCBCIERQ0AIAAoAjwhBSAAIAIgBCACIARJGyICBH8gACgCSCAAKAJoaiAFaiEFIAEgBCACazYCBAJAAkACQAJAIAEoAhwiBCgCFEEBaw4CAQACCyAEQaABaiAFIAEoAgAgAkHcgAEoAgARCAAMAgsgASABKAIwIAUgASgCACACQcSAASgCABEEADYCMAwBCyAFIAEoAgAgAhAHGgsgASABKAIAIAJqNgIAIAEgASgCCCACajYCCCAAKAI8BSAFCyACaiICNgI8AkAgACgChC4iASACakEDSQ0AIAAoAmggAWshAQJAIAAoAnRBgQhPBEAgACAAIAAoAkggAWoiAi0AACACLQABIAAoAnwRAAA2AlQMAQsgAUUNACAAIAFBAWsgACgChAERAgAaCyAAKAKELiAAKAI8IgJBAUZrIgRFDQAgACABIAQgACgCgAERBQAgACAAKAKELiAEazYChC4gACgCPCECCyACQYUCSw0AIAAoAgAoAgRFDQAgACgCMCEBDAELCwJAIAAoAkQiAiAAKAJAIgNNDQAgAAJ/IAAoAjwgACgCaGoiASADSwRAIAAoAkggAWpBACACIAFrIgNBggIgA0GCAkkbIgMQGSABIANqDAELIAFBggJqIgEgA00NASAAKAJIIANqQQAgAiADayICIAEgA2siAyACIANJGyIDEBkgACgCQCADags2AkALC50CAQF/AkAgAAJ/IAAoAqAuIgFBwABGBEAgACgCBCAAKAIQaiAAKQOYLjcAACAAQgA3A5guIAAgACgCEEEIajYCEEEADAELIAFBIE4EQCAAKAIEIAAoAhBqIAApA5guPgAAIAAgAEGcLmo1AgA3A5guIAAgACgCEEEEajYCECAAIAAoAqAuQSBrIgE2AqAuCyABQRBOBEAgACgCBCAAKAIQaiAAKQOYLj0AACAAIAAoAhBBAmo2AhAgACAAKQOYLkIQiDcDmC4gACAAKAKgLkEQayIBNgKgLgsgAUEISA0BIAAgACgCECIBQQFqNgIQ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KAJUIgEEfyABQQAgARAiEBkgACgCVAVBAAsQBiAAQQA2AlQLC9wMAgl/AX4jAEFAaiIGJAACQAJAAkACQAJAIAEoAjBBABAjIgVBAkZBACABKAI4QQAQIyIEQQFGGw0AIAVBAUZBACAEQQJGGw0AIAVBAkciAw0BIARBAkcNAQsgASABLwEMQYAQcjsBDEEAIQMMAQsgASABLwEMQf/vA3E7AQxBACEFIANFBEBB9eABIAEoAjAgAEEIahBpIgVFDQILIAJBgAJxBEAgBSEDDAELIARBAkcEQCAFIQMMAQtB9cYBIAEoAjggAEEIahBpIgNFBEAgBRAcDAILIAMgBTYCAAsgASABLwEMQf7/A3EgAS8BUiIFQQBHcjsBDAJAAkACQAJAAn8CQAJAIAEpAyhC/v///w9WDQAgASkDIEL+////D1YNACACQYAEcUUNASABKQNIQv////8PVA0BCyAFQYECa0H//wNxQQNJIQdBAQwBCyAFQYECa0H//wNxIQQgAkGACnFBgApHDQEgBEEDSSEHQQALIQkgBkIcEBciBEUEQCAAQQhqIgAEQCAAQQA2AgQgAEEONgIACyADEBwMBQsgAkGACHEhBQJAAkAgAkGAAnEEQAJAIAUNACABKQMgQv////8PVg0AIAEpAyhCgICAgBBUDQMLIAQgASkDKBAYIAEpAyAhDAwBCwJAAkACQCAFDQAgASkDIEL/////D1YNACABKQMoIgxC/////w9WDQEgASkDSEKAgICAEFQNBAsgASkDKCIMQv////8PVA0BCyAEIAwQGAsgASkDICIMQv////8PWgRAIAQgDBAYCyABKQNIIgxC/////w9UDQELIAQgDBAYCyAELQAARQRAIABBCGoiAARAIABBADYCBCAAQRQ2AgALIAQQCCADEBwMBQtBASEKQQEgBC0AAAR+IAQpAxAFQgALp0H//wNxIAYQRyEFIAQQCCAFIAM2AgAgBw0BDAILIAMhBSAEQQJLDQELIAZCBxAXIgRFBEAgAEEIaiIABEAgAEEANgIEIABBDjYCAAsgBRAcDAMLIARBAhANIARBhxJBAhAsIAQgAS0AUhBwIAQgAS8BEBANIAQtAABFBEAgAEEIaiIABEAgAEEANgIEIABBFDYCAAsgBBAIDAILQYGyAkEHIAYQRyEDIAQQCCADIAU2AgBBASEL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NgIEIABB7A42AhggGiEdDAMLIARB/wFxIgJBwABxRQRAIAggDSADLwECQQJ0aiAdp0F/IAJ0QX9zcUECdGoiAy0AASICayEIIB0gAq2IIR0gAy0AACIERQ0HDAELCyAEQSBxBEAgB0G//gA2AgQgASECDAgLIAdB0f4ANgIEIABB0A42AhggASECDAcLIB1BfyAGdEF/c62DIBt8IhunIQUgCCAEQQ9xIgNrIQggGiAErUIPg4ghHSABIBdrIgYgAjMBAiAaQX8gA3RBf3Otg3ynIgRPDQIgBCAGayIGIBlNDQEgBygCjEdFDQEgB0HR/gA2AgQgAEG5DDYCGAsgASECIAshBQwFCwJAIA5FBEAgDCARIAZraiEDDAELIAYgDk0EQCAMIA4gBmtqIQMMAQsgDCARIAYgDmsiBmtqIQMgBSAGTQ0AIAUgBmshBQJAAkAgASADTSABIA8gAWusIhogBq0iGyAaIBtUGyIapyIGaiICIANLcQ0AIAMgBmogAUsgASADT3ENACABIAMgBhAHGiACIQEMAQsgASADIAMgAWsiASABQR91IgFqIAFzIgIQByACaiEBIBogAq0iHn0iHFANACACIANqIQIDQAJAIBwgHiAcIB5UGyIbQiBUBEAgGyEaDAELIBsiGkIgfSIgQgWIQgF8QgODIh9QRQRAA0AgASACKQAANwAAIAEgAikAGDcAGCABIAIpABA3ABAgASACKQAINwAIIBpCIH0hGiACQSBqIQIgAUEgaiEBIB9CAX0iH0IAUg0ACwsgIELgAFQNAANAIAEgAikAADcAACABIAIpABg3ABggASACKQAQNwAQIAEgAikACDcACCABIAIpADg3ADggASACKQAwNwAwIAEgAikAKDcAKCABIAIpACA3ACAgASACKQBYNwBYIAEgAikAUDcAUCABIAIpAEg3AEggASACKQBANwBAIAEgAikAYDcAYCABIAIpAGg3AGggASACKQBwNwBwIAEgAikAeDcAeCACQYABaiECIAFBgAFqIQEgGkKAAX0iGkIfVg0ACwsgGkIQWgRAIAEgAikAADcAACABIAIpAAg3AAggGkIQfSEaIAJBEGohAiABQRBqIQELIBpCCFoEQCABIAIpAAA3AAAgGkIIfSEaIAJBCGohAiABQQhqIQELIBpCBFoEQCABIAIoAAA2AAAgGkIEfSEaIAJBBGohAiABQQRqIQELIBpCAloEQCABIAIvAAA7AAAgGkICfSEaIAJBAmohAiABQQJqIQELIBwgG30hHCAaUEUEQCABIAItAAA6AAAgAkEBaiECIAFBAWohAQsgHEIAUg0ACwsgDiEGIAwhAwsgBSAGSwRAAkACQCABIANNIAEgDyABa6wiGiAGrSIbIBogG1QbIhqnIglqIgIgA0txDQAgAyAJaiABSyABIANPcQ0AIAEgAyAJEAcaDAELIAEgAyADIAFrIgEgAUEfdSIBaiABcyIBEAcgAWohAiAaIAGtIh59IhxQDQAgASADaiEBA0ACQCAcIB4gHCAeVBsiG0IgVARAIBshGgwBCyAbIhpCIH0iIEIFiEIBfEIDgyIfUEUEQANAIAIgASkAADcAACACIAEpABg3ABggAiABKQAQNwAQIAIgASkACDcACCAaQiB9IRogAUEgaiEBIAJBIGohAiAfQgF9Ih9CAFINAAsLICBC4ABUDQADQCACIAEpAAA3AAAgAiABKQAYNwAYIAIgASkAEDcAECACIAEpAAg3AAggAiABKQA4NwA4IAIgASkAMDcAMCACIAEpACg3ACggAiABKQAgNwAgIAIgASkAWDcAWCACIAEpAFA3AFAgAiABKQBINwBIIAIgASkAQDcAQCACIAEpAGA3AGAgAiABKQBoNwBoIAIgASkAcDcAcCACIAEpAHg3AHggAUGAAWohASACQYABaiECIBpCgAF9IhpCH1YNAAsLIBpCEFoEQCACIAEpAAA3AAAgAiABKQAINwAIIBpCEH0hGiACQRBqIQIgAUEQaiEBCyAaQghaBEAgAiABKQAANwAAIBpCCH0hGiACQQhqIQIgAUEIaiEBCyAaQgRaBEAgAiABKAAANgAAIBpCBH0hGiACQQRqIQIgAUEEaiEBCyAaQgJaBEAgAiABLwAAOwAAIBpCAn0hGiACQQJqIQIgAUECaiEBCyAcIBt9IRwgGlBFBEAgAiABLQAAOgAAIAJBAWohAiABQQFqIQELIBxCAFINAAsLIAUgBmshAUEAIARrIQUCQCAEQQdLBEAgBCEDDAELIAEgBE0EQCAEIQMMAQsgAiAEayEFA0ACQCACIAUpAAA3AAAgBEEBdCEDIAEgBGshASACIARqIQIgBEEDSw0AIAMhBCABIANLDQELC0EAIANrIQULIAIgBWohBAJAIAUgDyACa6wiGiABrSIbIBogG1QbIhqnIgFIIAVBf0pxDQAgBUEBSCABIARqIAJLcQ0AIAIgBCABEAcgAWohAgwDCyACIAQgAyADQR91IgFqIAFzIgEQByABaiECIBogAa0iHn0iHFANAiABIARqIQEDQAJAIBwgHiAcIB5UGyIbQiBUBEAgGyEaDAELIBsiGkIgfSIgQgWIQgF8QgODIh9QRQRAA0AgAiABKQAANwAAIAIgASkAGDcAGCACIAEpABA3ABAgAiABKQAINwAIIBpCIH0hGiABQSBqIQEgAkEgaiECIB9CAX0iH0IAUg0ACwsgIELgAFQNAANAIAIgASkAADcAACACIAEpABg3ABggAiABKQAQNwAQIAIgASkACDcACCACIAEpADg3ADggAiABKQAwNwAwIAIgASkAKDcAKCACIAEpACA3ACAgAiABKQBYNwBYIAIgASkAUDcAUCACIAEpAEg3AEggAiABKQBANwBAIAIgASkAYDcAYCACIAEpAGg3AGggAiABKQBwNwBwIAIgASkAeDcAeCABQYABaiEBIAJBgAFqIQIgGkKAAX0iGkIfVg0ACwsgGkIQWgRAIAIgASkAADcAACACIAEpAAg3AAggGkIQfSEaIAJBEGohAiABQRBqIQELIBpCCFoEQCACIAEpAAA3AAAgGkIIfSEaIAJBCGohAiABQQhqIQELIBpCBFoEQCACIAEoAAA2AAAgGkIEfSEaIAJBBGohAiABQQRqIQELIBpCAloEQCACIAEvAAA7AAAgGkICfSEaIAJBAmohAiABQQJqIQELIBwgG30hHCAaUEUEQCACIAEtAAA6AAAgAkEBaiECIAFBAWohAQsgHFBFDQALDAILAkAgASADTSABIA8gAWusIhogBa0iGyAaIBtUGyIapyIEaiICIANLcQ0AIAMgBGogAUsgASADT3ENACABIAMgBBAHGgwCCyABIAMgAyABayIBIAFBH3UiAWogAXMiARAHIAFqIQIgGiABrSIefSIcUA0BIAEgA2ohAQNAAkAgHCAeIBwgHlQbIhtCIFQEQCAbIRoMAQsgGyIaQiB9IiBCBYhCAXxCA4MiH1BFBEADQCACIAEpAAA3AAAgAiABKQAYNwAYIAIgASkAEDcAECACIAEpAAg3AAggGkIgfSEaIAFBIGohASACQSBqIQIgH0IBfSIfQgBSDQALCyAgQuAAVA0AA0AgAiABKQAANwAAIAIgASkAGDcAGCACIAEpABA3ABAgAiABKQAINwAIIAIgASkAODcAOCACIAEpADA3ADAgAiABKQAoNwAoIAIgASkAIDcAICACIAEpAFg3AFggAiABKQBQNwBQIAIgASkASDcASCACIAEpAEA3AEAgAiABKQBgNwBgIAIgASkAaDcAaCACIAEpAHA3AHAgAiABKQB4NwB4IAFBgAFqIQEgAkGAAWohAiAaQoABfSIaQh9WDQALCyAaQhBaBEAgAiABKQAANwAAIAIgASkACDcACCAaQhB9IRogAkEQaiECIAFBEGohAQsgGkIIWgRAIAIgASkAADcAACAaQgh9IRogAkEIaiECIAFBCGohAQsgGkIEWgRAIAIgASgAADYAACAaQgR9IRogAkEEaiECIAFBBGohAQsgGkICWgRAIAIgAS8AADsAACAaQgJ9IRogAkECaiECIAFBAmohAQsgHCAbfSEcIBpQRQRAIAIgAS0AADoAACACQQFqIQIgAUEBaiEBCyAcUEUNAAsMAQsCQAJAIBYEQAJAIAQgBUkEQCAHKAKYRyAESw0BCyABIARrIQMCQEEAIARrIgVBf0ogDyABa6wiGiAbIBogG1QbIhqnIgIgBUpxDQAgBUEBSCACIANqIAFLcQ0AIAEgAyACEAcgAmohAgwFCyABIAMgBCAEQR91IgFqIAFzIgEQByABaiECIBogAa0iHn0iHFANBCABIANqIQEDQAJAIBwgHiAcIB5UGyIbQiBUBEAgGyEaDAELIBsiGkIgfSIgQgWIQgF8QgODIh9QRQRAA0AgAiABKQAANwAAIAIgASkAGDcAGCACIAEpABA3ABAgAiABKQAINwAIIBpCIH0hGiABQSBqIQEgAkEgaiECIB9CAX0iH0IAUg0ACwsgIELgAFQNAANAIAIgASkAADcAACACIAEpABg3ABggAiABKQAQNwAQIAIgASkACDcACCACIAEpADg3ADggAiABKQAwNwAwIAIgASkAKDcAKCACIAEpACA3ACAgAiABKQBYNwBYIAIgASkAUDcAUCACIAEpAEg3AEggAiABKQBANwBAIAIgASkAYDcAYCACIAEpAGg3AGggAiABKQBwNwBwIAIgASkAeDcAeCABQYABaiEBIAJBgAFqIQIgGkKAAX0iGkIfVg0ACwsgGkIQWgRAIAIgASkAADcAACACIAEpAAg3AAggGkIQfSEaIAJBEGohAiABQRBqIQELIBpCCFoEQCACIAEpAAA3AAAgGkIIfSEaIAJBCGohAiABQQhqIQELIBpCBFoEQCACIAEoAAA2AAAgGkIEfSEaIAJBBGohAiABQQRqIQELIBpCAloEQCACIAEvAAA7AAAgGkICfSEaIAJBAmohAiABQQJqIQELIBwgG30hHCAaUEUEQCACIAEtAAA6AAAgAkEBaiECIAFBAWohAQsgHFBFDQALDAQLIBAgAWsiCUEBaiIGIAUgBSAGSxshAyABIARrIQIgAUEHcUUNAiADRQ0CIAEgAi0AADoAACACQQFqIQIgAUEBaiIGQQdxQQAgA0EBayIFGw0BIAYhASAFIQMgCSEGDAILAkAgBCAFSQRAIAcoAphHIARLDQELIAEgASAEayIGKQAANwAAIAEgBUEBa0EHcUEBaiIDaiECIAUgA2siBEUNAyADIAZqIQEDQCACIAEpAAA3AAAgAUEIaiEBIAJBCGohAiAEQQhrIgQNAAsMAwsgASAEIAUQPyECDAILIAEgAi0AADoAASAJQQFrIQYgA0ECayEFIAJBAWohAgJAIAFBAmoiCkEHcUUNACAFRQ0AIAEgAi0AADoAAiAJQQJrIQYgA0EDayEFIAJBAWohAgJAIAFBA2oiCkEHcUUNACAFRQ0AIAEgAi0AADoAAyAJQQNrIQYgA0EEayEFIAJBAWohAgJAIAFBBGoiCkEHcUUNACAFRQ0AIAEgAi0AADoABCAJQQRrIQYgA0EFayEFIAJBAWohAgJAIAFBBWoiCkEHcUUNACAFRQ0AIAEgAi0AADoABSAJQQVrIQYgA0EGayEFIAJBAWohAgJAIAFBBmoiCkEHcUUNACAFRQ0AIAEgAi0AADoABiAJQQZrIQYgA0EHayEFIAJBAWohAgJAIAFBB2oiCkEHcUUNACAFRQ0AIAEgAi0AADoAByAJQQdrIQYgA0EIayEDIAFBCGohASACQQFqIQIMBgsgCiEBIAUhAwwFCyAKIQEgBSEDDAQLIAohASAFIQMMAwsgCiEBIAUhAwwCCyAKIQEgBSEDDAELIAohASAFIQMLAkACQCAGQRdNBEAgA0UNASADQQFrIQUgA0EHcSIEBEADQCABIAItAAA6AAAgA0EBayEDIAFBAWohASACQQFqIQIgBEEBayIEDQALCyAFQQdJDQEDQCABIAItAAA6AAAgASACLQABOgABIAEgAi0AAjoAAiABIAItAAM6AAMgASACLQAEOgAEIAEgAi0ABToABSABIAItAAY6AAYgASACLQAHOgAHIAFBCGohASACQQhqIQIgA0EIayIDDQALDAELIAMNAQsgASECDAELIAEgBCADED8hAgsgCyEFDAELIAEgAy0AAjoAACABQQFqIQILIAUgFE8NACACIBNJDQELCyAAIAI2AgwgACAFIAhBA3ZrIgE2AgAgACATIAJrQYMCajYCECAAIBQgAWtBDmo2AgQgByAIQQdxIgA2AogBIAcgHUJ/IACthkJ/hYM+AoQBC+cFAQR/IAMgAiACIANLGyEEIAAgAWshAgJAIABBB3FFDQAgBEUNACAAIAItAAA6AAAgA0EBayEGIAJBAWohAiAAQQFqIgdBB3FBACAEQQFrIgUbRQRAIAchACAFIQQgBiEDDAELIAAgAi0AADoAASADQQJrIQYgBEECayEFIAJBAWohAgJAIABBAmoiB0EHcUUNACAFRQ0AIAAgAi0AADoAAiADQQNrIQYgBEEDayEFIAJBAWohAgJAIABBA2oiB0EHcUUNACAFRQ0AIAAgAi0AADoAAyADQQRrIQYgBEEEayEFIAJBAWohAgJAIABBBGoiB0EHcUUNACAFRQ0AIAAgAi0AADoABCADQQVrIQYgBEEFayEFIAJBAWohAgJAIABBBWoiB0EHcUUNACAFRQ0AIAAgAi0AADoABSADQQZrIQYgBEEGayEFIAJBAWohAgJAIABBBmoiB0EHcUUNACAFRQ0AIAAgAi0AADoABiADQQdrIQYgBEEHayEFIAJBAWohAgJAIABBB2oiB0EHcUUNACAFRQ0AIAAgAi0AADoAByADQQhrIQMgBEEIayEEIABBCGohACACQQFqIQIMBgsgByEAIAUhBCAGIQMMBQsgByEAIAUhBCAGIQMMBAsgByEAIAUhBCAGIQMMAwsgByEAIAUhBCAGIQMMAgsgByEAIAUhBCAGIQMMAQsgByEAIAUhBCAGIQMLAkAgA0EXTQRAIARFDQEgBEEBayEBIARBB3EiAwRAA0AgACACLQAAOgAAIARBAWshBCAAQQFqIQAgAkEBaiECIANBAWsi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CyAAIAMtAAAEfiADKQMQBUIAC6dB//8DcSADKAIEEEcLIQUgAxAICyAEQRBqJAAgBQvgAQICfwF+QTAQCSICRQRAIAEEQCABQQA2AgQgAUEONgIAC0EADwsgAkIANwMIIAJBADYCACACQgA3AxAgAkIANwMYIAJCADcDICACQgA3ACUgAFAEQCACDwsCQCAAQv////8AVg0AIACnQQR0EAkiA0UNACACIAM2AgBBACEBQgEhBANAIAMgAUEEdGoiAUIANwIAIAFCADcABSAAIARSBEAgBKchASAEQgF8IQQMAQsLIAIgADcDCCACIAA3AxAgAg8LIAEEQCABQQA2AgQgAUEONgIAC0EAEBAgAhAGQQAL7gECA38BfiMAQRBrIgQkAAJAIARBDGpCBBAXIgNFBEBBfyECDAELAkAgAQRAIAJBgAZxIQUDQAJAIAUgASgCBHFFDQACQCADKQMIQgBUBEAgA0EAOgAADAELIANCADcDECADQQE6AAALIAMgAS8BCBANIAMgAS8BChANIAMtAABFBEAgAEEIaiIABEAgAEEANgIEIABBFDYCAAtBfyECDAQLQX8hAiAAIARBDGpCBBAbQQBIDQMgATMBCiIGUA0AIAAgASgCDCAGEBtBAEgNAwsgASgCACIBDQALC0EAIQILIAMQCAsgBEEQaiQAIAILPAEBfyAABEAgAUGABnEhAQNAIAEgACgCBHEEQCACIAAvAQpqQQRqIQILIAAoAgAiAA0ACwsgAkH//wNxC5wBAQN/IABFBEBBAA8LIAAhAwNAAn8CQAJAIAAvAQgiAUH04AFNBEAgAUEBRg0BIAFB9cYBRg0BDAILIAFBgbICRg0AIAFB9eABRw0BCyAAKAIAIQEgAEEANgIAIAAoAgwQBiAAEAYgASADIAAgA0YbIQMCQCACRQRAQQAhAgwBCyACIAE2AgALIAEMAQsgACICKAIACyIADQALIAMLsgQCBX8BfgJAAkACQCAAIAGtEBciAQRAIAEtAAANAUEAIQAMAgsgBARAIARBADYCBCAEQQ42AgALQQAPC0EAIQADQCABLQAABH4gASkDCCABKQMQfQVCAAtCBFQNASABEAwhByABIAEQDCIGrRATIghFBEBBACECIAQEQCAEQQA2AgQgBEEVNgIACyABEAggAEUNAwNAIAAoAgAhASAAKAIMEAYg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DCAAQRg2AggLDAMLIAAgBiAFLwFqQQAgBCABEQYAIQEgBhALIAFFDQILAkAgDUUEQCABIQMMAQsgACABIAUvAWgQgQEhAyABEAsgA0UNAQsCQCAJRSAMckUEQCADIQEMAQsgACADQQEQgAEhASADEAsgAUUNAQsgASEDDAELQQAhAwsgBUHwAGokACADC4UBAQF/IAFFBEAgAEEIaiIABEAgAEEANgIEIABBEjYCAAtBAA8LQTgQCSIDRQRAIABBCGoiAARAIABBADYCBCAAQQ42AgALQQAPCyADQQA2AhAgA0IANwIIIANCADcDKCADQQA2AgQgAyACNgIAIANCADcDGCADQQA2AjAgACABQTsgAxBCCw8AIAAgASACQQBBABCCAQusAgECfyABRQRAIABBCGoiAARAIABBADYCBCAAQRI2AgALQQAPCwJAIAJBfUsNACACQf//A3FBCEYNACAAQQhqIgAEQCAAQQA2AgQgAEEQNgIAC0EADwsCQEGwwAAQCSIFBEAgBUEANgIIIAVCADcCACAFQYiBAUGogQEgAxs2AqhAIAUgAjYCFCAFIAM6ABAgBUEAOgAPIAVBADsBDCAFIAMgAkF9SyIGcToADiAFQQggAiAGG0H//wNxIAQgBUGIgQFBqIEBIAMbKAIAEQAAIgI2AqxAIAINASAFEDEgBRAGCyAAQQhqIgAEQCAAQQA2AgQgAEEONgIAC0EADwsgACABQTogBRBCIgAEfyAABSAFKAKsQCAFKAKoQCgCBBEDACAFEDEgBRAGQQALC6ABAQF/IAIgACgCBCIDIAIgA0kbIgIEQCAAIAMgAms2AgQCQAJAAkACQCAAKAIcIgMoAhRBAWsOAgEAAgsgA0GgAWogASAAKAIAIAJB3IABKAIAEQgADAILIAAgACgCMCABIAAoAgAgAkHEgAEoAgARBAA2AjAMAQsgASAAKAIAIAIQBxoLIAAgACgCACACajYCACAAIAAoAgggAmo2AggLC7cCAQR/QX4hAgJAIABFDQAgACgCIEUNACAAKAIkIgRFDQAgACgCHCIBRQ0AIAEoAgAgAEcNAAJAAkAgASgCICIDQTlrDjkBAgICAgICAgICAgIBAgICAQICAgICAgICAgICAgICAgICAQICAgICAgICAgICAQICAgICAgICAgEACyADQZoFRg0AIANBKkcN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DCABajYCDCAGIAYoAgggAWo2AgggBSAFKAIUIAFqNgIUIAUgBSgCECABazYCECAGIAYoAhAgAWsiATYCECABDQAgBiAGKAIENgIIC0EAIQRBACEJIAMoAhBFDQAMCgsgAygCHCgCJCEGIAMgAygCGCIBQQFqNgIYIAEgBmotAAAhASADIARBAWo2AhAgAygCBCAEaiABOgAAIAEEQCADKAIQIQQMAQsLIAMoAhwoAixFDQAgAygCECIGIAlNDQAgBQJ/IAUoAjAhBEEAIAMoAgQgCWoiAUUNABogBCABIAYgCWtB1IABKAIAEQAACzYCMAsgA0HnADYCIAsCQCADKAIcKAIsBEAgAygCDCADKAIQIgFBAmpJBH8gBRAKIAMoAhANAkEABSABCyADKAIEaiAFKAIwOwAAIAMgAygCEEECajYCECADQaABakHkgAEoAgARAQAaCyADQfEANgIgIAUQCiADKAIQRQ0BDAcLDAYLIAUoAgQNAQsgAygCPA0AIApFDQEgAygCIEGaBUYNAQsCfyADKAKIASIBRQRAIAMgChCFAQwBCwJAAkACQCADKAKMAUECaw4CAAECCwJ/AkADQAJAAkAgAygCPA0AIAMQLyADKAI8DQAgCg0BQQAMBAsgAygCSCADKAJoai0AACEEIAMgAygC8C0iAUEBajYC8C0gASADKALsLWpBADoAACADIAMoAvAtIgFBAWo2AvAtIAEgAygC7C1qQQA6AAAgAyADKALwLSIBQQFqNgLwLSABIAMoAuwtaiAEOgAAIAMgBEECdGoiASABLwHkAUEBajsB5AEgAyADKAI8QQFrNgI8IAMgAygCaEEBaiIBNgJoIAMoAvAtIAMoAvQtRw0BQQAhBCADIAMoAlgiBkEATgR/IAMoAkggBmoFQQALIAEgBmtBABAPIAMgAygCaDYCWCADKAIAEAogAygCACgCEA0BDAILCyADQQA2AoQuIApBBEYEQCADIAMoAlgiAUEATgR/IAMoAkggAWoFQQALIAMoAmggAWtBARAPIAMgAygCaDYCWCADKAIAEApBA0ECIAMoAgAoAhAbDAILIAMoAvAtBEBBACEEIAMgAygCWCIBQQBOBH8gAygCSCABagVBAAsgAygCaCABa0EAEA8gAyADKAJoNgJYIAMoAgAQCiADKAIAKAIQRQ0BC0EBIQQLIAQL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bGl0ZXJhbC9sZW5ndGhzIHNldABpbnZhbGlkIGNvZGUgbGVuZ3RocyBzZXQAdW5rbm93biBoZWFkZXIgZmxhZ3Mgc2V0AGludmFsaWQgZGlzdGFuY2VzIHNldABpbnZhbGlkIGJpdCBsZW5ndGggcmVwZWF0AEZpbGUgYWxyZWFkeSBleGlzdHMAdG9vIG1hbnkgbGVuZ3RoIG9yIGRpc3RhbmNlIHN5bWJvbHMAaW52YWxpZCBzdG9yZWQgYmxvY2sgbGVuZ3RocwAlcyVzJXMAYnVmZmVyIGVycm9yAE5vIGVycm9yAHN0cmVhbSBlcnJvcgBUZWxsIGVycm9yAEludGVybmFsIGVycm9yAFNlZWsgZXJyb3IAV3JpdGUgZXJyb3IAZmlsZSBlcnJvcgBSZWFkIGVycm9yAFpsaWIgZXJyb3IAZGF0YSBlcnJvcgBDUkMgZXJyb3IAaW5jb21wYXRpYmxlIHZlcnNpb24AaW52YWxpZCBjb2RlIC0tIG1pc3NpbmcgZW5kLW9mLWJsb2NrAGluY29ycmVjdCBoZWFkZXIgY2hlY2sAaW5jb3JyZWN0IGxlbmd0aCBjaGVjawBpbmNvcnJlY3QgZGF0YSBjaGVjawBpbnZhbGlkIGRpc3RhbmNlIHRvbyBmYXIgYmFjawBoZWFkZXIgY3JjIG1pc21hdGNoADEuMi4xMy56bGliLW5nAGludmFsaWQgd2luZG93IHNpemUAUmVhZC1vbmx5IGFyY2hpdmUATm90IGEgemlwIGFyY2hpdmUAUmVzb3VyY2Ugc3RpbGwgaW4gdXNlAE1hbGxvYyBmYWlsdXJlAGludmFsaWQgYmxvY2sgdHlwZQBGYWlsdXJlIHRvIGNyZWF0ZSB0ZW1wb3JhcnkgZmlsZQBDYW4ndCBvcGVuIGZpbGUATm8gc3VjaCBmaWxlAFByZW1hdHVyZSBlbmQgb2YgZmlsZQBDYW4ndCByZW1vdmUgZmlsZQBpbnZhbGlkIGxpdGVyYWwvbGVuZ3RoIGNvZGUAaW52YWxpZCBkaXN0YW5jZSBjb2RlAHVua25vd24gY29tcHJlc3Npb24gbWV0aG9kAHN0cmVhbSBlbmQAQ29tcHJlc3NlZCBkYXRhIGludmFsaWQATXVsdGktZGlzayB6aXAgYXJjaGl2ZXMgbm90IHN1cHBvcnRl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UgAIANIACAAyAAgAsgAIAHIACADyAAgACgAIAIoACABKAAgAygAIACoACACqAAgAagAIAOoACAAaAAgAmgAIAFoACADaAAgAOgAIALoACAB6AAgA+gAIAAYACACGAAgARgAIAMYACAAmAAgApgAIAGYACADmAAgAFgAIAJYACABWAAgA1gAIADYACAC2AAgAdgAIAPYACAAOAAgAjgAIAE4ACADOAAgALgAIAK4ACABuAAgA7gAIAB4ACACeAAgAXgAIAN4ACAA+AAgAvgAIAH4ACAD+AAgAAQAIAIEACABBAAgAwQAIACEACAChAAgAYQAIAOEACAARAAgAkQAIAFEACADRAAgAMQAIALEACABxAAgA8QAIAAkACACJAAgASQAIAMkACAApAAgAqQAIAGkACADpAAgAGQAIAJkACABZAAgA2QAIADkACAC5AAgAeQAIAPkACAAFAAgAhQAIAEUACADFAAgAJQAIAKUACABlAAgA5QAIABUACACVAAgAVQAIANUACAA1AAgAtQAIAHUACAD1AAgADQAIAI0ACABNAAgAzQAIAC0ACACtAAgAbQAIAO0ACAAdAAgAnQAIAF0ACADdAAgAPQAIAL0ACAB9AAgA/QAIABMACQATAQkAkwAJAJMBCQBTAAkAUwEJANMACQDTAQkAMwAJADMBCQCzAAkAswEJAHMACQBzAQkA8wAJAPMBCQALAAkACwEJAIsACQCLAQkASwAJAEsBCQDLAAkAywEJACsACQArAQkAqwAJAKsBCQBrAAkAawEJAOsACQDrAQkAGwAJABsBCQCbAAkAmwEJAFsACQBbAQkA2wAJANsBCQA7AAkAOwEJALsACQC7AQkAewAJAHsBCQD7AAkA+wEJAAcACQAHAQkAhwAJAIcBCQBHAAkARwEJAMcACQDHAQkAJwAJACcBCQCnAAkApwEJAGcACQBnAQkA5wAJAOcBCQAXAAkAFwEJAJcACQCXAQkAVwAJAFcBCQDXAAkA1wEJADcACQA3AQkAtwAJALcBCQB3AAkAdwEJAPcACQD3AQkADwAJAA8BCQCPAAkAjwEJAE8ACQBPAQkAzwAJAM8BCQAvAAkALwEJAK8ACQCvAQkAbwAJAG8BCQDvAAkA7wEJAB8ACQAfAQkAnwAJAJ8BCQBfAAkAXwEJAN8ACQDfAQkAPwAJAD8BCQC/AAkA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SXMgYSBkaXJlY3RvcnkAVGV4dCBmaWxlIGJ1c3kARXhlYyBmb3JtYXQgZXJyb3IASW52YWxpZCBhcmd1bWVudABBcmd1bWVudCBsaXN0IHRvbyBsb25nAFN5bWJvbGljIGxpbmsgbG9vcABGaWxlbmFtZSB0b28gbG9uZwBUb28gbWFueSBvcGVuIGZpbGVzIGluIHN5c3RlbQBObyBmaWxlIGRlc2NyaXB0b3JzIGF2YWlsYWJsZQBCYWQgZmlsZSBkZXNjcmlwdG9yAE5vIGNoaWxkIHByb2Nlc3MAQmFkIGFkZHJlc3MARmlsZSB0b28gbGFyZ2UAVG9vIG1hbnkgbGlua3MATm8gbG9ja3MgYXZhaWxhYmxlAFJlc291cmNlIGRlYWRsb2NrIHdvdWxkIG9jY3VyAFN0YXRlIG5vdCByZWNvdmVyYWJsZQBQcmV2aW91cyBvd25lciBkaWVkAE9wZXJhdGlvbiBjYW5jZWxlZABGdW5jdGlvbiBub3QgaW1wbGVtZW50ZWQATm8gbWVzc2FnZSBvZiBkZXNpcmVkIHR5cGUASWRlbnRpZmllciByZW1vdmVkAERldmljZSBub3QgYSBzdHJlYW0ATm8gZGF0YSBhdmFpbGFibGUARGV2aWNlIHRpbWVvdXQAT3V0IG9mIHN0cmVhbXMgcmVzb3VyY2VzAExpbmsgaGFzIGJlZW4gc2V2ZXJlZABQcm90b2NvbCBlcnJvcgBCYWQgbWVzc2FnZQBGaWxlIGRlc2NyaXB0b3IgaW4gYmFkIHN0YXRlAE5vdCBhIHNvY2tldABEZXN0aW5hdGlvbiBhZGRyZXNzIHJlcXVpcmVkAE1lc3NhZ2UgdG9vIGxhcmdlAFByb3RvY29sIHdyb25nIHR5cGUgZm9yIHNvY2tldABQcm90b2NvbCBub3QgYXZhaWxhYmxlAFByb3RvY29sIG5vdCBzdXBwb3J0ZWQAU29ja2V0IHR5cGUgbm90IHN1cHBvcnRlZABOb3Qgc3VwcG9ydGVkAFByb3RvY29sIGZhbWlseSBub3Qgc3VwcG9ydGVkAEFkZHJlc3MgZmFtaWx5IG5vdCBzdXBwb3J0ZWQgYnkgcHJvdG9jb2wAQWRkcmVzcyBub3QgYXZhaWxhYmxlAE5ldHdvcmsgaXMgZG93bgBOZXR3b3JrIHVucmVhY2hhYmxlAENvbm5lY3Rpb24gcmVzZXQgYnkgbmV0d29yawBDb25uZWN0aW9uIGFib3J0ZWQATm8gYnVmZmVyIHNwYWNlIGF2YWlsYWJsZQBTb2NrZXQgaXMgY29ubmVjdGVkAFNvY2tldCBub3QgY29ubmVjdGVkAENhbm5vdCBzZW5kIGFmdGVyIHNvY2tldCBzaHV0ZG93bgBPcGVyYXRpb24gYWxyZWFkeSBpbiBwcm9ncmVzcwBPcGVyYXRpb24gaW4gcHJvZ3Jlc3MAU3RhbGUgZmlsZSBoYW5kbGUAUmVtb3RlIEkvTyBlcnJvcgBRdW90YSBleGNlZWRlZABObyBtZWRpdW0gZm91bmQAV3JvbmcgbWVkaXVtIHR5cGUATm8gZXJyb3IgaW5mb3JtYXRpb24AQcCAAQuFARMAAAAUAAAAFQAAABYAAAAXAAAAGAAAABkAAAAaAAAAGwAAABwAAAAdAAAAHgAAAB8AAAAgAAAAIQAAACIAAAAjAAAAgERQADEAAAAyAAAAMwAAADQAAAA1AAAANgAAADcAAAA4AAAAOQAAADIAAAAzAAAANAAAADUAAAA2AAAANwAAADgAQfSCAQsCXEQAQbCDAQsQ/////////////////////w==";
+ if (!isDataURI(wasmBinaryFile)) {
+ wasmBinaryFile = locateFile(wasmBinaryFile);
+ }
+ function getBinary(file) {
+ try {
+ if (file == wasmBinaryFile && wasmBinary) {
+ return new Uint8Array(wasmBinary);
+ }
+ var binary = tryParseAsDataURI(file);
+ if (binary) {
+ return binary;
+ }
+ if (readBinary) {
+ return readBinary(file);
+ } else {
+ throw "sync fetching of the wasm failed: you can preload it to Module['wasmBinary'] manually, or emcc.py will do that for you when generating HTML (but not JS)";
+ }
+ } catch (err2) {
+ abort(err2);
+ }
+ }
+ function instantiateSync(file, info) {
+ var instance;
+ var module2;
+ var binary;
+ try {
+ binary = getBinary(file);
+ module2 = new WebAssembly.Module(binary);
+ instance = new WebAssembly.Instance(module2, info);
+ } catch (e) {
+ var str = e.toString();
+ err("failed to compile wasm module: " + str);
+ if (str.includes("imported Memory") || str.includes("memory import")) {
+ err(
+ "Memory size incompatibility issues may be due to changing INITIAL_MEMORY at runtime to something too large. Use ALLOW_MEMORY_GROWTH to allow any size memory (and also make sure not to set INITIAL_MEMORY at runtime to something smaller than it was at compile time)."
+ );
+ }
+ throw e;
+ }
+ return [instance, module2];
+ }
+ function createWasm() {
+ var info = { a: asmLibraryArg };
+ function receiveInstance(instance, module2) {
+ var exports3 = instance.exports;
+ Module["asm"] = exports3;
+ wasmMemory = Module["asm"]["g"];
+ updateGlobalBufferAndViews(wasmMemory.buffer);
+ wasmTable = Module["asm"]["W"];
+ addOnInit(Module["asm"]["h"]);
+ removeRunDependency();
+ }
+ addRunDependency();
+ if (Module["instantiateWasm"]) {
+ try {
+ var exports2 = Module["instantiateWasm"](info, receiveInstance);
+ return exports2;
+ } catch (e) {
+ err("Module.instantiateWasm callback failed with error: " + e);
+ return false;
+ }
+ }
+ var result = instantiateSync(wasmBinaryFile, info);
+ receiveInstance(result[0]);
+ return Module["asm"];
+ }
+ function LE_HEAP_LOAD_F32(byteOffset) {
+ return HEAP_DATA_VIEW.getFloat32(byteOffset, true);
+ }
+ function LE_HEAP_LOAD_F64(byteOffset) {
+ return HEAP_DATA_VIEW.getFloat64(byteOffset, true);
+ }
+ function LE_HEAP_LOAD_I16(byteOffset) {
+ return HEAP_DATA_VIEW.getInt16(byteOffset, true);
+ }
+ function LE_HEAP_LOAD_I32(byteOffset) {
+ return HEAP_DATA_VIEW.getInt32(byteOffset, true);
+ }
+ function LE_HEAP_STORE_I32(byteOffset, value) {
+ HEAP_DATA_VIEW.setInt32(byteOffset, value, true);
+ }
+ function callRuntimeCallbacks(callbacks) {
+ while (callbacks.length > 0) {
+ var callback = callbacks.shift();
+ if (typeof callback == "function") {
+ callback(Module);
+ continue;
+ }
+ var func = callback.func;
+ if (typeof func === "number") {
+ if (callback.arg === void 0) {
+ wasmTable.get(func)();
+ } else {
+ wasmTable.get(func)(callback.arg);
+ }
+ } else {
+ func(callback.arg === void 0 ? null : callback.arg);
+ }
+ }
+ }
+ function _gmtime_r(time, tmPtr) {
+ var date = new Date(LE_HEAP_LOAD_I32((time >> 2) * 4) * 1e3);
+ LE_HEAP_STORE_I32((tmPtr >> 2) * 4, date.getUTCSeconds());
+ LE_HEAP_STORE_I32((tmPtr + 4 >> 2) * 4, date.getUTCMinutes());
+ LE_HEAP_STORE_I32((tmPtr + 8 >> 2) * 4, date.getUTCHours());
+ LE_HEAP_STORE_I32((tmPtr + 12 >> 2) * 4, date.getUTCDate());
+ LE_HEAP_STORE_I32((tmPtr + 16 >> 2) * 4, date.getUTCMonth());
+ LE_HEAP_STORE_I32((tmPtr + 20 >> 2) * 4, date.getUTCFullYear() - 1900);
+ LE_HEAP_STORE_I32((tmPtr + 24 >> 2) * 4, date.getUTCDay());
+ LE_HEAP_STORE_I32((tmPtr + 36 >> 2) * 4, 0);
+ LE_HEAP_STORE_I32((tmPtr + 32 >> 2) * 4, 0);
+ var start = Date.UTC(date.getUTCFullYear(), 0, 1, 0, 0, 0, 0);
+ var yday = (date.getTime() - start) / (1e3 * 60 * 60 * 24) | 0;
+ LE_HEAP_STORE_I32((tmPtr + 28 >> 2) * 4, yday);
+ if (!_gmtime_r.GMTString)
+ _gmtime_r.GMTString = allocateUTF8("GMT");
+ LE_HEAP_STORE_I32((tmPtr + 40 >> 2) * 4, _gmtime_r.GMTString);
+ return tmPtr;
+ }
+ function ___gmtime_r(a0, a1) {
+ return _gmtime_r(a0, a1);
+ }
+ function _emscripten_memcpy_big(dest, src, num) {
+ HEAPU8.copyWithin(dest, src, src + num);
+ }
+ function emscripten_realloc_buffer(size) {
+ try {
+ wasmMemory.grow(size - buffer.byteLength + 65535 >>> 16);
+ updateGlobalBufferAndViews(wasmMemory.buffer);
+ return 1;
+ } catch (e) {
+ }
+ }
+ function _emscripten_resize_heap(requestedSize) {
+ var oldSize = HEAPU8.length;
+ requestedSize = requestedSize >>> 0;
+ var maxHeapSize = 2147483648;
+ if (requestedSize > maxHeapSize) {
+ return false;
+ }
+ for (var cutDown = 1; cutDown <= 4; cutDown *= 2) {
+ var overGrownHeapSize = oldSize * (1 + 0.2 / cutDown);
+ overGrownHeapSize = Math.min(
+ overGrownHeapSize,
+ requestedSize + 100663296
+ );
+ var newSize = Math.min(
+ maxHeapSize,
+ alignUp(Math.max(requestedSize, overGrownHeapSize), 65536)
+ );
+ var replacement = emscripten_realloc_buffer(newSize);
+ if (replacement) {
+ return true;
+ }
+ }
+ return false;
+ }
+ function _setTempRet0(val) {
+ }
+ function _time(ptr) {
+ var ret = Date.now() / 1e3 | 0;
+ if (ptr) {
+ LE_HEAP_STORE_I32((ptr >> 2) * 4, ret);
+ }
+ return ret;
+ }
+ function _tzset() {
+ if (_tzset.called)
+ return;
+ _tzset.called = true;
+ var currentYear = new Date().getFullYear();
+ var winter = new Date(currentYear, 0, 1);
+ var summer = new Date(currentYear, 6, 1);
+ var winterOffset = winter.getTimezoneOffset();
+ var summerOffset = summer.getTimezoneOffset();
+ var stdTimezoneOffset = Math.max(winterOffset, summerOffset);
+ LE_HEAP_STORE_I32((__get_timezone() >> 2) * 4, stdTimezoneOffset * 60);
+ LE_HEAP_STORE_I32(
+ (__get_daylight() >> 2) * 4,
+ Number(winterOffset != summerOffset)
+ );
+ function extractZone(date) {
+ var match = date.toTimeString().match(/\(([A-Za-z ]+)\)$/);
+ return match ? match[1] : "GMT";
+ }
+ var winterName = extractZone(winter);
+ var summerName = extractZone(summer);
+ var winterNamePtr = allocateUTF8(winterName);
+ var summerNamePtr = allocateUTF8(summerName);
+ if (summerOffset < winterOffset) {
+ LE_HEAP_STORE_I32((__get_tzname() >> 2) * 4, winterNamePtr);
+ LE_HEAP_STORE_I32((__get_tzname() + 4 >> 2) * 4, summerNamePtr);
+ } else {
+ LE_HEAP_STORE_I32((__get_tzname() >> 2) * 4, summerNamePtr);
+ LE_HEAP_STORE_I32((__get_tzname() + 4 >> 2) * 4, winterNamePtr);
+ }
+ }
+ function _timegm(tmPtr) {
+ _tzset();
+ var time = Date.UTC(
+ LE_HEAP_LOAD_I32((tmPtr + 20 >> 2) * 4) + 1900,
+ LE_HEAP_LOAD_I32((tmPtr + 16 >> 2) * 4),
+ LE_HEAP_LOAD_I32((tmPtr + 12 >> 2) * 4),
+ LE_HEAP_LOAD_I32((tmPtr + 8 >> 2) * 4),
+ LE_HEAP_LOAD_I32((tmPtr + 4 >> 2) * 4),
+ LE_HEAP_LOAD_I32((tmPtr >> 2) * 4),
+ 0
+ );
+ var date = new Date(time);
+ LE_HEAP_STORE_I32((tmPtr + 24 >> 2) * 4, date.getUTCDay());
+ var start = Date.UTC(date.getUTCFullYear(), 0, 1, 0, 0, 0, 0);
+ var yday = (date.getTime() - start) / (1e3 * 60 * 60 * 24) | 0;
+ LE_HEAP_STORE_I32((tmPtr + 28 >> 2) * 4, yday);
+ return date.getTime() / 1e3 | 0;
+ }
+ function intArrayFromBase64(s) {
+ {
+ var buf;
+ try {
+ buf = Buffer.from(s, "base64");
+ } catch (_) {
+ buf = new Buffer(s, "base64");
+ }
+ return new Uint8Array(
+ buf["buffer"],
+ buf["byteOffset"],
+ buf["byteLength"]
+ );
+ }
+ }
+ function tryParseAsDataURI(filename) {
+ if (!isDataURI(filename)) {
+ return;
+ }
+ return intArrayFromBase64(filename.slice(dataURIPrefix.length));
+ }
+ var asmLibraryArg = {
+ e: ___gmtime_r,
+ c: _emscripten_memcpy_big,
+ d: _emscripten_resize_heap,
+ a: _setTempRet0,
+ b: _time,
+ f: _timegm
+ };
+ var asm = createWasm();
+ Module["___wasm_call_ctors"] = asm["h"];
+ Module["_zip_ext_count_symlinks"] = asm["i"];
+ Module["_zip_file_get_external_attributes"] = asm["j"];
+ Module["_zipstruct_statS"] = asm["k"];
+ Module["_zipstruct_stat_size"] = asm["l"];
+ Module["_zipstruct_stat_mtime"] = asm["m"];
+ Module["_zipstruct_stat_crc"] = asm["n"];
+ Module["_zipstruct_errorS"] = asm["o"];
+ Module["_zipstruct_error_code_zip"] = asm["p"];
+ Module["_zipstruct_stat_comp_size"] = asm["q"];
+ Module["_zipstruct_stat_comp_method"] = asm["r"];
+ Module["_zip_close"] = asm["s"];
+ Module["_zip_delete"] = asm["t"];
+ Module["_zip_dir_add"] = asm["u"];
+ Module["_zip_discard"] = asm["v"];
+ Module["_zip_error_init_with_code"] = asm["w"];
+ Module["_zip_get_error"] = asm["x"];
+ Module["_zip_file_get_error"] = asm["y"];
+ Module["_zip_error_strerror"] = asm["z"];
+ Module["_zip_fclose"] = asm["A"];
+ Module["_zip_file_add"] = asm["B"];
+ Module["_free"] = asm["C"];
+ var _malloc = Module["_malloc"] = asm["D"];
+ Module["_zip_source_error"] = asm["E"];
+ Module["_zip_source_seek"] = asm["F"];
+ Module["_zip_file_set_external_attributes"] = asm["G"];
+ Module["_zip_file_set_mtime"] = asm["H"];
+ Module["_zip_fopen_index"] = asm["I"];
+ Module["_zip_fread"] = asm["J"];
+ Module["_zip_get_name"] = asm["K"];
+ Module["_zip_get_num_entries"] = asm["L"];
+ Module["_zip_source_read"] = asm["M"];
+ Module["_zip_name_locate"] = asm["N"];
+ Module["_zip_open_from_source"] = asm["O"];
+ Module["_zip_set_file_compression"] = asm["P"];
+ Module["_zip_source_buffer"] = asm["Q"];
+ Module["_zip_source_buffer_create"] = asm["R"];
+ Module["_zip_source_close"] = asm["S"];
+ Module["_zip_source_free"] = asm["T"];
+ Module["_zip_source_keep"] = asm["U"];
+ Module["_zip_source_open"] = asm["V"];
+ Module["_zip_source_tell"] = asm["X"];
+ Module["_zip_stat_index"] = asm["Y"];
+ var __get_tzname = Module["__get_tzname"] = asm["Z"];
+ var __get_daylight = Module["__get_daylight"] = asm["_"];
+ var __get_timezone = Module["__get_timezone"] = asm["$"];
+ var stackSave = Module["stackSave"] = asm["aa"];
+ var stackRestore = Module["stackRestore"] = asm["ba"];
+ var stackAlloc = Module["stackAlloc"] = asm["ca"];
+ Module["cwrap"] = cwrap;
+ Module["getValue"] = getValue;
+ var calledRun;
+ dependenciesFulfilled = function runCaller() {
+ if (!calledRun)
+ run();
+ if (!calledRun)
+ dependenciesFulfilled = runCaller;
+ };
+ function run(args) {
+ if (runDependencies > 0) {
+ return;
+ }
+ preRun();
+ if (runDependencies > 0) {
+ return;
+ }
+ function doRun() {
+ if (calledRun)
+ return;
+ calledRun = true;
+ Module["calledRun"] = true;
+ if (ABORT)
+ return;
+ initRuntime();
+ readyPromiseResolve(Module);
+ if (Module["onRuntimeInitialized"])
+ Module["onRuntimeInitialized"]();
+ postRun();
+ }
+ if (Module["setStatus"]) {
+ Module["setStatus"]("Running...");
+ setTimeout(function() {
+ setTimeout(function() {
+ Module["setStatus"]("");
+ }, 1);
+ doRun();
+ }, 1);
+ } else {
+ doRun();
+ }
+ }
+ Module["run"] = run;
+ if (Module["preInit"]) {
+ if (typeof Module["preInit"] == "function")
+ Module["preInit"] = [Module["preInit"]];
+ while (Module["preInit"].length > 0) {
+ Module["preInit"].pop()();
+ }
+ }
+ run();
+ return createModule2;
+ };
+}();
+module.exports = createModule;
+}(libzipSync));
+
+const createModule = libzipSync.exports;
+
+const number64 = [
+ `number`,
+ `number`
+];
+var Errors = /* @__PURE__ */ ((Errors2) => {
+ Errors2[Errors2["ZIP_ER_OK"] = 0] = "ZIP_ER_OK";
+ Errors2[Errors2["ZIP_ER_MULTIDISK"] = 1] = "ZIP_ER_MULTIDISK";
+ Errors2[Errors2["ZIP_ER_RENAME"] = 2] = "ZIP_ER_RENAME";
+ Errors2[Errors2["ZIP_ER_CLOSE"] = 3] = "ZIP_ER_CLOSE";
+ Errors2[Errors2["ZIP_ER_SEEK"] = 4] = "ZIP_ER_SEEK";
+ Errors2[Errors2["ZIP_ER_READ"] = 5] = "ZIP_ER_READ";
+ Errors2[Errors2["ZIP_ER_WRITE"] = 6] = "ZIP_ER_WRITE";
+ Errors2[Errors2["ZIP_ER_CRC"] = 7] = "ZIP_ER_CRC";
+ Errors2[Errors2["ZIP_ER_ZIPCLOSED"] = 8] = "ZIP_ER_ZIPCLOSED";
+ Errors2[Errors2["ZIP_ER_NOENT"] = 9] = "ZIP_ER_NOENT";
+ Errors2[Errors2["ZIP_ER_EXISTS"] = 10] = "ZIP_ER_EXISTS";
+ Errors2[Errors2["ZIP_ER_OPEN"] = 11] = "ZIP_ER_OPEN";
+ Errors2[Errors2["ZIP_ER_TMPOPEN"] = 12] = "ZIP_ER_TMPOPEN";
+ Errors2[Errors2["ZIP_ER_ZLIB"] = 13] = "ZIP_ER_ZLIB";
+ Errors2[Errors2["ZIP_ER_MEMORY"] = 14] = "ZIP_ER_MEMORY";
+ Errors2[Errors2["ZIP_ER_CHANGED"] = 15] = "ZIP_ER_CHANGED";
+ Errors2[Errors2["ZIP_ER_COMPNOTSUPP"] = 16] = "ZIP_ER_COMPNOTSUPP";
+ Errors2[Errors2["ZIP_ER_EOF"] = 17] = "ZIP_ER_EOF";
+ Errors2[Errors2["ZIP_ER_INVAL"] = 18] = "ZIP_ER_INVAL";
+ Errors2[Errors2["ZIP_ER_NOZIP"] = 19] = "ZIP_ER_NOZIP";
+ Errors2[Errors2["ZIP_ER_INTERNAL"] = 20] = "ZIP_ER_INTERNAL";
+ Errors2[Errors2["ZIP_ER_INCONS"] = 21] = "ZIP_ER_INCONS";
+ Errors2[Errors2["ZIP_ER_REMOVE"] = 22] = "ZIP_ER_REMOVE";
+ Errors2[Errors2["ZIP_ER_DELETED"] = 23] = "ZIP_ER_DELETED";
+ Errors2[Errors2["ZIP_ER_ENCRNOTSUPP"] = 24] = "ZIP_ER_ENCRNOTSUPP";
+ Errors2[Errors2["ZIP_ER_RDONLY"] = 25] = "ZIP_ER_RDONLY";
+ Errors2[Errors2["ZIP_ER_NOPASSWD"] = 26] = "ZIP_ER_NOPASSWD";
+ Errors2[Errors2["ZIP_ER_WRONGPASSWD"] = 27] = "ZIP_ER_WRONGPASSWD";
+ Errors2[Errors2["ZIP_ER_OPNOTSUPP"] = 28] = "ZIP_ER_OPNOTSUPP";
+ Errors2[Errors2["ZIP_ER_INUSE"] = 29] = "ZIP_ER_INUSE";
+ Errors2[Errors2["ZIP_ER_TELL"] = 30] = "ZIP_ER_TELL";
+ Errors2[Errors2["ZIP_ER_COMPRESSED_DATA"] = 31] = "ZIP_ER_COMPRESSED_DATA";
+ return Errors2;
+})(Errors || {});
+const makeInterface = (emZip) => ({
+ get HEAPU8() {
+ return emZip.HEAPU8;
+ },
+ errors: Errors,
+ SEEK_SET: 0,
+ SEEK_CUR: 1,
+ SEEK_END: 2,
+ ZIP_CHECKCONS: 4,
+ ZIP_EXCL: 2,
+ ZIP_RDONLY: 16,
+ ZIP_FL_OVERWRITE: 8192,
+ ZIP_FL_COMPRESSED: 4,
+ ZIP_OPSYS_DOS: 0,
+ ZIP_OPSYS_AMIGA: 1,
+ ZIP_OPSYS_OPENVMS: 2,
+ ZIP_OPSYS_UNIX: 3,
+ ZIP_OPSYS_VM_CMS: 4,
+ ZIP_OPSYS_ATARI_ST: 5,
+ ZIP_OPSYS_OS_2: 6,
+ ZIP_OPSYS_MACINTOSH: 7,
+ ZIP_OPSYS_Z_SYSTEM: 8,
+ ZIP_OPSYS_CPM: 9,
+ ZIP_OPSYS_WINDOWS_NTFS: 10,
+ ZIP_OPSYS_MVS: 11,
+ ZIP_OPSYS_VSE: 12,
+ ZIP_OPSYS_ACORN_RISC: 13,
+ ZIP_OPSYS_VFAT: 14,
+ ZIP_OPSYS_ALTERNATE_MVS: 15,
+ ZIP_OPSYS_BEOS: 16,
+ ZIP_OPSYS_TANDEM: 17,
+ ZIP_OPSYS_OS_400: 18,
+ ZIP_OPSYS_OS_X: 19,
+ ZIP_CM_DEFAULT: -1,
+ ZIP_CM_STORE: 0,
+ ZIP_CM_DEFLATE: 8,
+ uint08S: emZip._malloc(1),
+ uint32S: emZip._malloc(4),
+ malloc: emZip._malloc,
+ free: emZip._free,
+ getValue: emZip.getValue,
+ openFromSource: emZip.cwrap(`zip_open_from_source`, `number`, [`number`, `number`, `number`]),
+ close: emZip.cwrap(`zip_close`, `number`, [`number`]),
+ discard: emZip.cwrap(`zip_discard`, null, [`number`]),
+ getError: emZip.cwrap(`zip_get_error`, `number`, [`number`]),
+ getName: emZip.cwrap(`zip_get_name`, `string`, [`number`, `number`, `number`]),
+ getNumEntries: emZip.cwrap(`zip_get_num_entries`, `number`, [`number`, `number`]),
+ delete: emZip.cwrap(`zip_delete`, `number`, [`number`, `number`]),
+ statIndex: emZip.cwrap(`zip_stat_index`, `number`, [`number`, ...number64, `number`, `number`]),
+ fopenIndex: emZip.cwrap(`zip_fopen_index`, `number`, [`number`, ...number64, `number`]),
+ fread: emZip.cwrap(`zip_fread`, `number`, [`number`, `number`, `number`, `number`]),
+ fclose: emZip.cwrap(`zip_fclose`, `number`, [`number`]),
+ dir: {
+ add: emZip.cwrap(`zip_dir_add`, `number`, [`number`, `string`])
+ },
+ file: {
+ add: emZip.cwrap(`zip_file_add`, `number`, [`number`, `string`, `number`, `number`]),
+ getError: emZip.cwrap(`zip_file_get_error`, `number`, [`number`]),
+ getExternalAttributes: emZip.cwrap(`zip_file_get_external_attributes`, `number`, [`number`, ...number64, `number`, `number`, `number`]),
+ setExternalAttributes: emZip.cwrap(`zip_file_set_external_attributes`, `number`, [`number`, ...number64, `number`, `number`, `number`]),
+ setMtime: emZip.cwrap(`zip_file_set_mtime`, `number`, [`number`, ...number64, `number`, `number`]),
+ setCompression: emZip.cwrap(`zip_set_file_compression`, `number`, [`number`, ...number64, `number`, `number`])
+ },
+ ext: {
+ countSymlinks: emZip.cwrap(`zip_ext_count_symlinks`, `number`, [`number`])
+ },
+ error: {
+ initWithCode: emZip.cwrap(`zip_error_init_with_code`, null, [`number`, `number`]),
+ strerror: emZip.cwrap(`zip_error_strerror`, `string`, [`number`])
+ },
+ name: {
+ locate: emZip.cwrap(`zip_name_locate`, `number`, [`number`, `string`, `number`])
+ },
+ source: {
+ fromUnattachedBuffer: emZip.cwrap(`zip_source_buffer_create`, `number`, [`number`, ...number64, `number`, `number`]),
+ fromBuffer: emZip.cwrap(`zip_source_buffer`, `number`, [`number`, `number`, ...number64, `number`]),
+ free: emZip.cwrap(`zip_source_free`, null, [`number`]),
+ keep: emZip.cwrap(`zip_source_keep`, null, [`number`]),
+ open: emZip.cwrap(`zip_source_open`, `number`, [`number`]),
+ close: emZip.cwrap(`zip_source_close`, `number`, [`number`]),
+ seek: emZip.cwrap(`zip_source_seek`, `number`, [`number`, ...number64, `number`]),
+ tell: emZip.cwrap(`zip_source_tell`, `number`, [`number`]),
+ read: emZip.cwrap(`zip_source_read`, `number`, [`number`, `number`, `number`]),
+ error: emZip.cwrap(`zip_source_error`, `number`, [`number`])
+ },
+ struct: {
+ statS: emZip.cwrap(`zipstruct_statS`, `number`, []),
+ statSize: emZip.cwrap(`zipstruct_stat_size`, `number`, [`number`]),
+ statCompSize: emZip.cwrap(`zipstruct_stat_comp_size`, `number`, [`number`]),
+ statCompMethod: emZip.cwrap(`zipstruct_stat_comp_method`, `number`, [`number`]),
+ statMtime: emZip.cwrap(`zipstruct_stat_mtime`, `number`, [`number`]),
+ statCrc: emZip.cwrap(`zipstruct_stat_crc`, `number`, [`number`]),
+ errorS: emZip.cwrap(`zipstruct_errorS`, `number`, []),
+ errorCodeZip: emZip.cwrap(`zipstruct_error_code_zip`, `number`, [`number`])
+ }
+});
+
+function getArchivePart(path, extension) {
+ let idx = path.indexOf(extension);
+ if (idx <= 0)
+ return null;
+ let nextCharIdx = idx;
+ while (idx >= 0) {
+ nextCharIdx = idx + extension.length;
+ if (path[nextCharIdx] === ppath.sep)
+ break;
+ if (path[idx - 1] === ppath.sep)
+ return null;
+ idx = path.indexOf(extension, nextCharIdx);
+ }
+ if (path.length > nextCharIdx && path[nextCharIdx] !== ppath.sep)
+ return null;
+ return path.slice(0, nextCharIdx);
+}
+class ZipOpenFS extends MountFS {
+ static async openPromise(fn, opts) {
+ const zipOpenFs = new ZipOpenFS(opts);
+ try {
+ return await fn(zipOpenFs);
+ } finally {
+ zipOpenFs.saveAndClose();
+ }
+ }
+ constructor(opts = {}) {
+ const fileExtensions = opts.fileExtensions;
+ const readOnlyArchives = opts.readOnlyArchives;
+ const getMountPoint = typeof fileExtensions === `undefined` ? (path) => getArchivePart(path, `.zip`) : (path) => {
+ for (const extension of fileExtensions) {
+ const result = getArchivePart(path, extension);
+ if (result) {
+ return result;
+ }
+ }
+ return null;
+ };
+ const factorySync = (baseFs, p) => {
+ return new ZipFS(p, {
+ baseFs,
+ readOnly: readOnlyArchives,
+ stats: baseFs.statSync(p)
+ });
+ };
+ const factoryPromise = async (baseFs, p) => {
+ const zipOptions = {
+ baseFs,
+ readOnly: readOnlyArchives,
+ stats: await baseFs.statPromise(p)
+ };
+ return () => {
+ return new ZipFS(p, zipOptions);
+ };
+ };
+ super({
+ ...opts,
+ factorySync,
+ factoryPromise,
+ getMountPoint
+ });
+ }
+}
+
+const DEFAULT_COMPRESSION_LEVEL = `mixed`;
+function toUnixTimestamp(time) {
+ if (typeof time === `string` && String(+time) === time)
+ return +time;
+ if (typeof time === `number` && Number.isFinite(time)) {
+ if (time < 0) {
+ return Date.now() / 1e3;
+ } else {
+ return time;
+ }
+ }
+ if (nodeUtils.types.isDate(time))
+ return time.getTime() / 1e3;
+ throw new Error(`Invalid time`);
+}
+function makeEmptyArchive() {
+ return Buffer.from([
+ 80,
+ 75,
+ 5,
+ 6,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]);
+}
+class LibzipError extends Error {
+ constructor(message, code) {
+ super(message);
+ this.name = `Libzip Error`;
+ this.code = code;
+ }
+}
+class ZipFS extends BasePortableFakeFS {
+ constructor(source, opts = {}) {
+ super();
+ this.listings = /* @__PURE__ */ new Map();
+ this.entries = /* @__PURE__ */ new Map();
+ this.fileSources = /* @__PURE__ */ new Map();
+ this.fds = /* @__PURE__ */ new Map();
+ this.nextFd = 0;
+ this.ready = false;
+ this.readOnly = false;
+ const pathOptions = opts;
+ this.level = typeof pathOptions.level !== `undefined` ? pathOptions.level : DEFAULT_COMPRESSION_LEVEL;
+ source ??= makeEmptyArchive();
+ if (typeof source === `string`) {
+ const { baseFs = new NodeFS() } = pathOptions;
+ this.baseFs = baseFs;
+ this.path = source;
+ } else {
+ this.path = null;
+ this.baseFs = null;
+ }
+ if (opts.stats) {
+ this.stats = opts.stats;
+ } else {
+ if (typeof source === `string`) {
+ try {
+ this.stats = this.baseFs.statSync(source);
+ } catch (error) {
+ if (error.code === `ENOENT` && pathOptions.create) {
+ this.stats = makeDefaultStats();
+ } else {
+ throw error;
+ }
+ }
+ } else {
+ this.stats = makeDefaultStats();
+ }
+ }
+ this.libzip = getInstance();
+ const errPtr = this.libzip.malloc(4);
+ try {
+ let flags = 0;
+ if (opts.readOnly) {
+ flags |= this.libzip.ZIP_RDONLY;
+ this.readOnly = true;
+ }
+ if (typeof source === `string`)
+ source = pathOptions.create ? makeEmptyArchive() : this.baseFs.readFileSync(source);
+ const lzSource = this.allocateUnattachedSource(source);
+ try {
+ this.zip = this.libzip.openFromSource(lzSource, flags, errPtr);
+ this.lzSource = lzSource;
+ } catch (error) {
+ this.libzip.source.free(lzSource);
+ throw error;
+ }
+ if (this.zip === 0) {
+ const error = this.libzip.struct.errorS();
+ this.libzip.error.initWithCode(error, this.libzip.getValue(errPtr, `i32`));
+ throw this.makeLibzipError(error);
+ }
+ } finally {
+ this.libzip.free(errPtr);
+ }
+ this.listings.set(PortablePath.root, /* @__PURE__ */ new Set());
+ const entryCount = this.libzip.getNumEntries(this.zip, 0);
+ for (let t = 0; t < entryCount; ++t) {
+ const raw = this.libzip.getName(this.zip, t, 0);
+ if (ppath.isAbsolute(raw))
+ continue;
+ const p = ppath.resolve(PortablePath.root, raw);
+ this.registerEntry(p, t);
+ if (raw.endsWith(`/`)) {
+ this.registerListing(p);
+ }
+ }
+ this.symlinkCount = this.libzip.ext.countSymlinks(this.zip);
+ if (this.symlinkCount === -1)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ this.ready = true;
+ }
+ makeLibzipError(error) {
+ const errorCode = this.libzip.struct.errorCodeZip(error);
+ const strerror = this.libzip.error.strerror(error);
+ const libzipError = new LibzipError(strerror, this.libzip.errors[errorCode]);
+ if (errorCode === this.libzip.errors.ZIP_ER_CHANGED)
+ throw new Error(`Assertion failed: Unexpected libzip error: ${libzipError.message}`);
+ return libzipError;
+ }
+ getExtractHint(hints) {
+ for (const fileName of this.entries.keys()) {
+ const ext = this.pathUtils.extname(fileName);
+ if (hints.relevantExtensions.has(ext)) {
+ return true;
+ }
+ }
+ return false;
+ }
+ getAllFiles() {
+ return Array.from(this.entries.keys());
+ }
+ getRealPath() {
+ if (!this.path)
+ throw new Error(`ZipFS don't have real paths when loaded from a buffer`);
+ return this.path;
+ }
+ prepareClose() {
+ if (!this.ready)
+ throw EBUSY(`archive closed, close`);
+ unwatchAllFiles(this);
+ }
+ getBufferAndClose() {
+ this.prepareClose();
+ if (this.entries.size === 0) {
+ this.discardAndClose();
+ return makeEmptyArchive();
+ }
+ try {
+ this.libzip.source.keep(this.lzSource);
+ if (this.libzip.close(this.zip) === -1)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ if (this.libzip.source.open(this.lzSource) === -1)
+ throw this.makeLibzipError(this.libzip.source.error(this.lzSource));
+ if (this.libzip.source.seek(this.lzSource, 0, 0, this.libzip.SEEK_END) === -1)
+ throw this.makeLibzipError(this.libzip.source.error(this.lzSource));
+ const size = this.libzip.source.tell(this.lzSource);
+ if (size === -1)
+ throw this.makeLibzipError(this.libzip.source.error(this.lzSource));
+ if (this.libzip.source.seek(this.lzSource, 0, 0, this.libzip.SEEK_SET) === -1)
+ throw this.makeLibzipError(this.libzip.source.error(this.lzSource));
+ const buffer = this.libzip.malloc(size);
+ if (!buffer)
+ throw new Error(`Couldn't allocate enough memory`);
+ try {
+ const rc = this.libzip.source.read(this.lzSource, buffer, size);
+ if (rc === -1)
+ throw this.makeLibzipError(this.libzip.source.error(this.lzSource));
+ else if (rc < size)
+ throw new Error(`Incomplete read`);
+ else if (rc > size)
+ throw new Error(`Overread`);
+ const memory = this.libzip.HEAPU8.subarray(buffer, buffer + size);
+ return Buffer.from(memory);
+ } finally {
+ this.libzip.free(buffer);
+ }
+ } finally {
+ this.libzip.source.close(this.lzSource);
+ this.libzip.source.free(this.lzSource);
+ this.ready = false;
+ }
+ }
+ discardAndClose() {
+ this.prepareClose();
+ this.libzip.discard(this.zip);
+ this.ready = false;
+ }
+ saveAndClose() {
+ if (!this.path || !this.baseFs)
+ throw new Error(`ZipFS cannot be saved and must be discarded when loaded from a buffer`);
+ if (this.readOnly) {
+ this.discardAndClose();
+ return;
+ }
+ const newMode = this.baseFs.existsSync(this.path) || this.stats.mode === DEFAULT_MODE ? void 0 : this.stats.mode;
+ this.baseFs.writeFileSync(this.path, this.getBufferAndClose(), { mode: newMode });
+ this.ready = false;
+ }
+ resolve(p) {
+ return ppath.resolve(PortablePath.root, p);
+ }
+ async openPromise(p, flags, mode) {
+ return this.openSync(p, flags, mode);
+ }
+ openSync(p, flags, mode) {
+ const fd = this.nextFd++;
+ this.fds.set(fd, { cursor: 0, p });
+ return fd;
+ }
+ hasOpenFileHandles() {
+ return !!this.fds.size;
+ }
+ async opendirPromise(p, opts) {
+ return this.opendirSync(p, opts);
+ }
+ opendirSync(p, opts = {}) {
+ const resolvedP = this.resolveFilename(`opendir '${p}'`, p);
+ if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP))
+ throw ENOENT(`opendir '${p}'`);
+ const directoryListing = this.listings.get(resolvedP);
+ if (!directoryListing)
+ throw ENOTDIR(`opendir '${p}'`);
+ const entries = [...directoryListing];
+ const fd = this.openSync(resolvedP, `r`);
+ const onClose = () => {
+ this.closeSync(fd);
+ };
+ return opendir(this, resolvedP, entries, { onClose });
+ }
+ async readPromise(fd, buffer, offset, length, position) {
+ return this.readSync(fd, buffer, offset, length, position);
+ }
+ readSync(fd, buffer, offset = 0, length = buffer.byteLength, position = -1) {
+ const entry = this.fds.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`read`);
+ const realPosition = position === -1 || position === null ? entry.cursor : position;
+ const source = this.readFileSync(entry.p);
+ source.copy(buffer, offset, realPosition, realPosition + length);
+ const bytesRead = Math.max(0, Math.min(source.length - realPosition, length));
+ if (position === -1 || position === null)
+ entry.cursor += bytesRead;
+ return bytesRead;
+ }
+ async writePromise(fd, buffer, offset, length, position) {
+ if (typeof buffer === `string`) {
+ return this.writeSync(fd, buffer, position);
+ } else {
+ return this.writeSync(fd, buffer, offset, length, position);
+ }
+ }
+ writeSync(fd, buffer, offset, length, position) {
+ const entry = this.fds.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`read`);
+ throw new Error(`Unimplemented`);
+ }
+ async closePromise(fd) {
+ return this.closeSync(fd);
+ }
+ closeSync(fd) {
+ const entry = this.fds.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`read`);
+ this.fds.delete(fd);
+ }
+ createReadStream(p, { encoding } = {}) {
+ if (p === null)
+ throw new Error(`Unimplemented`);
+ const fd = this.openSync(p, `r`);
+ const stream$1 = Object.assign(
+ new stream.PassThrough({
+ emitClose: true,
+ autoDestroy: true,
+ destroy: (error, callback) => {
+ clearImmediate(immediate);
+ this.closeSync(fd);
+ callback(error);
+ }
+ }),
+ {
+ close() {
+ stream$1.destroy();
+ },
+ bytesRead: 0,
+ path: p,
+ pending: false
+ }
+ );
+ const immediate = setImmediate(async () => {
+ try {
+ const data = await this.readFilePromise(p, encoding);
+ stream$1.bytesRead = data.length;
+ stream$1.end(data);
+ } catch (error) {
+ stream$1.destroy(error);
+ }
+ });
+ return stream$1;
+ }
+ createWriteStream(p, { encoding } = {}) {
+ if (this.readOnly)
+ throw EROFS(`open '${p}'`);
+ if (p === null)
+ throw new Error(`Unimplemented`);
+ const chunks = [];
+ const fd = this.openSync(p, `w`);
+ const stream$1 = Object.assign(
+ new stream.PassThrough({
+ autoDestroy: true,
+ emitClose: true,
+ destroy: (error, callback) => {
+ try {
+ if (error) {
+ callback(error);
+ } else {
+ this.writeFileSync(p, Buffer.concat(chunks), encoding);
+ callback(null);
+ }
+ } catch (err) {
+ callback(err);
+ } finally {
+ this.closeSync(fd);
+ }
+ }
+ }),
+ {
+ close() {
+ stream$1.destroy();
+ },
+ bytesWritten: 0,
+ path: p,
+ pending: false
+ }
+ );
+ stream$1.on(`data`, (chunk) => {
+ const chunkBuffer = Buffer.from(chunk);
+ stream$1.bytesWritten += chunkBuffer.length;
+ chunks.push(chunkBuffer);
+ });
+ return stream$1;
+ }
+ async realpathPromise(p) {
+ return this.realpathSync(p);
+ }
+ realpathSync(p) {
+ const resolvedP = this.resolveFilename(`lstat '${p}'`, p);
+ if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP))
+ throw ENOENT(`lstat '${p}'`);
+ return resolvedP;
+ }
+ async existsPromise(p) {
+ return this.existsSync(p);
+ }
+ existsSync(p) {
+ if (!this.ready)
+ throw EBUSY(`archive closed, existsSync '${p}'`);
+ if (this.symlinkCount === 0) {
+ const resolvedP2 = ppath.resolve(PortablePath.root, p);
+ return this.entries.has(resolvedP2) || this.listings.has(resolvedP2);
+ }
+ let resolvedP;
+ try {
+ resolvedP = this.resolveFilename(`stat '${p}'`, p, void 0, false);
+ } catch (error) {
+ return false;
+ }
+ if (resolvedP === void 0)
+ return false;
+ return this.entries.has(resolvedP) || this.listings.has(resolvedP);
+ }
+ async accessPromise(p, mode) {
+ return this.accessSync(p, mode);
+ }
+ accessSync(p, mode = fs.constants.F_OK) {
+ const resolvedP = this.resolveFilename(`access '${p}'`, p);
+ if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP))
+ throw ENOENT(`access '${p}'`);
+ if (this.readOnly && mode & fs.constants.W_OK) {
+ throw EROFS(`access '${p}'`);
+ }
+ }
+ async statPromise(p, opts = { bigint: false }) {
+ if (opts.bigint)
+ return this.statSync(p, { bigint: true });
+ return this.statSync(p);
+ }
+ statSync(p, opts = { bigint: false, throwIfNoEntry: true }) {
+ const resolvedP = this.resolveFilename(`stat '${p}'`, p, void 0, opts.throwIfNoEntry);
+ if (resolvedP === void 0)
+ return void 0;
+ if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) {
+ if (opts.throwIfNoEntry === false)
+ return void 0;
+ throw ENOENT(`stat '${p}'`);
+ }
+ if (p[p.length - 1] === `/` && !this.listings.has(resolvedP))
+ throw ENOTDIR(`stat '${p}'`);
+ return this.statImpl(`stat '${p}'`, resolvedP, opts);
+ }
+ async fstatPromise(fd, opts) {
+ return this.fstatSync(fd, opts);
+ }
+ fstatSync(fd, opts) {
+ const entry = this.fds.get(fd);
+ if (typeof entry === `undefined`)
+ throw EBADF(`fstatSync`);
+ const { p } = entry;
+ const resolvedP = this.resolveFilename(`stat '${p}'`, p);
+ if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP))
+ throw ENOENT(`stat '${p}'`);
+ if (p[p.length - 1] === `/` && !this.listings.has(resolvedP))
+ throw ENOTDIR(`stat '${p}'`);
+ return this.statImpl(`fstat '${p}'`, resolvedP, opts);
+ }
+ async lstatPromise(p, opts = { bigint: false }) {
+ if (opts.bigint)
+ return this.lstatSync(p, { bigint: true });
+ return this.lstatSync(p);
+ }
+ lstatSync(p, opts = { bigint: false, throwIfNoEntry: true }) {
+ const resolvedP = this.resolveFilename(`lstat '${p}'`, p, false, opts.throwIfNoEntry);
+ if (resolvedP === void 0)
+ return void 0;
+ if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP)) {
+ if (opts.throwIfNoEntry === false)
+ return void 0;
+ throw ENOENT(`lstat '${p}'`);
+ }
+ if (p[p.length - 1] === `/` && !this.listings.has(resolvedP))
+ throw ENOTDIR(`lstat '${p}'`);
+ return this.statImpl(`lstat '${p}'`, resolvedP, opts);
+ }
+ statImpl(reason, p, opts = {}) {
+ const entry = this.entries.get(p);
+ if (typeof entry !== `undefined`) {
+ const stat = this.libzip.struct.statS();
+ const rc = this.libzip.statIndex(this.zip, entry, 0, 0, stat);
+ if (rc === -1)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ const uid = this.stats.uid;
+ const gid = this.stats.gid;
+ const size = this.libzip.struct.statSize(stat) >>> 0;
+ const blksize = 512;
+ const blocks = Math.ceil(size / blksize);
+ const mtimeMs = (this.libzip.struct.statMtime(stat) >>> 0) * 1e3;
+ const atimeMs = mtimeMs;
+ const birthtimeMs = mtimeMs;
+ const ctimeMs = mtimeMs;
+ const atime = new Date(atimeMs);
+ const birthtime = new Date(birthtimeMs);
+ const ctime = new Date(ctimeMs);
+ const mtime = new Date(mtimeMs);
+ const type = this.listings.has(p) ? fs.constants.S_IFDIR : this.isSymbolicLink(entry) ? fs.constants.S_IFLNK : fs.constants.S_IFREG;
+ const defaultMode = type === fs.constants.S_IFDIR ? 493 : 420;
+ const mode = type | this.getUnixMode(entry, defaultMode) & 511;
+ const crc = this.libzip.struct.statCrc(stat);
+ const statInstance = Object.assign(new StatEntry(), { uid, gid, size, blksize, blocks, atime, birthtime, ctime, mtime, atimeMs, birthtimeMs, ctimeMs, mtimeMs, mode, crc });
+ return opts.bigint === true ? convertToBigIntStats(statInstance) : statInstance;
+ }
+ if (this.listings.has(p)) {
+ const uid = this.stats.uid;
+ const gid = this.stats.gid;
+ const size = 0;
+ const blksize = 512;
+ const blocks = 0;
+ const atimeMs = this.stats.mtimeMs;
+ const birthtimeMs = this.stats.mtimeMs;
+ const ctimeMs = this.stats.mtimeMs;
+ const mtimeMs = this.stats.mtimeMs;
+ const atime = new Date(atimeMs);
+ const birthtime = new Date(birthtimeMs);
+ const ctime = new Date(ctimeMs);
+ const mtime = new Date(mtimeMs);
+ const mode = fs.constants.S_IFDIR | 493;
+ const crc = 0;
+ const statInstance = Object.assign(new StatEntry(), { uid, gid, size, blksize, blocks, atime, birthtime, ctime, mtime, atimeMs, birthtimeMs, ctimeMs, mtimeMs, mode, crc });
+ return opts.bigint === true ? convertToBigIntStats(statInstance) : statInstance;
+ }
+ throw new Error(`Unreachable`);
+ }
+ getUnixMode(index, defaultMode) {
+ const rc = this.libzip.file.getExternalAttributes(this.zip, index, 0, 0, this.libzip.uint08S, this.libzip.uint32S);
+ if (rc === -1)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ const opsys = this.libzip.getValue(this.libzip.uint08S, `i8`) >>> 0;
+ if (opsys !== this.libzip.ZIP_OPSYS_UNIX)
+ return defaultMode;
+ return this.libzip.getValue(this.libzip.uint32S, `i32`) >>> 16;
+ }
+ registerListing(p) {
+ const existingListing = this.listings.get(p);
+ if (existingListing)
+ return existingListing;
+ const parentListing = this.registerListing(ppath.dirname(p));
+ parentListing.add(ppath.basename(p));
+ const newListing = /* @__PURE__ */ new Set();
+ this.listings.set(p, newListing);
+ return newListing;
+ }
+ registerEntry(p, index) {
+ const parentListing = this.registerListing(ppath.dirname(p));
+ parentListing.add(ppath.basename(p));
+ this.entries.set(p, index);
+ }
+ unregisterListing(p) {
+ this.listings.delete(p);
+ const parentListing = this.listings.get(ppath.dirname(p));
+ parentListing?.delete(ppath.basename(p));
+ }
+ unregisterEntry(p) {
+ this.unregisterListing(p);
+ const entry = this.entries.get(p);
+ this.entries.delete(p);
+ if (typeof entry === `undefined`)
+ return;
+ this.fileSources.delete(entry);
+ if (this.isSymbolicLink(entry)) {
+ this.symlinkCount--;
+ }
+ }
+ deleteEntry(p, index) {
+ this.unregisterEntry(p);
+ const rc = this.libzip.delete(this.zip, index);
+ if (rc === -1) {
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ }
+ }
+ resolveFilename(reason, p, resolveLastComponent = true, throwIfNoEntry = true) {
+ if (!this.ready)
+ throw EBUSY(`archive closed, ${reason}`);
+ let resolvedP = ppath.resolve(PortablePath.root, p);
+ if (resolvedP === `/`)
+ return PortablePath.root;
+ const fileIndex = this.entries.get(resolvedP);
+ if (resolveLastComponent && fileIndex !== void 0) {
+ if (this.symlinkCount !== 0 && this.isSymbolicLink(fileIndex)) {
+ const target = this.getFileSource(fileIndex).toString();
+ return this.resolveFilename(reason, ppath.resolve(ppath.dirname(resolvedP), target), true, throwIfNoEntry);
+ } else {
+ return resolvedP;
+ }
+ }
+ while (true) {
+ const parentP = this.resolveFilename(reason, ppath.dirname(resolvedP), true, throwIfNoEntry);
+ if (parentP === void 0)
+ return parentP;
+ const isDir = this.listings.has(parentP);
+ const doesExist = this.entries.has(parentP);
+ if (!isDir && !doesExist) {
+ if (throwIfNoEntry === false)
+ return void 0;
+ throw ENOENT(reason);
+ }
+ if (!isDir)
+ throw ENOTDIR(reason);
+ resolvedP = ppath.resolve(parentP, ppath.basename(resolvedP));
+ if (!resolveLastComponent || this.symlinkCount === 0)
+ break;
+ const index = this.libzip.name.locate(this.zip, resolvedP.slice(1), 0);
+ if (index === -1)
+ break;
+ if (this.isSymbolicLink(index)) {
+ const target = this.getFileSource(index).toString();
+ resolvedP = ppath.resolve(ppath.dirname(resolvedP), target);
+ } else {
+ break;
+ }
+ }
+ return resolvedP;
+ }
+ allocateBuffer(content) {
+ if (!Buffer.isBuffer(content))
+ content = Buffer.from(content);
+ const buffer = this.libzip.malloc(content.byteLength);
+ if (!buffer)
+ throw new Error(`Couldn't allocate enough memory`);
+ const heap = new Uint8Array(this.libzip.HEAPU8.buffer, buffer, content.byteLength);
+ heap.set(content);
+ return { buffer, byteLength: content.byteLength };
+ }
+ allocateUnattachedSource(content) {
+ const error = this.libzip.struct.errorS();
+ const { buffer, byteLength } = this.allocateBuffer(content);
+ const source = this.libzip.source.fromUnattachedBuffer(buffer, byteLength, 0, 1, error);
+ if (source === 0) {
+ this.libzip.free(error);
+ throw this.makeLibzipError(error);
+ }
+ return source;
+ }
+ allocateSource(content) {
+ const { buffer, byteLength } = this.allocateBuffer(content);
+ const source = this.libzip.source.fromBuffer(this.zip, buffer, byteLength, 0, 1);
+ if (source === 0) {
+ this.libzip.free(buffer);
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ }
+ return source;
+ }
+ setFileSource(p, content) {
+ const buffer = Buffer.isBuffer(content) ? content : Buffer.from(content);
+ const target = ppath.relative(PortablePath.root, p);
+ const lzSource = this.allocateSource(content);
+ try {
+ const newIndex = this.libzip.file.add(this.zip, target, lzSource, this.libzip.ZIP_FL_OVERWRITE);
+ if (newIndex === -1)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ if (this.level !== `mixed`) {
+ const method = this.level === 0 ? this.libzip.ZIP_CM_STORE : this.libzip.ZIP_CM_DEFLATE;
+ const rc = this.libzip.file.setCompression(this.zip, newIndex, 0, method, this.level);
+ if (rc === -1) {
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ }
+ }
+ this.fileSources.set(newIndex, buffer);
+ return newIndex;
+ } catch (error) {
+ this.libzip.source.free(lzSource);
+ throw error;
+ }
+ }
+ isSymbolicLink(index) {
+ if (this.symlinkCount === 0)
+ return false;
+ const attrs = this.libzip.file.getExternalAttributes(this.zip, index, 0, 0, this.libzip.uint08S, this.libzip.uint32S);
+ if (attrs === -1)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ const opsys = this.libzip.getValue(this.libzip.uint08S, `i8`) >>> 0;
+ if (opsys !== this.libzip.ZIP_OPSYS_UNIX)
+ return false;
+ const attributes = this.libzip.getValue(this.libzip.uint32S, `i32`) >>> 16;
+ return (attributes & fs.constants.S_IFMT) === fs.constants.S_IFLNK;
+ }
+ getFileSource(index, opts = { asyncDecompress: false }) {
+ const cachedFileSource = this.fileSources.get(index);
+ if (typeof cachedFileSource !== `undefined`)
+ return cachedFileSource;
+ const stat = this.libzip.struct.statS();
+ const rc = this.libzip.statIndex(this.zip, index, 0, 0, stat);
+ if (rc === -1)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ const size = this.libzip.struct.statCompSize(stat);
+ const compressionMethod = this.libzip.struct.statCompMethod(stat);
+ const buffer = this.libzip.malloc(size);
+ try {
+ const file = this.libzip.fopenIndex(this.zip, index, 0, this.libzip.ZIP_FL_COMPRESSED);
+ if (file === 0)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ try {
+ const rc2 = this.libzip.fread(file, buffer, size, 0);
+ if (rc2 === -1)
+ throw this.makeLibzipError(this.libzip.file.getError(file));
+ else if (rc2 < size)
+ throw new Error(`Incomplete read`);
+ else if (rc2 > size)
+ throw new Error(`Overread`);
+ const memory = this.libzip.HEAPU8.subarray(buffer, buffer + size);
+ const data = Buffer.from(memory);
+ if (compressionMethod === 0) {
+ this.fileSources.set(index, data);
+ return data;
+ } else if (opts.asyncDecompress) {
+ return new Promise((resolve, reject) => {
+ zlib__default.default.inflateRaw(data, (error, result) => {
+ if (error) {
+ reject(error);
+ } else {
+ this.fileSources.set(index, result);
+ resolve(result);
+ }
+ });
+ });
+ } else {
+ const decompressedData = zlib__default.default.inflateRawSync(data);
+ this.fileSources.set(index, decompressedData);
+ return decompressedData;
+ }
+ } finally {
+ this.libzip.fclose(file);
+ }
+ } finally {
+ this.libzip.free(buffer);
+ }
+ }
+ async fchmodPromise(fd, mask) {
+ return this.chmodPromise(this.fdToPath(fd, `fchmod`), mask);
+ }
+ fchmodSync(fd, mask) {
+ return this.chmodSync(this.fdToPath(fd, `fchmodSync`), mask);
+ }
+ async chmodPromise(p, mask) {
+ return this.chmodSync(p, mask);
+ }
+ chmodSync(p, mask) {
+ if (this.readOnly)
+ throw EROFS(`chmod '${p}'`);
+ mask &= 493;
+ const resolvedP = this.resolveFilename(`chmod '${p}'`, p, false);
+ const entry = this.entries.get(resolvedP);
+ if (typeof entry === `undefined`)
+ throw new Error(`Assertion failed: The entry should have been registered (${resolvedP})`);
+ const oldMod = this.getUnixMode(entry, fs.constants.S_IFREG | 0);
+ const newMod = oldMod & ~511 | mask;
+ const rc = this.libzip.file.setExternalAttributes(this.zip, entry, 0, 0, this.libzip.ZIP_OPSYS_UNIX, newMod << 16);
+ if (rc === -1) {
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ }
+ }
+ async fchownPromise(fd, uid, gid) {
+ return this.chownPromise(this.fdToPath(fd, `fchown`), uid, gid);
+ }
+ fchownSync(fd, uid, gid) {
+ return this.chownSync(this.fdToPath(fd, `fchownSync`), uid, gid);
+ }
+ async chownPromise(p, uid, gid) {
+ return this.chownSync(p, uid, gid);
+ }
+ chownSync(p, uid, gid) {
+ throw new Error(`Unimplemented`);
+ }
+ async renamePromise(oldP, newP) {
+ return this.renameSync(oldP, newP);
+ }
+ renameSync(oldP, newP) {
+ throw new Error(`Unimplemented`);
+ }
+ async copyFilePromise(sourceP, destP, flags) {
+ const { indexSource, indexDest, resolvedDestP } = this.prepareCopyFile(sourceP, destP, flags);
+ const source = await this.getFileSource(indexSource, { asyncDecompress: true });
+ const newIndex = this.setFileSource(resolvedDestP, source);
+ if (newIndex !== indexDest) {
+ this.registerEntry(resolvedDestP, newIndex);
+ }
+ }
+ copyFileSync(sourceP, destP, flags = 0) {
+ const { indexSource, indexDest, resolvedDestP } = this.prepareCopyFile(sourceP, destP, flags);
+ const source = this.getFileSource(indexSource);
+ const newIndex = this.setFileSource(resolvedDestP, source);
+ if (newIndex !== indexDest) {
+ this.registerEntry(resolvedDestP, newIndex);
+ }
+ }
+ prepareCopyFile(sourceP, destP, flags = 0) {
+ if (this.readOnly)
+ throw EROFS(`copyfile '${sourceP} -> '${destP}'`);
+ if ((flags & fs.constants.COPYFILE_FICLONE_FORCE) !== 0)
+ throw ENOSYS(`unsupported clone operation`, `copyfile '${sourceP}' -> ${destP}'`);
+ const resolvedSourceP = this.resolveFilename(`copyfile '${sourceP} -> ${destP}'`, sourceP);
+ const indexSource = this.entries.get(resolvedSourceP);
+ if (typeof indexSource === `undefined`)
+ throw EINVAL(`copyfile '${sourceP}' -> '${destP}'`);
+ const resolvedDestP = this.resolveFilename(`copyfile '${sourceP}' -> ${destP}'`, destP);
+ const indexDest = this.entries.get(resolvedDestP);
+ if ((flags & (fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE_FORCE)) !== 0 && typeof indexDest !== `undefined`)
+ throw EEXIST(`copyfile '${sourceP}' -> '${destP}'`);
+ return {
+ indexSource,
+ resolvedDestP,
+ indexDest
+ };
+ }
+ async appendFilePromise(p, content, opts) {
+ if (this.readOnly)
+ throw EROFS(`open '${p}'`);
+ if (typeof opts === `undefined`)
+ opts = { flag: `a` };
+ else if (typeof opts === `string`)
+ opts = { flag: `a`, encoding: opts };
+ else if (typeof opts.flag === `undefined`)
+ opts = { flag: `a`, ...opts };
+ return this.writeFilePromise(p, content, opts);
+ }
+ appendFileSync(p, content, opts = {}) {
+ if (this.readOnly)
+ throw EROFS(`open '${p}'`);
+ if (typeof opts === `undefined`)
+ opts = { flag: `a` };
+ else if (typeof opts === `string`)
+ opts = { flag: `a`, encoding: opts };
+ else if (typeof opts.flag === `undefined`)
+ opts = { flag: `a`, ...opts };
+ return this.writeFileSync(p, content, opts);
+ }
+ fdToPath(fd, reason) {
+ const path = this.fds.get(fd)?.p;
+ if (typeof path === `undefined`)
+ throw EBADF(reason);
+ return path;
+ }
+ async writeFilePromise(p, content, opts) {
+ const { encoding, mode, index, resolvedP } = this.prepareWriteFile(p, opts);
+ if (index !== void 0 && typeof opts === `object` && opts.flag && opts.flag.includes(`a`))
+ content = Buffer.concat([await this.getFileSource(index, { asyncDecompress: true }), Buffer.from(content)]);
+ if (encoding !== null)
+ content = content.toString(encoding);
+ const newIndex = this.setFileSource(resolvedP, content);
+ if (newIndex !== index)
+ this.registerEntry(resolvedP, newIndex);
+ if (mode !== null) {
+ await this.chmodPromise(resolvedP, mode);
+ }
+ }
+ writeFileSync(p, content, opts) {
+ const { encoding, mode, index, resolvedP } = this.prepareWriteFile(p, opts);
+ if (index !== void 0 && typeof opts === `object` && opts.flag && opts.flag.includes(`a`))
+ content = Buffer.concat([this.getFileSource(index), Buffer.from(content)]);
+ if (encoding !== null)
+ content = content.toString(encoding);
+ const newIndex = this.setFileSource(resolvedP, content);
+ if (newIndex !== index)
+ this.registerEntry(resolvedP, newIndex);
+ if (mode !== null) {
+ this.chmodSync(resolvedP, mode);
+ }
+ }
+ prepareWriteFile(p, opts) {
+ if (typeof p === `number`)
+ p = this.fdToPath(p, `read`);
+ if (this.readOnly)
+ throw EROFS(`open '${p}'`);
+ const resolvedP = this.resolveFilename(`open '${p}'`, p);
+ if (this.listings.has(resolvedP))
+ throw EISDIR(`open '${p}'`);
+ let encoding = null, mode = null;
+ if (typeof opts === `string`) {
+ encoding = opts;
+ } else if (typeof opts === `object`) {
+ ({
+ encoding = null,
+ mode = null
+ } = opts);
+ }
+ const index = this.entries.get(resolvedP);
+ return {
+ encoding,
+ mode,
+ resolvedP,
+ index
+ };
+ }
+ async unlinkPromise(p) {
+ return this.unlinkSync(p);
+ }
+ unlinkSync(p) {
+ if (this.readOnly)
+ throw EROFS(`unlink '${p}'`);
+ const resolvedP = this.resolveFilename(`unlink '${p}'`, p);
+ if (this.listings.has(resolvedP))
+ throw EISDIR(`unlink '${p}'`);
+ const index = this.entries.get(resolvedP);
+ if (typeof index === `undefined`)
+ throw EINVAL(`unlink '${p}'`);
+ this.deleteEntry(resolvedP, index);
+ }
+ async utimesPromise(p, atime, mtime) {
+ return this.utimesSync(p, atime, mtime);
+ }
+ utimesSync(p, atime, mtime) {
+ if (this.readOnly)
+ throw EROFS(`utimes '${p}'`);
+ const resolvedP = this.resolveFilename(`utimes '${p}'`, p);
+ this.utimesImpl(resolvedP, mtime);
+ }
+ async lutimesPromise(p, atime, mtime) {
+ return this.lutimesSync(p, atime, mtime);
+ }
+ lutimesSync(p, atime, mtime) {
+ if (this.readOnly)
+ throw EROFS(`lutimes '${p}'`);
+ const resolvedP = this.resolveFilename(`utimes '${p}'`, p, false);
+ this.utimesImpl(resolvedP, mtime);
+ }
+ utimesImpl(resolvedP, mtime) {
+ if (this.listings.has(resolvedP)) {
+ if (!this.entries.has(resolvedP))
+ this.hydrateDirectory(resolvedP);
+ }
+ const entry = this.entries.get(resolvedP);
+ if (entry === void 0)
+ throw new Error(`Unreachable`);
+ const rc = this.libzip.file.setMtime(this.zip, entry, 0, toUnixTimestamp(mtime), 0);
+ if (rc === -1) {
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ }
+ }
+ async mkdirPromise(p, opts) {
+ return this.mkdirSync(p, opts);
+ }
+ mkdirSync(p, { mode = 493, recursive = false } = {}) {
+ if (recursive)
+ return this.mkdirpSync(p, { chmod: mode });
+ if (this.readOnly)
+ throw EROFS(`mkdir '${p}'`);
+ const resolvedP = this.resolveFilename(`mkdir '${p}'`, p);
+ if (this.entries.has(resolvedP) || this.listings.has(resolvedP))
+ throw EEXIST(`mkdir '${p}'`);
+ this.hydrateDirectory(resolvedP);
+ this.chmodSync(resolvedP, mode);
+ return void 0;
+ }
+ async rmdirPromise(p, opts) {
+ return this.rmdirSync(p, opts);
+ }
+ rmdirSync(p, { recursive = false } = {}) {
+ if (this.readOnly)
+ throw EROFS(`rmdir '${p}'`);
+ if (recursive) {
+ this.removeSync(p);
+ return;
+ }
+ const resolvedP = this.resolveFilename(`rmdir '${p}'`, p);
+ const directoryListing = this.listings.get(resolvedP);
+ if (!directoryListing)
+ throw ENOTDIR(`rmdir '${p}'`);
+ if (directoryListing.size > 0)
+ throw ENOTEMPTY(`rmdir '${p}'`);
+ const index = this.entries.get(resolvedP);
+ if (typeof index === `undefined`)
+ throw EINVAL(`rmdir '${p}'`);
+ this.deleteEntry(p, index);
+ }
+ hydrateDirectory(resolvedP) {
+ const index = this.libzip.dir.add(this.zip, ppath.relative(PortablePath.root, resolvedP));
+ if (index === -1)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ this.registerListing(resolvedP);
+ this.registerEntry(resolvedP, index);
+ return index;
+ }
+ async linkPromise(existingP, newP) {
+ return this.linkSync(existingP, newP);
+ }
+ linkSync(existingP, newP) {
+ throw EOPNOTSUPP(`link '${existingP}' -> '${newP}'`);
+ }
+ async symlinkPromise(target, p) {
+ return this.symlinkSync(target, p);
+ }
+ symlinkSync(target, p) {
+ if (this.readOnly)
+ throw EROFS(`symlink '${target}' -> '${p}'`);
+ const resolvedP = this.resolveFilename(`symlink '${target}' -> '${p}'`, p);
+ if (this.listings.has(resolvedP))
+ throw EISDIR(`symlink '${target}' -> '${p}'`);
+ if (this.entries.has(resolvedP))
+ throw EEXIST(`symlink '${target}' -> '${p}'`);
+ const index = this.setFileSource(resolvedP, target);
+ this.registerEntry(resolvedP, index);
+ const rc = this.libzip.file.setExternalAttributes(this.zip, index, 0, 0, this.libzip.ZIP_OPSYS_UNIX, (fs.constants.S_IFLNK | 511) << 16);
+ if (rc === -1)
+ throw this.makeLibzipError(this.libzip.getError(this.zip));
+ this.symlinkCount += 1;
+ }
+ async readFilePromise(p, encoding) {
+ if (typeof encoding === `object`)
+ encoding = encoding ? encoding.encoding : void 0;
+ const data = await this.readFileBuffer(p, { asyncDecompress: true });
+ return encoding ? data.toString(encoding) : data;
+ }
+ readFileSync(p, encoding) {
+ if (typeof encoding === `object`)
+ encoding = encoding ? encoding.encoding : void 0;
+ const data = this.readFileBuffer(p);
+ return encoding ? data.toString(encoding) : data;
+ }
+ readFileBuffer(p, opts = { asyncDecompress: false }) {
+ if (typeof p === `number`)
+ p = this.fdToPath(p, `read`);
+ const resolvedP = this.resolveFilename(`open '${p}'`, p);
+ if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP))
+ throw ENOENT(`open '${p}'`);
+ if (p[p.length - 1] === `/` && !this.listings.has(resolvedP))
+ throw ENOTDIR(`open '${p}'`);
+ if (this.listings.has(resolvedP))
+ throw EISDIR(`read`);
+ const entry = this.entries.get(resolvedP);
+ if (entry === void 0)
+ throw new Error(`Unreachable`);
+ return this.getFileSource(entry, opts);
+ }
+ async readdirPromise(p, opts) {
+ return this.readdirSync(p, opts);
+ }
+ readdirSync(p, opts) {
+ const resolvedP = this.resolveFilename(`scandir '${p}'`, p);
+ if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP))
+ throw ENOENT(`scandir '${p}'`);
+ const directoryListing = this.listings.get(resolvedP);
+ if (!directoryListing)
+ throw ENOTDIR(`scandir '${p}'`);
+ if (opts?.recursive) {
+ if (opts?.withFileTypes) {
+ const entries = Array.from(directoryListing, (name) => {
+ return Object.assign(this.statImpl(`lstat`, ppath.join(p, name)), {
+ name,
+ path: PortablePath.dot
+ });
+ });
+ for (const entry of entries) {
+ if (!entry.isDirectory())
+ continue;
+ const subPath = ppath.join(entry.path, entry.name);
+ const subListing = this.listings.get(ppath.join(resolvedP, subPath));
+ for (const child of subListing) {
+ entries.push(Object.assign(this.statImpl(`lstat`, ppath.join(p, subPath, child)), {
+ name: child,
+ path: subPath
+ }));
+ }
+ }
+ return entries;
+ } else {
+ const entries = [...directoryListing];
+ for (const subPath of entries) {
+ const subListing = this.listings.get(ppath.join(resolvedP, subPath));
+ if (typeof subListing === `undefined`)
+ continue;
+ for (const child of subListing) {
+ entries.push(ppath.join(subPath, child));
+ }
+ }
+ return entries;
+ }
+ } else if (opts?.withFileTypes) {
+ return Array.from(directoryListing, (name) => {
+ return Object.assign(this.statImpl(`lstat`, ppath.join(p, name)), {
+ name,
+ path: void 0
+ });
+ });
+ } else {
+ return [...directoryListing];
+ }
+ }
+ async readlinkPromise(p) {
+ const entry = this.prepareReadlink(p);
+ return (await this.getFileSource(entry, { asyncDecompress: true })).toString();
+ }
+ readlinkSync(p) {
+ const entry = this.prepareReadlink(p);
+ return this.getFileSource(entry).toString();
+ }
+ prepareReadlink(p) {
+ const resolvedP = this.resolveFilename(`readlink '${p}'`, p, false);
+ if (!this.entries.has(resolvedP) && !this.listings.has(resolvedP))
+ throw ENOENT(`readlink '${p}'`);
+ if (p[p.length - 1] === `/` && !this.listings.has(resolvedP))
+ throw ENOTDIR(`open '${p}'`);
+ if (this.listings.has(resolvedP))
+ throw EINVAL(`readlink '${p}'`);
+ const entry = this.entries.get(resolvedP);
+ if (entry === void 0)
+ throw new Error(`Unreachable`);
+ if (!this.isSymbolicLink(entry))
+ throw EINVAL(`readlink '${p}'`);
+ return entry;
+ }
+ async truncatePromise(p, len = 0) {
+ const resolvedP = this.resolveFilename(`open '${p}'`, p);
+ const index = this.entries.get(resolvedP);
+ if (typeof index === `undefined`)
+ throw EINVAL(`open '${p}'`);
+ const source = await this.getFileSource(index, { asyncDecompress: true });
+ const truncated = Buffer.alloc(len, 0);
+ source.copy(truncated);
+ return await this.writeFilePromise(p, truncated);
+ }
+ truncateSync(p, len = 0) {
+ const resolvedP = this.resolveFilename(`open '${p}'`, p);
+ const index = this.entries.get(resolvedP);
+ if (typeof index === `undefined`)
+ throw EINVAL(`open '${p}'`);
+ const source = this.getFileSource(index);
+ const truncated = Buffer.alloc(len, 0);
+ source.copy(truncated);
+ return this.writeFileSync(p, truncated);
+ }
+ async ftruncatePromise(fd, len) {
+ return this.truncatePromise(this.fdToPath(fd, `ftruncate`), len);
+ }
+ ftruncateSync(fd, len) {
+ return this.truncateSync(this.fdToPath(fd, `ftruncateSync`), len);
+ }
+ watch(p, a, b) {
+ let persistent;
+ switch (typeof a) {
+ case `function`:
+ case `string`:
+ case `undefined`:
+ {
+ persistent = true;
+ }
+ break;
+ default:
+ {
+ ({ persistent = true } = a);
+ }
+ break;
+ }
+ if (!persistent)
+ return { on: () => {
+ }, close: () => {
+ } };
+ const interval = setInterval(() => {
+ }, 24 * 60 * 60 * 1e3);
+ return { on: () => {
+ }, close: () => {
+ clearInterval(interval);
+ } };
+ }
+ watchFile(p, a, b) {
+ const resolvedP = ppath.resolve(PortablePath.root, p);
+ return watchFile(this, resolvedP, a, b);
+ }
+ unwatchFile(p, cb) {
+ const resolvedP = ppath.resolve(PortablePath.root, p);
+ return unwatchFile(this, resolvedP, cb);
+ }
+}
+
+setFactory(() => {
+ const emZip = createModule();
+ return makeInterface(emZip);
+});
+
+var ErrorCode = /* @__PURE__ */ ((ErrorCode2) => {
+ ErrorCode2["API_ERROR"] = `API_ERROR`;
+ ErrorCode2["BUILTIN_NODE_RESOLUTION_FAILED"] = `BUILTIN_NODE_RESOLUTION_FAILED`;
+ ErrorCode2["EXPORTS_RESOLUTION_FAILED"] = `EXPORTS_RESOLUTION_FAILED`;
+ ErrorCode2["MISSING_DEPENDENCY"] = `MISSING_DEPENDENCY`;
+ ErrorCode2["MISSING_PEER_DEPENDENCY"] = `MISSING_PEER_DEPENDENCY`;
+ ErrorCode2["QUALIFIED_PATH_RESOLUTION_FAILED"] = `QUALIFIED_PATH_RESOLUTION_FAILED`;
+ ErrorCode2["INTERNAL"] = `INTERNAL`;
+ ErrorCode2["UNDECLARED_DEPENDENCY"] = `UNDECLARED_DEPENDENCY`;
+ ErrorCode2["UNSUPPORTED"] = `UNSUPPORTED`;
+ return ErrorCode2;
+})(ErrorCode || {});
+const MODULE_NOT_FOUND_ERRORS = /* @__PURE__ */ new Set([
+ "BUILTIN_NODE_RESOLUTION_FAILED" /* BUILTIN_NODE_RESOLUTION_FAILED */,
+ "MISSING_DEPENDENCY" /* MISSING_DEPENDENCY */,
+ "MISSING_PEER_DEPENDENCY" /* MISSING_PEER_DEPENDENCY */,
+ "QUALIFIED_PATH_RESOLUTION_FAILED" /* QUALIFIED_PATH_RESOLUTION_FAILED */,
+ "UNDECLARED_DEPENDENCY" /* UNDECLARED_DEPENDENCY */
+]);
+function makeError(pnpCode, message, data = {}, code) {
+ code ??= MODULE_NOT_FOUND_ERRORS.has(pnpCode) ? `MODULE_NOT_FOUND` : pnpCode;
+ const propertySpec = {
+ configurable: true,
+ writable: true,
+ enumerable: false
+ };
+ return Object.defineProperties(new Error(message), {
+ code: {
+ ...propertySpec,
+ value: code
+ },
+ pnpCode: {
+ ...propertySpec,
+ value: pnpCode
+ },
+ data: {
+ ...propertySpec,
+ value: data
+ }
+ });
+}
+function getIssuerModule(parent) {
+ let issuer = parent;
+ while (issuer && (issuer.id === `[eval]` || issuer.id === `` || !issuer.filename))
+ issuer = issuer.parent;
+ return issuer || null;
+}
+function getPathForDisplay(p) {
+ return npath.normalize(npath.fromPortablePath(p));
+}
+
+const [major, minor] = process.versions.node.split(`.`).map((value) => parseInt(value, 10));
+const WATCH_MODE_MESSAGE_USES_ARRAYS = major > 19 || major === 19 && minor >= 2 || major === 18 && minor >= 13;
+
+function readPackageScope(checkPath) {
+ const rootSeparatorIndex = checkPath.indexOf(npath.sep);
+ let separatorIndex;
+ do {
+ separatorIndex = checkPath.lastIndexOf(npath.sep);
+ checkPath = checkPath.slice(0, separatorIndex);
+ if (checkPath.endsWith(`${npath.sep}node_modules`))
+ return false;
+ const pjson = readPackage(checkPath + npath.sep);
+ if (pjson) {
+ return {
+ data: pjson,
+ path: checkPath
+ };
+ }
+ } while (separatorIndex > rootSeparatorIndex);
+ return false;
+}
+function readPackage(requestPath) {
+ const jsonPath = npath.resolve(requestPath, `package.json`);
+ if (!fs__default.default.existsSync(jsonPath))
+ return null;
+ return JSON.parse(fs__default.default.readFileSync(jsonPath, `utf8`));
+}
+function ERR_REQUIRE_ESM(filename, parentPath = null) {
+ const basename = parentPath && path__default.default.basename(filename) === path__default.default.basename(parentPath) ? filename : path__default.default.basename(filename);
+ const msg = `require() of ES Module ${filename}${parentPath ? ` from ${parentPath}` : ``} not supported.
+Instead change the require of ${basename} in ${parentPath} to a dynamic import() which is available in all CommonJS modules.`;
+ const err = new Error(msg);
+ err.code = `ERR_REQUIRE_ESM`;
+ return err;
+}
+function reportRequiredFilesToWatchMode(files) {
+ if (process.env.WATCH_REPORT_DEPENDENCIES && process.send) {
+ files = files.map((filename) => npath.fromPortablePath(VirtualFS.resolveVirtual(npath.toPortablePath(filename))));
+ if (WATCH_MODE_MESSAGE_USES_ARRAYS) {
+ process.send({ "watch:require": files });
+ } else {
+ for (const filename of files) {
+ process.send({ "watch:require": filename });
+ }
+ }
+ }
+}
+
+function applyPatch(pnpapi, opts) {
+ let enableNativeHooks = true;
+ process.versions.pnp = String(pnpapi.VERSIONS.std);
+ const moduleExports = require$$0__default.default;
+ moduleExports.findPnpApi = (lookupSource) => {
+ const lookupPath = lookupSource instanceof url.URL ? url.fileURLToPath(lookupSource) : lookupSource;
+ const apiPath = opts.manager.findApiPathFor(lookupPath);
+ if (apiPath === null)
+ return null;
+ const apiEntry = opts.manager.getApiEntry(apiPath, true);
+ return apiEntry.instance.findPackageLocator(lookupPath) ? apiEntry.instance : null;
+ };
+ function getRequireStack(parent) {
+ const requireStack = [];
+ for (let cursor = parent; cursor; cursor = cursor.parent)
+ requireStack.push(cursor.filename || cursor.id);
+ return requireStack;
+ }
+ const originalModuleLoad = require$$0.Module._load;
+ require$$0.Module._load = function(request, parent, isMain) {
+ if (request === `pnpapi`) {
+ const parentApiPath = opts.manager.getApiPathFromParent(parent);
+ if (parentApiPath) {
+ return opts.manager.getApiEntry(parentApiPath, true).instance;
+ }
+ }
+ return originalModuleLoad.call(require$$0.Module, request, parent, isMain);
+ };
+ function getIssuerSpecsFromPaths(paths) {
+ return paths.map((path) => ({
+ apiPath: opts.manager.findApiPathFor(path),
+ path,
+ module: null
+ }));
+ }
+ function getIssuerSpecsFromModule(module) {
+ if (module && module.id !== `` && module.id !== `internal/preload` && !module.parent && !module.filename && module.paths.length > 0) {
+ return [{
+ apiPath: opts.manager.findApiPathFor(module.paths[0]),
+ path: module.paths[0],
+ module
+ }];
+ }
+ const issuer = getIssuerModule(module);
+ if (issuer !== null) {
+ const path = npath.dirname(issuer.filename);
+ const apiPath = opts.manager.getApiPathFromParent(issuer);
+ return [{ apiPath, path, module }];
+ } else {
+ const path = process.cwd();
+ const apiPath = opts.manager.findApiPathFor(npath.join(path, `[file]`)) ?? opts.manager.getApiPathFromParent(null);
+ return [{ apiPath, path, module }];
+ }
+ }
+ function makeFakeParent(path) {
+ const fakeParent = new require$$0.Module(``);
+ const fakeFilePath = npath.join(path, `[file]`);
+ fakeParent.paths = require$$0.Module._nodeModulePaths(fakeFilePath);
+ return fakeParent;
+ }
+ const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:@[^/]+\/)?[^/]+)\/*(.*|)$/;
+ const originalModuleResolveFilename = require$$0.Module._resolveFilename;
+ require$$0.Module._resolveFilename = function(request, parent, isMain, options) {
+ if (require$$0.isBuiltin(request))
+ return request;
+ if (!enableNativeHooks)
+ return originalModuleResolveFilename.call(require$$0.Module, request, parent, isMain, options);
+ if (options && options.plugnplay === false) {
+ const { plugnplay, ...forwardedOptions } = options;
+ try {
+ enableNativeHooks = false;
+ return originalModuleResolveFilename.call(require$$0.Module, request, parent, isMain, forwardedOptions);
+ } finally {
+ enableNativeHooks = true;
+ }
+ }
+ if (options) {
+ const optionNames = new Set(Object.keys(options));
+ optionNames.delete(`paths`);
+ optionNames.delete(`plugnplay`);
+ if (optionNames.size > 0) {
+ throw makeError(
+ ErrorCode.UNSUPPORTED,
+ `Some options passed to require() aren't supported by PnP yet (${Array.from(optionNames).join(`, `)})`
+ );
+ }
+ }
+ const issuerSpecs = options && options.paths ? getIssuerSpecsFromPaths(options.paths) : getIssuerSpecsFromModule(parent);
+ if (request.match(pathRegExp) === null) {
+ const parentDirectory = parent?.filename != null ? npath.dirname(parent.filename) : null;
+ const absoluteRequest = npath.isAbsolute(request) ? request : parentDirectory !== null ? npath.resolve(parentDirectory, request) : null;
+ if (absoluteRequest !== null) {
+ const apiPath = parent && parentDirectory === npath.dirname(absoluteRequest) ? opts.manager.getApiPathFromParent(parent) : opts.manager.findApiPathFor(absoluteRequest);
+ if (apiPath !== null) {
+ issuerSpecs.unshift({
+ apiPath,
+ path: parentDirectory,
+ module: null
+ });
+ }
+ }
+ }
+ let firstError;
+ for (const { apiPath, path, module } of issuerSpecs) {
+ let resolution;
+ const issuerApi = apiPath !== null ? opts.manager.getApiEntry(apiPath, true).instance : null;
+ try {
+ if (issuerApi !== null) {
+ resolution = issuerApi.resolveRequest(request, path !== null ? `${path}/` : null);
+ } else {
+ if (path === null)
+ throw new Error(`Assertion failed: Expected the path to be set`);
+ resolution = originalModuleResolveFilename.call(require$$0.Module, request, module || makeFakeParent(path), isMain);
+ }
+ } catch (error) {
+ firstError = firstError || error;
+ continue;
+ }
+ if (resolution !== null) {
+ return resolution;
+ }
+ }
+ const requireStack = getRequireStack(parent);
+ Object.defineProperty(firstError, `requireStack`, {
+ configurable: true,
+ writable: true,
+ enumerable: false,
+ value: requireStack
+ });
+ if (requireStack.length > 0)
+ firstError.message += `
+Require stack:
+- ${requireStack.join(`
+- `)}`;
+ if (typeof firstError.pnpCode === `string`)
+ Error.captureStackTrace(firstError);
+ throw firstError;
+ };
+ const originalFindPath = require$$0.Module._findPath;
+ require$$0.Module._findPath = function(request, paths, isMain) {
+ if (request === `pnpapi`)
+ return false;
+ if (!enableNativeHooks)
+ return originalFindPath.call(require$$0.Module, request, paths, isMain);
+ const isAbsolute = npath.isAbsolute(request);
+ if (isAbsolute)
+ paths = [``];
+ else if (!paths || paths.length === 0)
+ return false;
+ for (const path of paths) {
+ let resolution;
+ try {
+ const pnpApiPath = opts.manager.findApiPathFor(isAbsolute ? request : path);
+ if (pnpApiPath !== null) {
+ const api = opts.manager.getApiEntry(pnpApiPath, true).instance;
+ resolution = api.resolveRequest(request, path) || false;
+ } else {
+ resolution = originalFindPath.call(require$$0.Module, request, [path], isMain);
+ }
+ } catch (error) {
+ continue;
+ }
+ if (resolution) {
+ return resolution;
+ }
+ }
+ return false;
+ };
+ const originalExtensionJSFunction = require$$0.Module._extensions[`.js`];
+ require$$0.Module._extensions[`.js`] = function(module, filename) {
+ if (filename.endsWith(`.js`)) {
+ const pkg = readPackageScope(filename);
+ if (pkg && pkg.data?.type === `module`) {
+ const err = ERR_REQUIRE_ESM(filename, module.parent?.filename);
+ Error.captureStackTrace(err);
+ throw err;
+ }
+ }
+ originalExtensionJSFunction.call(this, module, filename);
+ };
+ const originalDlopen = process.dlopen;
+ process.dlopen = function(...args) {
+ const [module, filename, ...rest] = args;
+ return originalDlopen.call(
+ this,
+ module,
+ npath.fromPortablePath(VirtualFS.resolveVirtual(npath.toPortablePath(filename))),
+ ...rest
+ );
+ };
+ const originalEmit = process.emit;
+ process.emit = function(name, data, ...args) {
+ if (name === `warning` && typeof data === `object` && data.name === `ExperimentalWarning` && (data.message.includes(`--experimental-loader`) || data.message.includes(`Custom ESM Loaders is an experimental feature`)))
+ return false;
+ return originalEmit.apply(process, arguments);
+ };
+ patchFs(fs__default.default, new PosixFS(opts.fakeFs));
+}
+
+function hydrateRuntimeState(data, { basePath }) {
+ const portablePath = npath.toPortablePath(basePath);
+ const absolutePortablePath = ppath.resolve(portablePath);
+ const ignorePattern = data.ignorePatternData !== null ? new RegExp(data.ignorePatternData) : null;
+ const packageLocatorsByLocations = /* @__PURE__ */ new Map();
+ const packageRegistry = new Map(data.packageRegistryData.map(([packageName, packageStoreData]) => {
+ return [packageName, new Map(packageStoreData.map(([packageReference, packageInformationData]) => {
+ if (packageName === null !== (packageReference === null))
+ throw new Error(`Assertion failed: The name and reference should be null, or neither should`);
+ const discardFromLookup = packageInformationData.discardFromLookup ?? false;
+ const packageLocator = { name: packageName, reference: packageReference };
+ const entry = packageLocatorsByLocations.get(packageInformationData.packageLocation);
+ if (!entry) {
+ packageLocatorsByLocations.set(packageInformationData.packageLocation, { locator: packageLocator, discardFromLookup });
+ } else {
+ entry.discardFromLookup = entry.discardFromLookup && discardFromLookup;
+ if (!discardFromLookup) {
+ entry.locator = packageLocator;
+ }
+ }
+ let resolvedPackageLocation = null;
+ return [packageReference, {
+ packageDependencies: new Map(packageInformationData.packageDependencies),
+ packagePeers: new Set(packageInformationData.packagePeers),
+ linkType: packageInformationData.linkType,
+ discardFromLookup,
+ get packageLocation() {
+ return resolvedPackageLocation || (resolvedPackageLocation = ppath.join(absolutePortablePath, packageInformationData.packageLocation));
+ }
+ }];
+ }))];
+ }));
+ const fallbackExclusionList = new Map(data.fallbackExclusionList.map(([packageName, packageReferences]) => {
+ return [packageName, new Set(packageReferences)];
+ }));
+ const fallbackPool = new Map(data.fallbackPool);
+ const dependencyTreeRoots = data.dependencyTreeRoots;
+ const enableTopLevelFallback = data.enableTopLevelFallback;
+ return {
+ basePath: portablePath,
+ dependencyTreeRoots,
+ enableTopLevelFallback,
+ fallbackExclusionList,
+ fallbackPool,
+ ignorePattern,
+ packageLocatorsByLocations,
+ packageRegistry
+ };
+}
+
+const ArrayIsArray = Array.isArray;
+const JSONStringify = JSON.stringify;
+const ObjectGetOwnPropertyNames = Object.getOwnPropertyNames;
+const ObjectPrototypeHasOwnProperty = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);
+const RegExpPrototypeExec = (obj, string) => RegExp.prototype.exec.call(obj, string);
+const RegExpPrototypeSymbolReplace = (obj, ...rest) => RegExp.prototype[Symbol.replace].apply(obj, rest);
+const StringPrototypeEndsWith = (str, ...rest) => String.prototype.endsWith.apply(str, rest);
+const StringPrototypeIncludes = (str, ...rest) => String.prototype.includes.apply(str, rest);
+const StringPrototypeLastIndexOf = (str, ...rest) => String.prototype.lastIndexOf.apply(str, rest);
+const StringPrototypeIndexOf = (str, ...rest) => String.prototype.indexOf.apply(str, rest);
+const StringPrototypeReplace = (str, ...rest) => String.prototype.replace.apply(str, rest);
+const StringPrototypeSlice = (str, ...rest) => String.prototype.slice.apply(str, rest);
+const StringPrototypeStartsWith = (str, ...rest) => String.prototype.startsWith.apply(str, rest);
+const SafeMap = Map;
+const JSONParse = JSON.parse;
+
+function createErrorType(code, messageCreator, errorType) {
+ return class extends errorType {
+ constructor(...args) {
+ super(messageCreator(...args));
+ this.code = code;
+ this.name = `${errorType.name} [${code}]`;
+ }
+ };
+}
+const ERR_PACKAGE_IMPORT_NOT_DEFINED = createErrorType(
+ `ERR_PACKAGE_IMPORT_NOT_DEFINED`,
+ (specifier, packagePath, base) => {
+ return `Package import specifier "${specifier}" is not defined${packagePath ? ` in package ${packagePath}package.json` : ``} imported from ${base}`;
+ },
+ TypeError
+);
+const ERR_INVALID_MODULE_SPECIFIER = createErrorType(
+ `ERR_INVALID_MODULE_SPECIFIER`,
+ (request, reason, base = void 0) => {
+ return `Invalid module "${request}" ${reason}${base ? ` imported from ${base}` : ``}`;
+ },
+ TypeError
+);
+const ERR_INVALID_PACKAGE_TARGET = createErrorType(
+ `ERR_INVALID_PACKAGE_TARGET`,
+ (pkgPath, key, target, isImport = false, base = void 0) => {
+ const relError = typeof target === `string` && !isImport && target.length && !StringPrototypeStartsWith(target, `./`);
+ if (key === `.`) {
+ assert__default.default(isImport === false);
+ return `Invalid "exports" main target ${JSONStringify(target)} defined in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ``}${relError ? `; targets must start with "./"` : ``}`;
+ }
+ return `Invalid "${isImport ? `imports` : `exports`}" target ${JSONStringify(
+ target
+ )} defined for '${key}' in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ``}${relError ? `; targets must start with "./"` : ``}`;
+ },
+ Error
+);
+const ERR_INVALID_PACKAGE_CONFIG = createErrorType(
+ `ERR_INVALID_PACKAGE_CONFIG`,
+ (path, base, message) => {
+ return `Invalid package config ${path}${base ? ` while importing ${base}` : ``}${message ? `. ${message}` : ``}`;
+ },
+ Error
+);
+const ERR_PACKAGE_PATH_NOT_EXPORTED = createErrorType(
+ "ERR_PACKAGE_PATH_NOT_EXPORTED",
+ (pkgPath, subpath, base = void 0) => {
+ if (subpath === ".")
+ return `No "exports" main defined in ${pkgPath}package.json${base ? ` imported from ${base}` : ""}`;
+ return `Package subpath '${subpath}' is not defined by "exports" in ${pkgPath}package.json${base ? ` imported from ${base}` : ""}`;
+ },
+ Error
+);
+
+function filterOwnProperties(source, keys) {
+ const filtered = /* @__PURE__ */ Object.create(null);
+ for (let i = 0; i < keys.length; i++) {
+ const key = keys[i];
+ if (ObjectPrototypeHasOwnProperty(source, key)) {
+ filtered[key] = source[key];
+ }
+ }
+ return filtered;
+}
+
+const packageJSONCache = new SafeMap();
+function getPackageConfig(path, specifier, base, readFileSyncFn) {
+ const existing = packageJSONCache.get(path);
+ if (existing !== void 0) {
+ return existing;
+ }
+ const source = readFileSyncFn(path);
+ if (source === void 0) {
+ const packageConfig2 = {
+ pjsonPath: path,
+ exists: false,
+ main: void 0,
+ name: void 0,
+ type: "none",
+ exports: void 0,
+ imports: void 0
+ };
+ packageJSONCache.set(path, packageConfig2);
+ return packageConfig2;
+ }
+ let packageJSON;
+ try {
+ packageJSON = JSONParse(source);
+ } catch (error) {
+ throw new ERR_INVALID_PACKAGE_CONFIG(
+ path,
+ (base ? `"${specifier}" from ` : "") + url.fileURLToPath(base || specifier),
+ error.message
+ );
+ }
+ let { imports, main, name, type } = filterOwnProperties(packageJSON, [
+ "imports",
+ "main",
+ "name",
+ "type"
+ ]);
+ const exports = ObjectPrototypeHasOwnProperty(packageJSON, "exports") ? packageJSON.exports : void 0;
+ if (typeof imports !== "object" || imports === null) {
+ imports = void 0;
+ }
+ if (typeof main !== "string") {
+ main = void 0;
+ }
+ if (typeof name !== "string") {
+ name = void 0;
+ }
+ if (type !== "module" && type !== "commonjs") {
+ type = "none";
+ }
+ const packageConfig = {
+ pjsonPath: path,
+ exists: true,
+ main,
+ name,
+ type,
+ exports,
+ imports
+ };
+ packageJSONCache.set(path, packageConfig);
+ return packageConfig;
+}
+function getPackageScopeConfig(resolved, readFileSyncFn) {
+ let packageJSONUrl = new URL("./package.json", resolved);
+ while (true) {
+ const packageJSONPath2 = packageJSONUrl.pathname;
+ if (StringPrototypeEndsWith(packageJSONPath2, "node_modules/package.json")) {
+ break;
+ }
+ const packageConfig2 = getPackageConfig(
+ url.fileURLToPath(packageJSONUrl),
+ resolved,
+ void 0,
+ readFileSyncFn
+ );
+ if (packageConfig2.exists) {
+ return packageConfig2;
+ }
+ const lastPackageJSONUrl = packageJSONUrl;
+ packageJSONUrl = new URL("../package.json", packageJSONUrl);
+ if (packageJSONUrl.pathname === lastPackageJSONUrl.pathname) {
+ break;
+ }
+ }
+ const packageJSONPath = url.fileURLToPath(packageJSONUrl);
+ const packageConfig = {
+ pjsonPath: packageJSONPath,
+ exists: false,
+ main: void 0,
+ name: void 0,
+ type: "none",
+ exports: void 0,
+ imports: void 0
+ };
+ packageJSONCache.set(packageJSONPath, packageConfig);
+ return packageConfig;
+}
+
+/**
+ @license
+ Copyright Node.js contributors. All rights reserved.
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to
+ deal in the Software without restriction, including without limitation the
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ IN THE SOFTWARE.
+*/
+function throwImportNotDefined(specifier, packageJSONUrl, base) {
+ throw new ERR_PACKAGE_IMPORT_NOT_DEFINED(
+ specifier,
+ packageJSONUrl && url.fileURLToPath(new URL(".", packageJSONUrl)),
+ url.fileURLToPath(base)
+ );
+}
+function throwInvalidSubpath(subpath, packageJSONUrl, internal, base) {
+ const reason = `request is not a valid subpath for the "${internal ? "imports" : "exports"}" resolution of ${url.fileURLToPath(packageJSONUrl)}`;
+ throw new ERR_INVALID_MODULE_SPECIFIER(
+ subpath,
+ reason,
+ base && url.fileURLToPath(base)
+ );
+}
+function throwInvalidPackageTarget(subpath, target, packageJSONUrl, internal, base) {
+ if (typeof target === "object" && target !== null) {
+ target = JSONStringify(target, null, "");
+ } else {
+ target = `${target}`;
+ }
+ throw new ERR_INVALID_PACKAGE_TARGET(
+ url.fileURLToPath(new URL(".", packageJSONUrl)),
+ subpath,
+ target,
+ internal,
+ base && url.fileURLToPath(base)
+ );
+}
+const invalidSegmentRegEx = /(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))(\\|\/|$)/i;
+const patternRegEx = /\*/g;
+function resolvePackageTargetString(target, subpath, match, packageJSONUrl, base, pattern, internal, conditions) {
+ if (subpath !== "" && !pattern && target[target.length - 1] !== "/")
+ throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base);
+ if (!StringPrototypeStartsWith(target, "./")) {
+ if (internal && !StringPrototypeStartsWith(target, "../") && !StringPrototypeStartsWith(target, "/")) {
+ let isURL = false;
+ try {
+ new URL(target);
+ isURL = true;
+ } catch {
+ }
+ if (!isURL) {
+ const exportTarget = pattern ? RegExpPrototypeSymbolReplace(patternRegEx, target, () => subpath) : target + subpath;
+ return exportTarget;
+ }
+ }
+ throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base);
+ }
+ if (RegExpPrototypeExec(
+ invalidSegmentRegEx,
+ StringPrototypeSlice(target, 2)
+ ) !== null)
+ throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base);
+ const resolved = new URL(target, packageJSONUrl);
+ const resolvedPath = resolved.pathname;
+ const packagePath = new URL(".", packageJSONUrl).pathname;
+ if (!StringPrototypeStartsWith(resolvedPath, packagePath))
+ throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base);
+ if (subpath === "")
+ return resolved;
+ if (RegExpPrototypeExec(invalidSegmentRegEx, subpath) !== null) {
+ const request = pattern ? StringPrototypeReplace(match, "*", () => subpath) : match + subpath;
+ throwInvalidSubpath(request, packageJSONUrl, internal, base);
+ }
+ if (pattern) {
+ return new URL(
+ RegExpPrototypeSymbolReplace(patternRegEx, resolved.href, () => subpath)
+ );
+ }
+ return new URL(subpath, resolved);
+}
+function isArrayIndex(key) {
+ const keyNum = +key;
+ if (`${keyNum}` !== key)
+ return false;
+ return keyNum >= 0 && keyNum < 4294967295;
+}
+function resolvePackageTarget(packageJSONUrl, target, subpath, packageSubpath, base, pattern, internal, conditions) {
+ if (typeof target === "string") {
+ return resolvePackageTargetString(
+ target,
+ subpath,
+ packageSubpath,
+ packageJSONUrl,
+ base,
+ pattern,
+ internal);
+ } else if (ArrayIsArray(target)) {
+ if (target.length === 0) {
+ return null;
+ }
+ let lastException;
+ for (let i = 0; i < target.length; i++) {
+ const targetItem = target[i];
+ let resolveResult;
+ try {
+ resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ targetItem,
+ subpath,
+ packageSubpath,
+ base,
+ pattern,
+ internal,
+ conditions
+ );
+ } catch (e) {
+ lastException = e;
+ if (e.code === "ERR_INVALID_PACKAGE_TARGET") {
+ continue;
+ }
+ throw e;
+ }
+ if (resolveResult === void 0) {
+ continue;
+ }
+ if (resolveResult === null) {
+ lastException = null;
+ continue;
+ }
+ return resolveResult;
+ }
+ if (lastException === void 0 || lastException === null)
+ return lastException;
+ throw lastException;
+ } else if (typeof target === "object" && target !== null) {
+ const keys = ObjectGetOwnPropertyNames(target);
+ for (let i = 0; i < keys.length; i++) {
+ const key = keys[i];
+ if (isArrayIndex(key)) {
+ throw new ERR_INVALID_PACKAGE_CONFIG(
+ url.fileURLToPath(packageJSONUrl),
+ base,
+ '"exports" cannot contain numeric property keys.'
+ );
+ }
+ }
+ for (let i = 0; i < keys.length; i++) {
+ const key = keys[i];
+ if (key === "default" || conditions.has(key)) {
+ const conditionalTarget = target[key];
+ const resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ conditionalTarget,
+ subpath,
+ packageSubpath,
+ base,
+ pattern,
+ internal,
+ conditions
+ );
+ if (resolveResult === void 0)
+ continue;
+ return resolveResult;
+ }
+ }
+ return void 0;
+ } else if (target === null) {
+ return null;
+ }
+ throwInvalidPackageTarget(
+ packageSubpath,
+ target,
+ packageJSONUrl,
+ internal,
+ base
+ );
+}
+function patternKeyCompare(a, b) {
+ const aPatternIndex = StringPrototypeIndexOf(a, "*");
+ const bPatternIndex = StringPrototypeIndexOf(b, "*");
+ const baseLenA = aPatternIndex === -1 ? a.length : aPatternIndex + 1;
+ const baseLenB = bPatternIndex === -1 ? b.length : bPatternIndex + 1;
+ if (baseLenA > baseLenB)
+ return -1;
+ if (baseLenB > baseLenA)
+ return 1;
+ if (aPatternIndex === -1)
+ return 1;
+ if (bPatternIndex === -1)
+ return -1;
+ if (a.length > b.length)
+ return -1;
+ if (b.length > a.length)
+ return 1;
+ return 0;
+}
+function isConditionalExportsMainSugar(exports, packageJSONUrl, base) {
+ if (typeof exports === "string" || ArrayIsArray(exports))
+ return true;
+ if (typeof exports !== "object" || exports === null)
+ return false;
+ const keys = ObjectGetOwnPropertyNames(exports);
+ let isConditionalSugar = false;
+ let i = 0;
+ for (let j = 0; j < keys.length; j++) {
+ const key = keys[j];
+ const curIsConditionalSugar = key === "" || key[0] !== ".";
+ if (i++ === 0) {
+ isConditionalSugar = curIsConditionalSugar;
+ } else if (isConditionalSugar !== curIsConditionalSugar) {
+ throw new ERR_INVALID_PACKAGE_CONFIG(
+ url.fileURLToPath(packageJSONUrl),
+ base,
+ `"exports" cannot contain some keys starting with '.' and some not. The exports object must either be an object of package subpath keys or an object of main entry condition name keys only.`
+ );
+ }
+ }
+ return isConditionalSugar;
+}
+function throwExportsNotFound(subpath, packageJSONUrl, base) {
+ throw new ERR_PACKAGE_PATH_NOT_EXPORTED(
+ url.fileURLToPath(new URL(".", packageJSONUrl)),
+ subpath,
+ base && url.fileURLToPath(base)
+ );
+}
+const emittedPackageWarnings = /* @__PURE__ */ new Set();
+function emitTrailingSlashPatternDeprecation(match, pjsonUrl, base) {
+ const pjsonPath = url.fileURLToPath(pjsonUrl);
+ if (emittedPackageWarnings.has(pjsonPath + "|" + match))
+ return;
+ emittedPackageWarnings.add(pjsonPath + "|" + match);
+ process.emitWarning(
+ `Use of deprecated trailing slash pattern mapping "${match}" in the "exports" field module resolution of the package at ${pjsonPath}${base ? ` imported from ${url.fileURLToPath(base)}` : ""}. Mapping specifiers ending in "/" is no longer supported.`,
+ "DeprecationWarning",
+ "DEP0155"
+ );
+}
+function packageExportsResolve({
+ packageJSONUrl,
+ packageSubpath,
+ exports,
+ base,
+ conditions
+}) {
+ if (isConditionalExportsMainSugar(exports, packageJSONUrl, base))
+ exports = { ".": exports };
+ if (ObjectPrototypeHasOwnProperty(exports, packageSubpath) && !StringPrototypeIncludes(packageSubpath, "*") && !StringPrototypeEndsWith(packageSubpath, "/")) {
+ const target = exports[packageSubpath];
+ const resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ target,
+ "",
+ packageSubpath,
+ base,
+ false,
+ false,
+ conditions
+ );
+ if (resolveResult == null) {
+ throwExportsNotFound(packageSubpath, packageJSONUrl, base);
+ }
+ return resolveResult;
+ }
+ let bestMatch = "";
+ let bestMatchSubpath;
+ const keys = ObjectGetOwnPropertyNames(exports);
+ for (let i = 0; i < keys.length; i++) {
+ const key = keys[i];
+ const patternIndex = StringPrototypeIndexOf(key, "*");
+ if (patternIndex !== -1 && StringPrototypeStartsWith(
+ packageSubpath,
+ StringPrototypeSlice(key, 0, patternIndex)
+ )) {
+ if (StringPrototypeEndsWith(packageSubpath, "/"))
+ emitTrailingSlashPatternDeprecation(
+ packageSubpath,
+ packageJSONUrl,
+ base
+ );
+ const patternTrailer = StringPrototypeSlice(key, patternIndex + 1);
+ if (packageSubpath.length >= key.length && StringPrototypeEndsWith(packageSubpath, patternTrailer) && patternKeyCompare(bestMatch, key) === 1 && StringPrototypeLastIndexOf(key, "*") === patternIndex) {
+ bestMatch = key;
+ bestMatchSubpath = StringPrototypeSlice(
+ packageSubpath,
+ patternIndex,
+ packageSubpath.length - patternTrailer.length
+ );
+ }
+ }
+ }
+ if (bestMatch) {
+ const target = exports[bestMatch];
+ const resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ target,
+ bestMatchSubpath,
+ bestMatch,
+ base,
+ true,
+ false,
+ conditions
+ );
+ if (resolveResult == null) {
+ throwExportsNotFound(packageSubpath, packageJSONUrl, base);
+ }
+ return resolveResult;
+ }
+ throwExportsNotFound(packageSubpath, packageJSONUrl, base);
+}
+function packageImportsResolve({ name, base, conditions, readFileSyncFn }) {
+ if (name === "#" || StringPrototypeStartsWith(name, "#/") || StringPrototypeEndsWith(name, "/")) {
+ const reason = "is not a valid internal imports specifier name";
+ throw new ERR_INVALID_MODULE_SPECIFIER(name, reason, url.fileURLToPath(base));
+ }
+ let packageJSONUrl;
+ const packageConfig = getPackageScopeConfig(base, readFileSyncFn);
+ if (packageConfig.exists) {
+ packageJSONUrl = url.pathToFileURL(packageConfig.pjsonPath);
+ const imports = packageConfig.imports;
+ if (imports) {
+ if (ObjectPrototypeHasOwnProperty(imports, name) && !StringPrototypeIncludes(name, "*")) {
+ const resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ imports[name],
+ "",
+ name,
+ base,
+ false,
+ true,
+ conditions
+ );
+ if (resolveResult != null) {
+ return resolveResult;
+ }
+ } else {
+ let bestMatch = "";
+ let bestMatchSubpath;
+ const keys = ObjectGetOwnPropertyNames(imports);
+ for (let i = 0; i < keys.length; i++) {
+ const key = keys[i];
+ const patternIndex = StringPrototypeIndexOf(key, "*");
+ if (patternIndex !== -1 && StringPrototypeStartsWith(
+ name,
+ StringPrototypeSlice(key, 0, patternIndex)
+ )) {
+ const patternTrailer = StringPrototypeSlice(key, patternIndex + 1);
+ if (name.length >= key.length && StringPrototypeEndsWith(name, patternTrailer) && patternKeyCompare(bestMatch, key) === 1 && StringPrototypeLastIndexOf(key, "*") === patternIndex) {
+ bestMatch = key;
+ bestMatchSubpath = StringPrototypeSlice(
+ name,
+ patternIndex,
+ name.length - patternTrailer.length
+ );
+ }
+ }
+ }
+ if (bestMatch) {
+ const target = imports[bestMatch];
+ const resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ target,
+ bestMatchSubpath,
+ bestMatch,
+ base,
+ true,
+ true,
+ conditions
+ );
+ if (resolveResult != null) {
+ return resolveResult;
+ }
+ }
+ }
+ }
+ }
+ throwImportNotDefined(name, packageJSONUrl, base);
+}
+
+const flagSymbol = Symbol('arg flag');
+
+class ArgError extends Error {
+ constructor(msg, code) {
+ super(msg);
+ this.name = 'ArgError';
+ this.code = code;
+
+ Object.setPrototypeOf(this, ArgError.prototype);
+ }
+}
+
+function arg(
+ opts,
+ {
+ argv = process.argv.slice(2),
+ permissive = false,
+ stopAtPositional = false
+ } = {}
+) {
+ if (!opts) {
+ throw new ArgError(
+ 'argument specification object is required',
+ 'ARG_CONFIG_NO_SPEC'
+ );
+ }
+
+ const result = { _: [] };
+
+ const aliases = {};
+ const handlers = {};
+
+ for (const key of Object.keys(opts)) {
+ if (!key) {
+ throw new ArgError(
+ 'argument key cannot be an empty string',
+ 'ARG_CONFIG_EMPTY_KEY'
+ );
+ }
+
+ if (key[0] !== '-') {
+ throw new ArgError(
+ `argument key must start with '-' but found: '${key}'`,
+ 'ARG_CONFIG_NONOPT_KEY'
+ );
+ }
+
+ if (key.length === 1) {
+ throw new ArgError(
+ `argument key must have a name; singular '-' keys are not allowed: ${key}`,
+ 'ARG_CONFIG_NONAME_KEY'
+ );
+ }
+
+ if (typeof opts[key] === 'string') {
+ aliases[key] = opts[key];
+ continue;
+ }
+
+ let type = opts[key];
+ let isFlag = false;
+
+ if (
+ Array.isArray(type) &&
+ type.length === 1 &&
+ typeof type[0] === 'function'
+ ) {
+ const [fn] = type;
+ type = (value, name, prev = []) => {
+ prev.push(fn(value, name, prev[prev.length - 1]));
+ return prev;
+ };
+ isFlag = fn === Boolean || fn[flagSymbol] === true;
+ } else if (typeof type === 'function') {
+ isFlag = type === Boolean || type[flagSymbol] === true;
+ } else {
+ throw new ArgError(
+ `type missing or not a function or valid array type: ${key}`,
+ 'ARG_CONFIG_VAD_TYPE'
+ );
+ }
+
+ if (key[1] !== '-' && key.length > 2) {
+ throw new ArgError(
+ `short argument keys (with a single hyphen) must have only one character: ${key}`,
+ 'ARG_CONFIG_SHORTOPT_TOOLONG'
+ );
+ }
+
+ handlers[key] = [type, isFlag];
+ }
+
+ for (let i = 0, len = argv.length; i < len; i++) {
+ const wholeArg = argv[i];
+
+ if (stopAtPositional && result._.length > 0) {
+ result._ = result._.concat(argv.slice(i));
+ break;
+ }
+
+ if (wholeArg === '--') {
+ result._ = result._.concat(argv.slice(i + 1));
+ break;
+ }
+
+ if (wholeArg.length > 1 && wholeArg[0] === '-') {
+ /* eslint-disable operator-linebreak */
+ const separatedArguments =
+ wholeArg[1] === '-' || wholeArg.length === 2
+ ? [wholeArg]
+ : wholeArg
+ .slice(1)
+ .split('')
+ .map((a) => `-${a}`);
+ /* eslint-enable operator-linebreak */
+
+ for (let j = 0; j < separatedArguments.length; j++) {
+ const arg = separatedArguments[j];
+ const [originalArgName, argStr] =
+ arg[1] === '-' ? arg.split(/=(.*)/, 2) : [arg, undefined];
+
+ let argName = originalArgName;
+ while (argName in aliases) {
+ argName = aliases[argName];
+ }
+
+ if (!(argName in handlers)) {
+ if (permissive) {
+ result._.push(arg);
+ continue;
+ } else {
+ throw new ArgError(
+ `unknown or unexpected option: ${originalArgName}`,
+ 'ARG_UNKNOWN_OPTION'
+ );
+ }
+ }
+
+ const [type, isFlag] = handlers[argName];
+
+ if (!isFlag && j + 1 < separatedArguments.length) {
+ throw new ArgError(
+ `option requires argument (but was followed by another short argument): ${originalArgName}`,
+ 'ARG_MISSING_REQUIRED_SHORTARG'
+ );
+ }
+
+ if (isFlag) {
+ result[argName] = type(true, argName, result[argName]);
+ } else if (argStr === undefined) {
+ if (
+ argv.length < i + 2 ||
+ (argv[i + 1].length > 1 &&
+ argv[i + 1][0] === '-' &&
+ !(
+ argv[i + 1].match(/^-?\d*(\.(?=\d))?\d*$/) &&
+ (type === Number ||
+ // eslint-disable-next-line no-undef
+ (typeof BigInt !== 'undefined' && type === BigInt))
+ ))
+ ) {
+ const extended =
+ originalArgName === argName ? '' : ` (alias for ${argName})`;
+ throw new ArgError(
+ `option requires argument: ${originalArgName}${extended}`,
+ 'ARG_MISSING_REQUIRED_LONGARG'
+ );
+ }
+
+ result[argName] = type(argv[i + 1], argName, result[argName]);
+ ++i;
+ } else {
+ result[argName] = type(argStr, argName, result[argName]);
+ }
+ }
+ } else {
+ result._.push(wholeArg);
+ }
+ }
+
+ return result;
+}
+
+arg.flag = (fn) => {
+ fn[flagSymbol] = true;
+ return fn;
+};
+
+// Utility types
+arg.COUNT = arg.flag((v, name, existingCount) => (existingCount || 0) + 1);
+
+// Expose error class
+arg.ArgError = ArgError;
+
+var arg_1 = arg;
+
+/**
+ @license
+ The MIT License (MIT)
+
+ Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+*/
+function getOptionValue(opt) {
+ parseOptions();
+ return options[opt];
+}
+let options;
+function parseOptions() {
+ if (!options) {
+ options = {
+ "--conditions": [],
+ ...parseArgv(getNodeOptionsEnvArgv()),
+ ...parseArgv(process.execArgv)
+ };
+ }
+}
+function parseArgv(argv) {
+ return arg_1(
+ {
+ "--conditions": [String],
+ "-C": "--conditions"
+ },
+ {
+ argv,
+ permissive: true
+ }
+ );
+}
+function getNodeOptionsEnvArgv() {
+ const errors = [];
+ const envArgv = ParseNodeOptionsEnvVar(process.env.NODE_OPTIONS || "", errors);
+ if (errors.length !== 0) ;
+ return envArgv;
+}
+function ParseNodeOptionsEnvVar(node_options, errors) {
+ const env_argv = [];
+ let is_in_string = false;
+ let will_start_new_arg = true;
+ for (let index = 0; index < node_options.length; ++index) {
+ let c = node_options[index];
+ if (c === "\\" && is_in_string) {
+ if (index + 1 === node_options.length) {
+ errors.push("invalid value for NODE_OPTIONS (invalid escape)\n");
+ return env_argv;
+ } else {
+ c = node_options[++index];
+ }
+ } else if (c === " " && !is_in_string) {
+ will_start_new_arg = true;
+ continue;
+ } else if (c === '"') {
+ is_in_string = !is_in_string;
+ continue;
+ }
+ if (will_start_new_arg) {
+ env_argv.push(c);
+ will_start_new_arg = false;
+ } else {
+ env_argv[env_argv.length - 1] += c;
+ }
+ }
+ if (is_in_string) {
+ errors.push("invalid value for NODE_OPTIONS (unterminated string)\n");
+ }
+ return env_argv;
+}
+
+function makeApi(runtimeState, opts) {
+ const alwaysWarnOnFallback = Number(process.env.PNP_ALWAYS_WARN_ON_FALLBACK) > 0;
+ const debugLevel = Number(process.env.PNP_DEBUG_LEVEL);
+ const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:node:)?(?:@[^/]+\/)?[^/]+)\/*(.*|)$/;
+ const isStrictRegExp = /^(\/|\.{1,2}(\/|$))/;
+ const isDirRegExp = /\/$/;
+ const isRelativeRegexp = /^\.{0,2}\//;
+ const topLevelLocator = { name: null, reference: null };
+ const fallbackLocators = [];
+ const emittedWarnings = /* @__PURE__ */ new Set();
+ if (runtimeState.enableTopLevelFallback === true)
+ fallbackLocators.push(topLevelLocator);
+ if (opts.compatibilityMode !== false) {
+ for (const name of [`react-scripts`, `gatsby`]) {
+ const packageStore = runtimeState.packageRegistry.get(name);
+ if (packageStore) {
+ for (const reference of packageStore.keys()) {
+ if (reference === null) {
+ throw new Error(`Assertion failed: This reference shouldn't be null`);
+ } else {
+ fallbackLocators.push({ name, reference });
+ }
+ }
+ }
+ }
+ }
+ const {
+ ignorePattern,
+ packageRegistry,
+ packageLocatorsByLocations
+ } = runtimeState;
+ function makeLogEntry(name, args) {
+ return {
+ fn: name,
+ args,
+ error: null,
+ result: null
+ };
+ }
+ function trace(entry) {
+ const colors = process.stderr?.hasColors?.() ?? process.stdout.isTTY;
+ const c = (n, str) => `\x1B[${n}m${str}\x1B[0m`;
+ const error = entry.error;
+ if (error)
+ console.error(c(`31;1`, `\u2716 ${entry.error?.message.replace(/\n.*/s, ``)}`));
+ else
+ console.error(c(`33;1`, `\u203C Resolution`));
+ if (entry.args.length > 0)
+ console.error();
+ for (const arg of entry.args)
+ console.error(` ${c(`37;1`, `In \u2190`)} ${nodeUtils.inspect(arg, { colors, compact: true })}`);
+ if (entry.result) {
+ console.error();
+ console.error(` ${c(`37;1`, `Out \u2192`)} ${nodeUtils.inspect(entry.result, { colors, compact: true })}`);
+ }
+ const stack = new Error().stack.match(/(?<=^ +)at.*/gm)?.slice(2) ?? [];
+ if (stack.length > 0) {
+ console.error();
+ for (const line of stack) {
+ console.error(` ${c(`38;5;244`, line)}`);
+ }
+ }
+ console.error();
+ }
+ function maybeLog(name, fn) {
+ if (opts.allowDebug === false)
+ return fn;
+ if (Number.isFinite(debugLevel)) {
+ if (debugLevel >= 2) {
+ return (...args) => {
+ const logEntry = makeLogEntry(name, args);
+ try {
+ return logEntry.result = fn(...args);
+ } catch (error) {
+ throw logEntry.error = error;
+ } finally {
+ trace(logEntry);
+ }
+ };
+ } else if (debugLevel >= 1) {
+ return (...args) => {
+ try {
+ return fn(...args);
+ } catch (error) {
+ const logEntry = makeLogEntry(name, args);
+ logEntry.error = error;
+ trace(logEntry);
+ throw error;
+ }
+ };
+ }
+ }
+ return fn;
+ }
+ function getPackageInformationSafe(packageLocator) {
+ const packageInformation = getPackageInformation(packageLocator);
+ if (!packageInformation) {
+ throw makeError(
+ ErrorCode.INTERNAL,
+ `Couldn't find a matching entry in the dependency tree for the specified parent (this is probably an internal error)`
+ );
+ }
+ return packageInformation;
+ }
+ function isDependencyTreeRoot(packageLocator) {
+ if (packageLocator.name === null)
+ return true;
+ for (const dependencyTreeRoot of runtimeState.dependencyTreeRoots)
+ if (dependencyTreeRoot.name === packageLocator.name && dependencyTreeRoot.reference === packageLocator.reference)
+ return true;
+ return false;
+ }
+ const defaultExportsConditions = /* @__PURE__ */ new Set([
+ `node`,
+ `require`,
+ ...getOptionValue(`--conditions`)
+ ]);
+ function applyNodeExportsResolution(unqualifiedPath, conditions = defaultExportsConditions, issuer) {
+ const locator = findPackageLocator(ppath.join(unqualifiedPath, `internal.js`), {
+ resolveIgnored: true,
+ includeDiscardFromLookup: true
+ });
+ if (locator === null) {
+ throw makeError(
+ ErrorCode.INTERNAL,
+ `The locator that owns the "${unqualifiedPath}" path can't be found inside the dependency tree (this is probably an internal error)`
+ );
+ }
+ const { packageLocation } = getPackageInformationSafe(locator);
+ const manifestPath = ppath.join(packageLocation, Filename.manifest);
+ if (!opts.fakeFs.existsSync(manifestPath))
+ return null;
+ const pkgJson = JSON.parse(opts.fakeFs.readFileSync(manifestPath, `utf8`));
+ if (pkgJson.exports == null)
+ return null;
+ let subpath = ppath.contains(packageLocation, unqualifiedPath);
+ if (subpath === null) {
+ throw makeError(
+ ErrorCode.INTERNAL,
+ `unqualifiedPath doesn't contain the packageLocation (this is probably an internal error)`
+ );
+ }
+ if (subpath !== `.` && !isRelativeRegexp.test(subpath))
+ subpath = `./${subpath}`;
+ try {
+ const resolvedExport = packageExportsResolve({
+ packageJSONUrl: url.pathToFileURL(npath.fromPortablePath(manifestPath)),
+ packageSubpath: subpath,
+ exports: pkgJson.exports,
+ base: issuer ? url.pathToFileURL(npath.fromPortablePath(issuer)) : null,
+ conditions
+ });
+ return npath.toPortablePath(url.fileURLToPath(resolvedExport));
+ } catch (error) {
+ throw makeError(
+ ErrorCode.EXPORTS_RESOLUTION_FAILED,
+ error.message,
+ { unqualifiedPath: getPathForDisplay(unqualifiedPath), locator, pkgJson, subpath: getPathForDisplay(subpath), conditions },
+ error.code
+ );
+ }
+ }
+ function applyNodeExtensionResolution(unqualifiedPath, candidates, { extensions }) {
+ let stat;
+ try {
+ candidates.push(unqualifiedPath);
+ stat = opts.fakeFs.statSync(unqualifiedPath);
+ } catch (error) {
+ }
+ if (stat && !stat.isDirectory())
+ return opts.fakeFs.realpathSync(unqualifiedPath);
+ if (stat && stat.isDirectory()) {
+ let pkgJson;
+ try {
+ pkgJson = JSON.parse(opts.fakeFs.readFileSync(ppath.join(unqualifiedPath, Filename.manifest), `utf8`));
+ } catch (error) {
+ }
+ let nextUnqualifiedPath;
+ if (pkgJson && pkgJson.main)
+ nextUnqualifiedPath = ppath.resolve(unqualifiedPath, pkgJson.main);
+ if (nextUnqualifiedPath && nextUnqualifiedPath !== unqualifiedPath) {
+ const resolution = applyNodeExtensionResolution(nextUnqualifiedPath, candidates, { extensions });
+ if (resolution !== null) {
+ return resolution;
+ }
+ }
+ }
+ for (let i = 0, length = extensions.length; i < length; i++) {
+ const candidateFile = `${unqualifiedPath}${extensions[i]}`;
+ candidates.push(candidateFile);
+ if (opts.fakeFs.existsSync(candidateFile)) {
+ return candidateFile;
+ }
+ }
+ if (stat && stat.isDirectory()) {
+ for (let i = 0, length = extensions.length; i < length; i++) {
+ const candidateFile = ppath.format({ dir: unqualifiedPath, name: `index`, ext: extensions[i] });
+ candidates.push(candidateFile);
+ if (opts.fakeFs.existsSync(candidateFile)) {
+ return candidateFile;
+ }
+ }
+ }
+ return null;
+ }
+ function makeFakeModule(path) {
+ const fakeModule = new require$$0.Module(path, null);
+ fakeModule.filename = path;
+ fakeModule.paths = require$$0.Module._nodeModulePaths(path);
+ return fakeModule;
+ }
+ function callNativeResolution(request, issuer) {
+ if (issuer.endsWith(`/`))
+ issuer = ppath.join(issuer, `internal.js`);
+ return require$$0.Module._resolveFilename(npath.fromPortablePath(request), makeFakeModule(npath.fromPortablePath(issuer)), false, { plugnplay: false });
+ }
+ function isPathIgnored(path) {
+ if (ignorePattern === null)
+ return false;
+ const subPath = ppath.contains(runtimeState.basePath, path);
+ if (subPath === null)
+ return false;
+ if (ignorePattern.test(subPath.replace(/\/$/, ``))) {
+ return true;
+ } else {
+ return false;
+ }
+ }
+ const VERSIONS = { std: 3, resolveVirtual: 1, getAllLocators: 1 };
+ const topLevel = topLevelLocator;
+ function getPackageInformation({ name, reference }) {
+ const packageInformationStore = packageRegistry.get(name);
+ if (!packageInformationStore)
+ return null;
+ const packageInformation = packageInformationStore.get(reference);
+ if (!packageInformation)
+ return null;
+ return packageInformation;
+ }
+ function findPackageDependents({ name, reference }) {
+ const dependents = [];
+ for (const [dependentName, packageInformationStore] of packageRegistry) {
+ if (dependentName === null)
+ continue;
+ for (const [dependentReference, packageInformation] of packageInformationStore) {
+ if (dependentReference === null)
+ continue;
+ const dependencyReference = packageInformation.packageDependencies.get(name);
+ if (dependencyReference !== reference)
+ continue;
+ if (dependentName === name && dependentReference === reference)
+ continue;
+ dependents.push({
+ name: dependentName,
+ reference: dependentReference
+ });
+ }
+ }
+ return dependents;
+ }
+ function findBrokenPeerDependencies(dependency, initialPackage) {
+ const brokenPackages = /* @__PURE__ */ new Map();
+ const alreadyVisited = /* @__PURE__ */ new Set();
+ const traversal = (currentPackage) => {
+ const identifier = JSON.stringify(currentPackage.name);
+ if (alreadyVisited.has(identifier))
+ return;
+ alreadyVisited.add(identifier);
+ const dependents = findPackageDependents(currentPackage);
+ for (const dependent of dependents) {
+ const dependentInformation = getPackageInformationSafe(dependent);
+ if (dependentInformation.packagePeers.has(dependency)) {
+ traversal(dependent);
+ } else {
+ let brokenSet = brokenPackages.get(dependent.name);
+ if (typeof brokenSet === `undefined`)
+ brokenPackages.set(dependent.name, brokenSet = /* @__PURE__ */ new Set());
+ brokenSet.add(dependent.reference);
+ }
+ }
+ };
+ traversal(initialPackage);
+ const brokenList = [];
+ for (const name of [...brokenPackages.keys()].sort())
+ for (const reference of [...brokenPackages.get(name)].sort())
+ brokenList.push({ name, reference });
+ return brokenList;
+ }
+ function findPackageLocator(location, { resolveIgnored = false, includeDiscardFromLookup = false } = {}) {
+ if (isPathIgnored(location) && !resolveIgnored)
+ return null;
+ let relativeLocation = ppath.relative(runtimeState.basePath, location);
+ if (!relativeLocation.match(isStrictRegExp))
+ relativeLocation = `./${relativeLocation}`;
+ if (!relativeLocation.endsWith(`/`))
+ relativeLocation = `${relativeLocation}/`;
+ do {
+ const entry = packageLocatorsByLocations.get(relativeLocation);
+ if (typeof entry === `undefined` || entry.discardFromLookup && !includeDiscardFromLookup) {
+ relativeLocation = relativeLocation.substring(0, relativeLocation.lastIndexOf(`/`, relativeLocation.length - 2) + 1);
+ continue;
+ }
+ return entry.locator;
+ } while (relativeLocation !== ``);
+ return null;
+ }
+ function tryReadFile(filePath) {
+ try {
+ return opts.fakeFs.readFileSync(npath.toPortablePath(filePath), `utf8`);
+ } catch (err) {
+ if (err.code === `ENOENT`)
+ return void 0;
+ throw err;
+ }
+ }
+ function resolveToUnqualified(request, issuer, { considerBuiltins = true } = {}) {
+ if (request.startsWith(`#`))
+ throw new Error(`resolveToUnqualified can not handle private import mappings`);
+ if (request === `pnpapi`)
+ return npath.toPortablePath(opts.pnpapiResolution);
+ if (considerBuiltins && require$$0.isBuiltin(request))
+ return null;
+ const requestForDisplay = getPathForDisplay(request);
+ const issuerForDisplay = issuer && getPathForDisplay(issuer);
+ if (issuer && isPathIgnored(issuer)) {
+ if (!ppath.isAbsolute(request) || findPackageLocator(request) === null) {
+ const result = callNativeResolution(request, issuer);
+ if (result === false) {
+ throw makeError(
+ ErrorCode.BUILTIN_NODE_RESOLUTION_FAILED,
+ `The builtin node resolution algorithm was unable to resolve the requested module (it didn't go through the pnp resolver because the issuer was explicitely ignored by the regexp)
+
+Require request: "${requestForDisplay}"
+Required by: ${issuerForDisplay}
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay }
+ );
+ }
+ return npath.toPortablePath(result);
+ }
+ }
+ let unqualifiedPath;
+ const dependencyNameMatch = request.match(pathRegExp);
+ if (!dependencyNameMatch) {
+ if (ppath.isAbsolute(request)) {
+ unqualifiedPath = ppath.normalize(request);
+ } else {
+ if (!issuer) {
+ throw makeError(
+ ErrorCode.API_ERROR,
+ `The resolveToUnqualified function must be called with a valid issuer when the path isn't a builtin nor absolute`,
+ { request: requestForDisplay, issuer: issuerForDisplay }
+ );
+ }
+ const absoluteIssuer = ppath.resolve(issuer);
+ if (issuer.match(isDirRegExp)) {
+ unqualifiedPath = ppath.normalize(ppath.join(absoluteIssuer, request));
+ } else {
+ unqualifiedPath = ppath.normalize(ppath.join(ppath.dirname(absoluteIssuer), request));
+ }
+ }
+ } else {
+ if (!issuer) {
+ throw makeError(
+ ErrorCode.API_ERROR,
+ `The resolveToUnqualified function must be called with a valid issuer when the path isn't a builtin nor absolute`,
+ { request: requestForDisplay, issuer: issuerForDisplay }
+ );
+ }
+ const [, dependencyName, subPath] = dependencyNameMatch;
+ const issuerLocator = findPackageLocator(issuer);
+ if (!issuerLocator) {
+ const result = callNativeResolution(request, issuer);
+ if (result === false) {
+ throw makeError(
+ ErrorCode.BUILTIN_NODE_RESOLUTION_FAILED,
+ `The builtin node resolution algorithm was unable to resolve the requested module (it didn't go through the pnp resolver because the issuer doesn't seem to be part of the Yarn-managed dependency tree).
+
+Require path: "${requestForDisplay}"
+Required by: ${issuerForDisplay}
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay }
+ );
+ }
+ return npath.toPortablePath(result);
+ }
+ const issuerInformation = getPackageInformationSafe(issuerLocator);
+ let dependencyReference = issuerInformation.packageDependencies.get(dependencyName);
+ let fallbackReference = null;
+ if (dependencyReference == null) {
+ if (issuerLocator.name !== null) {
+ const exclusionEntry = runtimeState.fallbackExclusionList.get(issuerLocator.name);
+ const canUseFallbacks = !exclusionEntry || !exclusionEntry.has(issuerLocator.reference);
+ if (canUseFallbacks) {
+ for (let t = 0, T = fallbackLocators.length; t < T; ++t) {
+ const fallbackInformation = getPackageInformationSafe(fallbackLocators[t]);
+ const reference = fallbackInformation.packageDependencies.get(dependencyName);
+ if (reference == null)
+ continue;
+ if (alwaysWarnOnFallback)
+ fallbackReference = reference;
+ else
+ dependencyReference = reference;
+ break;
+ }
+ if (runtimeState.enableTopLevelFallback) {
+ if (dependencyReference == null && fallbackReference === null) {
+ const reference = runtimeState.fallbackPool.get(dependencyName);
+ if (reference != null) {
+ fallbackReference = reference;
+ }
+ }
+ }
+ }
+ }
+ }
+ let error = null;
+ if (dependencyReference === null) {
+ if (isDependencyTreeRoot(issuerLocator)) {
+ error = makeError(
+ ErrorCode.MISSING_PEER_DEPENDENCY,
+ `Your application tried to access ${dependencyName} (a peer dependency); this isn't allowed as there is no ancestor to satisfy the requirement. Use a devDependency if needed.
+
+Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``}
+Required by: ${issuerForDisplay}
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay, dependencyName }
+ );
+ } else {
+ const brokenAncestors = findBrokenPeerDependencies(dependencyName, issuerLocator);
+ if (brokenAncestors.every((ancestor) => isDependencyTreeRoot(ancestor))) {
+ error = makeError(
+ ErrorCode.MISSING_PEER_DEPENDENCY,
+ `${issuerLocator.name} tried to access ${dependencyName} (a peer dependency) but it isn't provided by your application; this makes the require call ambiguous and unsound.
+
+Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``}
+Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay})
+${brokenAncestors.map((ancestorLocator) => `Ancestor breaking the chain: ${ancestorLocator.name}@${ancestorLocator.reference}
+`).join(``)}
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName, brokenAncestors }
+ );
+ } else {
+ error = makeError(
+ ErrorCode.MISSING_PEER_DEPENDENCY,
+ `${issuerLocator.name} tried to access ${dependencyName} (a peer dependency) but it isn't provided by its ancestors; this makes the require call ambiguous and unsound.
+
+Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``}
+Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay})
+
+${brokenAncestors.map((ancestorLocator) => `Ancestor breaking the chain: ${ancestorLocator.name}@${ancestorLocator.reference}
+`).join(``)}
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName, brokenAncestors }
+ );
+ }
+ }
+ } else if (dependencyReference === void 0) {
+ if (!considerBuiltins && require$$0.isBuiltin(request)) {
+ if (isDependencyTreeRoot(issuerLocator)) {
+ error = makeError(
+ ErrorCode.UNDECLARED_DEPENDENCY,
+ `Your application tried to access ${dependencyName}. While this module is usually interpreted as a Node builtin, your resolver is running inside a non-Node resolution context where such builtins are ignored. Since ${dependencyName} isn't otherwise declared in your dependencies, this makes the require call ambiguous and unsound.
+
+Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``}
+Required by: ${issuerForDisplay}
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay, dependencyName }
+ );
+ } else {
+ error = makeError(
+ ErrorCode.UNDECLARED_DEPENDENCY,
+ `${issuerLocator.name} tried to access ${dependencyName}. While this module is usually interpreted as a Node builtin, your resolver is running inside a non-Node resolution context where such builtins are ignored. Since ${dependencyName} isn't otherwise declared in ${issuerLocator.name}'s dependencies, this makes the require call ambiguous and unsound.
+
+Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``}
+Required by: ${issuerForDisplay}
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName }
+ );
+ }
+ } else {
+ if (isDependencyTreeRoot(issuerLocator)) {
+ error = makeError(
+ ErrorCode.UNDECLARED_DEPENDENCY,
+ `Your application tried to access ${dependencyName}, but it isn't declared in your dependencies; this makes the require call ambiguous and unsound.
+
+Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``}
+Required by: ${issuerForDisplay}
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay, dependencyName }
+ );
+ } else {
+ error = makeError(
+ ErrorCode.UNDECLARED_DEPENDENCY,
+ `${issuerLocator.name} tried to access ${dependencyName}, but it isn't declared in its dependencies; this makes the require call ambiguous and unsound.
+
+Required package: ${dependencyName}${dependencyName !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``}
+Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay})
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay, issuerLocator: Object.assign({}, issuerLocator), dependencyName }
+ );
+ }
+ }
+ }
+ if (dependencyReference == null) {
+ if (fallbackReference === null || error === null)
+ throw error || new Error(`Assertion failed: Expected an error to have been set`);
+ dependencyReference = fallbackReference;
+ const message = error.message.replace(/\n.*/g, ``);
+ error.message = message;
+ if (!emittedWarnings.has(message) && debugLevel !== 0) {
+ emittedWarnings.add(message);
+ process.emitWarning(error);
+ }
+ }
+ const dependencyLocator = Array.isArray(dependencyReference) ? { name: dependencyReference[0], reference: dependencyReference[1] } : { name: dependencyName, reference: dependencyReference };
+ const dependencyInformation = getPackageInformationSafe(dependencyLocator);
+ if (!dependencyInformation.packageLocation) {
+ throw makeError(
+ ErrorCode.MISSING_DEPENDENCY,
+ `A dependency seems valid but didn't get installed for some reason. This might be caused by a partial install, such as dev vs prod.
+
+Required package: ${dependencyLocator.name}@${dependencyLocator.reference}${dependencyLocator.name !== requestForDisplay ? ` (via "${requestForDisplay}")` : ``}
+Required by: ${issuerLocator.name}@${issuerLocator.reference} (via ${issuerForDisplay})
+`,
+ { request: requestForDisplay, issuer: issuerForDisplay, dependencyLocator: Object.assign({}, dependencyLocator) }
+ );
+ }
+ const dependencyLocation = dependencyInformation.packageLocation;
+ if (subPath) {
+ unqualifiedPath = ppath.join(dependencyLocation, subPath);
+ } else {
+ unqualifiedPath = dependencyLocation;
+ }
+ }
+ return ppath.normalize(unqualifiedPath);
+ }
+ function resolveUnqualifiedExport(request, unqualifiedPath, conditions = defaultExportsConditions, issuer) {
+ if (isStrictRegExp.test(request))
+ return unqualifiedPath;
+ const unqualifiedExportPath = applyNodeExportsResolution(unqualifiedPath, conditions, issuer);
+ if (unqualifiedExportPath) {
+ return ppath.normalize(unqualifiedExportPath);
+ } else {
+ return unqualifiedPath;
+ }
+ }
+ function resolveUnqualified(unqualifiedPath, { extensions = Object.keys(require$$0.Module._extensions) } = {}) {
+ const candidates = [];
+ const qualifiedPath = applyNodeExtensionResolution(unqualifiedPath, candidates, { extensions });
+ if (qualifiedPath) {
+ return ppath.normalize(qualifiedPath);
+ } else {
+ reportRequiredFilesToWatchMode(candidates.map((candidate) => npath.fromPortablePath(candidate)));
+ const unqualifiedPathForDisplay = getPathForDisplay(unqualifiedPath);
+ const containingPackage = findPackageLocator(unqualifiedPath);
+ if (containingPackage) {
+ const { packageLocation } = getPackageInformationSafe(containingPackage);
+ let exists = true;
+ try {
+ opts.fakeFs.accessSync(packageLocation);
+ } catch (err) {
+ if (err?.code === `ENOENT`) {
+ exists = false;
+ } else {
+ const readableError = (err?.message ?? err ?? `empty exception thrown`).replace(/^[A-Z]/, ($0) => $0.toLowerCase());
+ throw makeError(ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED, `Required package exists but could not be accessed (${readableError}).
+
+Missing package: ${containingPackage.name}@${containingPackage.reference}
+Expected package location: ${getPathForDisplay(packageLocation)}
+`, { unqualifiedPath: unqualifiedPathForDisplay, extensions });
+ }
+ }
+ if (!exists) {
+ const errorMessage = packageLocation.includes(`/unplugged/`) ? `Required unplugged package missing from disk. This may happen when switching branches without running installs (unplugged packages must be fully materialized on disk to work).` : `Required package missing from disk. If you keep your packages inside your repository then restarting the Node process may be enough. Otherwise, try to run an install first.`;
+ throw makeError(
+ ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED,
+ `${errorMessage}
+
+Missing package: ${containingPackage.name}@${containingPackage.reference}
+Expected package location: ${getPathForDisplay(packageLocation)}
+`,
+ { unqualifiedPath: unqualifiedPathForDisplay, extensions }
+ );
+ }
+ }
+ throw makeError(
+ ErrorCode.QUALIFIED_PATH_RESOLUTION_FAILED,
+ `Qualified path resolution failed: we looked for the following paths, but none could be accessed.
+
+Source path: ${unqualifiedPathForDisplay}
+${candidates.map((candidate) => `Not found: ${getPathForDisplay(candidate)}
+`).join(``)}`,
+ { unqualifiedPath: unqualifiedPathForDisplay, extensions }
+ );
+ }
+ }
+ function resolvePrivateRequest(request, issuer, opts2) {
+ if (!issuer)
+ throw new Error(`Assertion failed: An issuer is required to resolve private import mappings`);
+ const resolved = packageImportsResolve({
+ name: request,
+ base: url.pathToFileURL(npath.fromPortablePath(issuer)),
+ conditions: opts2.conditions ?? defaultExportsConditions,
+ readFileSyncFn: tryReadFile
+ });
+ if (resolved instanceof URL) {
+ return resolveUnqualified(npath.toPortablePath(url.fileURLToPath(resolved)), { extensions: opts2.extensions });
+ } else {
+ if (resolved.startsWith(`#`))
+ throw new Error(`Mapping from one private import to another isn't allowed`);
+ return resolveRequest(resolved, issuer, opts2);
+ }
+ }
+ function resolveRequest(request, issuer, opts2 = {}) {
+ try {
+ if (request.startsWith(`#`))
+ return resolvePrivateRequest(request, issuer, opts2);
+ const { considerBuiltins, extensions, conditions } = opts2;
+ const unqualifiedPath = resolveToUnqualified(request, issuer, { considerBuiltins });
+ if (request === `pnpapi`)
+ return unqualifiedPath;
+ if (unqualifiedPath === null)
+ return null;
+ const isIssuerIgnored = () => issuer !== null ? isPathIgnored(issuer) : false;
+ const remappedPath = (!considerBuiltins || !require$$0.isBuiltin(request)) && !isIssuerIgnored() ? resolveUnqualifiedExport(request, unqualifiedPath, conditions, issuer) : unqualifiedPath;
+ return resolveUnqualified(remappedPath, { extensions });
+ } catch (error) {
+ if (Object.hasOwn(error, `pnpCode`))
+ Object.assign(error.data, { request: getPathForDisplay(request), issuer: issuer && getPathForDisplay(issuer) });
+ throw error;
+ }
+ }
+ function resolveVirtual(request) {
+ const normalized = ppath.normalize(request);
+ const resolved = VirtualFS.resolveVirtual(normalized);
+ return resolved !== normalized ? resolved : null;
+ }
+ return {
+ VERSIONS,
+ topLevel,
+ getLocator: (name, referencish) => {
+ if (Array.isArray(referencish)) {
+ return { name: referencish[0], reference: referencish[1] };
+ } else {
+ return { name, reference: referencish };
+ }
+ },
+ getDependencyTreeRoots: () => {
+ return [...runtimeState.dependencyTreeRoots];
+ },
+ getAllLocators() {
+ const locators = [];
+ for (const [name, entry] of packageRegistry)
+ for (const reference of entry.keys())
+ if (name !== null && reference !== null)
+ locators.push({ name, reference });
+ return locators;
+ },
+ getPackageInformation: (locator) => {
+ const info = getPackageInformation(locator);
+ if (info === null)
+ return null;
+ const packageLocation = npath.fromPortablePath(info.packageLocation);
+ const nativeInfo = { ...info, packageLocation };
+ return nativeInfo;
+ },
+ findPackageLocator: (path) => {
+ return findPackageLocator(npath.toPortablePath(path));
+ },
+ resolveToUnqualified: maybeLog(`resolveToUnqualified`, (request, issuer, opts2) => {
+ const portableIssuer = issuer !== null ? npath.toPortablePath(issuer) : null;
+ const resolution = resolveToUnqualified(npath.toPortablePath(request), portableIssuer, opts2);
+ if (resolution === null)
+ return null;
+ return npath.fromPortablePath(resolution);
+ }),
+ resolveUnqualified: maybeLog(`resolveUnqualified`, (unqualifiedPath, opts2) => {
+ return npath.fromPortablePath(resolveUnqualified(npath.toPortablePath(unqualifiedPath), opts2));
+ }),
+ resolveRequest: maybeLog(`resolveRequest`, (request, issuer, opts2) => {
+ const portableIssuer = issuer !== null ? npath.toPortablePath(issuer) : null;
+ const resolution = resolveRequest(npath.toPortablePath(request), portableIssuer, opts2);
+ if (resolution === null)
+ return null;
+ return npath.fromPortablePath(resolution);
+ }),
+ resolveVirtual: maybeLog(`resolveVirtual`, (path) => {
+ const result = resolveVirtual(npath.toPortablePath(path));
+ if (result !== null) {
+ return npath.fromPortablePath(result);
+ } else {
+ return null;
+ }
+ })
+ };
+}
+
+function makeManager(pnpapi, opts) {
+ const initialApiPath = npath.toPortablePath(pnpapi.resolveToUnqualified(`pnpapi`, null));
+ const initialApiStats = opts.fakeFs.statSync(npath.toPortablePath(initialApiPath));
+ const apiMetadata = /* @__PURE__ */ new Map([
+ [initialApiPath, {
+ instance: pnpapi,
+ stats: initialApiStats,
+ lastRefreshCheck: Date.now()
+ }]
+ ]);
+ function loadApiInstance(pnpApiPath) {
+ const nativePath = npath.fromPortablePath(pnpApiPath);
+ const module = new require$$0.Module(nativePath, null);
+ module.load(nativePath);
+ return module.exports;
+ }
+ function refreshApiEntry(pnpApiPath, apiEntry) {
+ const timeNow = Date.now();
+ if (timeNow - apiEntry.lastRefreshCheck < 500)
+ return;
+ apiEntry.lastRefreshCheck = timeNow;
+ const stats = opts.fakeFs.statSync(pnpApiPath);
+ if (stats.mtime > apiEntry.stats.mtime) {
+ process.emitWarning(`[Warning] The runtime detected new information in a PnP file; reloading the API instance (${npath.fromPortablePath(pnpApiPath)})`);
+ apiEntry.stats = stats;
+ apiEntry.instance = loadApiInstance(pnpApiPath);
+ }
+ }
+ function getApiEntry(pnpApiPath, refresh = false) {
+ let apiEntry = apiMetadata.get(pnpApiPath);
+ if (typeof apiEntry !== `undefined`) {
+ if (refresh) {
+ refreshApiEntry(pnpApiPath, apiEntry);
+ }
+ } else {
+ apiMetadata.set(pnpApiPath, apiEntry = {
+ instance: loadApiInstance(pnpApiPath),
+ stats: opts.fakeFs.statSync(pnpApiPath),
+ lastRefreshCheck: Date.now()
+ });
+ }
+ return apiEntry;
+ }
+ const findApiPathCache = /* @__PURE__ */ new Map();
+ function addToCacheAndReturn(start, end, target) {
+ if (target !== null) {
+ target = VirtualFS.resolveVirtual(target);
+ target = opts.fakeFs.realpathSync(target);
+ }
+ let curr;
+ let next = start;
+ do {
+ curr = next;
+ findApiPathCache.set(curr, target);
+ next = ppath.dirname(curr);
+ } while (curr !== end);
+ return target;
+ }
+ function findApiPathFor(modulePath) {
+ let bestCandidate = null;
+ for (const [apiPath, apiEntry] of apiMetadata) {
+ const locator = apiEntry.instance.findPackageLocator(modulePath);
+ if (!locator)
+ continue;
+ if (apiMetadata.size === 1)
+ return apiPath;
+ const packageInformation = apiEntry.instance.getPackageInformation(locator);
+ if (!packageInformation)
+ throw new Error(`Assertion failed: Couldn't get package information for '${modulePath}'`);
+ if (!bestCandidate)
+ bestCandidate = { packageLocation: packageInformation.packageLocation, apiPaths: [] };
+ if (packageInformation.packageLocation === bestCandidate.packageLocation) {
+ bestCandidate.apiPaths.push(apiPath);
+ } else if (packageInformation.packageLocation.length > bestCandidate.packageLocation.length) {
+ bestCandidate = { packageLocation: packageInformation.packageLocation, apiPaths: [apiPath] };
+ }
+ }
+ if (bestCandidate) {
+ if (bestCandidate.apiPaths.length === 1)
+ return bestCandidate.apiPaths[0];
+ const controlSegment = bestCandidate.apiPaths.map((apiPath) => ` ${npath.fromPortablePath(apiPath)}`).join(`
+`);
+ throw new Error(`Unable to locate pnpapi, the module '${modulePath}' is controlled by multiple pnpapi instances.
+This is usually caused by using the global cache (enableGlobalCache: true)
+
+Controlled by:
+${controlSegment}
+`);
+ }
+ const start = ppath.resolve(npath.toPortablePath(modulePath));
+ let curr;
+ let next = start;
+ do {
+ curr = next;
+ const cached = findApiPathCache.get(curr);
+ if (cached !== void 0)
+ return addToCacheAndReturn(start, curr, cached);
+ const cjsCandidate = ppath.join(curr, Filename.pnpCjs);
+ if (opts.fakeFs.existsSync(cjsCandidate) && opts.fakeFs.statSync(cjsCandidate).isFile())
+ return addToCacheAndReturn(start, curr, cjsCandidate);
+ const legacyCjsCandidate = ppath.join(curr, Filename.pnpJs);
+ if (opts.fakeFs.existsSync(legacyCjsCandidate) && opts.fakeFs.statSync(legacyCjsCandidate).isFile())
+ return addToCacheAndReturn(start, curr, legacyCjsCandidate);
+ next = ppath.dirname(curr);
+ } while (curr !== PortablePath.root);
+ return addToCacheAndReturn(start, curr, null);
+ }
+ const moduleToApiPathCache = /* @__PURE__ */ new WeakMap();
+ function getApiPathFromParent(parent) {
+ if (parent == null)
+ return initialApiPath;
+ let apiPath = moduleToApiPathCache.get(parent);
+ if (typeof apiPath !== `undefined`)
+ return apiPath;
+ apiPath = parent.filename ? findApiPathFor(parent.filename) : null;
+ moduleToApiPathCache.set(parent, apiPath);
+ return apiPath;
+ }
+ return {
+ getApiPathFromParent,
+ findApiPathFor,
+ getApiEntry
+ };
+}
+
+const localFs = { ...fs__default.default };
+const nodeFs = new NodeFS(localFs);
+const defaultRuntimeState = $$SETUP_STATE(hydrateRuntimeState);
+const defaultPnpapiResolution = __filename;
+const defaultFsLayer = new VirtualFS({
+ baseFs: new ZipOpenFS({
+ baseFs: nodeFs,
+ maxOpenFiles: 80,
+ readOnlyArchives: true
+ })
+});
+class DynamicFS extends ProxiedFS {
+ constructor() {
+ super(ppath);
+ this.baseFs = defaultFsLayer;
+ }
+ mapToBase(p) {
+ return p;
+ }
+ mapFromBase(p) {
+ return p;
+ }
+}
+const dynamicFsLayer = new DynamicFS();
+let manager;
+const defaultApi = Object.assign(makeApi(defaultRuntimeState, {
+ fakeFs: dynamicFsLayer,
+ pnpapiResolution: defaultPnpapiResolution
+}), {
+ makeApi: ({
+ basePath = void 0,
+ fakeFs = dynamicFsLayer,
+ pnpapiResolution = defaultPnpapiResolution,
+ ...rest
+ }) => {
+ const apiRuntimeState = typeof basePath !== `undefined` ? $$SETUP_STATE(hydrateRuntimeState, basePath) : defaultRuntimeState;
+ return makeApi(apiRuntimeState, {
+ fakeFs,
+ pnpapiResolution,
+ ...rest
+ });
+ },
+ setup: (api) => {
+ applyPatch(api || defaultApi, {
+ fakeFs: defaultFsLayer,
+ manager
+ });
+ dynamicFsLayer.baseFs = new NodeFS(fs__default.default);
+ }
+});
+manager = makeManager(defaultApi, {
+ fakeFs: dynamicFsLayer
+});
+if (module.parent && module.parent.id === `internal/preload`) {
+ defaultApi.setup();
+ if (module.filename) {
+ delete require$$0__default.default._cache[module.filename];
+ }
+}
+if (process.mainModule === module) {
+ const reportError = (code, message, data) => {
+ process.stdout.write(`${JSON.stringify([{ code, message, data }, null])}
+`);
+ };
+ const reportSuccess = (resolution) => {
+ process.stdout.write(`${JSON.stringify([null, resolution])}
+`);
+ };
+ const processResolution = (request, issuer) => {
+ try {
+ reportSuccess(defaultApi.resolveRequest(request, issuer));
+ } catch (error) {
+ reportError(error.code, error.message, error.data);
+ }
+ };
+ const processRequest = (data) => {
+ try {
+ const [request, issuer] = JSON.parse(data);
+ processResolution(request, issuer);
+ } catch (error) {
+ reportError(`INVALID_JSON`, error.message, error.data);
+ }
+ };
+ if (process.argv.length > 2) {
+ if (process.argv.length !== 4) {
+ process.stderr.write(`Usage: ${process.argv[0]} ${process.argv[1]}
+`);
+ process.exitCode = 64;
+ } else {
+ processResolution(process.argv[2], process.argv[3]);
+ }
+ } else {
+ let buffer = ``;
+ const decoder = new StringDecoder__default.default.StringDecoder();
+ process.stdin.on(`data`, (chunk) => {
+ buffer += decoder.write(chunk);
+ do {
+ const index = buffer.indexOf(`
+`);
+ if (index === -1)
+ break;
+ const line = buffer.slice(0, index);
+ buffer = buffer.slice(index + 1);
+ processRequest(line);
+ } while (true);
+ });
+ }
+}
+
+module.exports = defaultApi;
diff --git a/.pnp.loader.mjs b/.pnp.loader.mjs
new file mode 100644
index 00000000..fe96ee1d
--- /dev/null
+++ b/.pnp.loader.mjs
@@ -0,0 +1,2090 @@
+import fs from 'fs';
+import { URL as URL$1, fileURLToPath, pathToFileURL } from 'url';
+import path from 'path';
+import { createHash } from 'crypto';
+import { EOL } from 'os';
+import moduleExports, { isBuiltin } from 'module';
+import assert from 'assert';
+
+const SAFE_TIME = 456789e3;
+
+const PortablePath = {
+ root: `/`,
+ dot: `.`,
+ parent: `..`
+};
+const npath = Object.create(path);
+const ppath = Object.create(path.posix);
+npath.cwd = () => process.cwd();
+ppath.cwd = process.platform === `win32` ? () => toPortablePath(process.cwd()) : process.cwd;
+if (process.platform === `win32`) {
+ ppath.resolve = (...segments) => {
+ if (segments.length > 0 && ppath.isAbsolute(segments[0])) {
+ return path.posix.resolve(...segments);
+ } else {
+ return path.posix.resolve(ppath.cwd(), ...segments);
+ }
+ };
+}
+const contains = function(pathUtils, from, to) {
+ from = pathUtils.normalize(from);
+ to = pathUtils.normalize(to);
+ if (from === to)
+ return `.`;
+ if (!from.endsWith(pathUtils.sep))
+ from = from + pathUtils.sep;
+ if (to.startsWith(from)) {
+ return to.slice(from.length);
+ } else {
+ return null;
+ }
+};
+npath.contains = (from, to) => contains(npath, from, to);
+ppath.contains = (from, to) => contains(ppath, from, to);
+const WINDOWS_PATH_REGEXP = /^([a-zA-Z]:.*)$/;
+const UNC_WINDOWS_PATH_REGEXP = /^\/\/(\.\/)?(.*)$/;
+const PORTABLE_PATH_REGEXP = /^\/([a-zA-Z]:.*)$/;
+const UNC_PORTABLE_PATH_REGEXP = /^\/unc\/(\.dot\/)?(.*)$/;
+function fromPortablePathWin32(p) {
+ let portablePathMatch, uncPortablePathMatch;
+ if (portablePathMatch = p.match(PORTABLE_PATH_REGEXP))
+ p = portablePathMatch[1];
+ else if (uncPortablePathMatch = p.match(UNC_PORTABLE_PATH_REGEXP))
+ p = `\\\\${uncPortablePathMatch[1] ? `.\\` : ``}${uncPortablePathMatch[2]}`;
+ else
+ return p;
+ return p.replace(/\//g, `\\`);
+}
+function toPortablePathWin32(p) {
+ p = p.replace(/\\/g, `/`);
+ let windowsPathMatch, uncWindowsPathMatch;
+ if (windowsPathMatch = p.match(WINDOWS_PATH_REGEXP))
+ p = `/${windowsPathMatch[1]}`;
+ else if (uncWindowsPathMatch = p.match(UNC_WINDOWS_PATH_REGEXP))
+ p = `/unc/${uncWindowsPathMatch[1] ? `.dot/` : ``}${uncWindowsPathMatch[2]}`;
+ return p;
+}
+const toPortablePath = process.platform === `win32` ? toPortablePathWin32 : (p) => p;
+const fromPortablePath = process.platform === `win32` ? fromPortablePathWin32 : (p) => p;
+npath.fromPortablePath = fromPortablePath;
+npath.toPortablePath = toPortablePath;
+function convertPath(targetPathUtils, sourcePath) {
+ return targetPathUtils === npath ? fromPortablePath(sourcePath) : toPortablePath(sourcePath);
+}
+
+const defaultTime = new Date(SAFE_TIME * 1e3);
+const defaultTimeMs = defaultTime.getTime();
+async function copyPromise(destinationFs, destination, sourceFs, source, opts) {
+ const normalizedDestination = destinationFs.pathUtils.normalize(destination);
+ const normalizedSource = sourceFs.pathUtils.normalize(source);
+ const prelayout = [];
+ const postlayout = [];
+ const { atime, mtime } = opts.stableTime ? { atime: defaultTime, mtime: defaultTime } : await sourceFs.lstatPromise(normalizedSource);
+ await destinationFs.mkdirpPromise(destinationFs.pathUtils.dirname(destination), { utimes: [atime, mtime] });
+ await copyImpl(prelayout, postlayout, destinationFs, normalizedDestination, sourceFs, normalizedSource, { ...opts, didParentExist: true });
+ for (const operation of prelayout)
+ await operation();
+ await Promise.all(postlayout.map((operation) => {
+ return operation();
+ }));
+}
+async function copyImpl(prelayout, postlayout, destinationFs, destination, sourceFs, source, opts) {
+ const destinationStat = opts.didParentExist ? await maybeLStat(destinationFs, destination) : null;
+ const sourceStat = await sourceFs.lstatPromise(source);
+ const { atime, mtime } = opts.stableTime ? { atime: defaultTime, mtime: defaultTime } : sourceStat;
+ let updated;
+ switch (true) {
+ case sourceStat.isDirectory():
+ {
+ updated = await copyFolder(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts);
+ }
+ break;
+ case sourceStat.isFile():
+ {
+ updated = await copyFile(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts);
+ }
+ break;
+ case sourceStat.isSymbolicLink():
+ {
+ updated = await copySymlink(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts);
+ }
+ break;
+ default:
+ {
+ throw new Error(`Unsupported file type (${sourceStat.mode})`);
+ }
+ }
+ if (opts.linkStrategy?.type !== `HardlinkFromIndex` || !sourceStat.isFile()) {
+ if (updated || destinationStat?.mtime?.getTime() !== mtime.getTime() || destinationStat?.atime?.getTime() !== atime.getTime()) {
+ postlayout.push(() => destinationFs.lutimesPromise(destination, atime, mtime));
+ updated = true;
+ }
+ if (destinationStat === null || (destinationStat.mode & 511) !== (sourceStat.mode & 511)) {
+ postlayout.push(() => destinationFs.chmodPromise(destination, sourceStat.mode & 511));
+ updated = true;
+ }
+ }
+ return updated;
+}
+async function maybeLStat(baseFs, p) {
+ try {
+ return await baseFs.lstatPromise(p);
+ } catch (e) {
+ return null;
+ }
+}
+async function copyFolder(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) {
+ if (destinationStat !== null && !destinationStat.isDirectory()) {
+ if (opts.overwrite) {
+ prelayout.push(async () => destinationFs.removePromise(destination));
+ destinationStat = null;
+ } else {
+ return false;
+ }
+ }
+ let updated = false;
+ if (destinationStat === null) {
+ prelayout.push(async () => {
+ try {
+ await destinationFs.mkdirPromise(destination, { mode: sourceStat.mode });
+ } catch (err) {
+ if (err.code !== `EEXIST`) {
+ throw err;
+ }
+ }
+ });
+ updated = true;
+ }
+ const entries = await sourceFs.readdirPromise(source);
+ const nextOpts = opts.didParentExist && !destinationStat ? { ...opts, didParentExist: false } : opts;
+ if (opts.stableSort) {
+ for (const entry of entries.sort()) {
+ if (await copyImpl(prelayout, postlayout, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts)) {
+ updated = true;
+ }
+ }
+ } else {
+ const entriesUpdateStatus = await Promise.all(entries.map(async (entry) => {
+ await copyImpl(prelayout, postlayout, destinationFs, destinationFs.pathUtils.join(destination, entry), sourceFs, sourceFs.pathUtils.join(source, entry), nextOpts);
+ }));
+ if (entriesUpdateStatus.some((status) => status)) {
+ updated = true;
+ }
+ }
+ return updated;
+}
+async function copyFileViaIndex(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts, linkStrategy) {
+ const sourceHash = await sourceFs.checksumFilePromise(source, { algorithm: `sha1` });
+ const indexPath = destinationFs.pathUtils.join(linkStrategy.indexPath, sourceHash.slice(0, 2), `${sourceHash}.dat`);
+ let AtomicBehavior;
+ ((AtomicBehavior2) => {
+ AtomicBehavior2[AtomicBehavior2["Lock"] = 0] = "Lock";
+ AtomicBehavior2[AtomicBehavior2["Rename"] = 1] = "Rename";
+ })(AtomicBehavior || (AtomicBehavior = {}));
+ let atomicBehavior = 1 /* Rename */;
+ let indexStat = await maybeLStat(destinationFs, indexPath);
+ if (destinationStat) {
+ const isDestinationHardlinkedFromIndex = indexStat && destinationStat.dev === indexStat.dev && destinationStat.ino === indexStat.ino;
+ const isIndexModified = indexStat?.mtimeMs !== defaultTimeMs;
+ if (isDestinationHardlinkedFromIndex) {
+ if (isIndexModified && linkStrategy.autoRepair) {
+ atomicBehavior = 0 /* Lock */;
+ indexStat = null;
+ }
+ }
+ if (!isDestinationHardlinkedFromIndex) {
+ if (opts.overwrite) {
+ prelayout.push(async () => destinationFs.removePromise(destination));
+ destinationStat = null;
+ } else {
+ return false;
+ }
+ }
+ }
+ const tempPath = !indexStat && atomicBehavior === 1 /* Rename */ ? `${indexPath}.${Math.floor(Math.random() * 4294967296).toString(16).padStart(8, `0`)}` : null;
+ let tempPathCleaned = false;
+ prelayout.push(async () => {
+ if (!indexStat) {
+ if (atomicBehavior === 0 /* Lock */) {
+ await destinationFs.lockPromise(indexPath, async () => {
+ const content = await sourceFs.readFilePromise(source);
+ await destinationFs.writeFilePromise(indexPath, content);
+ });
+ }
+ if (atomicBehavior === 1 /* Rename */ && tempPath) {
+ const content = await sourceFs.readFilePromise(source);
+ await destinationFs.writeFilePromise(tempPath, content);
+ try {
+ await destinationFs.linkPromise(tempPath, indexPath);
+ } catch (err) {
+ if (err.code === `EEXIST`) {
+ tempPathCleaned = true;
+ await destinationFs.unlinkPromise(tempPath);
+ } else {
+ throw err;
+ }
+ }
+ }
+ }
+ if (!destinationStat) {
+ await destinationFs.linkPromise(indexPath, destination);
+ }
+ });
+ postlayout.push(async () => {
+ if (!indexStat)
+ await destinationFs.lutimesPromise(indexPath, defaultTime, defaultTime);
+ if (tempPath && !tempPathCleaned) {
+ await destinationFs.unlinkPromise(tempPath);
+ }
+ });
+ return false;
+}
+async function copyFileDirect(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) {
+ if (destinationStat !== null) {
+ if (opts.overwrite) {
+ prelayout.push(async () => destinationFs.removePromise(destination));
+ destinationStat = null;
+ } else {
+ return false;
+ }
+ }
+ prelayout.push(async () => {
+ const content = await sourceFs.readFilePromise(source);
+ await destinationFs.writeFilePromise(destination, content);
+ });
+ return true;
+}
+async function copyFile(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) {
+ if (opts.linkStrategy?.type === `HardlinkFromIndex`) {
+ return copyFileViaIndex(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts, opts.linkStrategy);
+ } else {
+ return copyFileDirect(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts);
+ }
+}
+async function copySymlink(prelayout, postlayout, destinationFs, destination, destinationStat, sourceFs, source, sourceStat, opts) {
+ if (destinationStat !== null) {
+ if (opts.overwrite) {
+ prelayout.push(async () => destinationFs.removePromise(destination));
+ destinationStat = null;
+ } else {
+ return false;
+ }
+ }
+ prelayout.push(async () => {
+ await destinationFs.symlinkPromise(convertPath(destinationFs.pathUtils, await sourceFs.readlinkPromise(source)), destination);
+ });
+ return true;
+}
+
+class FakeFS {
+ constructor(pathUtils) {
+ this.pathUtils = pathUtils;
+ }
+ async *genTraversePromise(init, { stableSort = false } = {}) {
+ const stack = [init];
+ while (stack.length > 0) {
+ const p = stack.shift();
+ const entry = await this.lstatPromise(p);
+ if (entry.isDirectory()) {
+ const entries = await this.readdirPromise(p);
+ if (stableSort) {
+ for (const entry2 of entries.sort()) {
+ stack.push(this.pathUtils.join(p, entry2));
+ }
+ } else {
+ throw new Error(`Not supported`);
+ }
+ } else {
+ yield p;
+ }
+ }
+ }
+ async checksumFilePromise(path, { algorithm = `sha512` } = {}) {
+ const fd = await this.openPromise(path, `r`);
+ try {
+ const CHUNK_SIZE = 65536;
+ const chunk = Buffer.allocUnsafeSlow(CHUNK_SIZE);
+ const hash = createHash(algorithm);
+ let bytesRead = 0;
+ while ((bytesRead = await this.readPromise(fd, chunk, 0, CHUNK_SIZE)) !== 0)
+ hash.update(bytesRead === CHUNK_SIZE ? chunk : chunk.slice(0, bytesRead));
+ return hash.digest(`hex`);
+ } finally {
+ await this.closePromise(fd);
+ }
+ }
+ async removePromise(p, { recursive = true, maxRetries = 5 } = {}) {
+ let stat;
+ try {
+ stat = await this.lstatPromise(p);
+ } catch (error) {
+ if (error.code === `ENOENT`) {
+ return;
+ } else {
+ throw error;
+ }
+ }
+ if (stat.isDirectory()) {
+ if (recursive) {
+ const entries = await this.readdirPromise(p);
+ await Promise.all(entries.map((entry) => {
+ return this.removePromise(this.pathUtils.resolve(p, entry));
+ }));
+ }
+ for (let t = 0; t <= maxRetries; t++) {
+ try {
+ await this.rmdirPromise(p);
+ break;
+ } catch (error) {
+ if (error.code !== `EBUSY` && error.code !== `ENOTEMPTY`) {
+ throw error;
+ } else if (t < maxRetries) {
+ await new Promise((resolve) => setTimeout(resolve, t * 100));
+ }
+ }
+ }
+ } else {
+ await this.unlinkPromise(p);
+ }
+ }
+ removeSync(p, { recursive = true } = {}) {
+ let stat;
+ try {
+ stat = this.lstatSync(p);
+ } catch (error) {
+ if (error.code === `ENOENT`) {
+ return;
+ } else {
+ throw error;
+ }
+ }
+ if (stat.isDirectory()) {
+ if (recursive)
+ for (const entry of this.readdirSync(p))
+ this.removeSync(this.pathUtils.resolve(p, entry));
+ this.rmdirSync(p);
+ } else {
+ this.unlinkSync(p);
+ }
+ }
+ async mkdirpPromise(p, { chmod, utimes } = {}) {
+ p = this.resolve(p);
+ if (p === this.pathUtils.dirname(p))
+ return void 0;
+ const parts = p.split(this.pathUtils.sep);
+ let createdDirectory;
+ for (let u = 2; u <= parts.length; ++u) {
+ const subPath = parts.slice(0, u).join(this.pathUtils.sep);
+ if (!this.existsSync(subPath)) {
+ try {
+ await this.mkdirPromise(subPath);
+ } catch (error) {
+ if (error.code === `EEXIST`) {
+ continue;
+ } else {
+ throw error;
+ }
+ }
+ createdDirectory ??= subPath;
+ if (chmod != null)
+ await this.chmodPromise(subPath, chmod);
+ if (utimes != null) {
+ await this.utimesPromise(subPath, utimes[0], utimes[1]);
+ } else {
+ const parentStat = await this.statPromise(this.pathUtils.dirname(subPath));
+ await this.utimesPromise(subPath, parentStat.atime, parentStat.mtime);
+ }
+ }
+ }
+ return createdDirectory;
+ }
+ mkdirpSync(p, { chmod, utimes } = {}) {
+ p = this.resolve(p);
+ if (p === this.pathUtils.dirname(p))
+ return void 0;
+ const parts = p.split(this.pathUtils.sep);
+ let createdDirectory;
+ for (let u = 2; u <= parts.length; ++u) {
+ const subPath = parts.slice(0, u).join(this.pathUtils.sep);
+ if (!this.existsSync(subPath)) {
+ try {
+ this.mkdirSync(subPath);
+ } catch (error) {
+ if (error.code === `EEXIST`) {
+ continue;
+ } else {
+ throw error;
+ }
+ }
+ createdDirectory ??= subPath;
+ if (chmod != null)
+ this.chmodSync(subPath, chmod);
+ if (utimes != null) {
+ this.utimesSync(subPath, utimes[0], utimes[1]);
+ } else {
+ const parentStat = this.statSync(this.pathUtils.dirname(subPath));
+ this.utimesSync(subPath, parentStat.atime, parentStat.mtime);
+ }
+ }
+ }
+ return createdDirectory;
+ }
+ async copyPromise(destination, source, { baseFs = this, overwrite = true, stableSort = false, stableTime = false, linkStrategy = null } = {}) {
+ return await copyPromise(this, destination, baseFs, source, { overwrite, stableSort, stableTime, linkStrategy });
+ }
+ copySync(destination, source, { baseFs = this, overwrite = true } = {}) {
+ const stat = baseFs.lstatSync(source);
+ const exists = this.existsSync(destination);
+ if (stat.isDirectory()) {
+ this.mkdirpSync(destination);
+ const directoryListing = baseFs.readdirSync(source);
+ for (const entry of directoryListing) {
+ this.copySync(this.pathUtils.join(destination, entry), baseFs.pathUtils.join(source, entry), { baseFs, overwrite });
+ }
+ } else if (stat.isFile()) {
+ if (!exists || overwrite) {
+ if (exists)
+ this.removeSync(destination);
+ const content = baseFs.readFileSync(source);
+ this.writeFileSync(destination, content);
+ }
+ } else if (stat.isSymbolicLink()) {
+ if (!exists || overwrite) {
+ if (exists)
+ this.removeSync(destination);
+ const target = baseFs.readlinkSync(source);
+ this.symlinkSync(convertPath(this.pathUtils, target), destination);
+ }
+ } else {
+ throw new Error(`Unsupported file type (file: ${source}, mode: 0o${stat.mode.toString(8).padStart(6, `0`)})`);
+ }
+ const mode = stat.mode & 511;
+ this.chmodSync(destination, mode);
+ }
+ async changeFilePromise(p, content, opts = {}) {
+ if (Buffer.isBuffer(content)) {
+ return this.changeFileBufferPromise(p, content, opts);
+ } else {
+ return this.changeFileTextPromise(p, content, opts);
+ }
+ }
+ async changeFileBufferPromise(p, content, { mode } = {}) {
+ let current = Buffer.alloc(0);
+ try {
+ current = await this.readFilePromise(p);
+ } catch (error) {
+ }
+ if (Buffer.compare(current, content) === 0)
+ return;
+ await this.writeFilePromise(p, content, { mode });
+ }
+ async changeFileTextPromise(p, content, { automaticNewlines, mode } = {}) {
+ let current = ``;
+ try {
+ current = await this.readFilePromise(p, `utf8`);
+ } catch (error) {
+ }
+ const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
+ if (current === normalizedContent)
+ return;
+ await this.writeFilePromise(p, normalizedContent, { mode });
+ }
+ changeFileSync(p, content, opts = {}) {
+ if (Buffer.isBuffer(content)) {
+ return this.changeFileBufferSync(p, content, opts);
+ } else {
+ return this.changeFileTextSync(p, content, opts);
+ }
+ }
+ changeFileBufferSync(p, content, { mode } = {}) {
+ let current = Buffer.alloc(0);
+ try {
+ current = this.readFileSync(p);
+ } catch (error) {
+ }
+ if (Buffer.compare(current, content) === 0)
+ return;
+ this.writeFileSync(p, content, { mode });
+ }
+ changeFileTextSync(p, content, { automaticNewlines = false, mode } = {}) {
+ let current = ``;
+ try {
+ current = this.readFileSync(p, `utf8`);
+ } catch (error) {
+ }
+ const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
+ if (current === normalizedContent)
+ return;
+ this.writeFileSync(p, normalizedContent, { mode });
+ }
+ async movePromise(fromP, toP) {
+ try {
+ await this.renamePromise(fromP, toP);
+ } catch (error) {
+ if (error.code === `EXDEV`) {
+ await this.copyPromise(toP, fromP);
+ await this.removePromise(fromP);
+ } else {
+ throw error;
+ }
+ }
+ }
+ moveSync(fromP, toP) {
+ try {
+ this.renameSync(fromP, toP);
+ } catch (error) {
+ if (error.code === `EXDEV`) {
+ this.copySync(toP, fromP);
+ this.removeSync(fromP);
+ } else {
+ throw error;
+ }
+ }
+ }
+ async lockPromise(affectedPath, callback) {
+ const lockPath = `${affectedPath}.flock`;
+ const interval = 1e3 / 60;
+ const startTime = Date.now();
+ let fd = null;
+ const isAlive = async () => {
+ let pid;
+ try {
+ [pid] = await this.readJsonPromise(lockPath);
+ } catch (error) {
+ return Date.now() - startTime < 500;
+ }
+ try {
+ process.kill(pid, 0);
+ return true;
+ } catch (error) {
+ return false;
+ }
+ };
+ while (fd === null) {
+ try {
+ fd = await this.openPromise(lockPath, `wx`);
+ } catch (error) {
+ if (error.code === `EEXIST`) {
+ if (!await isAlive()) {
+ try {
+ await this.unlinkPromise(lockPath);
+ continue;
+ } catch (error2) {
+ }
+ }
+ if (Date.now() - startTime < 60 * 1e3) {
+ await new Promise((resolve) => setTimeout(resolve, interval));
+ } else {
+ throw new Error(`Couldn't acquire a lock in a reasonable time (via ${lockPath})`);
+ }
+ } else {
+ throw error;
+ }
+ }
+ }
+ await this.writePromise(fd, JSON.stringify([process.pid]));
+ try {
+ return await callback();
+ } finally {
+ try {
+ await this.closePromise(fd);
+ await this.unlinkPromise(lockPath);
+ } catch (error) {
+ }
+ }
+ }
+ async readJsonPromise(p) {
+ const content = await this.readFilePromise(p, `utf8`);
+ try {
+ return JSON.parse(content);
+ } catch (error) {
+ error.message += ` (in ${p})`;
+ throw error;
+ }
+ }
+ readJsonSync(p) {
+ const content = this.readFileSync(p, `utf8`);
+ try {
+ return JSON.parse(content);
+ } catch (error) {
+ error.message += ` (in ${p})`;
+ throw error;
+ }
+ }
+ async writeJsonPromise(p, data, { compact = false } = {}) {
+ const space = compact ? 0 : 2;
+ return await this.writeFilePromise(p, `${JSON.stringify(data, null, space)}
+`);
+ }
+ writeJsonSync(p, data, { compact = false } = {}) {
+ const space = compact ? 0 : 2;
+ return this.writeFileSync(p, `${JSON.stringify(data, null, space)}
+`);
+ }
+ async preserveTimePromise(p, cb) {
+ const stat = await this.lstatPromise(p);
+ const result = await cb();
+ if (typeof result !== `undefined`)
+ p = result;
+ await this.lutimesPromise(p, stat.atime, stat.mtime);
+ }
+ async preserveTimeSync(p, cb) {
+ const stat = this.lstatSync(p);
+ const result = cb();
+ if (typeof result !== `undefined`)
+ p = result;
+ this.lutimesSync(p, stat.atime, stat.mtime);
+ }
+}
+class BasePortableFakeFS extends FakeFS {
+ constructor() {
+ super(ppath);
+ }
+}
+function getEndOfLine(content) {
+ const matches = content.match(/\r?\n/g);
+ if (matches === null)
+ return EOL;
+ const crlf = matches.filter((nl) => nl === `\r
+`).length;
+ const lf = matches.length - crlf;
+ return crlf > lf ? `\r
+` : `
+`;
+}
+function normalizeLineEndings(originalContent, newContent) {
+ return newContent.replace(/\r?\n/g, getEndOfLine(originalContent));
+}
+
+class ProxiedFS extends FakeFS {
+ getExtractHint(hints) {
+ return this.baseFs.getExtractHint(hints);
+ }
+ resolve(path) {
+ return this.mapFromBase(this.baseFs.resolve(this.mapToBase(path)));
+ }
+ getRealPath() {
+ return this.mapFromBase(this.baseFs.getRealPath());
+ }
+ async openPromise(p, flags, mode) {
+ return this.baseFs.openPromise(this.mapToBase(p), flags, mode);
+ }
+ openSync(p, flags, mode) {
+ return this.baseFs.openSync(this.mapToBase(p), flags, mode);
+ }
+ async opendirPromise(p, opts) {
+ return Object.assign(await this.baseFs.opendirPromise(this.mapToBase(p), opts), { path: p });
+ }
+ opendirSync(p, opts) {
+ return Object.assign(this.baseFs.opendirSync(this.mapToBase(p), opts), { path: p });
+ }
+ async readPromise(fd, buffer, offset, length, position) {
+ return await this.baseFs.readPromise(fd, buffer, offset, length, position);
+ }
+ readSync(fd, buffer, offset, length, position) {
+ return this.baseFs.readSync(fd, buffer, offset, length, position);
+ }
+ async writePromise(fd, buffer, offset, length, position) {
+ if (typeof buffer === `string`) {
+ return await this.baseFs.writePromise(fd, buffer, offset);
+ } else {
+ return await this.baseFs.writePromise(fd, buffer, offset, length, position);
+ }
+ }
+ writeSync(fd, buffer, offset, length, position) {
+ if (typeof buffer === `string`) {
+ return this.baseFs.writeSync(fd, buffer, offset);
+ } else {
+ return this.baseFs.writeSync(fd, buffer, offset, length, position);
+ }
+ }
+ async closePromise(fd) {
+ return this.baseFs.closePromise(fd);
+ }
+ closeSync(fd) {
+ this.baseFs.closeSync(fd);
+ }
+ createReadStream(p, opts) {
+ return this.baseFs.createReadStream(p !== null ? this.mapToBase(p) : p, opts);
+ }
+ createWriteStream(p, opts) {
+ return this.baseFs.createWriteStream(p !== null ? this.mapToBase(p) : p, opts);
+ }
+ async realpathPromise(p) {
+ return this.mapFromBase(await this.baseFs.realpathPromise(this.mapToBase(p)));
+ }
+ realpathSync(p) {
+ return this.mapFromBase(this.baseFs.realpathSync(this.mapToBase(p)));
+ }
+ async existsPromise(p) {
+ return this.baseFs.existsPromise(this.mapToBase(p));
+ }
+ existsSync(p) {
+ return this.baseFs.existsSync(this.mapToBase(p));
+ }
+ accessSync(p, mode) {
+ return this.baseFs.accessSync(this.mapToBase(p), mode);
+ }
+ async accessPromise(p, mode) {
+ return this.baseFs.accessPromise(this.mapToBase(p), mode);
+ }
+ async statPromise(p, opts) {
+ return this.baseFs.statPromise(this.mapToBase(p), opts);
+ }
+ statSync(p, opts) {
+ return this.baseFs.statSync(this.mapToBase(p), opts);
+ }
+ async fstatPromise(fd, opts) {
+ return this.baseFs.fstatPromise(fd, opts);
+ }
+ fstatSync(fd, opts) {
+ return this.baseFs.fstatSync(fd, opts);
+ }
+ lstatPromise(p, opts) {
+ return this.baseFs.lstatPromise(this.mapToBase(p), opts);
+ }
+ lstatSync(p, opts) {
+ return this.baseFs.lstatSync(this.mapToBase(p), opts);
+ }
+ async fchmodPromise(fd, mask) {
+ return this.baseFs.fchmodPromise(fd, mask);
+ }
+ fchmodSync(fd, mask) {
+ return this.baseFs.fchmodSync(fd, mask);
+ }
+ async chmodPromise(p, mask) {
+ return this.baseFs.chmodPromise(this.mapToBase(p), mask);
+ }
+ chmodSync(p, mask) {
+ return this.baseFs.chmodSync(this.mapToBase(p), mask);
+ }
+ async fchownPromise(fd, uid, gid) {
+ return this.baseFs.fchownPromise(fd, uid, gid);
+ }
+ fchownSync(fd, uid, gid) {
+ return this.baseFs.fchownSync(fd, uid, gid);
+ }
+ async chownPromise(p, uid, gid) {
+ return this.baseFs.chownPromise(this.mapToBase(p), uid, gid);
+ }
+ chownSync(p, uid, gid) {
+ return this.baseFs.chownSync(this.mapToBase(p), uid, gid);
+ }
+ async renamePromise(oldP, newP) {
+ return this.baseFs.renamePromise(this.mapToBase(oldP), this.mapToBase(newP));
+ }
+ renameSync(oldP, newP) {
+ return this.baseFs.renameSync(this.mapToBase(oldP), this.mapToBase(newP));
+ }
+ async copyFilePromise(sourceP, destP, flags = 0) {
+ return this.baseFs.copyFilePromise(this.mapToBase(sourceP), this.mapToBase(destP), flags);
+ }
+ copyFileSync(sourceP, destP, flags = 0) {
+ return this.baseFs.copyFileSync(this.mapToBase(sourceP), this.mapToBase(destP), flags);
+ }
+ async appendFilePromise(p, content, opts) {
+ return this.baseFs.appendFilePromise(this.fsMapToBase(p), content, opts);
+ }
+ appendFileSync(p, content, opts) {
+ return this.baseFs.appendFileSync(this.fsMapToBase(p), content, opts);
+ }
+ async writeFilePromise(p, content, opts) {
+ return this.baseFs.writeFilePromise(this.fsMapToBase(p), content, opts);
+ }
+ writeFileSync(p, content, opts) {
+ return this.baseFs.writeFileSync(this.fsMapToBase(p), content, opts);
+ }
+ async unlinkPromise(p) {
+ return this.baseFs.unlinkPromise(this.mapToBase(p));
+ }
+ unlinkSync(p) {
+ return this.baseFs.unlinkSync(this.mapToBase(p));
+ }
+ async utimesPromise(p, atime, mtime) {
+ return this.baseFs.utimesPromise(this.mapToBase(p), atime, mtime);
+ }
+ utimesSync(p, atime, mtime) {
+ return this.baseFs.utimesSync(this.mapToBase(p), atime, mtime);
+ }
+ async lutimesPromise(p, atime, mtime) {
+ return this.baseFs.lutimesPromise(this.mapToBase(p), atime, mtime);
+ }
+ lutimesSync(p, atime, mtime) {
+ return this.baseFs.lutimesSync(this.mapToBase(p), atime, mtime);
+ }
+ async mkdirPromise(p, opts) {
+ return this.baseFs.mkdirPromise(this.mapToBase(p), opts);
+ }
+ mkdirSync(p, opts) {
+ return this.baseFs.mkdirSync(this.mapToBase(p), opts);
+ }
+ async rmdirPromise(p, opts) {
+ return this.baseFs.rmdirPromise(this.mapToBase(p), opts);
+ }
+ rmdirSync(p, opts) {
+ return this.baseFs.rmdirSync(this.mapToBase(p), opts);
+ }
+ async linkPromise(existingP, newP) {
+ return this.baseFs.linkPromise(this.mapToBase(existingP), this.mapToBase(newP));
+ }
+ linkSync(existingP, newP) {
+ return this.baseFs.linkSync(this.mapToBase(existingP), this.mapToBase(newP));
+ }
+ async symlinkPromise(target, p, type) {
+ const mappedP = this.mapToBase(p);
+ if (this.pathUtils.isAbsolute(target))
+ return this.baseFs.symlinkPromise(this.mapToBase(target), mappedP, type);
+ const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target));
+ const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget);
+ return this.baseFs.symlinkPromise(mappedTarget, mappedP, type);
+ }
+ symlinkSync(target, p, type) {
+ const mappedP = this.mapToBase(p);
+ if (this.pathUtils.isAbsolute(target))
+ return this.baseFs.symlinkSync(this.mapToBase(target), mappedP, type);
+ const mappedAbsoluteTarget = this.mapToBase(this.pathUtils.join(this.pathUtils.dirname(p), target));
+ const mappedTarget = this.baseFs.pathUtils.relative(this.baseFs.pathUtils.dirname(mappedP), mappedAbsoluteTarget);
+ return this.baseFs.symlinkSync(mappedTarget, mappedP, type);
+ }
+ async readFilePromise(p, encoding) {
+ return this.baseFs.readFilePromise(this.fsMapToBase(p), encoding);
+ }
+ readFileSync(p, encoding) {
+ return this.baseFs.readFileSync(this.fsMapToBase(p), encoding);
+ }
+ readdirPromise(p, opts) {
+ return this.baseFs.readdirPromise(this.mapToBase(p), opts);
+ }
+ readdirSync(p, opts) {
+ return this.baseFs.readdirSync(this.mapToBase(p), opts);
+ }
+ async readlinkPromise(p) {
+ return this.mapFromBase(await this.baseFs.readlinkPromise(this.mapToBase(p)));
+ }
+ readlinkSync(p) {
+ return this.mapFromBase(this.baseFs.readlinkSync(this.mapToBase(p)));
+ }
+ async truncatePromise(p, len) {
+ return this.baseFs.truncatePromise(this.mapToBase(p), len);
+ }
+ truncateSync(p, len) {
+ return this.baseFs.truncateSync(this.mapToBase(p), len);
+ }
+ async ftruncatePromise(fd, len) {
+ return this.baseFs.ftruncatePromise(fd, len);
+ }
+ ftruncateSync(fd, len) {
+ return this.baseFs.ftruncateSync(fd, len);
+ }
+ watch(p, a, b) {
+ return this.baseFs.watch(
+ this.mapToBase(p),
+ a,
+ b
+ );
+ }
+ watchFile(p, a, b) {
+ return this.baseFs.watchFile(
+ this.mapToBase(p),
+ a,
+ b
+ );
+ }
+ unwatchFile(p, cb) {
+ return this.baseFs.unwatchFile(this.mapToBase(p), cb);
+ }
+ fsMapToBase(p) {
+ if (typeof p === `number`) {
+ return p;
+ } else {
+ return this.mapToBase(p);
+ }
+ }
+}
+
+function direntToPortable(dirent) {
+ const portableDirent = dirent;
+ if (typeof dirent.path === `string`)
+ portableDirent.path = npath.toPortablePath(dirent.path);
+ return portableDirent;
+}
+class NodeFS extends BasePortableFakeFS {
+ constructor(realFs = fs) {
+ super();
+ this.realFs = realFs;
+ }
+ getExtractHint() {
+ return false;
+ }
+ getRealPath() {
+ return PortablePath.root;
+ }
+ resolve(p) {
+ return ppath.resolve(p);
+ }
+ async openPromise(p, flags, mode) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.open(npath.fromPortablePath(p), flags, mode, this.makeCallback(resolve, reject));
+ });
+ }
+ openSync(p, flags, mode) {
+ return this.realFs.openSync(npath.fromPortablePath(p), flags, mode);
+ }
+ async opendirPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (typeof opts !== `undefined`) {
+ this.realFs.opendir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.opendir(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ }).then((dir) => {
+ const dirWithFixedPath = dir;
+ Object.defineProperty(dirWithFixedPath, `path`, {
+ value: p,
+ configurable: true,
+ writable: true
+ });
+ return dirWithFixedPath;
+ });
+ }
+ opendirSync(p, opts) {
+ const dir = typeof opts !== `undefined` ? this.realFs.opendirSync(npath.fromPortablePath(p), opts) : this.realFs.opendirSync(npath.fromPortablePath(p));
+ const dirWithFixedPath = dir;
+ Object.defineProperty(dirWithFixedPath, `path`, {
+ value: p,
+ configurable: true,
+ writable: true
+ });
+ return dirWithFixedPath;
+ }
+ async readPromise(fd, buffer, offset = 0, length = 0, position = -1) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.read(fd, buffer, offset, length, position, (error, bytesRead) => {
+ if (error) {
+ reject(error);
+ } else {
+ resolve(bytesRead);
+ }
+ });
+ });
+ }
+ readSync(fd, buffer, offset, length, position) {
+ return this.realFs.readSync(fd, buffer, offset, length, position);
+ }
+ async writePromise(fd, buffer, offset, length, position) {
+ return await new Promise((resolve, reject) => {
+ if (typeof buffer === `string`) {
+ return this.realFs.write(fd, buffer, offset, this.makeCallback(resolve, reject));
+ } else {
+ return this.realFs.write(fd, buffer, offset, length, position, this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ writeSync(fd, buffer, offset, length, position) {
+ if (typeof buffer === `string`) {
+ return this.realFs.writeSync(fd, buffer, offset);
+ } else {
+ return this.realFs.writeSync(fd, buffer, offset, length, position);
+ }
+ }
+ async closePromise(fd) {
+ await new Promise((resolve, reject) => {
+ this.realFs.close(fd, this.makeCallback(resolve, reject));
+ });
+ }
+ closeSync(fd) {
+ this.realFs.closeSync(fd);
+ }
+ createReadStream(p, opts) {
+ const realPath = p !== null ? npath.fromPortablePath(p) : p;
+ return this.realFs.createReadStream(realPath, opts);
+ }
+ createWriteStream(p, opts) {
+ const realPath = p !== null ? npath.fromPortablePath(p) : p;
+ return this.realFs.createWriteStream(realPath, opts);
+ }
+ async realpathPromise(p) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.realpath(npath.fromPortablePath(p), {}, this.makeCallback(resolve, reject));
+ }).then((path) => {
+ return npath.toPortablePath(path);
+ });
+ }
+ realpathSync(p) {
+ return npath.toPortablePath(this.realFs.realpathSync(npath.fromPortablePath(p), {}));
+ }
+ async existsPromise(p) {
+ return await new Promise((resolve) => {
+ this.realFs.exists(npath.fromPortablePath(p), resolve);
+ });
+ }
+ accessSync(p, mode) {
+ return this.realFs.accessSync(npath.fromPortablePath(p), mode);
+ }
+ async accessPromise(p, mode) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.access(npath.fromPortablePath(p), mode, this.makeCallback(resolve, reject));
+ });
+ }
+ existsSync(p) {
+ return this.realFs.existsSync(npath.fromPortablePath(p));
+ }
+ async statPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ this.realFs.stat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.stat(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ statSync(p, opts) {
+ if (opts) {
+ return this.realFs.statSync(npath.fromPortablePath(p), opts);
+ } else {
+ return this.realFs.statSync(npath.fromPortablePath(p));
+ }
+ }
+ async fstatPromise(fd, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ this.realFs.fstat(fd, opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.fstat(fd, this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ fstatSync(fd, opts) {
+ if (opts) {
+ return this.realFs.fstatSync(fd, opts);
+ } else {
+ return this.realFs.fstatSync(fd);
+ }
+ }
+ async lstatPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ this.realFs.lstat(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.lstat(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ lstatSync(p, opts) {
+ if (opts) {
+ return this.realFs.lstatSync(npath.fromPortablePath(p), opts);
+ } else {
+ return this.realFs.lstatSync(npath.fromPortablePath(p));
+ }
+ }
+ async fchmodPromise(fd, mask) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.fchmod(fd, mask, this.makeCallback(resolve, reject));
+ });
+ }
+ fchmodSync(fd, mask) {
+ return this.realFs.fchmodSync(fd, mask);
+ }
+ async chmodPromise(p, mask) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.chmod(npath.fromPortablePath(p), mask, this.makeCallback(resolve, reject));
+ });
+ }
+ chmodSync(p, mask) {
+ return this.realFs.chmodSync(npath.fromPortablePath(p), mask);
+ }
+ async fchownPromise(fd, uid, gid) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.fchown(fd, uid, gid, this.makeCallback(resolve, reject));
+ });
+ }
+ fchownSync(fd, uid, gid) {
+ return this.realFs.fchownSync(fd, uid, gid);
+ }
+ async chownPromise(p, uid, gid) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.chown(npath.fromPortablePath(p), uid, gid, this.makeCallback(resolve, reject));
+ });
+ }
+ chownSync(p, uid, gid) {
+ return this.realFs.chownSync(npath.fromPortablePath(p), uid, gid);
+ }
+ async renamePromise(oldP, newP) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.rename(npath.fromPortablePath(oldP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject));
+ });
+ }
+ renameSync(oldP, newP) {
+ return this.realFs.renameSync(npath.fromPortablePath(oldP), npath.fromPortablePath(newP));
+ }
+ async copyFilePromise(sourceP, destP, flags = 0) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.copyFile(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags, this.makeCallback(resolve, reject));
+ });
+ }
+ copyFileSync(sourceP, destP, flags = 0) {
+ return this.realFs.copyFileSync(npath.fromPortablePath(sourceP), npath.fromPortablePath(destP), flags);
+ }
+ async appendFilePromise(p, content, opts) {
+ return await new Promise((resolve, reject) => {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ if (opts) {
+ this.realFs.appendFile(fsNativePath, content, opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.appendFile(fsNativePath, content, this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ appendFileSync(p, content, opts) {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ if (opts) {
+ this.realFs.appendFileSync(fsNativePath, content, opts);
+ } else {
+ this.realFs.appendFileSync(fsNativePath, content);
+ }
+ }
+ async writeFilePromise(p, content, opts) {
+ return await new Promise((resolve, reject) => {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ if (opts) {
+ this.realFs.writeFile(fsNativePath, content, opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.writeFile(fsNativePath, content, this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ writeFileSync(p, content, opts) {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ if (opts) {
+ this.realFs.writeFileSync(fsNativePath, content, opts);
+ } else {
+ this.realFs.writeFileSync(fsNativePath, content);
+ }
+ }
+ async unlinkPromise(p) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.unlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ });
+ }
+ unlinkSync(p) {
+ return this.realFs.unlinkSync(npath.fromPortablePath(p));
+ }
+ async utimesPromise(p, atime, mtime) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.utimes(npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject));
+ });
+ }
+ utimesSync(p, atime, mtime) {
+ this.realFs.utimesSync(npath.fromPortablePath(p), atime, mtime);
+ }
+ async lutimesPromise(p, atime, mtime) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.lutimes(npath.fromPortablePath(p), atime, mtime, this.makeCallback(resolve, reject));
+ });
+ }
+ lutimesSync(p, atime, mtime) {
+ this.realFs.lutimesSync(npath.fromPortablePath(p), atime, mtime);
+ }
+ async mkdirPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.mkdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ });
+ }
+ mkdirSync(p, opts) {
+ return this.realFs.mkdirSync(npath.fromPortablePath(p), opts);
+ }
+ async rmdirPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ this.realFs.rmdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ } else {
+ this.realFs.rmdir(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ rmdirSync(p, opts) {
+ return this.realFs.rmdirSync(npath.fromPortablePath(p), opts);
+ }
+ async linkPromise(existingP, newP) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.link(npath.fromPortablePath(existingP), npath.fromPortablePath(newP), this.makeCallback(resolve, reject));
+ });
+ }
+ linkSync(existingP, newP) {
+ return this.realFs.linkSync(npath.fromPortablePath(existingP), npath.fromPortablePath(newP));
+ }
+ async symlinkPromise(target, p, type) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.symlink(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type, this.makeCallback(resolve, reject));
+ });
+ }
+ symlinkSync(target, p, type) {
+ return this.realFs.symlinkSync(npath.fromPortablePath(target.replace(/\/+$/, ``)), npath.fromPortablePath(p), type);
+ }
+ async readFilePromise(p, encoding) {
+ return await new Promise((resolve, reject) => {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ this.realFs.readFile(fsNativePath, encoding, this.makeCallback(resolve, reject));
+ });
+ }
+ readFileSync(p, encoding) {
+ const fsNativePath = typeof p === `string` ? npath.fromPortablePath(p) : p;
+ return this.realFs.readFileSync(fsNativePath, encoding);
+ }
+ async readdirPromise(p, opts) {
+ return await new Promise((resolve, reject) => {
+ if (opts) {
+ if (opts.recursive && process.platform === `win32`) {
+ if (opts.withFileTypes) {
+ this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback((results) => resolve(results.map(direntToPortable)), reject));
+ } else {
+ this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback((results) => resolve(results.map(npath.toPortablePath)), reject));
+ }
+ } else {
+ this.realFs.readdir(npath.fromPortablePath(p), opts, this.makeCallback(resolve, reject));
+ }
+ } else {
+ this.realFs.readdir(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }
+ });
+ }
+ readdirSync(p, opts) {
+ if (opts) {
+ if (opts.recursive && process.platform === `win32`) {
+ if (opts.withFileTypes) {
+ return this.realFs.readdirSync(npath.fromPortablePath(p), opts).map(direntToPortable);
+ } else {
+ return this.realFs.readdirSync(npath.fromPortablePath(p), opts).map(npath.toPortablePath);
+ }
+ } else {
+ return this.realFs.readdirSync(npath.fromPortablePath(p), opts);
+ }
+ } else {
+ return this.realFs.readdirSync(npath.fromPortablePath(p));
+ }
+ }
+ async readlinkPromise(p) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.readlink(npath.fromPortablePath(p), this.makeCallback(resolve, reject));
+ }).then((path) => {
+ return npath.toPortablePath(path);
+ });
+ }
+ readlinkSync(p) {
+ return npath.toPortablePath(this.realFs.readlinkSync(npath.fromPortablePath(p)));
+ }
+ async truncatePromise(p, len) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.truncate(npath.fromPortablePath(p), len, this.makeCallback(resolve, reject));
+ });
+ }
+ truncateSync(p, len) {
+ return this.realFs.truncateSync(npath.fromPortablePath(p), len);
+ }
+ async ftruncatePromise(fd, len) {
+ return await new Promise((resolve, reject) => {
+ this.realFs.ftruncate(fd, len, this.makeCallback(resolve, reject));
+ });
+ }
+ ftruncateSync(fd, len) {
+ return this.realFs.ftruncateSync(fd, len);
+ }
+ watch(p, a, b) {
+ return this.realFs.watch(
+ npath.fromPortablePath(p),
+ a,
+ b
+ );
+ }
+ watchFile(p, a, b) {
+ return this.realFs.watchFile(
+ npath.fromPortablePath(p),
+ a,
+ b
+ );
+ }
+ unwatchFile(p, cb) {
+ return this.realFs.unwatchFile(npath.fromPortablePath(p), cb);
+ }
+ makeCallback(resolve, reject) {
+ return (err, result) => {
+ if (err) {
+ reject(err);
+ } else {
+ resolve(result);
+ }
+ };
+ }
+}
+
+const NUMBER_REGEXP = /^[0-9]+$/;
+const VIRTUAL_REGEXP = /^(\/(?:[^/]+\/)*?(?:\$\$virtual|__virtual__))((?:\/((?:[^/]+-)?[a-f0-9]+)(?:\/([^/]+))?)?((?:\/.*)?))$/;
+const VALID_COMPONENT = /^([^/]+-)?[a-f0-9]+$/;
+class VirtualFS extends ProxiedFS {
+ constructor({ baseFs = new NodeFS() } = {}) {
+ super(ppath);
+ this.baseFs = baseFs;
+ }
+ static makeVirtualPath(base, component, to) {
+ if (ppath.basename(base) !== `__virtual__`)
+ throw new Error(`Assertion failed: Virtual folders must be named "__virtual__"`);
+ if (!ppath.basename(component).match(VALID_COMPONENT))
+ throw new Error(`Assertion failed: Virtual components must be ended by an hexadecimal hash`);
+ const target = ppath.relative(ppath.dirname(base), to);
+ const segments = target.split(`/`);
+ let depth = 0;
+ while (depth < segments.length && segments[depth] === `..`)
+ depth += 1;
+ const finalSegments = segments.slice(depth);
+ const fullVirtualPath = ppath.join(base, component, String(depth), ...finalSegments);
+ return fullVirtualPath;
+ }
+ static resolveVirtual(p) {
+ const match = p.match(VIRTUAL_REGEXP);
+ if (!match || !match[3] && match[5])
+ return p;
+ const target = ppath.dirname(match[1]);
+ if (!match[3] || !match[4])
+ return target;
+ const isnum = NUMBER_REGEXP.test(match[4]);
+ if (!isnum)
+ return p;
+ const depth = Number(match[4]);
+ const backstep = `../`.repeat(depth);
+ const subpath = match[5] || `.`;
+ return VirtualFS.resolveVirtual(ppath.join(target, backstep, subpath));
+ }
+ getExtractHint(hints) {
+ return this.baseFs.getExtractHint(hints);
+ }
+ getRealPath() {
+ return this.baseFs.getRealPath();
+ }
+ realpathSync(p) {
+ const match = p.match(VIRTUAL_REGEXP);
+ if (!match)
+ return this.baseFs.realpathSync(p);
+ if (!match[5])
+ return p;
+ const realpath = this.baseFs.realpathSync(this.mapToBase(p));
+ return VirtualFS.makeVirtualPath(match[1], match[3], realpath);
+ }
+ async realpathPromise(p) {
+ const match = p.match(VIRTUAL_REGEXP);
+ if (!match)
+ return await this.baseFs.realpathPromise(p);
+ if (!match[5])
+ return p;
+ const realpath = await this.baseFs.realpathPromise(this.mapToBase(p));
+ return VirtualFS.makeVirtualPath(match[1], match[3], realpath);
+ }
+ mapToBase(p) {
+ if (p === ``)
+ return p;
+ if (this.pathUtils.isAbsolute(p))
+ return VirtualFS.resolveVirtual(p);
+ const resolvedRoot = VirtualFS.resolveVirtual(this.baseFs.resolve(PortablePath.dot));
+ const resolvedP = VirtualFS.resolveVirtual(this.baseFs.resolve(p));
+ return ppath.relative(resolvedRoot, resolvedP) || PortablePath.dot;
+ }
+ mapFromBase(p) {
+ return p;
+ }
+}
+
+const [major, minor] = process.versions.node.split(`.`).map((value) => parseInt(value, 10));
+const WATCH_MODE_MESSAGE_USES_ARRAYS = major > 19 || major === 19 && minor >= 2 || major === 18 && minor >= 13;
+const HAS_LAZY_LOADED_TRANSLATORS = major === 20 && minor < 6 || major === 19 && minor >= 3;
+
+function readPackageScope(checkPath) {
+ const rootSeparatorIndex = checkPath.indexOf(npath.sep);
+ let separatorIndex;
+ do {
+ separatorIndex = checkPath.lastIndexOf(npath.sep);
+ checkPath = checkPath.slice(0, separatorIndex);
+ if (checkPath.endsWith(`${npath.sep}node_modules`))
+ return false;
+ const pjson = readPackage(checkPath + npath.sep);
+ if (pjson) {
+ return {
+ data: pjson,
+ path: checkPath
+ };
+ }
+ } while (separatorIndex > rootSeparatorIndex);
+ return false;
+}
+function readPackage(requestPath) {
+ const jsonPath = npath.resolve(requestPath, `package.json`);
+ if (!fs.existsSync(jsonPath))
+ return null;
+ return JSON.parse(fs.readFileSync(jsonPath, `utf8`));
+}
+
+async function tryReadFile$1(path2) {
+ try {
+ return await fs.promises.readFile(path2, `utf8`);
+ } catch (error) {
+ if (error.code === `ENOENT`)
+ return null;
+ throw error;
+ }
+}
+function tryParseURL(str, base) {
+ try {
+ return new URL$1(str, base);
+ } catch {
+ return null;
+ }
+}
+let entrypointPath = null;
+function setEntrypointPath(file) {
+ entrypointPath = file;
+}
+function getFileFormat(filepath) {
+ const ext = path.extname(filepath);
+ switch (ext) {
+ case `.mjs`: {
+ return `module`;
+ }
+ case `.cjs`: {
+ return `commonjs`;
+ }
+ case `.wasm`: {
+ throw new Error(
+ `Unknown file extension ".wasm" for ${filepath}`
+ );
+ }
+ case `.json`: {
+ return `json`;
+ }
+ case `.js`: {
+ const pkg = readPackageScope(filepath);
+ if (!pkg)
+ return `commonjs`;
+ return pkg.data.type ?? `commonjs`;
+ }
+ default: {
+ if (entrypointPath !== filepath)
+ return null;
+ const pkg = readPackageScope(filepath);
+ if (!pkg)
+ return `commonjs`;
+ if (pkg.data.type === `module`)
+ return null;
+ return pkg.data.type ?? `commonjs`;
+ }
+ }
+}
+
+async function load$1(urlString, context, nextLoad) {
+ const url = tryParseURL(urlString);
+ if (url?.protocol !== `file:`)
+ return nextLoad(urlString, context, nextLoad);
+ const filePath = fileURLToPath(url);
+ const format = getFileFormat(filePath);
+ if (!format)
+ return nextLoad(urlString, context, nextLoad);
+ if (format === `json` && context.importAssertions?.type !== `json`) {
+ const err = new TypeError(`[ERR_IMPORT_ASSERTION_TYPE_MISSING]: Module "${urlString}" needs an import assertion of type "json"`);
+ err.code = `ERR_IMPORT_ASSERTION_TYPE_MISSING`;
+ throw err;
+ }
+ if (process.env.WATCH_REPORT_DEPENDENCIES && process.send) {
+ const pathToSend = pathToFileURL(
+ npath.fromPortablePath(
+ VirtualFS.resolveVirtual(npath.toPortablePath(filePath))
+ )
+ ).href;
+ process.send({
+ "watch:import": WATCH_MODE_MESSAGE_USES_ARRAYS ? [pathToSend] : pathToSend
+ });
+ }
+ return {
+ format,
+ source: format === `commonjs` ? void 0 : await fs.promises.readFile(filePath, `utf8`),
+ shortCircuit: true
+ };
+}
+
+const ArrayIsArray = Array.isArray;
+const JSONStringify = JSON.stringify;
+const ObjectGetOwnPropertyNames = Object.getOwnPropertyNames;
+const ObjectPrototypeHasOwnProperty = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);
+const RegExpPrototypeExec = (obj, string) => RegExp.prototype.exec.call(obj, string);
+const RegExpPrototypeSymbolReplace = (obj, ...rest) => RegExp.prototype[Symbol.replace].apply(obj, rest);
+const StringPrototypeEndsWith = (str, ...rest) => String.prototype.endsWith.apply(str, rest);
+const StringPrototypeIncludes = (str, ...rest) => String.prototype.includes.apply(str, rest);
+const StringPrototypeLastIndexOf = (str, ...rest) => String.prototype.lastIndexOf.apply(str, rest);
+const StringPrototypeIndexOf = (str, ...rest) => String.prototype.indexOf.apply(str, rest);
+const StringPrototypeReplace = (str, ...rest) => String.prototype.replace.apply(str, rest);
+const StringPrototypeSlice = (str, ...rest) => String.prototype.slice.apply(str, rest);
+const StringPrototypeStartsWith = (str, ...rest) => String.prototype.startsWith.apply(str, rest);
+const SafeMap = Map;
+const JSONParse = JSON.parse;
+
+function createErrorType(code, messageCreator, errorType) {
+ return class extends errorType {
+ constructor(...args) {
+ super(messageCreator(...args));
+ this.code = code;
+ this.name = `${errorType.name} [${code}]`;
+ }
+ };
+}
+const ERR_PACKAGE_IMPORT_NOT_DEFINED = createErrorType(
+ `ERR_PACKAGE_IMPORT_NOT_DEFINED`,
+ (specifier, packagePath, base) => {
+ return `Package import specifier "${specifier}" is not defined${packagePath ? ` in package ${packagePath}package.json` : ``} imported from ${base}`;
+ },
+ TypeError
+);
+const ERR_INVALID_MODULE_SPECIFIER = createErrorType(
+ `ERR_INVALID_MODULE_SPECIFIER`,
+ (request, reason, base = void 0) => {
+ return `Invalid module "${request}" ${reason}${base ? ` imported from ${base}` : ``}`;
+ },
+ TypeError
+);
+const ERR_INVALID_PACKAGE_TARGET = createErrorType(
+ `ERR_INVALID_PACKAGE_TARGET`,
+ (pkgPath, key, target, isImport = false, base = void 0) => {
+ const relError = typeof target === `string` && !isImport && target.length && !StringPrototypeStartsWith(target, `./`);
+ if (key === `.`) {
+ assert(isImport === false);
+ return `Invalid "exports" main target ${JSONStringify(target)} defined in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ``}${relError ? `; targets must start with "./"` : ``}`;
+ }
+ return `Invalid "${isImport ? `imports` : `exports`}" target ${JSONStringify(
+ target
+ )} defined for '${key}' in the package config ${pkgPath}package.json${base ? ` imported from ${base}` : ``}${relError ? `; targets must start with "./"` : ``}`;
+ },
+ Error
+);
+const ERR_INVALID_PACKAGE_CONFIG = createErrorType(
+ `ERR_INVALID_PACKAGE_CONFIG`,
+ (path, base, message) => {
+ return `Invalid package config ${path}${base ? ` while importing ${base}` : ``}${message ? `. ${message}` : ``}`;
+ },
+ Error
+);
+
+function filterOwnProperties(source, keys) {
+ const filtered = /* @__PURE__ */ Object.create(null);
+ for (let i = 0; i < keys.length; i++) {
+ const key = keys[i];
+ if (ObjectPrototypeHasOwnProperty(source, key)) {
+ filtered[key] = source[key];
+ }
+ }
+ return filtered;
+}
+
+const packageJSONCache = new SafeMap();
+function getPackageConfig(path, specifier, base, readFileSyncFn) {
+ const existing = packageJSONCache.get(path);
+ if (existing !== void 0) {
+ return existing;
+ }
+ const source = readFileSyncFn(path);
+ if (source === void 0) {
+ const packageConfig2 = {
+ pjsonPath: path,
+ exists: false,
+ main: void 0,
+ name: void 0,
+ type: "none",
+ exports: void 0,
+ imports: void 0
+ };
+ packageJSONCache.set(path, packageConfig2);
+ return packageConfig2;
+ }
+ let packageJSON;
+ try {
+ packageJSON = JSONParse(source);
+ } catch (error) {
+ throw new ERR_INVALID_PACKAGE_CONFIG(
+ path,
+ (base ? `"${specifier}" from ` : "") + fileURLToPath(base || specifier),
+ error.message
+ );
+ }
+ let { imports, main, name, type } = filterOwnProperties(packageJSON, [
+ "imports",
+ "main",
+ "name",
+ "type"
+ ]);
+ const exports = ObjectPrototypeHasOwnProperty(packageJSON, "exports") ? packageJSON.exports : void 0;
+ if (typeof imports !== "object" || imports === null) {
+ imports = void 0;
+ }
+ if (typeof main !== "string") {
+ main = void 0;
+ }
+ if (typeof name !== "string") {
+ name = void 0;
+ }
+ if (type !== "module" && type !== "commonjs") {
+ type = "none";
+ }
+ const packageConfig = {
+ pjsonPath: path,
+ exists: true,
+ main,
+ name,
+ type,
+ exports,
+ imports
+ };
+ packageJSONCache.set(path, packageConfig);
+ return packageConfig;
+}
+function getPackageScopeConfig(resolved, readFileSyncFn) {
+ let packageJSONUrl = new URL("./package.json", resolved);
+ while (true) {
+ const packageJSONPath2 = packageJSONUrl.pathname;
+ if (StringPrototypeEndsWith(packageJSONPath2, "node_modules/package.json")) {
+ break;
+ }
+ const packageConfig2 = getPackageConfig(
+ fileURLToPath(packageJSONUrl),
+ resolved,
+ void 0,
+ readFileSyncFn
+ );
+ if (packageConfig2.exists) {
+ return packageConfig2;
+ }
+ const lastPackageJSONUrl = packageJSONUrl;
+ packageJSONUrl = new URL("../package.json", packageJSONUrl);
+ if (packageJSONUrl.pathname === lastPackageJSONUrl.pathname) {
+ break;
+ }
+ }
+ const packageJSONPath = fileURLToPath(packageJSONUrl);
+ const packageConfig = {
+ pjsonPath: packageJSONPath,
+ exists: false,
+ main: void 0,
+ name: void 0,
+ type: "none",
+ exports: void 0,
+ imports: void 0
+ };
+ packageJSONCache.set(packageJSONPath, packageConfig);
+ return packageConfig;
+}
+
+/**
+ @license
+ Copyright Node.js contributors. All rights reserved.
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to
+ deal in the Software without restriction, including without limitation the
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ sell copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ IN THE SOFTWARE.
+*/
+function throwImportNotDefined(specifier, packageJSONUrl, base) {
+ throw new ERR_PACKAGE_IMPORT_NOT_DEFINED(
+ specifier,
+ packageJSONUrl && fileURLToPath(new URL(".", packageJSONUrl)),
+ fileURLToPath(base)
+ );
+}
+function throwInvalidSubpath(subpath, packageJSONUrl, internal, base) {
+ const reason = `request is not a valid subpath for the "${internal ? "imports" : "exports"}" resolution of ${fileURLToPath(packageJSONUrl)}`;
+ throw new ERR_INVALID_MODULE_SPECIFIER(
+ subpath,
+ reason,
+ base && fileURLToPath(base)
+ );
+}
+function throwInvalidPackageTarget(subpath, target, packageJSONUrl, internal, base) {
+ if (typeof target === "object" && target !== null) {
+ target = JSONStringify(target, null, "");
+ } else {
+ target = `${target}`;
+ }
+ throw new ERR_INVALID_PACKAGE_TARGET(
+ fileURLToPath(new URL(".", packageJSONUrl)),
+ subpath,
+ target,
+ internal,
+ base && fileURLToPath(base)
+ );
+}
+const invalidSegmentRegEx = /(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))(\\|\/|$)/i;
+const patternRegEx = /\*/g;
+function resolvePackageTargetString(target, subpath, match, packageJSONUrl, base, pattern, internal, conditions) {
+ if (subpath !== "" && !pattern && target[target.length - 1] !== "/")
+ throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base);
+ if (!StringPrototypeStartsWith(target, "./")) {
+ if (internal && !StringPrototypeStartsWith(target, "../") && !StringPrototypeStartsWith(target, "/")) {
+ let isURL = false;
+ try {
+ new URL(target);
+ isURL = true;
+ } catch {
+ }
+ if (!isURL) {
+ const exportTarget = pattern ? RegExpPrototypeSymbolReplace(patternRegEx, target, () => subpath) : target + subpath;
+ return exportTarget;
+ }
+ }
+ throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base);
+ }
+ if (RegExpPrototypeExec(
+ invalidSegmentRegEx,
+ StringPrototypeSlice(target, 2)
+ ) !== null)
+ throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base);
+ const resolved = new URL(target, packageJSONUrl);
+ const resolvedPath = resolved.pathname;
+ const packagePath = new URL(".", packageJSONUrl).pathname;
+ if (!StringPrototypeStartsWith(resolvedPath, packagePath))
+ throwInvalidPackageTarget(match, target, packageJSONUrl, internal, base);
+ if (subpath === "")
+ return resolved;
+ if (RegExpPrototypeExec(invalidSegmentRegEx, subpath) !== null) {
+ const request = pattern ? StringPrototypeReplace(match, "*", () => subpath) : match + subpath;
+ throwInvalidSubpath(request, packageJSONUrl, internal, base);
+ }
+ if (pattern) {
+ return new URL(
+ RegExpPrototypeSymbolReplace(patternRegEx, resolved.href, () => subpath)
+ );
+ }
+ return new URL(subpath, resolved);
+}
+function isArrayIndex(key) {
+ const keyNum = +key;
+ if (`${keyNum}` !== key)
+ return false;
+ return keyNum >= 0 && keyNum < 4294967295;
+}
+function resolvePackageTarget(packageJSONUrl, target, subpath, packageSubpath, base, pattern, internal, conditions) {
+ if (typeof target === "string") {
+ return resolvePackageTargetString(
+ target,
+ subpath,
+ packageSubpath,
+ packageJSONUrl,
+ base,
+ pattern,
+ internal);
+ } else if (ArrayIsArray(target)) {
+ if (target.length === 0) {
+ return null;
+ }
+ let lastException;
+ for (let i = 0; i < target.length; i++) {
+ const targetItem = target[i];
+ let resolveResult;
+ try {
+ resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ targetItem,
+ subpath,
+ packageSubpath,
+ base,
+ pattern,
+ internal,
+ conditions
+ );
+ } catch (e) {
+ lastException = e;
+ if (e.code === "ERR_INVALID_PACKAGE_TARGET") {
+ continue;
+ }
+ throw e;
+ }
+ if (resolveResult === void 0) {
+ continue;
+ }
+ if (resolveResult === null) {
+ lastException = null;
+ continue;
+ }
+ return resolveResult;
+ }
+ if (lastException === void 0 || lastException === null)
+ return lastException;
+ throw lastException;
+ } else if (typeof target === "object" && target !== null) {
+ const keys = ObjectGetOwnPropertyNames(target);
+ for (let i = 0; i < keys.length; i++) {
+ const key = keys[i];
+ if (isArrayIndex(key)) {
+ throw new ERR_INVALID_PACKAGE_CONFIG(
+ fileURLToPath(packageJSONUrl),
+ base,
+ '"exports" cannot contain numeric property keys.'
+ );
+ }
+ }
+ for (let i = 0; i < keys.length; i++) {
+ const key = keys[i];
+ if (key === "default" || conditions.has(key)) {
+ const conditionalTarget = target[key];
+ const resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ conditionalTarget,
+ subpath,
+ packageSubpath,
+ base,
+ pattern,
+ internal,
+ conditions
+ );
+ if (resolveResult === void 0)
+ continue;
+ return resolveResult;
+ }
+ }
+ return void 0;
+ } else if (target === null) {
+ return null;
+ }
+ throwInvalidPackageTarget(
+ packageSubpath,
+ target,
+ packageJSONUrl,
+ internal,
+ base
+ );
+}
+function patternKeyCompare(a, b) {
+ const aPatternIndex = StringPrototypeIndexOf(a, "*");
+ const bPatternIndex = StringPrototypeIndexOf(b, "*");
+ const baseLenA = aPatternIndex === -1 ? a.length : aPatternIndex + 1;
+ const baseLenB = bPatternIndex === -1 ? b.length : bPatternIndex + 1;
+ if (baseLenA > baseLenB)
+ return -1;
+ if (baseLenB > baseLenA)
+ return 1;
+ if (aPatternIndex === -1)
+ return 1;
+ if (bPatternIndex === -1)
+ return -1;
+ if (a.length > b.length)
+ return -1;
+ if (b.length > a.length)
+ return 1;
+ return 0;
+}
+function packageImportsResolve({ name, base, conditions, readFileSyncFn }) {
+ if (name === "#" || StringPrototypeStartsWith(name, "#/") || StringPrototypeEndsWith(name, "/")) {
+ const reason = "is not a valid internal imports specifier name";
+ throw new ERR_INVALID_MODULE_SPECIFIER(name, reason, fileURLToPath(base));
+ }
+ let packageJSONUrl;
+ const packageConfig = getPackageScopeConfig(base, readFileSyncFn);
+ if (packageConfig.exists) {
+ packageJSONUrl = pathToFileURL(packageConfig.pjsonPath);
+ const imports = packageConfig.imports;
+ if (imports) {
+ if (ObjectPrototypeHasOwnProperty(imports, name) && !StringPrototypeIncludes(name, "*")) {
+ const resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ imports[name],
+ "",
+ name,
+ base,
+ false,
+ true,
+ conditions
+ );
+ if (resolveResult != null) {
+ return resolveResult;
+ }
+ } else {
+ let bestMatch = "";
+ let bestMatchSubpath;
+ const keys = ObjectGetOwnPropertyNames(imports);
+ for (let i = 0; i < keys.length; i++) {
+ const key = keys[i];
+ const patternIndex = StringPrototypeIndexOf(key, "*");
+ if (patternIndex !== -1 && StringPrototypeStartsWith(
+ name,
+ StringPrototypeSlice(key, 0, patternIndex)
+ )) {
+ const patternTrailer = StringPrototypeSlice(key, patternIndex + 1);
+ if (name.length >= key.length && StringPrototypeEndsWith(name, patternTrailer) && patternKeyCompare(bestMatch, key) === 1 && StringPrototypeLastIndexOf(key, "*") === patternIndex) {
+ bestMatch = key;
+ bestMatchSubpath = StringPrototypeSlice(
+ name,
+ patternIndex,
+ name.length - patternTrailer.length
+ );
+ }
+ }
+ }
+ if (bestMatch) {
+ const target = imports[bestMatch];
+ const resolveResult = resolvePackageTarget(
+ packageJSONUrl,
+ target,
+ bestMatchSubpath,
+ bestMatch,
+ base,
+ true,
+ true,
+ conditions
+ );
+ if (resolveResult != null) {
+ return resolveResult;
+ }
+ }
+ }
+ }
+ }
+ throwImportNotDefined(name, packageJSONUrl, base);
+}
+
+const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:node:)?(?:@[^/]+\/)?[^/]+)\/*(.*|)$/;
+const isRelativeRegexp = /^\.{0,2}\//;
+function tryReadFile(filePath) {
+ try {
+ return fs.readFileSync(filePath, `utf8`);
+ } catch (err) {
+ if (err.code === `ENOENT`)
+ return void 0;
+ throw err;
+ }
+}
+async function resolvePrivateRequest(specifier, issuer, context, nextResolve) {
+ const resolved = packageImportsResolve({
+ name: specifier,
+ base: pathToFileURL(issuer),
+ conditions: new Set(context.conditions),
+ readFileSyncFn: tryReadFile
+ });
+ if (resolved instanceof URL) {
+ return { url: resolved.href, shortCircuit: true };
+ } else {
+ if (resolved.startsWith(`#`))
+ throw new Error(`Mapping from one private import to another isn't allowed`);
+ return resolve$1(resolved, context, nextResolve);
+ }
+}
+async function resolve$1(originalSpecifier, context, nextResolve) {
+ const { findPnpApi } = moduleExports;
+ if (!findPnpApi || isBuiltin(originalSpecifier))
+ return nextResolve(originalSpecifier, context, nextResolve);
+ let specifier = originalSpecifier;
+ const url = tryParseURL(specifier, isRelativeRegexp.test(specifier) ? context.parentURL : void 0);
+ if (url) {
+ if (url.protocol !== `file:`)
+ return nextResolve(originalSpecifier, context, nextResolve);
+ specifier = fileURLToPath(url);
+ }
+ const { parentURL, conditions = [] } = context;
+ const issuer = parentURL && tryParseURL(parentURL)?.protocol === `file:` ? fileURLToPath(parentURL) : process.cwd();
+ const pnpapi = findPnpApi(issuer) ?? (url ? findPnpApi(specifier) : null);
+ if (!pnpapi)
+ return nextResolve(originalSpecifier, context, nextResolve);
+ if (specifier.startsWith(`#`))
+ return resolvePrivateRequest(specifier, issuer, context, nextResolve);
+ const dependencyNameMatch = specifier.match(pathRegExp);
+ let allowLegacyResolve = false;
+ if (dependencyNameMatch) {
+ const [, dependencyName, subPath] = dependencyNameMatch;
+ if (subPath === `` && dependencyName !== `pnpapi`) {
+ const resolved = pnpapi.resolveToUnqualified(`${dependencyName}/package.json`, issuer);
+ if (resolved) {
+ const content = await tryReadFile$1(resolved);
+ if (content) {
+ const pkg = JSON.parse(content);
+ allowLegacyResolve = pkg.exports == null;
+ }
+ }
+ }
+ }
+ let result;
+ try {
+ result = pnpapi.resolveRequest(specifier, issuer, {
+ conditions: new Set(conditions),
+ extensions: allowLegacyResolve ? void 0 : []
+ });
+ } catch (err) {
+ if (err instanceof Error && `code` in err && err.code === `MODULE_NOT_FOUND`)
+ err.code = `ERR_MODULE_NOT_FOUND`;
+ throw err;
+ }
+ if (!result)
+ throw new Error(`Resolving '${specifier}' from '${issuer}' failed`);
+ const resultURL = pathToFileURL(result);
+ if (url) {
+ resultURL.search = url.search;
+ resultURL.hash = url.hash;
+ }
+ if (!parentURL)
+ setEntrypointPath(fileURLToPath(resultURL));
+ return {
+ url: resultURL.href,
+ shortCircuit: true
+ };
+}
+
+if (!HAS_LAZY_LOADED_TRANSLATORS) {
+ const binding = process.binding(`fs`);
+ const originalReadFile = binding.readFileUtf8 || binding.readFileSync;
+ if (originalReadFile) {
+ binding[originalReadFile.name] = function(...args) {
+ try {
+ return fs.readFileSync(args[0], {
+ encoding: `utf8`,
+ flag: args[1]
+ });
+ } catch {
+ }
+ return originalReadFile.apply(this, args);
+ };
+ } else {
+ const binding2 = process.binding(`fs`);
+ const originalfstat = binding2.fstat;
+ const ZIP_MASK = 4278190080;
+ const ZIP_MAGIC = 704643072;
+ binding2.fstat = function(...args) {
+ const [fd, useBigint, req] = args;
+ if ((fd & ZIP_MASK) === ZIP_MAGIC && useBigint === false && req === void 0) {
+ try {
+ const stats = fs.fstatSync(fd);
+ return new Float64Array([
+ stats.dev,
+ stats.mode,
+ stats.nlink,
+ stats.uid,
+ stats.gid,
+ stats.rdev,
+ stats.blksize,
+ stats.ino,
+ stats.size,
+ stats.blocks
+ ]);
+ } catch {
+ }
+ }
+ return originalfstat.apply(this, args);
+ };
+ }
+}
+
+const resolve = resolve$1;
+const load = load$1;
+
+export { load, resolve };
diff --git a/.prettierignore b/.prettierignore
index 0e80a3c8..72d7ea41 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -1,2 +1,7 @@
-# package.json is formatted by package managers, so we ignore it here
-package.json
\ No newline at end of file
+config/eslint-config-bitauth
+wasm
+.yarn
+.pnp.*
+package.json
+src/lib/address/fixtures/key_io_*.json
+src/lib/vm/instruction-sets/xec/fixtures/satoshi-client/*.json
\ No newline at end of file
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
index dacf61ff..0c2aa1e4 100644
--- a/.vscode/extensions.json
+++ b/.vscode/extensions.json
@@ -6,9 +6,9 @@
"dtsvet.vscode-wasm",
"gruntfuggly.todo-tree",
"maelvalais.autoconf",
- "bungcip.better-toml",
"ms-vscode.cpptools",
"streetsidesoftware.code-spell-checker",
- "ms-azuretools.vscode-docker"
+ "ms-azuretools.vscode-docker",
+ "arcanis.vscode-zipfs"
]
}
diff --git a/.vscode/settings.json b/.vscode/settings.json
index f5025c53..d4c7e2ef 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,11 +1,16 @@
{
"cSpell.userWords": [], // only use words from .cspell.json
- "debug.javascript.usePreview": false,
"deno.enable": false,
"editor.formatOnSave": true,
"editor.semanticHighlighting.enabled": true,
- "typescript.tsdk": "node_modules/typescript/lib",
+ "typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"cSpell.enabled": true,
- "typescript.preferences.importModuleSpecifierEnding": "js"
+ "typescript.preferences.importModuleSpecifierEnding": "js",
+ "search.exclude": {
+ "**/.yarn": true,
+ "**/.pnp.*": true
+ },
+ "eslint.nodePath": ".yarn/sdks",
+ "prettier.prettierPath": ".yarn/sdks/prettier/index.js"
}
diff --git a/.yarn b/.yarn
index b13e162c..ab6e7913 160000
--- a/.yarn
+++ b/.yarn
@@ -1 +1 @@
-Subproject commit b13e162cd936faa7ac667c724bc360527d1c53f1
+Subproject commit ab6e7913bf54ff9a197f8d11fa7f94f8caf7e114
diff --git a/.yarnrc.yml b/.yarnrc.yml
index a568a96c..04706389 100644
--- a/.yarnrc.yml
+++ b/.yarnrc.yml
@@ -1,7 +1,16 @@
-nodeLinker: node-modules
-
-plugins:
- - path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
- spec: "@yarnpkg/plugin-interactive-tools"
-
-yarnPath: .yarn/releases/yarn-3.3.1.cjs
+cacheFolder: './.yarn/cache'
+enableGlobalCache: false
+enableScripts: false
+nodeLinker: pnp
+yarnPath: .yarn/releases/yarn-4.0.2.cjs
+supportedArchitectures:
+ cpu:
+ - 'arm64'
+ - 'x64'
+ libc:
+ - 'glibc'
+ - 'musl'
+ os:
+ - 'darwin'
+ - 'linux'
+ - 'win32'
diff --git a/CHANGELOG-v1-to-v2.md b/CHANGELOG-v1-to-v2.md
index 782d5250..9d670345 100644
--- a/CHANGELOG-v1-to-v2.md
+++ b/CHANGELOG-v1-to-v2.md
@@ -1,4 +1,4 @@
-### Draft v2 Notes
+# Migrating from v1 to v2
Libauth is now a [pure ESM package](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c), simplifying the developer experience by allowing WASM crypto to be instantiated internally/automatically by default π. This refactor also simplifies the usage of and types surrounding Libauth virtual machines and compilers, and several other APIs have been improved.
@@ -34,3 +34,6 @@ Several other improvements have been made:
- **Expanded state available to VMs and compilers** β VM and compiler operations can now access all raw contents of transactions and source outputs.
- **Expanded capabilities of template scenarios** β scenarios can now represent any transaction shape and generate full, serializable transactions.
- **New VM bytecode test vector generation** β Libauth includes a new `vmb_tests` test vector generation system to produce sets of cross-implementation test vectors as serialized transactions; this allows for sets of test vectors that fully test all transaction validation infrastructure without making assumptions about implementation internals.
+- **Improved CashAddress utilities** β cash address utilities no longer require enums, hash lengths are measured in bytes rather than bits, and `type` is distinguished from `typeBit`.
+- **More consistent [encoding/decoding utilities](./docs/encodings-and-formats.md)** β Several decoding methods have been renamed and refactored to use the new ReadPosition API.
+- **More consistent [error handling](./docs/errors.md)** β all possible errors are surfaced in type signatures as `string`s.
diff --git a/README.md b/README.md
index 69285d4a..bf13e9cc 100644
--- a/README.md
+++ b/README.md
@@ -12,27 +12,13 @@
Explore API Reference Β»
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
# Libauth
@@ -97,7 +83,7 @@ Libauth uses [`BigInt`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/
Pull Requests welcome! Please see [`CONTRIBUTING.md`](.github/CONTRIBUTING.md) for details.
-This library requires [Yarn](https://yarnpkg.com/) for development. If you don't have Yarn, make sure you have `Node.js` installed, then run `npm install -g yarn`. Once Yarn is installed:
+This library requires [Yarn](https://yarnpkg.com/) for development. With `Node.js` installed, the `yarn` package manager can be installed by running `corepack enable`. Once `yarn` is installed:
```sh
# note the use of --recursive to clone submodules
diff --git a/config/api-extractor.json b/config/api-extractor.json
index 2f23edb3..b3ed25c5 100644
--- a/config/api-extractor.json
+++ b/config/api-extractor.json
@@ -1,340 +1,340 @@
-/**
- * Config file for API Extractor. For more info, please visit: https://api-extractor.com
- */
-{
- "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
-
- /**
- * Optionally specifies another JSON config file that this file extends from. This provides a way for
- * standard settings to be shared across multiple projects.
- *
- * If the path starts with "./" or "../", the path is resolved relative to the folder of the file that contains
- * the "extends" field. Otherwise, the first path segment is interpreted as an NPM package name, and will be
- * resolved using NodeJS require().
- *
- * SUPPORTED TOKENS: none
- * DEFAULT VALUE: ""
- */
- // "extends": "./shared/api-extractor-base.json"
- // "extends": "my-package/include/api-extractor-base.json"
-
- /**
- * Determines the "" token that can be used with other config file settings. The project folder
- * typically contains the tsconfig.json and package.json config files, but the path is user-defined.
- *
- * The path is resolved relative to the folder of the config file that contains the setting.
- *
- * The default value for "projectFolder" is the token "", which means the folder is determined by traversing
- * parent folders, starting from the folder containing api-extractor.json, and stopping at the first folder
- * that contains a tsconfig.json file. If a tsconfig.json file cannot be found in this way, then an error
- * will be reported.
- *
- * SUPPORTED TOKENS:
- * DEFAULT VALUE: ""
- */
- // "projectFolder": "..",
-
- /**
- * (REQUIRED) Specifies the .d.ts file to be used as the starting point for analysis. API Extractor
- * analyzes the symbols exported by this module.
- *
- * The file extension must be ".d.ts" and not ".ts".
- *
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
- * prepend a folder token such as "".
- *
- * SUPPORTED TOKENS: , ,
- */
- "mainEntryPointFilePath": "/build/main/index.d.ts",
-
- /**
- * Determines how the TypeScript compiler engine will be invoked by API Extractor.
- */
- "compiler": {
- /**
- * Specifies the path to the tsconfig.json file to be used by API Extractor when analyzing the project.
- *
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
- * prepend a folder token such as "".
- *
- * Note: This setting will be ignored if "overrideTsconfig" is used.
- *
- * SUPPORTED TOKENS: , ,
- * DEFAULT VALUE: "/tsconfig.json"
- */
- // "tsconfigFilePath": "/tsconfig.json",
- /**
- * Provides a compiler configuration that will be used instead of reading the tsconfig.json file from disk.
- * The object must conform to the TypeScript tsconfig schema:
- *
- * http://json.schemastore.org/tsconfig
- *
- * If omitted, then the tsconfig.json file will be read from the "projectFolder".
- *
- * DEFAULT VALUE: no overrideTsconfig section
- */
- // "overrideTsconfig": {
- // . . .
- // }
- /**
- * This option causes the compiler to be invoked with the --skipLibCheck option. This option is not recommended
- * and may cause API Extractor to produce incomplete or incorrect declarations, but it may be required when
- * dependencies contain declarations that are incompatible with the TypeScript engine that API Extractor uses
- * for its analysis. Where possible, the underlying issue should be fixed rather than relying on skipLibCheck.
- *
- * DEFAULT VALUE: false
- */
- // "skipLibCheck": true,
- },
-
- /**
- * Configures how the API report file (*.api.md) will be generated.
- */
- "apiReport": {
- /**
- * (REQUIRED) Whether to generate an API report.
- */
- "enabled": true,
-
- /**
- * The filename for the API report files. It will be combined with "reportFolder" or "reportTempFolder" to produce
- * a full file path.
- *
- * The file extension should be ".api.md", and the string should not contain a path separator such as "\" or "/".
- *
- * SUPPORTED TOKENS: ,
- * DEFAULT VALUE: ".api.md"
- */
- // "reportFileName": ".api.md",
-
- /**
- * Specifies the folder where the API report file is written. The file name portion is determined by
- * the "reportFileName" setting.
- *
- * The API report file is normally tracked by Git. Changes to it can be used to trigger a branch policy,
- * e.g. for an API review.
- *
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
- * prepend a folder token such as "".
- *
- * SUPPORTED TOKENS: , ,
- * DEFAULT VALUE: "/etc/"
- */
- "reportFolder": "/docs/api/"
-
- /**
- * Specifies the folder where the temporary report file is written. The file name portion is determined by
- * the "reportFileName" setting.
- *
- * After the temporary file is written to disk, it is compared with the file in the "reportFolder".
- * If they are different, a production build will fail.
- *
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
- * prepend a folder token such as "".
- *
- * SUPPORTED TOKENS: , ,
- * DEFAULT VALUE: "/temp/"
- */
- // "reportTempFolder": "/temp/"
- },
-
- /**
- * Configures how the doc model file (*.api.json) will be generated.
- */
- "docModel": {
- /**
- * (REQUIRED) Whether to generate a doc model file.
- */
- "enabled": true
-
- /**
- * The output path for the doc model file. The file extension should be ".api.json".
- *
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
- * prepend a folder token such as "".
- *
- * SUPPORTED TOKENS: , ,
- * DEFAULT VALUE: "/temp/.api.json"
- */
- // "apiJsonFilePath": "/temp/.api.json"
- },
-
- /**
- * Configures how the .d.ts rollup file will be generated.
- */
- "dtsRollup": {
- /**
- * (REQUIRED) Whether to generate the .d.ts rollup file.
- */
- "enabled": true,
-
- /**
- * Specifies the output path for a .d.ts rollup file to be generated without any trimming.
- * This file will include all declarations that are exported by the main entry point.
- *
- * If the path is an empty string, then this file will not be written.
- *
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
- * prepend a folder token such as "".
- *
- * SUPPORTED TOKENS: , ,
- * DEFAULT VALUE: "/dist/.d.ts"
- */
- "untrimmedFilePath": "/build/-all.d.ts",
-
- /**
- * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "beta" release.
- * This file will include only declarations that are marked as "@public" or "@beta".
- *
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
- * prepend a folder token such as "".
- *
- * SUPPORTED TOKENS: , ,
- * DEFAULT VALUE: ""
- */
- "betaTrimmedFilePath": "/build/-beta.d.ts",
-
- /**
- * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "public" release.
- * This file will include only declarations that are marked as "@public".
- *
- * If the path is an empty string, then this file will not be written.
- *
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
- * prepend a folder token such as "".
- *
- * SUPPORTED TOKENS: , ,
- * DEFAULT VALUE: ""
- */
- "publicTrimmedFilePath": "/build/-public.d.ts"
-
- /**
- * When a declaration is trimmed, by default it will be replaced by a code comment such as
- * "Excluded from this release type: exampleMember". Set "omitTrimmingComments" to true to remove the
- * declaration completely.
- *
- * DEFAULT VALUE: false
- */
- // "omitTrimmingComments": true
- },
-
- /**
- * Configures how the tsdoc-metadata.json file will be generated.
- */
- "tsdocMetadata": {
- /**
- * Whether to generate the tsdoc-metadata.json file.
- *
- * DEFAULT VALUE: true
- */
- // "enabled": true,
- /**
- * Specifies where the TSDoc metadata file should be written.
- *
- * The path is resolved relative to the folder of the config file that contains the setting; to change this,
- * prepend a folder token such as "".
- *
- * The default value is "", which causes the path to be automatically inferred from the "tsdocMetadata",
- * "typings" or "main" fields of the project's package.json. If none of these fields are set, the lookup
- * falls back to "tsdoc-metadata.json" in the package folder.
- *
- * SUPPORTED TOKENS: , ,
- * DEFAULT VALUE: ""
- */
- // "tsdocMetadataFilePath": "/dist/tsdoc-metadata.json"
- },
-
- /**
- * Configures how API Extractor reports error and warning messages produced during analysis.
- *
- * There are three sources of messages: compiler messages, API Extractor messages, and TSDoc messages.
- */
- "messages": {
- /**
- * Configures handling of diagnostic messages reported by the TypeScript compiler engine while analyzing
- * the input .d.ts files.
- *
- * TypeScript message identifiers start with "TS" followed by an integer. For example: "TS2551"
- *
- * DEFAULT VALUE: A single "default" entry with logLevel=warning.
- */
- "compilerMessageReporting": {
- /**
- * Configures the default routing for messages that don't match an explicit rule in this table.
- */
- "default": {
- /**
- * Specifies whether the message should be written to the the tool's output log. Note that
- * the "addToApiReportFile" property may supersede this option.
- *
- * Possible values: "error", "warning", "none"
- *
- * Errors cause the build to fail and return a nonzero exit code. Warnings cause a production build fail
- * and return a nonzero exit code. For a non-production build (e.g. when "api-extractor run" includes
- * the "--local" option), the warning is displayed but the build will not fail.
- *
- * DEFAULT VALUE: "warning"
- */
- "logLevel": "warning"
-
- /**
- * When addToApiReportFile is true: If API Extractor is configured to write an API report file (.api.md),
- * then the message will be written inside that file; otherwise, the message is instead logged according to
- * the "logLevel" option.
- *
- * DEFAULT VALUE: false
- */
- // "addToApiReportFile": false
- }
-
- // "TS2551": {
- // "logLevel": "warning",
- // "addToApiReportFile": true
- // },
- //
- // . . .
- },
-
- /**
- * Configures handling of messages reported by API Extractor during its analysis.
- *
- * API Extractor message identifiers start with "ae-". For example: "ae-extra-release-tag"
- *
- * DEFAULT VALUE: See api-extractor-defaults.json for the complete table of extractorMessageReporting mappings
- */
- "extractorMessageReporting": {
- "default": {
- "logLevel": "warning"
- // "addToApiReportFile": false
- }
-
- // "ae-extra-release-tag": {
- // "logLevel": "warning",
- // "addToApiReportFile": true
- // },
- //
- // . . .
- },
-
- /**
- * Configures handling of messages reported by the TSDoc parser when analyzing code comments.
- *
- * TSDoc message identifiers start with "tsdoc-". For example: "tsdoc-link-tag-unescaped-text"
- *
- * DEFAULT VALUE: A single "default" entry with logLevel=warning.
- */
- "tsdocMessageReporting": {
- "default": {
- "logLevel": "warning"
- // "addToApiReportFile": false
- }
-
- // "tsdoc-link-tag-unescaped-text": {
- // "logLevel": "warning",
- // "addToApiReportFile": true
- // },
- //
- // . . .
- }
- }
-}
+/**
+ * Config file for API Extractor. For more info, please visit: https://api-extractor.com
+ */
+{
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
+
+ /**
+ * Optionally specifies another JSON config file that this file extends from. This provides a way for
+ * standard settings to be shared across multiple projects.
+ *
+ * If the path starts with "./" or "../", the path is resolved relative to the folder of the file that contains
+ * the "extends" field. Otherwise, the first path segment is interpreted as an NPM package name, and will be
+ * resolved using NodeJS require().
+ *
+ * SUPPORTED TOKENS: none
+ * DEFAULT VALUE: ""
+ */
+ // "extends": "./shared/api-extractor-base.json"
+ // "extends": "my-package/include/api-extractor-base.json"
+
+ /**
+ * Determines the "" token that can be used with other config file settings. The project folder
+ * typically contains the tsconfig.json and package.json config files, but the path is user-defined.
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting.
+ *
+ * The default value for "projectFolder" is the token "", which means the folder is determined by traversing
+ * parent folders, starting from the folder containing api-extractor.json, and stopping at the first folder
+ * that contains a tsconfig.json file. If a tsconfig.json file cannot be found in this way, then an error
+ * will be reported.
+ *
+ * SUPPORTED TOKENS:
+ * DEFAULT VALUE: ""
+ */
+ // "projectFolder": "..",
+
+ /**
+ * (REQUIRED) Specifies the .d.ts file to be used as the starting point for analysis. API Extractor
+ * analyzes the symbols exported by this module.
+ *
+ * The file extension must be ".d.ts" and not ".ts".
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
+ * prepend a folder token such as "".
+ *
+ * SUPPORTED TOKENS: , ,
+ */
+ "mainEntryPointFilePath": "/build/index.d.ts",
+
+ /**
+ * Determines how the TypeScript compiler engine will be invoked by API Extractor.
+ */
+ "compiler": {
+ /**
+ * Specifies the path to the tsconfig.json file to be used by API Extractor when analyzing the project.
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
+ * prepend a folder token such as "".
+ *
+ * Note: This setting will be ignored if "overrideTsconfig" is used.
+ *
+ * SUPPORTED TOKENS: , ,
+ * DEFAULT VALUE: "/tsconfig.json"
+ */
+ // "tsconfigFilePath": "/tsconfig.json",
+ /**
+ * Provides a compiler configuration that will be used instead of reading the tsconfig.json file from disk.
+ * The object must conform to the TypeScript tsconfig schema:
+ *
+ * http://json.schemastore.org/tsconfig
+ *
+ * If omitted, then the tsconfig.json file will be read from the "projectFolder".
+ *
+ * DEFAULT VALUE: no overrideTsconfig section
+ */
+ // "overrideTsconfig": {
+ // . . .
+ // }
+ /**
+ * This option causes the compiler to be invoked with the --skipLibCheck option. This option is not recommended
+ * and may cause API Extractor to produce incomplete or incorrect declarations, but it may be required when
+ * dependencies contain declarations that are incompatible with the TypeScript engine that API Extractor uses
+ * for its analysis. Where possible, the underlying issue should be fixed rather than relying on skipLibCheck.
+ *
+ * DEFAULT VALUE: false
+ */
+ // "skipLibCheck": true,
+ },
+
+ /**
+ * Configures how the API report file (*.api.md) will be generated.
+ */
+ "apiReport": {
+ /**
+ * (REQUIRED) Whether to generate an API report.
+ */
+ "enabled": true,
+
+ /**
+ * The filename for the API report files. It will be combined with "reportFolder" or "reportTempFolder" to produce
+ * a full file path.
+ *
+ * The file extension should be ".api.md", and the string should not contain a path separator such as "\" or "/".
+ *
+ * SUPPORTED TOKENS: ,
+ * DEFAULT VALUE: ".api.md"
+ */
+ // "reportFileName": ".api.md",
+
+ /**
+ * Specifies the folder where the API report file is written. The file name portion is determined by
+ * the "reportFileName" setting.
+ *
+ * The API report file is normally tracked by Git. Changes to it can be used to trigger a branch policy,
+ * e.g. for an API review.
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
+ * prepend a folder token such as "".
+ *
+ * SUPPORTED TOKENS: , ,
+ * DEFAULT VALUE: "/etc/"
+ */
+ "reportFolder": "/build/api/"
+
+ /**
+ * Specifies the folder where the temporary report file is written. The file name portion is determined by
+ * the "reportFileName" setting.
+ *
+ * After the temporary file is written to disk, it is compared with the file in the "reportFolder".
+ * If they are different, a production build will fail.
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
+ * prepend a folder token such as "".
+ *
+ * SUPPORTED TOKENS: , ,
+ * DEFAULT VALUE: "/temp/"
+ */
+ // "reportTempFolder": "/temp/"
+ },
+
+ /**
+ * Configures how the doc model file (*.api.json) will be generated.
+ */
+ "docModel": {
+ /**
+ * (REQUIRED) Whether to generate a doc model file.
+ */
+ "enabled": true
+
+ /**
+ * The output path for the doc model file. The file extension should be ".api.json".
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
+ * prepend a folder token such as "".
+ *
+ * SUPPORTED TOKENS: , ,
+ * DEFAULT VALUE: "/temp/.api.json"
+ */
+ // "apiJsonFilePath": "/temp/.api.json"
+ },
+
+ /**
+ * Configures how the .d.ts rollup file will be generated.
+ */
+ "dtsRollup": {
+ /**
+ * (REQUIRED) Whether to generate the .d.ts rollup file.
+ */
+ "enabled": true,
+
+ /**
+ * Specifies the output path for a .d.ts rollup file to be generated without any trimming.
+ * This file will include all declarations that are exported by the main entry point.
+ *
+ * If the path is an empty string, then this file will not be written.
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
+ * prepend a folder token such as "".
+ *
+ * SUPPORTED TOKENS: , ,
+ * DEFAULT VALUE: "/dist/.d.ts"
+ */
+ "untrimmedFilePath": "/build/-all.d.ts",
+
+ /**
+ * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "beta" release.
+ * This file will include only declarations that are marked as "@public" or "@beta".
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
+ * prepend a folder token such as "".
+ *
+ * SUPPORTED TOKENS: , ,
+ * DEFAULT VALUE: ""
+ */
+ "betaTrimmedFilePath": "/build/-beta.d.ts",
+
+ /**
+ * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "public" release.
+ * This file will include only declarations that are marked as "@public".
+ *
+ * If the path is an empty string, then this file will not be written.
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
+ * prepend a folder token such as "".
+ *
+ * SUPPORTED TOKENS: , ,
+ * DEFAULT VALUE: ""
+ */
+ "publicTrimmedFilePath": "/build/-public.d.ts"
+
+ /**
+ * When a declaration is trimmed, by default it will be replaced by a code comment such as
+ * "Excluded from this release type: exampleMember". Set "omitTrimmingComments" to true to remove the
+ * declaration completely.
+ *
+ * DEFAULT VALUE: false
+ */
+ // "omitTrimmingComments": true
+ },
+
+ /**
+ * Configures how the tsdoc-metadata.json file will be generated.
+ */
+ "tsdocMetadata": {
+ /**
+ * Whether to generate the tsdoc-metadata.json file.
+ *
+ * DEFAULT VALUE: true
+ */
+ // "enabled": true,
+ /**
+ * Specifies where the TSDoc metadata file should be written.
+ *
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
+ * prepend a folder token such as "".
+ *
+ * The default value is "", which causes the path to be automatically inferred from the "tsdocMetadata",
+ * "typings" or "main" fields of the project's package.json. If none of these fields are set, the lookup
+ * falls back to "tsdoc-metadata.json" in the package folder.
+ *
+ * SUPPORTED TOKENS: , ,
+ * DEFAULT VALUE: ""
+ */
+ // "tsdocMetadataFilePath": "/dist/tsdoc-metadata.json"
+ },
+
+ /**
+ * Configures how API Extractor reports error and warning messages produced during analysis.
+ *
+ * There are three sources of messages: compiler messages, API Extractor messages, and TSDoc messages.
+ */
+ "messages": {
+ /**
+ * Configures handling of diagnostic messages reported by the TypeScript compiler engine while analyzing
+ * the input .d.ts files.
+ *
+ * TypeScript message identifiers start with "TS" followed by an integer. For example: "TS2551"
+ *
+ * DEFAULT VALUE: A single "default" entry with logLevel=warning.
+ */
+ "compilerMessageReporting": {
+ /**
+ * Configures the default routing for messages that don't match an explicit rule in this table.
+ */
+ "default": {
+ /**
+ * Specifies whether the message should be written to the the tool's output log. Note that
+ * the "addToApiReportFile" property may supersede this option.
+ *
+ * Possible values: "error", "warning", "none"
+ *
+ * Errors cause the build to fail and return a nonzero exit code. Warnings cause a production build fail
+ * and return a nonzero exit code. For a non-production build (e.g. when "api-extractor run" includes
+ * the "--local" option), the warning is displayed but the build will not fail.
+ *
+ * DEFAULT VALUE: "warning"
+ */
+ "logLevel": "warning"
+
+ /**
+ * When addToApiReportFile is true: If API Extractor is configured to write an API report file (.api.md),
+ * then the message will be written inside that file; otherwise, the message is instead logged according to
+ * the "logLevel" option.
+ *
+ * DEFAULT VALUE: false
+ */
+ // "addToApiReportFile": false
+ }
+
+ // "TS2551": {
+ // "logLevel": "warning",
+ // "addToApiReportFile": true
+ // },
+ //
+ // . . .
+ },
+
+ /**
+ * Configures handling of messages reported by API Extractor during its analysis.
+ *
+ * API Extractor message identifiers start with "ae-". For example: "ae-extra-release-tag"
+ *
+ * DEFAULT VALUE: See api-extractor-defaults.json for the complete table of extractorMessageReporting mappings
+ */
+ "extractorMessageReporting": {
+ "default": {
+ "logLevel": "warning"
+ // "addToApiReportFile": false
+ }
+
+ // "ae-extra-release-tag": {
+ // "logLevel": "warning",
+ // "addToApiReportFile": true
+ // },
+ //
+ // . . .
+ },
+
+ /**
+ * Configures handling of messages reported by the TSDoc parser when analyzing code comments.
+ *
+ * TSDoc message identifiers start with "tsdoc-". For example: "tsdoc-link-tag-unescaped-text"
+ *
+ * DEFAULT VALUE: A single "default" entry with logLevel=warning.
+ */
+ "tsdocMessageReporting": {
+ "default": {
+ "logLevel": "warning"
+ // "addToApiReportFile": false
+ }
+
+ // "tsdoc-link-tag-unescaped-text": {
+ // "logLevel": "warning",
+ // "addToApiReportFile": true
+ // },
+ //
+ // . . .
+ }
+ }
+}
diff --git a/config/eslint-config-bitauth b/config/eslint-config-bitauth
new file mode 160000
index 00000000..271ca754
--- /dev/null
+++ b/config/eslint-config-bitauth
@@ -0,0 +1 @@
+Subproject commit 271ca754e19528b883ebbfce88692119863af43b
diff --git a/docs/errors.md b/docs/errors.md
index 91d62b13..128e9943 100644
--- a/docs/errors.md
+++ b/docs/errors.md
@@ -1,7 +1,6 @@
# Libauth Errors
-In Libauth, expected errors use the type `string` rather than `Error` (or other objects that inherit from `Error`) to simplify the resulting function types and
-typechecking requirements.
+In Libauth, expected errors use the type `string` rather than `Error` (or other objects that inherit from `Error`) to simplify the resulting function types and typechecking requirements.
This convention ensures consistency of returned errors in all environments, avoids exposing internal details like stack traces and line numbers, and allows error messages to be recorded or displayed as text without an explicit or implicit `toString()` method call (e.g. for cleaner compatibility with [`restrict-template-expressions`](https://typescript-eslint.io/rules/restrict-template-expressions/)).
diff --git a/package.json b/package.json
index 1f5b5633..ca72481f 100644
--- a/package.json
+++ b/package.json
@@ -37,25 +37,27 @@
"build:wasm": "cpy --flat src/lib/bin/secp256k1/secp256k1.wasm build/lib/bin/secp256k1 && cpy --flat src/lib/bin/sha1/sha1.wasm build/lib/bin/sha1 && cpy --flat src/lib/bin/sha256/sha256.wasm build/lib/bin/sha256 && cpy --flat src/lib/bin/sha512/sha512.wasm build/lib/bin/sha512 && cpy --flat src/lib/bin/ripemd160/ripemd160.wasm build/lib/bin/ripemd160",
"compile:debug:secp256k1": "docker run -it libauth-secp256k1 bash",
"compile:debug:hashes": "docker run -it libauth-hashes bash",
- "fix": "yarn fix:prettier && yarn fix:lint",
- "fix:prettier": "prettier \"src/**/*.ts\" --write",
- "fix:lint": "eslint . --ext .ts --fix",
+ "fix": "yarn fix:eslint && yarn fix:prettier",
+ "fix:prettier": "prettier . --write",
+ "fix:eslint": "yarn test:eslint --fix",
"gen:vmb-tests": "yarn build && yarn gen:vmb-tests:bch && yarn gen:vmb-tests-prettier",
"gen:vmb-tests-prettier": "prettier 'src/lib/vmb-tests/generated/**/*.json' --write",
"gen:vmb-tests:bch": "node 'build/lib/vmb-tests/bch-vmb-tests.spec.helper.js' 'src/lib/vmb-tests/generated/bch' && yarn run gen:vmb-tests:bch:reasons",
"gen:vmb-tests:bch:reasons": "node 'build/lib/vmb-tests/bch-vmb-tests-invalid.spec.helper.js'",
"wallet": "node 'build/lib/vmb-tests/bch-vmb-tests.live.spec.helper.js'",
- "gen:schema": "yarn gen:schema:authentication-template",
- "gen:schema:authentication-template": "ts-json-schema-generator --no-ref-encode --path 'src/lib/compiler/template-types.ts' --type 'AuthenticationTemplate' > src/lib/schema/authentication-template.schema.json && prettier 'src/lib/schema/authentication-template.schema.json' --write && ajv compile -s src/lib/schema/authentication-template.schema.json --allowUnionTypes -o src/lib/schema/ajv/validate-authentication-template.js && prettier 'src/lib/schema/ajv/validate-authentication-template.js' --write && node -e \"const fs = require('fs'), path = 'src/lib/schema/ajv/validate-authentication-template.js'; fs.writeFileSync(path, fs.readFileSync(path, 'utf8').replace(/'use strict'[\\s\\S]*module.exports.default =/, 'export default'), 'utf8')\"",
+ "gen:schema": "yarn gen:schema:wallet-template && yarn gen:schema:bcmr",
+ "gen:schema:wallet-template": "ts-json-schema-generator --no-ref-encode --path 'src/lib/engine/types/template-types.ts' --type 'WalletTemplate' > src/lib/schema/wallet-template.schema.json && prettier 'src/lib/schema/wallet-template.schema.json' --write && ajv compile -s src/lib/schema/wallet-template.schema.json --allowUnionTypes -o src/lib/schema/ajv/validate-wallet-template.js && prettier 'src/lib/schema/ajv/validate-wallet-template.js' --write && node -e \"const fs = require('fs'), path = 'src/lib/schema/ajv/validate-wallet-template.js'; fs.writeFileSync(path, fs.readFileSync(path, 'utf8').replace(/'use strict'[\\s\\S]*module.exports.default =/, 'export default'), 'utf8')\"",
+ "gen:schema:bcmr": "ts-json-schema-generator --no-ref-encode --path 'src/lib/engine/types/bcmr-types.ts' --type 'MetadataRegistry' > src/lib/schema/bcmr.schema.json && prettier 'src/lib/schema/bcmr.schema.json' --write && ajv compile -s src/lib/schema/bcmr.schema.json --allowUnionTypes -o src/lib/schema/ajv/validate-bcmr.js && prettier 'src/lib/schema/ajv/validate-bcmr.js' --write && node -e \"const fs = require('fs'), path = 'src/lib/schema/ajv/validate-bcmr.js'; fs.writeFileSync(path, fs.readFileSync(path, 'utf8').replace(/'use strict'[\\s\\S]*module.exports.default =/, 'export default'), 'utf8')\"",
"gen:schema-TODO": "//TODO: use ajv compile --code-esm option after merge: https://github.com/ajv-validator/ajv-cli/pull/200",
- "gen:templates": "yarn build && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' 'p2pkh' > src/lib/transaction/fixtures/templates/p2pkh.json && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' '2-of-3' > src/lib/transaction/fixtures/templates/2-of-3.json && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' '2-of-2-recoverable' > src/lib/transaction/fixtures/templates/2-of-2-recoverable.json && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' 'sig-of-sig' > src/lib/transaction/fixtures/templates/sig-of-sig.json && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' 'cash-channels' > src/lib/transaction/fixtures/templates/cash-channels.json && prettier 'src/lib/transaction/fixtures/templates/*.json' --write",
+ "gen:templates": "yarn build && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' 'p2pkh' > src/lib/transaction/fixtures/templates/p2pkh.json && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' '2-of-3' > src/lib/transaction/fixtures/templates/2-of-3.json && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' '2-of-2-recoverable' > src/lib/transaction/fixtures/templates/2-of-2-recoverable.json && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' 'sig-of-sig' > src/lib/transaction/fixtures/templates/sig-of-sig.json && node 'build/lib/transaction/fixtures/generate-templates.spec.helper.js' 'cash-channels-v1' > src/lib/transaction/fixtures/templates/cash-channels-v1.json && prettier 'src/lib/transaction/fixtures/templates/*.json' --write",
"gen:graph": "mkdir -p temp && madge --image temp/deps-$(date +\"%FT%H%M\").svg build/index.js",
- "test": "yarn build && yarn test:deps && yarn test:schemas && yarn test:lint && yarn test:prettier && yarn test:spelling && yarn test:cycles && yarn test:unit",
+ "test": "yarn build && yarn test:deps && yarn test:schemas && yarn test:lint && yarn test:cycles && yarn test:unit",
"test:deps": "node -e \"import('./package.json', { assert: { type: 'json' } }).then(p => typeof p.dependencies === 'undefined' ? console.log('No dependencies found.') : (console.error('Dependencies are not allowed.') && process.exit(1)));\"",
"test:schemas:unchanged": "yarn gen:schema && node -e \"child_process.exec('git status src/lib/schema --porcelain | head -c1 | wc -c', (err, stdout) => stdout.trim() === '0' ? process.exit(0) : process.exit(1) )\"",
"test:schemas": "yarn test:schemas:unchanged && echo \"Schemas are up to date.\" || echo \"Error: one or more schemas are outdated. Please review and commit the changes in src/lib/schema.\"",
- "test:lint": "eslint . --ext .ts",
- "test:prettier": "prettier \"src/**/*.ts\" --list-different",
+ "test:lint": "yarn test:prettier && yarn test:eslint && yarn test:spelling",
+ "test:eslint": "eslint . -c .eslintrc",
+ "test:prettier": "prettier . --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
"test:cycles": "madge --circular build/index.js",
"test:unit": "c8 ava",
@@ -71,13 +73,13 @@
"cov": "yarn build && yarn test:unit && yarn cov:html && yarn cov:lcov && open-cli coverage/index.html",
"cov:html": "c8 report --reporter=html",
"cov:lcov": "c8 report --reporter=lcov",
- "cov:check": "c8 report && c8 check-coverage --lines 90 --functions 90 --branches 90",
+ "cov:check": "c8 report && c8 check-coverage --lines 80 --functions 80 --branches 80",
"doc": "yarn doc:html && yarn doc:html && open-cli build/docs/index.html",
"doc:logo": "cpy assets/libauth.svg build/docs",
"doc:html": "typedoc src/index.ts --out build/docs",
"doc:next": "yarn build && yarn doc:extract && yarn doc:generate",
- "doc:extract": "api-extractor run --local --typescript-compiler-folder node_modules/typescript",
- "doc:generate": "api-documenter markdown -i temp -o docs/markdown",
+ "doc:extract": "mkdir -p build/api && api-extractor run --local --typescript-compiler-folder node_modules/typescript",
+ "doc:generate": "api-documenter markdown -i temp -o build/api/markdown",
"doc:check-api": "api-extractor run --typescript-compiler-folder node_modules/typescript",
"version": "standard-version",
"version:alpha": "standard-version --prerelease alpha",
@@ -89,50 +91,49 @@
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"devDependencies": {
- "@ava/typescript": "^3.0.1",
- "@fast-check/ava": "^1.1.3",
- "@microsoft/api-documenter": "^7.19.27",
- "@microsoft/api-extractor": "^7.33.7",
- "@rollup/plugin-alias": "^4.0.2",
- "@rollup/plugin-commonjs": "^22.0.2",
- "@rollup/plugin-node-resolve": "^15.0.1",
- "@types/elliptic": "^6.4.14",
- "@types/express": "^4.17.15",
- "@typescript-eslint/eslint-plugin": "^5.48.1",
- "@typescript-eslint/parser": "^5.48.1",
+ "@ava/typescript": "^4.1.0",
+ "@fast-check/ava": "^1.2.1",
+ "@microsoft/api-documenter": "^7.23.16",
+ "@microsoft/api-extractor": "^7.39.1",
+ "@playwright/test": "^1.40.1",
+ "@rollup/plugin-alias": "^5.1.0",
+ "@rollup/plugin-commonjs": "^25.0.7",
+ "@rollup/plugin-node-resolve": "^15.2.3",
+ "@types/elliptic": "^6.4.18",
+ "@types/express": "^4.17.21",
+ "@types/node": "^20.11.0",
+ "@typescript-eslint/eslint-plugin": "^6.18.1",
+ "@typescript-eslint/parser": "^6.18.1",
"ajv-cli": "^5.0.0",
"asmcrypto.js": "^2.3.2",
- "ava": "^5.1.0",
- "bcrypto": "^5.4.0",
- "bitcore-lib-cash": "^8.25.40",
- "c8": "^7.12.0",
+ "ava": "^6.0.1",
+ "bitcore-lib-cash": "^10.0.23",
+ "c8": "^9.0.0",
"chuhai": "^1.2.0",
- "cpy-cli": "^4.2.0",
- "cspell": "^6.18.1",
+ "cpy-cli": "^5.0.0",
+ "cspell": "^8.3.2",
"cz-conventional-changelog": "^3.3.0",
"elliptic": "^6.5.4",
- "eslint": "8.31.0",
- "eslint-config-bitauth": "^3.1.2",
- "eslint-config-prettier": "^8.6.0",
+ "eslint": "8.56.0",
+ "eslint-config-bitauth": "5.0.0",
+ "eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
- "eslint-plugin-functional": "^4.4.1",
- "eslint-plugin-import": "^2.26.0",
- "eslint-plugin-prettier": "^4.2.1",
+ "eslint-plugin-functional": "^6.0.0",
+ "eslint-plugin-import": "^2.29.1",
"eslint-plugin-tsdoc": "^0.2.17",
"express": "^4.18.2",
- "fast-check": "^3.5.0",
+ "fast-check": "^3.15.0",
"hash.js": "^1.1.7",
- "madge": "^5.0.1",
- "open-cli": "^7.1.0",
- "prettier": "^2.8.2",
- "puppeteer": "^19.5.0",
- "rollup": "^2.79.1",
- "secp256k1": "^4.0.3",
+ "madge": "^6.1.0",
+ "open-cli": "^8.0.0",
+ "prettier": "^3.1.1",
+ "rollup": "^4.9.4",
+ "secp256k1": "^5.0.0",
"source-map-support": "^0.5.21",
"standard-version": "^9.5.0",
- "ts-json-schema-generator": "^1.2.0",
- "typedoc": "^0.23.24",
- "typescript": "^4.9.4"
+ "ts-json-schema-generator": "^1.5.0",
+ "typedoc": "^0.25.7",
+ "typescript": "^5.3.3"
},
"files": [
"build",
@@ -164,11 +165,6 @@
"path": "cz-conventional-changelog"
}
},
- "greenkeeper": {
- "ignore": [
- "@types/node"
- ]
- },
"prettier": {
"singleQuote": true,
"overrides": [
@@ -202,9 +198,13 @@
"exclude": [
"**/*.bench.js",
"**/*.spec.js",
- "**/*.spec.helper.js"
+ "**/*.spec.helper.js",
+ ".pnp.*"
]
},
"sideEffects": false,
- "packageManager": "yarn@3.3.1"
+ "packageManager": "yarn@4.0.2",
+ "resolutions": {
+ "eslint-config-bitauth": "portal:./config/eslint-config-bitauth"
+ }
}
diff --git a/src/lib/address/base58-address.spec.ts b/src/lib/address/base58-address.spec.ts
index e8789866..16f6b928 100644
--- a/src/lib/address/base58-address.spec.ts
+++ b/src/lib/address/base58-address.spec.ts
@@ -1,4 +1,3 @@
-import { fc, testProp } from '@fast-check/ava';
import test from 'ava';
import {
@@ -19,12 +18,14 @@ import keyIoInvalid from './fixtures/key_io_invalid.json' assert { type: 'json'
// eslint-disable-next-line import/no-restricted-paths, import/no-internal-modules
import keyIoValid from './fixtures/key_io_valid.json' assert { type: 'json' };
+import { fc, testProp } from '@fast-check/ava';
+
const invalidVectors = Object.values(keyIoInvalid).filter(
- (item) => Array.isArray(item) && item.every((x) => typeof x === 'string')
+ (item) => Array.isArray(item) && item.every((x) => typeof x === 'string'),
);
const validVectors = Object.values(keyIoValid).filter((item) =>
- item.every((x) => !Array.isArray(x))
+ item.every((x) => !Array.isArray(x)),
);
test('encodeBase58AddressFormat', (t) => {
@@ -32,16 +33,16 @@ test('encodeBase58AddressFormat', (t) => {
t.deepEqual(
encodeBase58AddressFormat(Base58AddressFormatVersion.p2pkh, payload),
// cspell: disable-next-line
- '1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62i'
+ '1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62i',
);
t.deepEqual(
encodeBase58AddressFormat(
Base58AddressFormatVersion.p2pkh,
payload,
- sha256
+ sha256,
),
// cspell: disable-next-line
- '1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62i'
+ '1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62i',
);
});
@@ -50,32 +51,32 @@ test('encodeBase58Address', (t) => {
t.deepEqual(
encodeBase58Address('p2pkh', payload, sha256),
// cspell: disable-next-line
- '1BpEi6DfDAUFd7GtittLSdBeYJvcoaVggu'
+ '1BpEi6DfDAUFd7GtittLSdBeYJvcoaVggu',
);
t.deepEqual(
encodeBase58Address('p2pkhTestnet', payload, sha256),
// cspell: disable-next-line
- 'mrLC19Je2BuWQDkWSTriGYPyQJXKkkBmCx'
+ 'mrLC19Je2BuWQDkWSTriGYPyQJXKkkBmCx',
);
t.deepEqual(
encodeBase58Address('p2pkhCopayBCH', payload),
// cspell: disable-next-line
- 'CTH8H8Zj6DSnXFBKQeDG28ogAS92iS16Bp'
+ 'CTH8H8Zj6DSnXFBKQeDG28ogAS92iS16Bp',
);
t.deepEqual(
encodeBase58Address('p2sh20', payload, sha256),
// cspell: disable-next-line
- '3CWFddi6m4ndiGyKqzYvsFYagqDLPVMTzC'
+ '3CWFddi6m4ndiGyKqzYvsFYagqDLPVMTzC',
);
t.deepEqual(
encodeBase58Address('p2sh20Testnet', payload),
// cspell: disable-next-line
- '2N44ThNe8NXHyv4bsX8AoVCXquBRW94Ls7W'
+ '2N44ThNe8NXHyv4bsX8AoVCXquBRW94Ls7W',
);
t.deepEqual(
encodeBase58Address('p2sh20CopayBCH', payload, sha256),
// cspell: disable-next-line
- 'HHLN6S9BcP1JLSrMhgD5qe57iVEMFMLCBT'
+ 'HHLN6S9BcP1JLSrMhgD5qe57iVEMFMLCBT',
);
});
@@ -84,12 +85,12 @@ test('decodeBase58AddressFormat', (t) => {
t.deepEqual(
// cspell: disable-next-line
decodeBase58AddressFormat('1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62i'),
- { payload, version: Base58AddressFormatVersion.p2pkh }
+ { payload, version: Base58AddressFormatVersion.p2pkh },
);
t.deepEqual(
// cspell: disable-next-line
decodeBase58AddressFormat('1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62i', sha256),
- { payload, version: Base58AddressFormatVersion.p2pkh }
+ { payload, version: Base58AddressFormatVersion.p2pkh },
);
});
@@ -98,12 +99,12 @@ test('decodeBase58Address', (t) => {
t.deepEqual(
// cspell: disable-next-line
decodeBase58Address('1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62i'),
- { payload, version: Base58AddressFormatVersion.p2pkh }
+ { payload, version: Base58AddressFormatVersion.p2pkh },
);
t.deepEqual(
// cspell: disable-next-line
decodeBase58Address('1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62i', sha256),
- { payload, version: Base58AddressFormatVersion.p2pkh }
+ { payload, version: Base58AddressFormatVersion.p2pkh },
);
});
@@ -126,33 +127,33 @@ testProp(
payload,
version,
});
- }
+ },
);
test('decodeBase58AddressFormat: errors', (t) => {
t.deepEqual(
// cspell: disable-next-line
decodeBase58AddressFormat('1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62a'),
- Base58AddressError.invalidChecksum
+ Base58AddressError.invalidChecksum,
);
t.deepEqual(decodeBase58AddressFormat('1234'), Base58AddressError.tooShort);
t.deepEqual(
// cspell: disable-next-line
decodeBase58AddressFormat('1AGNa15ZQXAZUgFiqJ2i7Z2DPU2J6hW62I'),
- Base58AddressError.unknownCharacter
+ Base58AddressError.unknownCharacter,
);
});
test('decodeBase58Address: errors', (t) => {
t.deepEqual(
// cspell: disable-next-line
decodeBase58Address('6PfDNQxJdsBx7K4r9kMrRBZSa2NZKVNUZn'),
- Base58AddressError.unknownAddressVersion
+ Base58AddressError.unknownAddressVersion,
);
t.deepEqual(
// cspell: disable-next-line
decodeBase58Address('2DqXtydYdu9pq6uXcy3Tbw3pUscCiPC6F'),
// Base58AddressError.incorrectLength
- Base58AddressError.unknownAddressVersion
+ Base58AddressError.unknownAddressVersion,
);
});
@@ -186,11 +187,10 @@ test('Base58Address Valid Vectors (from C++ implementation β includes WIF vect
isCompressed?: boolean;
isPrivkey: boolean;
chain: 'main' | 'regtest' | 'test';
- }
+ },
];
const testnet = meta.chain !== 'main';
- // eslint-disable-next-line functional/no-conditional-statement
if (meta.isPrivkey) {
const wifKey = base58Address;
const compressed = Boolean(meta.isCompressed);
@@ -200,20 +200,18 @@ test('Base58Address Valid Vectors (from C++ implementation β includes WIF vect
? 'testnet'
: 'testnetUncompressed'
: compressed
- ? 'mainnet'
- : 'mainnetUncompressed';
+ ? 'mainnet'
+ : 'mainnetUncompressed';
t.deepEqual(decodePrivateKeyWif(wifKey), { privateKey, type });
-
- // eslint-disable-next-line functional/no-conditional-statement
} else {
const lockingBytecode = data;
t.deepEqual(
lockingBytecodeToBase58Address(
hexToBin(lockingBytecode),
testnet ? 'testnet' : 'mainnet',
- sha256
+ sha256,
),
- base58Address
+ base58Address,
);
}
});
diff --git a/src/lib/address/base58-address.ts b/src/lib/address/base58-address.ts
index 0dd75178..57a0d82a 100644
--- a/src/lib/address/base58-address.ts
+++ b/src/lib/address/base58-address.ts
@@ -107,11 +107,11 @@ export type Base58AddressNetwork = 'copayBCH' | 'mainnet' | 'testnet';
* implementation)
*/
export const encodeBase58AddressFormat = <
- VersionType extends number = Base58AddressFormatVersion
+ VersionType extends number = Base58AddressFormatVersion,
>(
version: VersionType,
payload: Uint8Array,
- sha256: { hash: Sha256['hash'] } = internalSha256
+ sha256: { hash: Sha256['hash'] } = internalSha256,
) => {
const checksumBytes = 4;
const content = Uint8Array.from([version, ...payload]);
@@ -146,7 +146,7 @@ export const encodeBase58Address = (
| 'p2sh20CopayBCH'
| 'p2sh20Testnet',
payload: Uint8Array,
- sha256: { hash: Sha256['hash'] } = internalSha256
+ sha256: { hash: Sha256['hash'] } = internalSha256,
) =>
encodeBase58AddressFormat(
{
@@ -158,7 +158,7 @@ export const encodeBase58Address = (
p2sh20Testnet: Base58AddressFormatVersion.p2sh20Testnet,
}[type],
payload,
- sha256
+ sha256,
);
export enum Base58AddressError {
@@ -181,7 +181,7 @@ export enum Base58AddressError {
*/
export const decodeBase58AddressFormat = (
address: string,
- sha256: { hash: Sha256['hash'] } = internalSha256
+ sha256: { hash: Sha256['hash'] } = internalSha256,
) => {
const checksumBytes = 4;
const bin = base58ToBin(address);
@@ -232,7 +232,7 @@ export const decodeBase58AddressFormat = (
*/
export const decodeBase58Address = (
address: string,
- sha256: { hash: Sha256['hash'] } = internalSha256
+ sha256: { hash: Sha256['hash'] } = internalSha256,
) => {
const decoded = decodeBase58AddressFormat(address, sha256);
if (typeof decoded === 'string') return decoded;
diff --git a/src/lib/address/bech32.spec.ts b/src/lib/address/bech32.spec.ts
index 7a5d8281..0c882f47 100644
--- a/src/lib/address/bech32.spec.ts
+++ b/src/lib/address/bech32.spec.ts
@@ -1,6 +1,4 @@
-import { testProp } from '@fast-check/ava';
import test from 'ava';
-import fc from 'fast-check';
import {
Bech32DecodingError,
@@ -14,6 +12,9 @@ import {
regroupBits,
} from '../lib.js';
+import { testProp } from '@fast-check/ava';
+import fc from 'fast-check';
+
test('regroupBits', (t) => {
t.deepEqual(
regroupBits({
@@ -21,7 +22,7 @@ test('regroupBits', (t) => {
resultWordLength: 1,
sourceWordLength: 8,
}),
- [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
+ [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
);
t.deepEqual(
regroupBits({
@@ -29,7 +30,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 1,
}),
- [0b11111111, 0b11111111]
+ [0b11111111, 0b11111111],
);
t.deepEqual(
regroupBits({
@@ -37,7 +38,7 @@ test('regroupBits', (t) => {
resultWordLength: 2,
sourceWordLength: 8,
}),
- [0b11, 0b11, 0b11, 0b11, 0b11, 0b11, 0b11, 0b11]
+ [0b11, 0b11, 0b11, 0b11, 0b11, 0b11, 0b11, 0b11],
);
t.deepEqual(
regroupBits({
@@ -45,7 +46,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 2,
}),
- [0b11111111, 0b11111111]
+ [0b11111111, 0b11111111],
);
t.deepEqual(
regroupBits({
@@ -53,7 +54,7 @@ test('regroupBits', (t) => {
resultWordLength: 3,
sourceWordLength: 8,
}),
- [0b111, 0b111, 0b111, 0b111, 0b111, 0b100]
+ [0b111, 0b111, 0b111, 0b111, 0b111, 0b100],
);
t.deepEqual(
regroupBits({
@@ -65,7 +66,7 @@ test('regroupBits', (t) => {
* The 2 padding bit are now considered significant, so we have to add
* padding to encode them.
*/
- [0b11111111, 0b11111111, 0b00]
+ [0b11111111, 0b11111111, 0b00],
);
t.deepEqual(
regroupBits({
@@ -73,7 +74,7 @@ test('regroupBits', (t) => {
resultWordLength: 4,
sourceWordLength: 8,
}),
- [0b1111, 0b1111, 0b1111, 0b1111]
+ [0b1111, 0b1111, 0b1111, 0b1111],
);
t.deepEqual(
regroupBits({
@@ -81,7 +82,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 4,
}),
- [0b11111111, 0b11111111]
+ [0b11111111, 0b11111111],
);
t.deepEqual(
regroupBits({
@@ -89,7 +90,7 @@ test('regroupBits', (t) => {
resultWordLength: 5,
sourceWordLength: 8,
}),
- [0b11111, 0b11111, 0b11111, 0b10000]
+ [0b11111, 0b11111, 0b11111, 0b10000],
);
t.deepEqual(
regroupBits({
@@ -97,7 +98,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 5,
}),
- [0b11111111, 0b11111111, 0b0000]
+ [0b11111111, 0b11111111, 0b0000],
);
t.deepEqual(
regroupBits({
@@ -105,7 +106,7 @@ test('regroupBits', (t) => {
resultWordLength: 6,
sourceWordLength: 8,
}),
- [0b111111, 0b111111, 0b111100]
+ [0b111111, 0b111111, 0b111100],
);
t.deepEqual(
regroupBits({
@@ -113,7 +114,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 6,
}),
- [0b11111111, 0b11111111, 0b00]
+ [0b11111111, 0b11111111, 0b00],
);
t.deepEqual(
regroupBits({
@@ -121,7 +122,7 @@ test('regroupBits', (t) => {
resultWordLength: 7,
sourceWordLength: 8,
}),
- [0b1111111, 0b1111111, 0b1100000]
+ [0b1111111, 0b1111111, 0b1100000],
);
t.deepEqual(
regroupBits({
@@ -129,7 +130,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 7,
}),
- [0b11111111, 0b11111111, 0b00000]
+ [0b11111111, 0b11111111, 0b00000],
);
t.deepEqual(
regroupBits({
@@ -137,7 +138,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 8,
}),
- [0b11111111, 0b11111111]
+ [0b11111111, 0b11111111],
);
t.deepEqual(
regroupBits({
@@ -145,11 +146,11 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 8,
}),
- [0b11111111, 0b11111111]
+ [0b11111111, 0b11111111],
);
t.deepEqual(
regroupBits({ bin: [256], resultWordLength: 5, sourceWordLength: 8 }),
- BitRegroupingError.integerOutOfRange
+ BitRegroupingError.integerOutOfRange,
);
t.deepEqual(
regroupBits({
@@ -158,7 +159,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 5,
}),
- BitRegroupingError.requiresDisallowedPadding
+ BitRegroupingError.requiresDisallowedPadding,
);
t.deepEqual(
regroupBits({
@@ -170,7 +171,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 5,
}),
- BitRegroupingError.requiresDisallowedPadding
+ BitRegroupingError.requiresDisallowedPadding,
);
t.deepEqual(
regroupBits({
@@ -179,7 +180,7 @@ test('regroupBits', (t) => {
resultWordLength: 8,
sourceWordLength: 5,
}),
- BitRegroupingError.hasDisallowedPadding
+ BitRegroupingError.hasDisallowedPadding,
);
});
@@ -202,7 +203,7 @@ test('decodeBech32', (t) => {
// cspell: disable-next-line
decodeBech32('qpzry9x8gf2tvdw0s3jn54khce6mua7l'),
// prettier-ignore
- [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31]
+ [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31],
);
});
@@ -215,7 +216,7 @@ test('encodeBech32', (t) => {
// prettier-ignore
encodeBech32([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31]),
// cspell: disable-next-line
- 'qpzry9x8gf2tvdw0s3jn54khce6mua7l'
+ 'qpzry9x8gf2tvdw0s3jn54khce6mua7l',
);
});
@@ -229,19 +230,19 @@ test('binToBech32Padded', (t) => {
test('bech32PaddedToBin', (t) => {
t.deepEqual(
bech32PaddedToBin('qqq'),
- BitRegroupingError.hasDisallowedPadding
+ BitRegroupingError.hasDisallowedPadding,
);
t.deepEqual(bech32PaddedToBin('qq'), Uint8Array.of(0));
t.deepEqual(
bech32PaddedToBin('tf'),
- BitRegroupingError.requiresDisallowedPadding
+ BitRegroupingError.requiresDisallowedPadding,
);
t.deepEqual(bech32PaddedToBin('lu'), Uint8Array.of(255));
// cspell: disable-next-line
t.deepEqual(bech32PaddedToBin('qqqsyqc'), Uint8Array.of(0, 1, 2, 3));
t.deepEqual(
bech32PaddedToBin('qqq1'),
- Bech32DecodingError.notBech32CharacterSet
+ Bech32DecodingError.notBech32CharacterSet,
);
});
@@ -267,9 +268,9 @@ testProp(
(t, input) => {
t.deepEqual(
decodeBech32(encodeBech32(input)),
- input as ReturnType
+ input as ReturnType,
);
- }
+ },
);
testProp(
@@ -278,17 +279,17 @@ testProp(
(t, input) => {
t.deepEqual(
binToBech32Padded(
- bech32PaddedToBin(binToBech32Padded(input)) as Uint8Array
+ bech32PaddedToBin(binToBech32Padded(input)) as Uint8Array,
),
- binToBech32Padded(input)
+ binToBech32Padded(input),
);
- }
+ },
);
testProp(
'[fast-check] binToBech32Padded -> isBech32',
[fcUint8Array(0, maxBinLength)],
- (t, input) => t.true(isBech32CharacterSet(binToBech32Padded(input)))
+ (t, input) => t.true(isBech32CharacterSet(binToBech32Padded(input))),
);
testProp(
@@ -303,5 +304,5 @@ testProp(
return;
}
t.deepEqual(binToBech32Padded(tryBin), maybeBech32);
- }
+ },
);
diff --git a/src/lib/address/bech32.ts b/src/lib/address/bech32.ts
index 4e161939..83f71301 100644
--- a/src/lib/address/bech32.ts
+++ b/src/lib/address/bech32.ts
@@ -1,5 +1,3 @@
-import type { Immutable } from '../lib.js';
-
/**
* The list of 32 symbols used in Bech32 encoding.
*/
@@ -18,7 +16,7 @@ export enum BitRegroupingError {
requiresDisallowedPadding = 'Encoding requires padding while padding is disallowed.',
}
-/* eslint-disable functional/no-let, no-bitwise, functional/no-expression-statement, functional/no-conditional-statement, complexity */
+/* eslint-disable functional/no-let, no-bitwise, functional/no-expression-statements, functional/no-conditional-statements, complexity */
/**
* Given an array of integers, regroup bits from `sourceWordLength` to
* `resultWordLength`, returning a new array of integers between 0 and
@@ -40,7 +38,7 @@ export const regroupBits = ({
* An array of numbers representing the bits to regroup. Each item must be a
* number within the range of `sourceWordLength`.
*/
- bin: Immutable | readonly number[];
+ bin: number[] | Uint8Array;
/**
* The bit-length of each number in `bin`, e.g. to regroup bits from a
* `Uint8Array`, use `8` (must be a positive integer)
@@ -62,7 +60,7 @@ export const regroupBits = ({
let bits = 0;
const result = [];
const maxResultInt = (1 << resultWordLength) - 1;
- // eslint-disable-next-line functional/no-loop-statement, @typescript-eslint/prefer-for-of, no-plusplus
+ // eslint-disable-next-line functional/no-loop-statements, @typescript-eslint/prefer-for-of, no-plusplus
for (let p = 0; p < bin.length; ++p) {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const value = bin[p]!;
@@ -71,7 +69,7 @@ export const regroupBits = ({
}
accumulator = (accumulator << sourceWordLength) | value;
bits += sourceWordLength;
- // eslint-disable-next-line functional/no-loop-statement
+ // eslint-disable-next-line functional/no-loop-statements
while (bits >= resultWordLength) {
bits -= resultWordLength;
// eslint-disable-next-line functional/immutable-data
@@ -91,7 +89,7 @@ export const regroupBits = ({
}
return result;
};
-/* eslint-enable functional/no-let, no-bitwise, functional/no-expression-statement, functional/no-conditional-statement, complexity */
+/* eslint-enable functional/no-let, no-bitwise, functional/no-expression-statements, functional/no-conditional-statements, complexity */
/**
* Encode an array of numbers as a base32 string using the Bech32 character set.
@@ -102,12 +100,12 @@ export const regroupBits = ({
*
* @param base32IntegerArray - the array of 5-bit integers to encode
*/
-export const encodeBech32 = (base32IntegerArray: readonly number[]) => {
+export const encodeBech32 = (base32IntegerArray: number[]) => {
// eslint-disable-next-line functional/no-let
let result = '';
- // eslint-disable-next-line @typescript-eslint/prefer-for-of, functional/no-let, functional/no-loop-statement, no-plusplus
+ // eslint-disable-next-line @typescript-eslint/prefer-for-of, functional/no-let, functional/no-loop-statements, no-plusplus
for (let i = 0; i < base32IntegerArray.length; i++) {
- // eslint-disable-next-line functional/no-expression-statement, @typescript-eslint/no-non-null-assertion
+ // eslint-disable-next-line functional/no-expression-statements, @typescript-eslint/no-non-null-assertion
result += bech32CharacterSet[base32IntegerArray[i]!];
}
return result;
@@ -126,13 +124,13 @@ export const encodeBech32 = (base32IntegerArray: readonly number[]) => {
export const decodeBech32 = (validBech32: string) => {
const result: (typeof bech32CharacterSetIndex)[keyof typeof bech32CharacterSetIndex][] =
[];
- // eslint-disable-next-line @typescript-eslint/prefer-for-of, functional/no-let, functional/no-loop-statement, no-plusplus
+ // eslint-disable-next-line @typescript-eslint/prefer-for-of, functional/no-let, functional/no-loop-statements, no-plusplus
for (let i = 0; i < validBech32.length; i++) {
- // eslint-disable-next-line functional/no-expression-statement, functional/immutable-data
+ // eslint-disable-next-line functional/no-expression-statements, functional/immutable-data
result.push(
bech32CharacterSetIndex[
validBech32[i] as keyof typeof bech32CharacterSetIndex
- ]
+ ],
);
}
return result;
@@ -184,11 +182,11 @@ export const bech32PaddedToBin = (bech32Padded: string) => {
*
* @param bytes - the Uint8Array to bech32 encode
*/
-export const binToBech32Padded = (bytes: Immutable) =>
+export const binToBech32Padded = (bytes: Uint8Array) =>
encodeBech32(
regroupBits({
bin: bytes,
resultWordLength: base32WordLength,
sourceWordLength: base256WordLength,
- }) as number[]
+ }) as number[],
);
diff --git a/src/lib/address/cash-address.spec.ts b/src/lib/address/cash-address.spec.ts
index adf36a0d..44496a05 100644
--- a/src/lib/address/cash-address.spec.ts
+++ b/src/lib/address/cash-address.spec.ts
@@ -1,5 +1,4 @@
import test from 'ava';
-import fc from 'fast-check';
import type {
CashAddressAvailableTypeBits,
@@ -32,6 +31,8 @@ import {
// eslint-disable-next-line import/no-restricted-paths, import/no-internal-modules
import cashAddrJson from './fixtures/cashaddr.json' assert { type: 'json' };
+import fc from 'fast-check';
+
const lowercaseLetter = () =>
fc.integer({ max: 122, min: 97 }).map((i) => String.fromCharCode(i));
@@ -44,35 +45,35 @@ test('maskCashAddressPrefix', (t) => {
test('encodeCashAddressVersionByte', (t) => {
t.deepEqual(
encodeCashAddressVersionByte(CashAddressTypeBits.p2pkh, 20),
- CashAddressVersionByte.p2pkh
+ CashAddressVersionByte.p2pkh,
);
t.deepEqual(
encodeCashAddressVersionByte(0, 20),
- CashAddressVersionByte.p2pkh
+ CashAddressVersionByte.p2pkh,
);
t.deepEqual(
encodeCashAddressVersionByte(CashAddressTypeBits.p2sh, 20),
- CashAddressVersionByte.p2sh20
+ CashAddressVersionByte.p2sh20,
);
t.deepEqual(
encodeCashAddressVersionByte(1, 20),
- CashAddressVersionByte.p2sh20
+ CashAddressVersionByte.p2sh20,
);
t.deepEqual(
encodeCashAddressVersionByte(CashAddressTypeBits.p2sh, 32),
- CashAddressVersionByte.p2sh32
+ CashAddressVersionByte.p2sh32,
);
t.deepEqual(
encodeCashAddressVersionByte(CashAddressTypeBits.p2pkhWithTokens, 20),
- CashAddressVersionByte.p2pkhWithTokens
+ CashAddressVersionByte.p2pkhWithTokens,
);
t.deepEqual(
encodeCashAddressVersionByte(CashAddressTypeBits.p2shWithTokens, 20),
- CashAddressVersionByte.p2sh20WithTokens
+ CashAddressVersionByte.p2sh20WithTokens,
);
t.deepEqual(
encodeCashAddressVersionByte(CashAddressTypeBits.p2shWithTokens, 32),
- CashAddressVersionByte.p2sh32WithTokens
+ CashAddressVersionByte.p2sh32WithTokens,
);
});
@@ -91,19 +92,19 @@ test('decodeCashAddressVersionByte', (t) => {
});
t.deepEqual(
decodeCashAddressVersionByte(0b10000000),
- CashAddressVersionByteDecodingError.reservedBitSet
+ CashAddressVersionByteDecodingError.reservedBitSet,
);
t.deepEqual(
decodeCashAddressVersionByte(CashAddressVersionByte.p2pkhWithTokens),
- { length: 20, typeBits: 2 }
+ { length: 20, typeBits: 2 },
);
t.deepEqual(
decodeCashAddressVersionByte(CashAddressVersionByte.p2sh20WithTokens),
- { length: 20, typeBits: 3 }
+ { length: 20, typeBits: 3 },
);
t.deepEqual(
decodeCashAddressVersionByte(CashAddressVersionByte.p2sh32WithTokens),
- { length: 32, typeBits: 3 }
+ { length: 32, typeBits: 3 },
);
t.deepEqual(decodeCashAddressVersionByte(0b01000011), {
length: 32,
@@ -121,35 +122,35 @@ test('encodeCashAddress: works', (t) => {
t.deepEqual(
encodeCashAddress('bchtest', CashAddressType.p2pkh, payload),
- 'bchtest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x'
+ 'bchtest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x',
);
t.deepEqual(
encodeCashAddress('bchtest', 'p2pkh', payload),
- 'bchtest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x'
+ 'bchtest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x',
);
t.deepEqual(
encodeCashAddress('bitcoincash', CashAddressType.p2pkh, payload),
- 'bitcoincash:qq2azmyyv6dtgczexyalqar70q036yund54qgw0wg6'
+ 'bitcoincash:qq2azmyyv6dtgczexyalqar70q036yund54qgw0wg6',
);
t.deepEqual(
encodeCashAddress('bitcoincash', 'p2pkh', payload),
- 'bitcoincash:qq2azmyyv6dtgczexyalqar70q036yund54qgw0wg6'
+ 'bitcoincash:qq2azmyyv6dtgczexyalqar70q036yund54qgw0wg6',
);
t.deepEqual(
encodeCashAddress('bitcoincash', CashAddressType.p2pkhWithTokens, payload),
- 'bitcoincash:zq2azmyyv6dtgczexyalqar70q036yund5j2mspghf'
+ 'bitcoincash:zq2azmyyv6dtgczexyalqar70q036yund5j2mspghf',
);
t.deepEqual(
encodeCashAddress('bitcoincash', 'p2pkhWithTokens', payload),
- 'bitcoincash:zq2azmyyv6dtgczexyalqar70q036yund5j2mspghf'
+ 'bitcoincash:zq2azmyyv6dtgczexyalqar70q036yund5j2mspghf',
);
t.deepEqual(
encodeCashAddress('bchreg', 'p2pkh', payload),
- 'bchreg:qq2azmyyv6dtgczexyalqar70q036yund5tw6gw2vq'
+ 'bchreg:qq2azmyyv6dtgczexyalqar70q036yund5tw6gw2vq',
);
t.deepEqual(
encodeCashAddress('bchreg', 'p2pkh', payload),
- 'bchreg:qq2azmyyv6dtgczexyalqar70q036yund5tw6gw2vq'
+ 'bchreg:qq2azmyyv6dtgczexyalqar70q036yund5tw6gw2vq',
);
t.deepEqual(
@@ -157,10 +158,10 @@ test('encodeCashAddress: works', (t) => {
'bitauth',
encodeCashAddressVersionByte(0, 32),
hexToBin(
- '978306aa4e02fd06e251b38d2e961f78f4af2ea6524a3e4531126776276a6af1'
- )
+ '978306aa4e02fd06e251b38d2e961f78f4af2ea6524a3e4531126776276a6af1',
+ ),
),
- 'bitauth:qwtcxp42fcp06phz2xec6t5krau0ftew5efy50j9xyfxwa38df40zp58z6t5w'
+ 'bitauth:qwtcxp42fcp06phz2xec6t5krau0ftew5efy50j9xyfxwa38df40zp58z6t5w',
);
t.throws(() => encodeCashAddress('bitcoincash', 'p2sh', hexToBin('97')), {
@@ -172,7 +173,7 @@ test('encodeCashAddress: works', (t) => {
test('decodeCashAddress: works', (t) => {
const payload = hexToBin('15d16c84669ab46059313bf0747e781f1d13936d');
const result = decodeCashAddress(
- 'bchtest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x'
+ 'bchtest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x',
);
if (typeof result === 'string') {
t.log(result);
@@ -190,7 +191,7 @@ test('decodeCashAddress: works', (t) => {
payload,
prefix: CashAddressNetworkPrefix.testnet,
type: CashAddressType.p2pkh,
- }
+ },
);
t.deepEqual(
@@ -199,11 +200,11 @@ test('decodeCashAddress: works', (t) => {
payload,
prefix: CashAddressNetworkPrefix.mainnet,
type: CashAddressType.p2pkh,
- }
+ },
);
t.deepEqual(
decodeCashAddress('bitcoincash:qq2azmyyv6dtgczexyalqar70q036yund54qgw0wg6'),
- { payload, prefix: 'bitcoincash', type: CashAddressType.p2pkh }
+ { payload, prefix: 'bitcoincash', type: CashAddressType.p2pkh },
);
t.deepEqual(
@@ -212,63 +213,63 @@ test('decodeCashAddress: works', (t) => {
payload,
prefix: CashAddressNetworkPrefix.regtest,
type: CashAddressType.p2pkh,
- }
+ },
);
t.deepEqual(
decodeCashAddress('bchreg:qq2azmyyv6dtgczexyalqar70q036yund5tw6gw2vq'),
- { payload, prefix: 'bchreg', type: CashAddressType.p2pkh }
+ { payload, prefix: 'bchreg', type: CashAddressType.p2pkh },
);
t.deepEqual(
decodeCashAddressFormat(
- 'bitauth:qwtcxp42fcp06phz2xec6t5krau0ftew5efy50j9xyfxwa38df40zp58z6t5w'
+ 'bitauth:qwtcxp42fcp06phz2xec6t5krau0ftew5efy50j9xyfxwa38df40zp58z6t5w',
),
{
payload: hexToBin(
- '978306aa4e02fd06e251b38d2e961f78f4af2ea6524a3e4531126776276a6af1'
+ '978306aa4e02fd06e251b38d2e961f78f4af2ea6524a3e4531126776276a6af1',
),
prefix: 'bitauth',
version: encodeCashAddressVersionByte(0, 32),
- }
+ },
);
t.deepEqual(
decodeCashAddressFormat(
- ':qwtcxp42fcp06phz2xec6t5krau0ftew5efy50j9xyfxwa38df40zp58z6t5w'
+ ':qwtcxp42fcp06phz2xec6t5krau0ftew5efy50j9xyfxwa38df40zp58z6t5w',
),
- CashAddressDecodingError.invalidFormat
+ CashAddressDecodingError.invalidFormat,
);
t.deepEqual(
decodeCashAddress('prefix:broken'),
- CashAddressDecodingError.invalidCharacters
+ CashAddressDecodingError.invalidCharacters,
);
t.deepEqual(
decodeCashAddressFormat('prefix:broken'),
- CashAddressDecodingError.invalidCharacters
+ CashAddressDecodingError.invalidCharacters,
);
t.deepEqual(
// cspell: disable-next-line
decodeCashAddressFormat('verybroken:lll30n6j98m5'),
- CashAddressDecodingError.improperPadding
+ CashAddressDecodingError.improperPadding,
);
t.deepEqual(
// cspell: disable-next-line
decodeCashAddressFormat('bchtest:testnetaddress4d6njnut'),
- CashAddressDecodingError.improperPadding
+ CashAddressDecodingError.improperPadding,
);
t.deepEqual(
decodeCashAddress(
- 'bchreg:555555555555555555555555555555555555555555555udxmlmrz'
+ 'bchreg:555555555555555555555555555555555555555555555udxmlmrz',
),
- CashAddressDecodingError.reservedByte
+ CashAddressDecodingError.reservedByte,
);
t.deepEqual(
decodeCashAddress('bitcoincash:qu2azmyyv6dtgczexyalqar70q036yund53an46hf6'),
- CashAddressDecodingError.mismatchedPayloadLength
+ CashAddressDecodingError.mismatchedPayloadLength,
);
});
@@ -282,10 +283,9 @@ test('CashAddress test vectors', (t) => {
const typeBits = vector.type as CashAddressAvailableTypeBits;
const version = encodeCashAddressVersionByte(
typeBits,
- payload.length as CashAddressSupportedLength
+ payload.length as CashAddressSupportedLength,
);
const encodeResult = encodeCashAddressFormat(prefix, version, payload);
- // eslint-disable-next-line functional/no-conditional-statement
if (cashaddr !== encodeResult) {
t.log('expected vector', vector.cashaddr);
t.log('typeBits', typeBits);
@@ -296,7 +296,6 @@ test('CashAddress test vectors', (t) => {
t.deepEqual(vector.cashaddr, encodeResult);
const decodeResult = decodeCashAddressNonStandard(cashaddr);
- // eslint-disable-next-line functional/no-conditional-statement
if (typeof decodeResult === 'string') {
t.log(decodeResult);
t.fail();
@@ -309,43 +308,43 @@ test('decodeCashAddressWithoutPrefix', (t) => {
const payload = hexToBin('15d16c84669ab46059313bf0747e781f1d13936d');
t.deepEqual(
decodeCashAddressFormatWithoutPrefix(
- 'qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x'
+ 'qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x',
),
- { payload, prefix: 'bchtest', version: 0 }
+ { payload, prefix: 'bchtest', version: 0 },
);
t.deepEqual(
decodeCashAddressFormatWithoutPrefix(
- 'qq2azmyyv6dtgczexyalqar70q036yund54qgw0wg6'
+ 'qq2azmyyv6dtgczexyalqar70q036yund54qgw0wg6',
),
- { payload, prefix: 'bitcoincash', version: 0 }
+ { payload, prefix: 'bitcoincash', version: 0 },
);
t.deepEqual(
decodeCashAddressFormatWithoutPrefix(
- 'qq2azmyyv6dtgczexyalqar70q036yund5tw6gw2vq'
+ 'qq2azmyyv6dtgczexyalqar70q036yund5tw6gw2vq',
),
- { payload, prefix: 'bchreg', version: 0 }
+ { payload, prefix: 'bchreg', version: 0 },
);
t.deepEqual(
decodeCashAddressFormatWithoutPrefix(
'qwtcxp42fcp06phz2xec6t5krau0ftew5efy50j9xyfxwa38df40zp58z6t5w',
- ['bitauth']
+ ['bitauth'],
),
{
payload: hexToBin(
- '978306aa4e02fd06e251b38d2e961f78f4af2ea6524a3e4531126776276a6af1'
+ '978306aa4e02fd06e251b38d2e961f78f4af2ea6524a3e4531126776276a6af1',
),
prefix: 'bitauth',
version: encodeCashAddressVersionByte(0, 32),
- }
+ },
);
t.deepEqual(
// cspell: disable-next-line
decodeCashAddressFormatWithoutPrefix('qwtcxp42fcp06phz', ['bitauth']),
- CashAddressDecodingError.invalidChecksum
+ CashAddressDecodingError.invalidChecksum,
);
});
@@ -360,11 +359,11 @@ test('[fast-check] encodeCashAddressFormat <-> decodeCashAddressFormat', (t) =>
(prefix, version, payload) => {
t.deepEqual(
decodeCashAddressFormat(
- encodeCashAddressFormat(prefix, version, payload)
+ encodeCashAddressFormat(prefix, version, payload),
),
- { payload, prefix, version }
+ { payload, prefix, version },
);
- }
+ },
);
t.notThrows(() => {
fc.assert(roundTripWithPayloadLength(20));
@@ -392,12 +391,12 @@ test('[fast-check] encodeCashAddressNonStandard <-> decodeCashAddressNonStandard
encodeCashAddressNonStandard(
prefix,
typeBits as CashAddressAvailableTypeBits,
- payload
- )
+ payload,
+ ),
),
- { payload, prefix, typeBits }
+ { payload, prefix, typeBits },
);
- }
+ },
);
t.notThrows(() => {
fc.assert(roundTripWithPayloadLength(20));
@@ -413,7 +412,7 @@ test('[fast-check] encodeCashAddressNonStandard <-> decodeCashAddressNonStandard
test('[fast-check] encodeCashAddress <-> decodeCashAddress', (t) => {
const prefixes = Object.keys(
- CashAddressNetworkPrefix
+ CashAddressNetworkPrefix,
) as CashAddressNetworkPrefix[];
const types = Object.keys(CashAddressType) as CashAddressType[];
const roundTripWithPayloadLength = (length: CashAddressSupportedLength) =>
@@ -428,9 +427,9 @@ test('[fast-check] encodeCashAddress <-> decodeCashAddress', (t) => {
const type = types[typeIndex]!;
t.deepEqual(
decodeCashAddress(encodeCashAddress(prefix, type, payload)),
- { payload, prefix, type }
+ { payload, prefix, type },
);
- }
+ },
);
t.notThrows(() => {
fc.assert(roundTripWithPayloadLength(20));
@@ -448,35 +447,35 @@ test('attemptCashAddressErrorCorrection', (t) => {
t.deepEqual(
attemptCashAddressFormatErrorCorrection(
// cspell: disable-next-line
- ':qq2azmyyv6dtgczexyalqar70q036yund53jvfde0c'
+ ':qq2azmyyv6dtgczexyalqar70q036yund53jvfde0c',
),
- CashAddressDecodingError.invalidFormat
+ CashAddressDecodingError.invalidFormat,
);
t.deepEqual(
attemptCashAddressFormatErrorCorrection(
// cspell: disable-next-line
- 'broken:broken'
+ 'broken:broken',
),
- CashAddressDecodingError.invalidCharacters
+ CashAddressDecodingError.invalidCharacters,
);
t.deepEqual(
attemptCashAddressFormatErrorCorrection(
// cspell: disable-next-line
- 'achtest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0c'
+ 'achtest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0c',
),
{
address: 'bchtest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x',
corrections: [0, 49],
- }
+ },
);
t.deepEqual(
attemptCashAddressFormatErrorCorrection(
// cspell: disable-next-line
- 'btcbest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x'
+ 'btcbest:qq2azmyyv6dtgczexyalqar70q036yund53jvfde0x',
),
- CashAddressCorrectionError.tooManyErrors
+ CashAddressCorrectionError.tooManyErrors,
);
});
@@ -489,24 +488,24 @@ test('[fast-check] attemptCashAddressErrorCorrection', (t) => {
fc.nat(15),
fc.uint8Array({ maxLength: payloadLength, minLength: payloadLength }),
fc.array(fc.nat(payloadLength), { maxLength: 2, minLength: 0 }),
- // eslint-disable-next-line max-params
+ // eslint-disable-next-line @typescript-eslint/max-params
(prefix, typeBits, payload, randomErrors) => {
const address = encodeCashAddressNonStandard(
prefix,
typeBits as CashAddressAvailableTypeBits,
- payload
+ payload,
);
const addressChars = splitEvery(address, 1);
const errors = [
...new Set(
randomErrors
.filter((i) => i !== prefix.length)
- .sort((a, b) => a - b)
+ .sort((a, b) => a - b),
),
];
const broken = addressChars
.map((char, i) =>
- errors.includes(i) ? (char === 'q' ? 'p' : 'q') : char
+ errors.includes(i) ? (char === 'q' ? 'p' : 'q') : char,
)
.join('');
@@ -514,7 +513,7 @@ test('[fast-check] attemptCashAddressErrorCorrection', (t) => {
address,
corrections: errors,
});
- }
+ },
);
t.notThrows(() => {
fc.assert(correctsUpToTwoErrors(20));
@@ -551,47 +550,47 @@ test(
legacyVectors,
// cspell: disable-next-line
'1BpEi6DfDAUFd7GtittLSdBeYJvcoaVggu',
- 'bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a'
+ 'bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a',
);
test(
legacyVectors,
// cspell: disable-next-line
'1KXrWXciRDZUpQwQmuM1DbwsKDLYAYsVLR',
- 'bitcoincash:qr95sy3j9xwd2ap32xkykttr4cvcu7as4y0qverfuy'
+ 'bitcoincash:qr95sy3j9xwd2ap32xkykttr4cvcu7as4y0qverfuy',
);
test(
legacyVectors,
// cspell: disable-next-line
'16w1D5WRVKJuZUsSRzdLp9w3YGcgoxDXb',
- 'bitcoincash:qqq3728yw0y47sqn6l2na30mcw6zm78dzqre909m2r'
+ 'bitcoincash:qqq3728yw0y47sqn6l2na30mcw6zm78dzqre909m2r',
);
test(
legacyVectors,
// cspell: disable-next-line
'3CWFddi6m4ndiGyKqzYvsFYagqDLPVMTzC',
- 'bitcoincash:ppm2qsznhks23z7629mms6s4cwef74vcwvn0h829pq'
+ 'bitcoincash:ppm2qsznhks23z7629mms6s4cwef74vcwvn0h829pq',
);
test(
legacyVectors,
// cspell: disable-next-line
'3LDsS579y7sruadqu11beEJoTjdFiFCdX4',
- 'bitcoincash:pr95sy3j9xwd2ap32xkykttr4cvcu7as4yc93ky28e'
+ 'bitcoincash:pr95sy3j9xwd2ap32xkykttr4cvcu7as4yc93ky28e',
);
test(
legacyVectors,
// cspell: disable-next-line
'31nwvkZwyPdgzjBJZXfDmSWsC4ZLKpYyUw',
- 'bitcoincash:pqq3728yw0y47sqn6l2na30mcw6zm78dzq5ucqzc37'
+ 'bitcoincash:pqq3728yw0y47sqn6l2na30mcw6zm78dzq5ucqzc37',
);
test(
legacyVectors,
// cspell: disable-next-line
'1Q2TWHE3GMdB6BZKafqwxXtWAWgFt5Jvm3',
- 'bitcoincash:qr7fzmep8g7h7ymfxy74lgc0v950j3r2959lhtxxsl'
+ 'bitcoincash:qr7fzmep8g7h7ymfxy74lgc0v950j3r2959lhtxxsl',
);
diff --git a/src/lib/address/cash-address.ts b/src/lib/address/cash-address.ts
index 3be4f0c5..16dbfacd 100644
--- a/src/lib/address/cash-address.ts
+++ b/src/lib/address/cash-address.ts
@@ -1,5 +1,4 @@
import { formatError } from '../format/format.js';
-import type { Immutable } from '../lib.js';
import {
decodeBech32,
@@ -213,7 +212,7 @@ const enum Constants {
*/
export const encodeCashAddressVersionByte = (
typeBits: CashAddressAvailableTypeBits,
- length: CashAddressSupportedLength
+ length: CashAddressSupportedLength,
) =>
// eslint-disable-next-line no-bitwise
(typeBits << Constants.cashAddressTypeBitsShift) |
@@ -253,9 +252,9 @@ export const decodeCashAddressVersionByte = (version: number) =>
*/
export const maskCashAddressPrefix = (prefix: string) => {
const result = [];
- // eslint-disable-next-line functional/no-let, functional/no-loop-statement, no-plusplus
+ // eslint-disable-next-line functional/no-let, functional/no-loop-statements, no-plusplus
for (let i = 0; i < prefix.length; i++) {
- // eslint-disable-next-line functional/no-expression-statement, no-bitwise, functional/immutable-data
+ // eslint-disable-next-line functional/no-expression-statements, no-bitwise, functional/immutable-data
result.push(prefix.charCodeAt(i) & Constants.asciiCaseInsensitiveBits);
}
return result;
@@ -314,8 +313,8 @@ const bech32GeneratorRemainingBytes = [0xf2bc8e61, 0xb76d99e2, 0x3e5fb3c4, 0x2ea
* @param v - Array of 5-bit integers over which the checksum is to be computed
*/
// Derived from the `bitcore-lib-cash` implementation (does not require BigInt): https://github.com/bitpay/bitcore
-export const cashAddressPolynomialModulo = (v: readonly number[]) => {
- /* eslint-disable functional/no-let, functional/no-loop-statement, functional/no-expression-statement, no-bitwise, @typescript-eslint/no-magic-numbers */
+export const cashAddressPolynomialModulo = (v: number[]) => {
+ /* eslint-disable functional/no-let, functional/no-loop-statements, functional/no-expression-statements, no-bitwise, @typescript-eslint/no-magic-numbers */
let mostSignificantByte = 0;
let lowerBytes = 1;
let c = 0;
@@ -331,7 +330,7 @@ export const cashAddressPolynomialModulo = (v: readonly number[]) => {
lowerBytes ^= v[j]!;
// eslint-disable-next-line no-plusplus
for (let i = 0; i < bech32GeneratorMostSignificantByte.length; ++i) {
- // eslint-disable-next-line functional/no-conditional-statement
+ // eslint-disable-next-line functional/no-conditional-statements
if (c & (1 << i)) {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
mostSignificantByte ^= bech32GeneratorMostSignificantByte[i]!;
@@ -341,13 +340,13 @@ export const cashAddressPolynomialModulo = (v: readonly number[]) => {
}
}
lowerBytes ^= 1;
- // eslint-disable-next-line functional/no-conditional-statement
+ // eslint-disable-next-line functional/no-conditional-statements
if (lowerBytes < 0) {
lowerBytes ^= 1 << 31;
lowerBytes += (1 << 30) * 2;
}
return mostSignificantByte * (1 << 30) * 4 + lowerBytes;
- /* eslint-enable functional/no-let, functional/no-loop-statement, functional/no-expression-statement, no-bitwise, @typescript-eslint/no-magic-numbers */
+ /* eslint-enable functional/no-let, functional/no-loop-statements, functional/no-expression-statements, no-bitwise, @typescript-eslint/no-magic-numbers */
};
/**
@@ -358,11 +357,11 @@ export const cashAddressPolynomialModulo = (v: readonly number[]) => {
*/
export const cashAddressChecksumToUint5Array = (checksum: number) => {
const result = [];
- // eslint-disable-next-line functional/no-let, functional/no-loop-statement, no-plusplus
+ // eslint-disable-next-line functional/no-let, functional/no-loop-statements, no-plusplus
for (let i = 0; i < Constants.base256WordLength; ++i) {
- // eslint-disable-next-line functional/no-expression-statement, no-bitwise, @typescript-eslint/no-magic-numbers, functional/immutable-data
+ // eslint-disable-next-line functional/no-expression-statements, no-bitwise, @typescript-eslint/no-magic-numbers, functional/immutable-data
result.push(checksum & 31);
- // eslint-disable-next-line functional/no-expression-statement, @typescript-eslint/no-magic-numbers, no-param-reassign
+ // eslint-disable-next-line functional/no-expression-statements, @typescript-eslint/no-magic-numbers, no-param-reassign
checksum /= 32;
}
// eslint-disable-next-line functional/immutable-data
@@ -384,7 +383,7 @@ export const cashAddressChecksumToUint5Array = (checksum: number) => {
export const encodeCashAddressFormat = (
prefix: string,
version: number,
- payload: Immutable
+ payload: Uint8Array,
) => {
const checksum40BitPlaceholder = [0, 0, 0, 0, 0, 0, 0, 0];
const payloadContents = regroupBits({
@@ -413,7 +412,7 @@ export enum CashAddressEncodingError {
}
export const isValidCashAddressPayloadLength = (
- length: number
+ length: number,
): length is CashAddressSupportedLength =>
(cashAddressLengthToSizeBits[length as CashAddressSupportedLength] as
| CashAddressSizeBits
@@ -443,22 +442,22 @@ export const isValidCashAddressPayloadLength = (
export const encodeCashAddressNonStandard = (
prefix: string,
typeBits: CashAddressAvailableTypeBits,
- payload: Uint8Array
+ payload: Uint8Array,
) => {
const { length } = payload;
if (!isValidCashAddressPayloadLength(length)) {
- // eslint-disable-next-line functional/no-throw-statement
+ // eslint-disable-next-line functional/no-throw-statements
throw new Error(
formatError(
CashAddressEncodingError.unsupportedPayloadLength,
- `Payload length: ${length}.`
- )
+ `Payload length: ${length}.`,
+ ),
);
}
return encodeCashAddressFormat(
prefix,
encodeCashAddressVersionByte(typeBits, length),
- payload
+ payload,
);
};
@@ -484,12 +483,12 @@ export const encodeCashAddressNonStandard = (
export const encodeCashAddress = (
prefix: `${CashAddressNetworkPrefix}`,
type: `${CashAddressType}`,
- payload: Uint8Array
+ payload: Uint8Array,
) =>
encodeCashAddressNonStandard(
prefix,
cashAddressTypeToTypeBits[type],
- payload
+ payload,
);
export enum CashAddressDecodingError {
@@ -639,13 +638,13 @@ export const decodeCashAddress = (address: string) => {
// decodeCashAddressWithoutPrefix
export const decodeCashAddressFormatWithoutPrefix = (
address: string,
- possiblePrefixes: readonly string[] = [
+ possiblePrefixes: string[] = [
CashAddressNetworkPrefix.mainnet,
CashAddressNetworkPrefix.testnet,
CashAddressNetworkPrefix.regtest,
- ]
+ ],
) => {
- // eslint-disable-next-line functional/no-loop-statement
+ // eslint-disable-next-line functional/no-loop-statements
for (const prefix of possiblePrefixes) {
const attempt = decodeCashAddressFormat(`${prefix}:${address}`);
if (attempt !== CashAddressDecodingError.invalidChecksum) {
@@ -670,14 +669,12 @@ export const decodeCashAddressFormatWithoutPrefix = (
* @param polynomial - an array of 5-bit integers representing the terms of a
* CashAddress polynomial
*/
-export const cashAddressPolynomialToCashAddress = (
- polynomial: readonly number[]
-) => {
+export const cashAddressPolynomialToCashAddress = (polynomial: number[]) => {
const separatorPosition = polynomial.indexOf(0);
const prefix = polynomial
.slice(0, separatorPosition)
.map((integer) =>
- String.fromCharCode(Constants.asciiLowerCaseStart + integer)
+ String.fromCharCode(Constants.asciiLowerCaseStart + integer),
)
.join('');
const contents = encodeBech32(polynomial.slice(separatorPosition + 1));
@@ -737,9 +734,9 @@ export const attemptCashAddressFormatErrorCorrection = (address: string) => {
}
const syndromes: { [index: string]: number } = {};
- // eslint-disable-next-line functional/no-let, functional/no-loop-statement, no-plusplus
+ // eslint-disable-next-line functional/no-let, functional/no-loop-statements, no-plusplus
for (let term = 0; term < polynomial.length; term++) {
- // eslint-disable-next-line functional/no-loop-statement
+ // eslint-disable-next-line functional/no-loop-statements
for (
// eslint-disable-next-line functional/no-let
let errorVector = 1;
@@ -747,7 +744,7 @@ export const attemptCashAddressFormatErrorCorrection = (address: string) => {
// eslint-disable-next-line no-plusplus
errorVector++
) {
- // eslint-disable-next-line functional/no-expression-statement, no-bitwise, functional/immutable-data
+ // eslint-disable-next-line functional/no-expression-statements, no-bitwise, functional/immutable-data
polynomial[term] ^= errorVector;
const correct = cashAddressPolynomialModulo(polynomial);
@@ -759,14 +756,14 @@ export const attemptCashAddressFormatErrorCorrection = (address: string) => {
}
// eslint-disable-next-line no-bitwise
const s0 = (BigInt(correct) ^ BigInt(originalChecksum)).toString();
- // eslint-disable-next-line functional/no-expression-statement, functional/immutable-data
+ // eslint-disable-next-line functional/no-expression-statements, functional/immutable-data
syndromes[s0] = term * Constants.finiteFieldOrder + errorVector;
- // eslint-disable-next-line functional/no-expression-statement, no-bitwise, functional/immutable-data
+ // eslint-disable-next-line functional/no-expression-statements, no-bitwise, functional/immutable-data
polynomial[term] ^= errorVector;
}
}
- // eslint-disable-next-line functional/no-loop-statement
+ // eslint-disable-next-line functional/no-loop-statements
for (const [s0, pe] of Object.entries(syndromes)) {
// eslint-disable-next-line no-bitwise
const s1Location = (BigInt(s0) ^ BigInt(originalChecksum)).toString();
@@ -774,9 +771,9 @@ export const attemptCashAddressFormatErrorCorrection = (address: string) => {
if (s1 !== undefined) {
const correctionIndex1 = Math.trunc(pe / Constants.finiteFieldOrder);
const correctionIndex2 = Math.trunc(s1 / Constants.finiteFieldOrder);
- // eslint-disable-next-line functional/no-expression-statement, no-bitwise, functional/immutable-data
+ // eslint-disable-next-line functional/no-expression-statements, no-bitwise, functional/immutable-data
polynomial[correctionIndex1] ^= pe % Constants.finiteFieldOrder;
- // eslint-disable-next-line functional/no-expression-statement, no-bitwise, functional/immutable-data
+ // eslint-disable-next-line functional/no-expression-statements, no-bitwise, functional/immutable-data
polynomial[correctionIndex2] ^= s1 % Constants.finiteFieldOrder;
return {
address: cashAddressPolynomialToCashAddress(polynomial),
diff --git a/src/lib/address/locking-bytecode.spec.ts b/src/lib/address/locking-bytecode.spec.ts
index cc04e6bb..117eb4cb 100644
--- a/src/lib/address/locking-bytecode.spec.ts
+++ b/src/lib/address/locking-bytecode.spec.ts
@@ -19,10 +19,10 @@ import {
test('lockingBytecode <-> AddressContents: P2PK', (t) => {
const genesisCoinbase = hexToBin(
- '4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac'
+ '4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac',
);
const genesisPublicKey = hexToBin(
- '04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f'
+ '04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f',
);
t.deepEqual(lockingBytecodeToAddressContents(genesisCoinbase), {
@@ -35,21 +35,21 @@ test('lockingBytecode <-> AddressContents: P2PK', (t) => {
payload: genesisPublicKey,
type: 'P2PK',
}),
- genesisCoinbase
+ genesisCoinbase,
);
t.deepEqual(
addressContentsToLockingBytecode({
payload: genesisPublicKey,
type: LockingBytecodeType.p2pk,
}),
- genesisCoinbase
+ genesisCoinbase,
);
const genesisCoinbaseCompressed = hexToBin(
- '2103678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6ac'
+ '2103678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6ac',
);
const compressedPublicKey = hexToBin(
- '03678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6'
+ '03678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6',
);
t.deepEqual(lockingBytecodeToAddressContents(genesisCoinbaseCompressed), {
payload: compressedPublicKey,
@@ -61,7 +61,7 @@ test('lockingBytecode <-> AddressContents: P2PK', (t) => {
payload: compressedPublicKey,
type: LockingBytecodeType.p2pk,
}),
- genesisCoinbaseCompressed
+ genesisCoinbaseCompressed,
);
});
@@ -77,14 +77,14 @@ test('lockingBytecode <-> AddressContents: P2PKH', (t) => {
payload: expectedPayload,
type: 'P2PKH',
}),
- p2pkh
+ p2pkh,
);
t.deepEqual(
addressContentsToLockingBytecode({
payload: expectedPayload,
type: LockingBytecodeType.p2pkh,
}),
- p2pkh
+ p2pkh,
);
});
@@ -100,14 +100,14 @@ test('lockingBytecode <-> AddressContents: P2SH20', (t) => {
payload: expectedPayload,
type: 'P2SH20',
}),
- p2sh20
+ p2sh20,
);
t.deepEqual(
addressContentsToLockingBytecode({
payload: expectedPayload,
type: LockingBytecodeType.p2sh20,
}),
- p2sh20
+ p2sh20,
);
});
@@ -125,7 +125,7 @@ test('lockingBytecode <-> AddressContents: unknown', (t) => {
// @ts-expect-error
type: 'unknown',
}),
- { message: 'Unrecognized addressContents type: unknown' }
+ { message: 'Unrecognized addressContents type: unknown' },
);
const almostP2pk = hexToBin('0100ac');
@@ -184,12 +184,12 @@ const cashVectors = test.macro<[string, string]>({
options: { tokenSupport: false },
prefix: 'bitcoincash',
},
- 'cashAddressToLockingBytecode'
+ 'cashAddressToLockingBytecode',
);
t.deepEqual(
lockingBytecodeToCashAddress(hexToBin(bytecode), 'bitcoincash'),
cashAddress,
- 'lockingBytecodeToCashAddress'
+ 'lockingBytecodeToCashAddress',
);
},
title: (_, cashAddress) =>
@@ -199,42 +199,42 @@ const cashVectors = test.macro<[string, string]>({
test(
cashVectors,
'bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a',
- '76a91476a04053bda0a88bda5177b86a15c3b29f55987388ac'
+ '76a91476a04053bda0a88bda5177b86a15c3b29f55987388ac',
);
test(
cashVectors,
'bitcoincash:qr95sy3j9xwd2ap32xkykttr4cvcu7as4y0qverfuy',
- '76a914cb481232299cd5743151ac4b2d63ae198e7bb0a988ac'
+ '76a914cb481232299cd5743151ac4b2d63ae198e7bb0a988ac',
);
test(
cashVectors,
'bitcoincash:qqq3728yw0y47sqn6l2na30mcw6zm78dzqre909m2r',
- '76a914011f28e473c95f4013d7d53ec5fbc3b42df8ed1088ac'
+ '76a914011f28e473c95f4013d7d53ec5fbc3b42df8ed1088ac',
);
test(
cashVectors,
'bitcoincash:ppm2qsznhks23z7629mms6s4cwef74vcwvn0h829pq',
- 'a91476a04053bda0a88bda5177b86a15c3b29f55987387'
+ 'a91476a04053bda0a88bda5177b86a15c3b29f55987387',
);
test(
cashVectors,
'bitcoincash:pr95sy3j9xwd2ap32xkykttr4cvcu7as4yc93ky28e',
- 'a914cb481232299cd5743151ac4b2d63ae198e7bb0a987'
+ 'a914cb481232299cd5743151ac4b2d63ae198e7bb0a987',
);
test(
cashVectors,
'bitcoincash:pqq3728yw0y47sqn6l2na30mcw6zm78dzq5ucqzc37',
- 'a914011f28e473c95f4013d7d53ec5fbc3b42df8ed1087'
+ 'a914011f28e473c95f4013d7d53ec5fbc3b42df8ed1087',
);
test('lockingBytecodeToCashAddress: P2PK', (t) => {
const genesisCoinbase = hexToBin(
- '4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac'
+ '4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac',
);
t.deepEqual(lockingBytecodeToCashAddress(genesisCoinbase, 'bitcoincash'), {
@@ -242,16 +242,16 @@ test('lockingBytecodeToCashAddress: P2PK', (t) => {
});
const genesisCoinbaseCompressed = hexToBin(
- '2103678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6ac'
+ '2103678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6ac',
);
t.deepEqual(
lockingBytecodeToCashAddress(
genesisCoinbaseCompressed,
- CashAddressNetworkPrefix.mainnet
+ CashAddressNetworkPrefix.mainnet,
),
{
error: CashAddressEncodingError.noTypeBitsValueStandardizedForP2pk,
- }
+ },
);
});
@@ -262,7 +262,7 @@ test('cashAddressToLockingBytecode <-> lockingBytecodeToCashAddress: P2PKH', (t)
t.deepEqual(lockingBytecodeToCashAddress(p2pkh, 'bitcoincash'), address);
t.deepEqual(
lockingBytecodeToCashAddress(p2pkh, 'bitcoincash', { tokenSupport: true }),
- tokenAddress
+ tokenAddress,
);
t.deepEqual(cashAddressToLockingBytecode(address), {
bytecode: p2pkh,
@@ -283,7 +283,7 @@ test('cashAddressToLockingBytecode <-> lockingBytecodeToCashAddress: P2SH20', (t
t.deepEqual(lockingBytecodeToCashAddress(p2sh20, 'bitcoincash'), address);
t.deepEqual(
lockingBytecodeToCashAddress(p2sh20, 'bitcoincash', { tokenSupport: true }),
- tokenAddress
+ tokenAddress,
);
t.deepEqual(cashAddressToLockingBytecode(address), {
bytecode: p2sh20,
@@ -299,7 +299,7 @@ test('cashAddressToLockingBytecode <-> lockingBytecodeToCashAddress: P2SH20', (t
test('cashAddressToLockingBytecode <-> lockingBytecodeToCashAddress: P2SH32', (t) => {
const p2sh32 = hexToBin(
- 'aa20000000000000000000000000000012345678900000000000000000000000000087'
+ 'aa20000000000000000000000000000012345678900000000000000000000000000087',
);
const address =
'bitcoincash:pvqqqqqqqqqqqqqqqqqqqqqqzg69v7ysqqqqqqqqqqqqqqqqqqqqqpkp7fqn0';
@@ -308,7 +308,7 @@ test('cashAddressToLockingBytecode <-> lockingBytecodeToCashAddress: P2SH32', (t
t.deepEqual(lockingBytecodeToCashAddress(p2sh32, 'bitcoincash'), address);
t.deepEqual(
lockingBytecodeToCashAddress(p2sh32, 'bitcoincash', { tokenSupport: true }),
- tokenAddress
+ tokenAddress,
);
t.deepEqual(cashAddressToLockingBytecode(address), {
bytecode: p2sh32,
@@ -329,7 +329,7 @@ test('lockingBytecodeToCashAddress: error', (t) => {
error: CashAddressEncodingError.unknownLockingBytecodeType,
});
const genesisCoinbase = hexToBin(
- '4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac'
+ '4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac',
);
t.deepEqual(lockingBytecodeToCashAddress(genesisCoinbase, 'bitcoincash'), {
error: CashAddressEncodingError.noTypeBitsValueStandardizedForP2pk,
@@ -339,22 +339,22 @@ test('lockingBytecodeToCashAddress: error', (t) => {
test('cashAddressToLockingBytecode: error', (t) => {
t.deepEqual(
cashAddressToLockingBytecode('bad:address'),
- CashAddressDecodingError.invalidChecksum
+ CashAddressDecodingError.invalidChecksum,
);
t.deepEqual(
cashAddressToLockingBytecode(
- 'bitcoincash:dp60yz0ka2g8ut4y3a604czhs2hg5ejj2u6xkulaqj'
+ 'bitcoincash:dp60yz0ka2g8ut4y3a604czhs2hg5ejj2u6xkulaqj',
),
- `${CashAddressDecodingError.unknownAddressType} Type bit value: 13.`
+ `${CashAddressDecodingError.unknownAddressType} Type bit value: 13.`,
);
});
test('lockingBytecodeToBase58Address: P2PK', (t) => {
const genesisCoinbase = hexToBin(
- '4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac'
+ '4104678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5fac',
);
const genesisPublicKey = hexToBin(
- '04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f'
+ '04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f',
);
t.deepEqual(
@@ -362,25 +362,25 @@ test('lockingBytecodeToBase58Address: P2PK', (t) => {
{
payload: genesisPublicKey,
type: LockingBytecodeType.p2pk,
- }
+ },
);
const genesisCoinbaseCompressed = hexToBin(
- '2103678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6ac'
+ '2103678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6ac',
);
const compressedPublicKey = hexToBin(
- '03678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6'
+ '03678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb6',
);
t.deepEqual(
lockingBytecodeToBase58Address(
genesisCoinbaseCompressed,
'testnet',
- sha256
+ sha256,
),
{
payload: compressedPublicKey,
type: LockingBytecodeType.p2pk,
- }
+ },
);
});
@@ -395,7 +395,7 @@ test('base58AddressToLockingBytecode <-> lockingBytecodeToBase58Address: P2PKH',
t.deepEqual(lockingBytecodeToBase58Address(p2pkh, 'mainnet'), address);
t.deepEqual(
lockingBytecodeToBase58Address(p2pkh, 'testnet', sha256),
- addressTestnet
+ addressTestnet,
);
t.deepEqual(lockingBytecodeToBase58Address(p2pkh, 'copayBCH'), addressCopay);
@@ -424,7 +424,7 @@ test('base58AddressToLockingBytecode <-> lockingBytecodeToBase58Address: P2SH20'
t.deepEqual(lockingBytecodeToBase58Address(p2sh20, 'mainnet'), address);
t.deepEqual(
lockingBytecodeToBase58Address(p2sh20, 'testnet', sha256),
- addressTestnet
+ addressTestnet,
);
t.deepEqual(lockingBytecodeToBase58Address(p2sh20, 'copayBCH'), addressCopay);
@@ -445,6 +445,6 @@ test('base58AddressToLockingBytecode <-> lockingBytecodeToBase58Address: P2SH20'
test('base58AddressToLockingBytecode: error', (t) => {
t.deepEqual(
base58AddressToLockingBytecode('bad:address'),
- Base58AddressError.unknownCharacter
+ Base58AddressError.unknownCharacter,
);
});
diff --git a/src/lib/address/locking-bytecode.ts b/src/lib/address/locking-bytecode.ts
index d6c61fad..b98f8211 100644
--- a/src/lib/address/locking-bytecode.ts
+++ b/src/lib/address/locking-bytecode.ts
@@ -63,19 +63,19 @@ export enum LockingBytecodeType {
* An object representing the contents of an address of a known address type.
* This can be used to encode an address or its locking bytecode.
*/
-export interface KnownAddressTypeContents {
+export type KnownAddressTypeContents = {
type: `${LockingBytecodeType}`;
payload: Uint8Array;
-}
+};
-export interface UnknownAddressTypeContents {
+export type UnknownAddressTypeContents = {
/**
* This address type represents an address using an unknown or uncommon
* locking bytecode pattern for which no standardized address formats exist.
*/
type: 'unknown';
payload: Uint8Array;
-}
+};
/**
* An object representing the contents of an address. This can be used to encode
@@ -208,13 +208,13 @@ const enum AddressPayload {
// eslint-disable-next-line complexity
export const lockingBytecodeToAddressContents = (
- bytecode: Uint8Array
+ bytecode: Uint8Array,
): AddressContents => {
if (isPayToPublicKeyHash(bytecode)) {
return {
payload: bytecode.slice(
AddressPayload.p2pkhStart,
- AddressPayload.p2pkhEnd
+ AddressPayload.p2pkhEnd,
),
type: LockingBytecodeType.p2pkh,
};
@@ -224,7 +224,7 @@ export const lockingBytecodeToAddressContents = (
return {
payload: bytecode.slice(
AddressPayload.p2sh20Start,
- AddressPayload.p2sh20End
+ AddressPayload.p2sh20End,
),
type: LockingBytecodeType.p2sh20,
};
@@ -234,7 +234,7 @@ export const lockingBytecodeToAddressContents = (
return {
payload: bytecode.slice(
AddressPayload.p2sh32Start,
- AddressPayload.p2sh32End
+ AddressPayload.p2sh32End,
),
type: LockingBytecodeType.p2sh32,
};
@@ -244,7 +244,7 @@ export const lockingBytecodeToAddressContents = (
return {
payload: bytecode.slice(
AddressPayload.p2pkUncompressedStart,
- AddressPayload.p2pkUncompressedEnd
+ AddressPayload.p2pkUncompressedEnd,
),
type: LockingBytecodeType.p2pk,
};
@@ -254,7 +254,7 @@ export const lockingBytecodeToAddressContents = (
return {
payload: bytecode.slice(
AddressPayload.p2pkCompressedStart,
- AddressPayload.p2pkCompressedEnd
+ AddressPayload.p2pkCompressedEnd,
),
type: LockingBytecodeType.p2pk,
};
@@ -368,7 +368,7 @@ export const addressContentsToLockingBytecode = ({
}
return unknownValue(
type,
- `Unrecognized addressContents type: ${type as string}`
+ `Unrecognized addressContents type: ${type as string}`,
);
};
@@ -391,7 +391,7 @@ export const addressContentsToLockingBytecode = ({
export const lockingBytecodeToCashAddress = (
bytecode: Uint8Array,
prefix: `${CashAddressNetworkPrefix}` = 'bitcoincash',
- options = { tokenSupport: false }
+ options = { tokenSupport: false },
) => {
const contents = lockingBytecodeToAddressContents(bytecode);
if (contents.type === LockingBytecodeType.p2pkh) {
@@ -399,7 +399,7 @@ export const lockingBytecodeToCashAddress = (
? encodeCashAddress(
prefix,
CashAddressType.p2pkhWithTokens,
- contents.payload
+ contents.payload,
)
: encodeCashAddress(prefix, CashAddressType.p2pkh, contents.payload);
}
@@ -411,7 +411,7 @@ export const lockingBytecodeToCashAddress = (
? encodeCashAddress(
prefix,
CashAddressType.p2shWithTokens,
- contents.payload
+ contents.payload,
)
: encodeCashAddress(prefix, CashAddressType.p2sh, contents.payload);
}
@@ -426,7 +426,7 @@ export const lockingBytecodeToCashAddress = (
}
return unknownValue(
contents.type,
- `Unrecognized locking bytecode type: ${contents.type as string}`
+ `Unrecognized locking bytecode type: ${contents.type as string}`,
);
};
@@ -451,7 +451,7 @@ export const cashAddressToLockingBytecode = (address: string) => {
) {
return formatError(
LockingBytecodeGenerationError.unsupportedPayloadLength,
- `Payload length: ${decoded.payload.length}`
+ `Payload length: ${decoded.payload.length}`,
);
}
if (
@@ -490,7 +490,7 @@ export const cashAddressToLockingBytecode = (address: string) => {
}
return unknownValue(
decoded.type,
- `Unrecognized address type: ${decoded.type as string}`
+ `Unrecognized address type: ${decoded.type as string}`,
);
};
@@ -516,7 +516,7 @@ export const cashAddressToLockingBytecode = (address: string) => {
export const lockingBytecodeToBase58Address = (
bytecode: Uint8Array,
network: `${Base58AddressNetwork}` = 'mainnet',
- sha256: { hash: Sha256['hash'] } = internalSha256
+ sha256: { hash: Sha256['hash'] } = internalSha256,
) => {
const contents = lockingBytecodeToAddressContents(bytecode);
@@ -528,7 +528,7 @@ export const lockingBytecodeToBase58Address = (
testnet: Base58AddressFormatVersion.p2pkhTestnet,
}[network],
contents.payload,
- sha256
+ sha256,
);
}
if (contents.type === LockingBytecodeType.p2sh20) {
@@ -539,7 +539,7 @@ export const lockingBytecodeToBase58Address = (
testnet: Base58AddressFormatVersion.p2sh20Testnet,
}[network],
contents.payload,
- sha256
+ sha256,
);
}
@@ -556,7 +556,7 @@ export const lockingBytecodeToBase58Address = (
*/
export const base58AddressToLockingBytecode = (
address: string,
- sha256: { hash: Sha256['hash'] } = internalSha256
+ sha256: { hash: Sha256['hash'] } = internalSha256,
) => {
const decoded = decodeBase58Address(address, sha256);
if (typeof decoded === 'string') return decoded;
diff --git a/src/lib/bin/hashes.ts b/src/lib/bin/hashes.ts
index 99fa8816..4c977b24 100644
--- a/src/lib/bin/hashes.ts
+++ b/src/lib/bin/hashes.ts
@@ -1,11 +1,11 @@
-export interface HashFunction {
- readonly final: (rawState: Uint8Array) => Uint8Array;
- readonly hash: (input: Uint8Array) => Uint8Array;
- readonly init: () => Uint8Array;
- readonly update: (rawState: Uint8Array, input: Uint8Array) => Uint8Array;
-}
+export type HashFunction = {
+ final: (rawState: Uint8Array) => Uint8Array;
+ hash: (input: Uint8Array) => Uint8Array;
+ init: () => Uint8Array;
+ update: (rawState: Uint8Array, input: Uint8Array) => Uint8Array;
+};
-/* eslint-disable functional/no-conditional-statement, functional/no-let, functional/no-expression-statement, no-underscore-dangle, functional/no-try-statement, @typescript-eslint/no-magic-numbers, max-params, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-non-null-assertion */
+/* eslint-disable functional/no-conditional-statements, functional/no-let, functional/no-expression-statements, no-underscore-dangle, functional/no-try-statements, @typescript-eslint/no-magic-numbers, @typescript-eslint/max-params, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-non-null-assertion */
/**
* Note, most of this method is translated and boiled-down from the wasm-pack
* workflow. Significant changes to wasm-bindgen or wasm-pack build will likely
@@ -17,7 +17,7 @@ export const instantiateRustWasm = async (
hashExportName: string,
initExportName: string,
updateExportName: string,
- finalExportName: string
+ finalExportName: string,
): Promise => {
const wasm = (
await WebAssembly.instantiate(webassemblyBytes, {
@@ -30,14 +30,14 @@ export const instantiateRustWasm = async (
// eslint-disable-next-line camelcase, @typescript-eslint/naming-convention
__wbindgen_throw: /* istanbul ignore next */ (
ptr: number,
- len: number
+ len: number,
) => {
- // eslint-disable-next-line functional/no-throw-statement
+ // eslint-disable-next-line functional/no-throw-statements
throw new Error(
// eslint-disable-next-line @typescript-eslint/no-use-before-define
Array.from(getUint8Memory().subarray(ptr, ptr + len))
.map((num) => String.fromCharCode(num))
- .join('')
+ .join(''),
);
},
},
@@ -158,4 +158,4 @@ export const instantiateRustWasm = async (
update,
};
};
-/* eslint-enable functional/no-conditional-statement, functional/no-let, functional/no-expression-statement, no-underscore-dangle, functional/no-try-statement, @typescript-eslint/no-magic-numbers, max-params, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-non-null-assertion */
+/* eslint-enable functional/no-conditional-statements, functional/no-let, functional/no-expression-statements, no-underscore-dangle, functional/no-try-statements, @typescript-eslint/no-magic-numbers, @typescript-eslint/max-params, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-non-null-assertion */
diff --git a/src/lib/bin/secp256k1/secp256k1-wasm-types.ts b/src/lib/bin/secp256k1/secp256k1-wasm-types.ts
index 283340a5..50672ad0 100644
--- a/src/lib/bin/secp256k1/secp256k1-wasm-types.ts
+++ b/src/lib/bin/secp256k1/secp256k1-wasm-types.ts
@@ -61,7 +61,7 @@ export enum CompressionFlag {
* **It's very unlikely that consumers will need to use this interface directly.
* See [[Secp256k1]] for a more purely-functional API.**
*/
-export interface Secp256k1Wasm {
+export type Secp256k1Wasm = {
/**
* Create a Secp256k1 context object.
*
@@ -74,7 +74,7 @@ export interface Secp256k1Wasm {
* verification).
* @param context - a `Context` flag representing the capabilities needed
*/
- readonly contextCreate: (context: ContextFlag) => number;
+ contextCreate: (context: ContextFlag) => number;
/**
* Updates the context randomization to protect against side-channel leakage.
@@ -97,24 +97,24 @@ export interface Secp256k1Wasm {
* @param contextPtr - pointer to a context object
* @param seedPtr - pointer to a 32-byte random seed
*/
- readonly contextRandomize: (contextPtr: number, seedPtr: number) => 0 | 1;
+ contextRandomize: (contextPtr: number, seedPtr: number) => 0 | 1;
/**
* Frees a pointer allocated by the `malloc` method.
* @param pointer - the pointer to be freed
*/
- readonly free: (pointer: number) => number;
+ free: (pointer: number) => number;
- readonly heapU32: Uint32Array;
- readonly heapU8: Uint8Array;
- readonly instance: WebAssembly.Instance;
+ heapU32: Uint32Array;
+ heapU8: Uint8Array;
+ instance: WebAssembly.Instance;
/**
* Allocates the given number of bytes in WebAssembly memory.
* @param malloc - the number of bytes to allocate
*/
- readonly malloc: (bytes: number) => number;
+ malloc: (bytes: number) => number;
/**
* The Secp256k1 library accepts a pointer to a `size_t outputlen` for both
@@ -123,14 +123,14 @@ export interface Secp256k1Wasm {
* This is a convenience method to create and set the value of those pointers.
* @param value - the value of the `size_t` (e.g. the buffer length)
*/
- readonly mallocSizeT: (value: number) => number;
+ mallocSizeT: (value: number) => number;
/**
* Allocates space for the provided array, and assigns the array to the space.
*
* @param array - a Uint8Array to allocate in WebAssembly memory
*/
- readonly mallocUint8Array: (array: Uint8Array) => number;
+ mallocUint8Array: (array: Uint8Array) => number;
/**
* Tweak a _privateKey_ by adding _tweak_ to it.
@@ -140,10 +140,10 @@ export interface Secp256k1Wasm {
* @param secretKeyPtr - pointer to a 32 byte private key
* @param tweakNum256Ptr - pointer to a 256 bit int representing the tweak value
*/
- readonly privkeyTweakAdd: (
+ privkeyTweakAdd: (
contextPtr: number,
secretKeyPtr: number,
- tweakNum256Ptr: number
+ tweakNum256Ptr: number,
) => 0 | 1;
/**
@@ -154,10 +154,10 @@ export interface Secp256k1Wasm {
* @param secretKeyPtr - pointer to a 32 byte private key
* @param tweakNum256Ptr - pointer to a 256 bit int representing the tweak value
*/
- readonly privkeyTweakMul: (
+ privkeyTweakMul: (
contextPtr: number,
secretKeyPtr: number,
- tweakNum256Ptr: number
+ tweakNum256Ptr: number,
) => 0 | 1;
/**
@@ -170,10 +170,10 @@ export interface Secp256k1Wasm {
* internal representation, and must be serialized for outside use)
* @param secretKeyPtr - pointer to a 32-byte private key
*/
- readonly pubkeyCreate: (
+ pubkeyCreate: (
contextPtr: number,
publicKeyPtr: number,
- secretKeyPtr: number
+ secretKeyPtr: number,
) => 0 | 1;
/**
@@ -194,12 +194,12 @@ export interface Secp256k1Wasm {
* (Note, this should be a simple integer, rather than a `size_t` pointer as
* is required by the serialization methods.)
*/
- readonly pubkeyParse: (
+ pubkeyParse: (
contextPtr: number,
publicKeyOutPtr: number,
publicKeyInPtr: number,
// eslint-disable-next-line @typescript-eslint/no-magic-numbers
- publicKeyInLength: 33 | 65
+ publicKeyInLength: 33 | 65,
) => 0 | 1;
/**
@@ -216,12 +216,12 @@ export interface Secp256k1Wasm {
* @param compression - a CompressionFlag indicating compressed
* or uncompressed
*/
- readonly pubkeySerialize: (
+ pubkeySerialize: (
contextPtr: number,
outputPtr: number,
outputLengthPtr: number,
publicKeyPtr: number,
- compression: CompressionFlag
+ compression: CompressionFlag,
) => 1;
/**
@@ -234,10 +234,10 @@ export interface Secp256k1Wasm {
* @param tweakNum256Ptr - pointer to a 256 bit int representing the tweak value
*/
- readonly pubkeyTweakAdd: (
+ pubkeyTweakAdd: (
contextPtr: number,
publicKeyPtr: number,
- tweakNum256Ptr: number
+ tweakNum256Ptr: number,
) => 0 | 1;
/**
@@ -250,10 +250,10 @@ export interface Secp256k1Wasm {
* @param tweakNum256Ptr - pointer to a 256 bit int representing the tweak value
*/
- readonly pubkeyTweakMul: (
+ pubkeyTweakMul: (
contextPtr: number,
publicKeyPtr: number,
- tweakNum256Ptr: number
+ tweakNum256Ptr: number,
) => 0 | 1;
/**
@@ -263,14 +263,14 @@ export interface Secp256k1Wasm {
* @param pointer - a pointer to the beginning of the Uint8Array element
* @param bytes - the number of bytes to copy
*/
- readonly readHeapU8: (pointer: number, bytes: number) => Uint8Array;
+ readHeapU8: (pointer: number, bytes: number) => Uint8Array;
/**
* Read a `size_t` from WebAssembly memory.
*
* @param pointer - a pointer to the `size_t` variable to read
*/
- readonly readSizeT: (pointer: number) => number;
+ readSizeT: (pointer: number) => number;
/**
* Compute the public key given a recoverable signature and message hash.
@@ -284,11 +284,11 @@ export interface Secp256k1Wasm {
* @param msg32Ptr - pointer to the 32-byte message hash the signed by this
* signature
*/
- readonly recover: (
+ recover: (
contextPtr: number,
publicKeyPtr: number,
rSigPtr: number,
- msg32Ptr: number
+ msg32Ptr: number,
) => 0 | 1;
/**
@@ -309,11 +309,11 @@ export interface Secp256k1Wasm {
* @param inputSigPtr - pointer to a serialized signature in compact format
* @param rid - the recovery number, as an int. (Not a pointer)
*/
- readonly recoverableSignatureParse: (
+ recoverableSignatureParse: (
contextPtr: number,
outputRSigPtr: number,
inputSigPtr: number,
- rid: number
+ rid: number,
) => 0 | 1;
/**
@@ -329,11 +329,11 @@ export interface Secp256k1Wasm {
* @param rSigPtr - pointer to the 65-byte signature to be serialized
* (internal format)
*/
- readonly recoverableSignatureSerialize: (
+ recoverableSignatureSerialize: (
contextPtr: number,
sigOutPtr: number,
recIDOutPtr: number,
- rSigPtr: number
+ rSigPtr: number,
) => 1;
/**
@@ -359,11 +359,11 @@ export interface Secp256k1Wasm {
* @param msg32Ptr - pointer to the 32-byte message hash being signed
* @param secretKeyPtr - pointer to a 32-byte secret key
*/
- readonly schnorrSign: (
+ schnorrSign: (
contextPtr: number,
outputSigPtr: number,
msg32Ptr: number,
- secretKeyPtr: number
+ secretKeyPtr: number,
) => 0 | 1;
/**
@@ -378,11 +378,11 @@ export interface Secp256k1Wasm {
* @param pubkeyPtr - pointer to the parsed pubkey with which to verify
* (internal format)
*/
- readonly schnorrVerify: (
+ schnorrVerify: (
contextPtr: number,
sigPtr: number,
msg32Ptr: number,
- publicKeyPtr: number
+ publicKeyPtr: number,
) => 0 | 1;
/**
@@ -393,7 +393,7 @@ export interface Secp256k1Wasm {
* @param contextPtr - pointer to a context object
* @param secretKeyPtr - pointer to a 32-byte secret key
*/
- readonly seckeyVerify: (contextPtr: number, secretKeyPtr: number) => 0 | 1;
+ seckeyVerify: (contextPtr: number, secretKeyPtr: number) => 0 | 1;
/**
* Create an ECDSA signature. The created signature is always in lower-S form.
@@ -412,11 +412,11 @@ export interface Secp256k1Wasm {
* @param msg32Ptr - pointer to the 32-byte message hash being signed
* @param secretKeyPtr - pointer to a 32-byte secret key
*/
- readonly sign: (
+ sign: (
contextPtr: number,
outputSigPtr: number,
msg32Ptr: number,
- secretKeyPtr: number
+ secretKeyPtr: number,
) => 0 | 1;
/**
@@ -434,10 +434,10 @@ export interface Secp256k1Wasm {
* signature will be written (internal format)
* @param inputSigPtr - pointer to a signature to malleate
*/
- readonly signatureMalleate: (
+ signatureMalleate: (
contextPtr: number,
outputSigPtr: number,
- inputSigPtr: number
+ inputSigPtr: number,
) => 1;
/**
@@ -483,10 +483,10 @@ export interface Secp256k1Wasm {
* @param inputSigPtr - pointer to a signature to check/normalize (internal
* format)
*/
- readonly signatureNormalize: (
+ signatureNormalize: (
contextPtr: number,
outputSigPtr: number,
- inputSigPtr: number
+ inputSigPtr: number,
) => 0 | 1;
/**
@@ -506,10 +506,10 @@ export interface Secp256k1Wasm {
* will be written. (internal format)
* @param compactSigInPtr - pointer to a serialized signature in compact format
*/
- readonly signatureParseCompact: (
+ signatureParseCompact: (
contextPtr: number,
sigOutPtr: number,
- compactSigInPtr: number
+ compactSigInPtr: number,
) => 0 | 1;
/**
@@ -532,11 +532,11 @@ export interface Secp256k1Wasm {
* this should be a simple integer, rather than a `size_t` pointer as is
* required by the serialization methods.)
*/
- readonly signatureParseDER: (
+ signatureParseDER: (
contextPtr: number,
sigOutPtr: number,
sigDERInPtr: number,
- sigDERInLength: number
+ sigDERInLength: number,
) => 0 | 1;
/**
@@ -550,10 +550,10 @@ export interface Secp256k1Wasm {
* @param inputSigPtr - pointer to the 64-byte signature to be serialized
* (internal format)
*/
- readonly signatureSerializeCompact: (
+ signatureSerializeCompact: (
contextPtr: number,
outputCompactSigPtr: number,
- inputSigPtr: number
+ inputSigPtr: number,
) => 1;
/**
@@ -570,11 +570,11 @@ export interface Secp256k1Wasm {
* @param inputSigPtr - pointer to the 64-byte signature to be serialized
* (internal format)
*/
- readonly signatureSerializeDER: (
+ signatureSerializeDER: (
contextPtr: number,
outputDERSigPtr: number,
outputDERSigLengthPtr: number,
- inputSigPtr: number
+ inputSigPtr: number,
) => 0 | 1;
/**
@@ -595,11 +595,11 @@ export interface Secp256k1Wasm {
* @param msg32Ptr - pointer to the 32-byte message hash being signed
* @param secretKeyPtr - pointer to a 32-byte secret key
*/
- readonly signRecoverable: (
+ signRecoverable: (
contextPtr: number,
outputRSigPtr: number,
msg32Ptr: number,
- secretKeyPtr: number
+ secretKeyPtr: number,
) => 0 | 1;
/**
@@ -623,10 +623,10 @@ export interface Secp256k1Wasm {
* @param pubkeyPtr - pointer to the parsed pubkey with which to verify
* (internal format)
*/
- readonly verify: (
+ verify: (
contextPtr: number,
sigPtr: number,
msg32Ptr: number,
- pubkeyPtr: number
+ pubkeyPtr: number,
) => 0 | 1;
-}
+};
diff --git a/src/lib/bin/secp256k1/secp256k1-wasm.spec.ts b/src/lib/bin/secp256k1/secp256k1-wasm.spec.ts
index 98276877..99203c44 100644
--- a/src/lib/bin/secp256k1/secp256k1-wasm.spec.ts
+++ b/src/lib/bin/secp256k1/secp256k1-wasm.spec.ts
@@ -57,7 +57,7 @@ const sigSchnorr = new Uint8Array([0xb5, 0x10, 0x41, 0x58, 0x7d, 0xa9, 0x46, 0xe
const testSecp256k1Wasm = (
t: ExecutionContext,
- secp256k1Wasm: Secp256k1Wasm
+ secp256k1Wasm: Secp256k1Wasm,
) => {
t.truthy(secp256k1Wasm.heapU32);
t.truthy(secp256k1Wasm.heapU8);
@@ -66,7 +66,7 @@ const testSecp256k1Wasm = (
const contextPtr = secp256k1Wasm.contextCreate(ContextFlag.BOTH);
{
const seedPtr = secp256k1Wasm.mallocUint8Array(
- new Uint8Array(randomBytes(32))
+ new Uint8Array(randomBytes(32)),
);
t.is(secp256k1Wasm.contextRandomize(contextPtr, seedPtr), 1);
secp256k1Wasm.free(seedPtr);
@@ -86,14 +86,14 @@ const testSecp256k1Wasm = (
uncompressedOutputPtr,
uncompressedOutputLengthPtr,
rawPubkeyPtr,
- CompressionFlag.UNCOMPRESSED
+ CompressionFlag.UNCOMPRESSED,
);
const uncompressedLength = secp256k1Wasm.readSizeT(
- uncompressedOutputLengthPtr
+ uncompressedOutputLengthPtr,
);
const uncompressedPublicKey = secp256k1Wasm.readHeapU8(
uncompressedOutputPtr,
- uncompressedLength
+ uncompressedLength,
);
t.deepEqual(pubkeyUncompressed, uncompressedPublicKey);
@@ -105,12 +105,12 @@ const testSecp256k1Wasm = (
compressedOutputPtr,
compressedOutputLengthPtr,
rawPubkeyPtr,
- CompressionFlag.COMPRESSED
+ CompressionFlag.COMPRESSED,
);
const compressedLength = secp256k1Wasm.readSizeT(compressedOutputLengthPtr);
const compressedPublicKey = secp256k1Wasm.readHeapU8(
compressedOutputPtr,
- compressedLength
+ compressedLength,
);
t.deepEqual(pubkeyCompressed, compressedPublicKey);
@@ -121,9 +121,9 @@ const testSecp256k1Wasm = (
contextPtr,
rawPubkey2Ptr,
uncompressedOutputPtr,
- 65
+ 65,
),
- 1
+ 1,
);
const compressedOutput2Ptr = secp256k1Wasm.malloc(33);
const compressedOutput2LengthPtr = secp256k1Wasm.mallocSizeT(33);
@@ -133,14 +133,14 @@ const testSecp256k1Wasm = (
compressedOutput2Ptr,
compressedOutput2LengthPtr,
rawPubkey2Ptr,
- CompressionFlag.COMPRESSED
+ CompressionFlag.COMPRESSED,
),
- 1
+ 1,
);
const convertedLength = secp256k1Wasm.readSizeT(compressedOutput2LengthPtr);
const convertedPublicKey = secp256k1Wasm.readHeapU8(
compressedOutput2Ptr,
- convertedLength
+ convertedLength,
);
t.deepEqual(convertedPublicKey, pubkeyCompressed);
t.deepEqual(convertedPublicKey, compressedPublicKey);
@@ -158,9 +158,9 @@ const testSecp256k1Wasm = (
contextPtr,
sigDERPtr,
sigDERLengthPtr,
- rawSigPtr
+ rawSigPtr,
),
- 1
+ 1,
);
const sigDERLength = secp256k1Wasm.readSizeT(sigDERLengthPtr);
t.is(sigDERLength, 71);
@@ -174,9 +174,9 @@ const testSecp256k1Wasm = (
contextPtr,
rawSig2Ptr,
sigDERPtr,
- sigDERLength
+ sigDERLength,
),
- 1
+ 1,
);
// serialize the signature in compact format
@@ -184,7 +184,7 @@ const testSecp256k1Wasm = (
secp256k1Wasm.signatureSerializeCompact(
contextPtr,
compactSigPtr,
- rawSig2Ptr
+ rawSig2Ptr,
);
const compactSig = secp256k1Wasm.readHeapU8(compactSigPtr, 64);
t.deepEqual(compactSig, sigCompact);
@@ -193,13 +193,13 @@ const testSecp256k1Wasm = (
const rawSig3Ptr = secp256k1Wasm.malloc(64);
t.is(
secp256k1Wasm.signatureParseCompact(contextPtr, rawSig3Ptr, compactSigPtr),
- 1
+ 1,
);
// verify the signature
t.is(
secp256k1Wasm.verify(contextPtr, rawSig3Ptr, sigHashPtr, rawPubkeyPtr),
- 1
+ 1,
);
// malleate, verify and fail
@@ -209,11 +209,11 @@ const testSecp256k1Wasm = (
secp256k1Wasm.signatureMalleate(
contextPtr,
malleatedTwicePtr,
- malleatedSigPtr
+ malleatedSigPtr,
);
t.is(
secp256k1Wasm.verify(contextPtr, malleatedSigPtr, sigHashPtr, rawPubkeyPtr),
- 0
+ 0,
);
const rawSig3 = secp256k1Wasm.readHeapU8(rawSig3Ptr, 64);
const malleatedTwiceSig = secp256k1Wasm.readHeapU8(malleatedTwicePtr, 64);
@@ -225,18 +225,18 @@ const testSecp256k1Wasm = (
secp256k1Wasm.signatureNormalize(
contextPtr,
normalizedSigPtr,
- malleatedSigPtr
+ malleatedSigPtr,
),
- 1
+ 1,
);
t.is(
secp256k1Wasm.verify(
contextPtr,
normalizedSigPtr,
sigHashPtr,
- rawPubkeyPtr
+ rawPubkeyPtr,
),
- 1
+ 1,
);
// recovery signature
@@ -247,9 +247,9 @@ const testSecp256k1Wasm = (
contextPtr,
rawRSigPtr,
sigHashPtr,
- privkeyPtr
+ privkeyPtr,
),
- 1
+ 1,
);
// the r and s portions of the signature should match that of a non-recoverable signature
@@ -260,7 +260,7 @@ const testSecp256k1Wasm = (
contextPtr,
compactRSigPtr,
rIDPtr,
- rawRSigPtr
+ rawRSigPtr,
);
const compactRSig = secp256k1Wasm.readHeapU8(compactRSigPtr, 64);
// eslint-disable-next-line no-bitwise, @typescript-eslint/no-non-null-assertion
@@ -276,13 +276,13 @@ const testSecp256k1Wasm = (
contextPtr,
rawRSig2Ptr,
compactRSigPtr,
- rID
+ rID,
),
- 1
+ 1,
);
t.deepEqual(
secp256k1Wasm.readHeapU8(rawRSigPtr, 65),
- secp256k1Wasm.readHeapU8(rawRSig2Ptr, 65)
+ secp256k1Wasm.readHeapU8(rawRSig2Ptr, 65),
);
// the recovered public key should match the derived public key
@@ -295,9 +295,9 @@ const testSecp256k1Wasm = (
contextPtr,
recoveredPublicKeyPtr,
rawRSigPtr,
- sigHashPtr
+ sigHashPtr,
),
- 1
+ 1,
);
secp256k1Wasm.pubkeySerialize(
@@ -305,11 +305,11 @@ const testSecp256k1Wasm = (
recoveredPublicKeyCompressedPtr,
recoveredPublicKeyCompressedLengthPtr,
recoveredPublicKeyPtr,
- CompressionFlag.COMPRESSED
+ CompressionFlag.COMPRESSED,
);
t.deepEqual(
pubkeyCompressed,
- secp256k1Wasm.readHeapU8(recoveredPublicKeyCompressedPtr, 33)
+ secp256k1Wasm.readHeapU8(recoveredPublicKeyCompressedPtr, 33),
);
// skipping uncompressed checks since we already verified that parsing and serializing works.
@@ -346,14 +346,14 @@ const testSecp256k1Wasm = (
secp256k1Wasm.heapU8.copyWithin(
rawPubkeyTweakedAddPtr,
rawPubkeyPtr,
- rawPubkeyPtr + 64
+ rawPubkeyPtr + 64,
);
secp256k1Wasm.heapU8.set(privkey, privkeyTweakedMulPtr);
secp256k1Wasm.heapU8.copyWithin(
rawPubkeyTweakedMulPtr,
rawPubkeyPtr,
- rawPubkeyPtr + 64
+ rawPubkeyPtr + 64,
);
/*
@@ -364,51 +364,51 @@ const testSecp256k1Wasm = (
secp256k1Wasm.privkeyTweakAdd(
contextPtr,
privkeyTweakedAddPtr,
- keyTweakPtr
+ keyTweakPtr,
),
- 1
+ 1,
);
t.deepEqual(
secp256k1Wasm.readHeapU8(privkeyTweakedAddPtr, 32),
- privkeyTweakedAdd
+ privkeyTweakedAdd,
);
t.is(
secp256k1Wasm.pubkeyCreate(
contextPtr,
rawPubkeyDerivedTweakedAddPtr,
- privkeyTweakedAddPtr
+ privkeyTweakedAddPtr,
),
- 1
+ 1,
);
secp256k1Wasm.pubkeySerialize(
contextPtr,
pubkeyDerivedTweakedAddCompressedPtr,
pubkeyDerivedTweakedAddCompressedLengthPtr,
rawPubkeyDerivedTweakedAddPtr,
- CompressionFlag.COMPRESSED
+ CompressionFlag.COMPRESSED,
);
t.deepEqual(
secp256k1Wasm.readHeapU8(pubkeyDerivedTweakedAddCompressedPtr, 33),
- pubkeyTweakedAddCompressed
+ pubkeyTweakedAddCompressed,
);
t.is(
secp256k1Wasm.pubkeyTweakAdd(
contextPtr,
rawPubkeyTweakedAddPtr,
- keyTweakPtr
+ keyTweakPtr,
),
- 1
+ 1,
);
secp256k1Wasm.pubkeySerialize(
contextPtr,
pubkeyTweakedAddCompressedPtr,
pubkeyTweakedAddCompressedLengthPtr,
rawPubkeyTweakedAddPtr,
- CompressionFlag.COMPRESSED
+ CompressionFlag.COMPRESSED,
);
t.deepEqual(
secp256k1Wasm.readHeapU8(pubkeyTweakedAddCompressedPtr, 33),
- pubkeyTweakedAddCompressed
+ pubkeyTweakedAddCompressed,
);
// tweak mul
@@ -416,51 +416,51 @@ const testSecp256k1Wasm = (
secp256k1Wasm.privkeyTweakMul(
contextPtr,
privkeyTweakedMulPtr,
- keyTweakPtr
+ keyTweakPtr,
),
- 1
+ 1,
);
t.deepEqual(
secp256k1Wasm.readHeapU8(privkeyTweakedMulPtr, 32),
- privkeyTweakedMul
+ privkeyTweakedMul,
);
t.is(
secp256k1Wasm.pubkeyCreate(
contextPtr,
rawPubkeyDerivedTweakedMulPtr,
- privkeyTweakedMulPtr
+ privkeyTweakedMulPtr,
),
- 1
+ 1,
);
secp256k1Wasm.pubkeySerialize(
contextPtr,
pubkeyDerivedTweakedMulCompressedPtr,
pubkeyDerivedTweakedMulCompressedLengthPtr,
rawPubkeyDerivedTweakedMulPtr,
- CompressionFlag.COMPRESSED
+ CompressionFlag.COMPRESSED,
);
t.deepEqual(
secp256k1Wasm.readHeapU8(pubkeyDerivedTweakedMulCompressedPtr, 33),
- pubkeyTweakedMulCompressed
+ pubkeyTweakedMulCompressed,
);
t.is(
secp256k1Wasm.pubkeyTweakMul(
contextPtr,
rawPubkeyTweakedMulPtr,
- keyTweakPtr
+ keyTweakPtr,
),
- 1
+ 1,
);
secp256k1Wasm.pubkeySerialize(
contextPtr,
pubkeyTweakedMulCompressedPtr,
pubkeyTweakedMulCompressedLengthPtr,
rawPubkeyTweakedMulPtr,
- CompressionFlag.COMPRESSED
+ CompressionFlag.COMPRESSED,
);
t.deepEqual(
secp256k1Wasm.readHeapU8(pubkeyTweakedMulCompressedPtr, 33),
- pubkeyTweakedMulCompressed
+ pubkeyTweakedMulCompressed,
);
// create schnorr signature
@@ -471,9 +471,9 @@ const testSecp256k1Wasm = (
contextPtr,
schnorrSigPtr,
schnorrMsgHashPtr,
- privkeyPtr
+ privkeyPtr,
),
- 1
+ 1,
);
t.deepEqual(secp256k1Wasm.readHeapU8(schnorrSigPtr, 64), sigSchnorr);
@@ -483,9 +483,9 @@ const testSecp256k1Wasm = (
contextPtr,
schnorrSigPtr,
schnorrMsgHashPtr,
- rawPubkeyPtr
+ rawPubkeyPtr,
),
- 1
+ 1,
);
};
diff --git a/src/lib/bin/secp256k1/secp256k1-wasm.ts b/src/lib/bin/secp256k1/secp256k1-wasm.ts
index afe2b20e..50890f22 100644
--- a/src/lib/bin/secp256k1/secp256k1-wasm.ts
+++ b/src/lib/bin/secp256k1/secp256k1-wasm.ts
@@ -1,4 +1,4 @@
-/* eslint-disable no-underscore-dangle, max-params, @typescript-eslint/naming-convention */
+/* eslint-disable no-underscore-dangle, @typescript-eslint/max-params, @typescript-eslint/naming-convention */
// cSpell:ignore memcpy, anyfunc
import { base64ToBin } from '../../format/format.js';
@@ -13,7 +13,7 @@ export { ContextFlag, CompressionFlag };
const wrapSecp256k1Wasm = (
instance: WebAssembly.Instance,
heapU8: Uint8Array,
- heapU32: Uint32Array
+ heapU32: Uint32Array,
): Secp256k1Wasm => ({
contextCreate: (context) =>
(instance.exports as any)._secp256k1_context_create(context),
@@ -30,13 +30,13 @@ const wrapSecp256k1Wasm = (
const pointer = (instance.exports as any)._malloc(4);
// eslint-disable-next-line no-bitwise, @typescript-eslint/no-magic-numbers
const pointerView32 = pointer >> 2;
- // eslint-disable-next-line functional/no-expression-statement
+ // eslint-disable-next-line functional/no-expression-statements
heapU32.set([num], pointerView32);
return pointer;
},
mallocUint8Array: (array) => {
const pointer = (instance.exports as any)._malloc(array.length) as number;
- // eslint-disable-next-line functional/no-expression-statement
+ // eslint-disable-next-line functional/no-expression-statements
heapU8.set(array, pointer);
return pointer;
},
@@ -44,57 +44,57 @@ const wrapSecp256k1Wasm = (
(instance.exports as any)._secp256k1_ec_privkey_tweak_add(
contextPtr,
secretKeyPtr,
- tweakNum256Ptr
+ tweakNum256Ptr,
),
privkeyTweakMul: (contextPtr, secretKeyPtr, tweakNum256Ptr) =>
(instance.exports as any)._secp256k1_ec_privkey_tweak_mul(
contextPtr,
secretKeyPtr,
- tweakNum256Ptr
+ tweakNum256Ptr,
),
pubkeyCreate: (contextPtr, publicKeyPtr, secretKeyPtr) =>
(instance.exports as any)._secp256k1_ec_pubkey_create(
contextPtr,
publicKeyPtr,
- secretKeyPtr
+ secretKeyPtr,
),
pubkeyParse: (
contextPtr,
publicKeyOutPtr,
publicKeyInPtr,
- publicKeyInLength
+ publicKeyInLength,
) =>
(instance.exports as any)._secp256k1_ec_pubkey_parse(
contextPtr,
publicKeyOutPtr,
publicKeyInPtr,
- publicKeyInLength
+ publicKeyInLength,
),
pubkeySerialize: (
contextPtr,
outputPtr,
outputLengthPtr,
publicKeyPtr,
- compression
+ compression,
) =>
(instance.exports as any)._secp256k1_ec_pubkey_serialize(
contextPtr,
outputPtr,
outputLengthPtr,
publicKeyPtr,
- compression
+ compression,
),
pubkeyTweakAdd: (contextPtr, publicKeyPtr, tweakNum256Ptr) =>
(instance.exports as any)._secp256k1_ec_pubkey_tweak_add(
contextPtr,
publicKeyPtr,
- tweakNum256Ptr
+ tweakNum256Ptr,
),
pubkeyTweakMul: (contextPtr, publicKeyPtr, tweakNum256Ptr) =>
(instance.exports as any)._secp256k1_ec_pubkey_tweak_mul(
contextPtr,
publicKeyPtr,
- tweakNum256Ptr
+ tweakNum256Ptr,
),
readHeapU8: (pointer, bytes) => new Uint8Array(heapU8.buffer, pointer, bytes),
readSizeT: (pointer) => {
@@ -108,7 +108,7 @@ const wrapSecp256k1Wasm = (
contextPtr,
outputPubkeyPointer,
rSigPtr,
- msg32Ptr
+ msg32Ptr,
),
recoverableSignatureParse: (contextPtr, outputRSigPtr, inputSigPtr, rid) =>
(
@@ -117,13 +117,13 @@ const wrapSecp256k1Wasm = (
contextPtr,
outputRSigPtr,
inputSigPtr,
- rid
+ rid,
),
recoverableSignatureSerialize: (
contextPtr,
sigOutPtr,
recIDOutPtr,
- rSigPtr
+ rSigPtr,
) =>
(
instance.exports as any
@@ -131,95 +131,95 @@ const wrapSecp256k1Wasm = (
contextPtr,
sigOutPtr,
recIDOutPtr,
- rSigPtr
+ rSigPtr,
),
schnorrSign: (contextPtr, outputSigPtr, msg32Ptr, secretKeyPtr) =>
(instance.exports as any)._secp256k1_schnorr_sign(
contextPtr,
outputSigPtr,
msg32Ptr,
- secretKeyPtr
+ secretKeyPtr,
),
schnorrVerify: (contextPtr, sigPtr, msg32Ptr, publicKeyPtr) =>
(instance.exports as any)._secp256k1_schnorr_verify(
contextPtr,
sigPtr,
msg32Ptr,
- publicKeyPtr
+ publicKeyPtr,
),
seckeyVerify: (contextPtr, secretKeyPtr) =>
(instance.exports as any)._secp256k1_ec_seckey_verify(
contextPtr,
- secretKeyPtr
+ secretKeyPtr,
),
sign: (contextPtr, outputSigPtr, msg32Ptr, secretKeyPtr) =>
(instance.exports as any)._secp256k1_ecdsa_sign(
contextPtr,
outputSigPtr,
msg32Ptr,
- secretKeyPtr
+ secretKeyPtr,
),
signRecoverable: (contextPtr, outputRSigPtr, msg32Ptr, secretKeyPtr) =>
(instance.exports as any)._secp256k1_ecdsa_sign_recoverable(
contextPtr,
outputRSigPtr,
msg32Ptr,
- secretKeyPtr
+ secretKeyPtr,
),
signatureMalleate: (contextPtr, outputSigPtr, inputSigPtr) =>
(instance.exports as any)._secp256k1_ecdsa_signature_malleate(
contextPtr,
outputSigPtr,
- inputSigPtr
+ inputSigPtr,
),
signatureNormalize: (contextPtr, outputSigPtr, inputSigPtr) =>
(instance.exports as any)._secp256k1_ecdsa_signature_normalize(
contextPtr,
outputSigPtr,
- inputSigPtr
+ inputSigPtr,
),
signatureParseCompact: (contextPtr, sigOutPtr, compactSigInPtr) =>
(instance.exports as any)._secp256k1_ecdsa_signature_parse_compact(
contextPtr,
sigOutPtr,
- compactSigInPtr
+ compactSigInPtr,
),
signatureParseDER: (contextPtr, sigOutPtr, sigDERInPtr, sigDERInLength) =>
(instance.exports as any)._secp256k1_ecdsa_signature_parse_der(
contextPtr,
sigOutPtr,
sigDERInPtr,
- sigDERInLength
+ sigDERInLength,
),
signatureSerializeCompact: (contextPtr, outputCompactSigPtr, inputSigPtr) =>
(instance.exports as any)._secp256k1_ecdsa_signature_serialize_compact(
contextPtr,
outputCompactSigPtr,
- inputSigPtr
+ inputSigPtr,
),
signatureSerializeDER: (
contextPtr,
outputDERSigPtr,
outputDERSigLengthPtr,
- inputSigPtr
+ inputSigPtr,
) =>
(instance.exports as any)._secp256k1_ecdsa_signature_serialize_der(
contextPtr,
outputDERSigPtr,
outputDERSigLengthPtr,
- inputSigPtr
+ inputSigPtr,
),
verify: (contextPtr, sigPtr, msg32Ptr, pubkeyPtr) =>
(instance.exports as any)._secp256k1_ecdsa_verify(
contextPtr,
sigPtr,
msg32Ptr,
- pubkeyPtr
+ pubkeyPtr,
),
});
/* eslint-enable @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-return, @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment */
-/* eslint-disable functional/immutable-data, functional/no-expression-statement, @typescript-eslint/no-magic-numbers, functional/no-conditional-statement, no-bitwise, functional/no-throw-statement */
+/* eslint-disable functional/immutable-data, functional/no-expression-statements, @typescript-eslint/no-magic-numbers, functional/no-conditional-statements, no-bitwise, functional/no-throw-statements */
/**
* Method extracted from Emscripten's preamble.js
*/
@@ -253,7 +253,7 @@ const alignMemory = (factor: number, size: number) =>
* @param webassemblyBytes - A buffer containing the secp256k1 binary.
*/
export const instantiateSecp256k1WasmBytes = async (
- webassemblyBytes: ArrayBuffer
+ webassemblyBytes: ArrayBuffer,
): Promise => {
const STACK_ALIGN = 16;
const GLOBAL_BASE = 1024;
@@ -321,7 +321,7 @@ export const instantiateSecp256k1WasmBytes = async (
_emscripten_memcpy_big: /* istanbul ignore next */ (
dest: number,
src: number,
- num: number
+ num: number,
) => {
heapU8.set(heapU8.subarray(src, src + num), dest);
return dest;
@@ -359,7 +359,7 @@ export const instantiateSecp256k1WasmBytes = async (
return wrapSecp256k1Wasm(result.instance, heapU8, heapU32);
});
};
-/* eslint-enable functional/immutable-data, functional/no-expression-statement, @typescript-eslint/no-magic-numbers, functional/no-conditional-statement, no-bitwise, functional/no-throw-statement */
+/* eslint-enable functional/immutable-data, functional/no-expression-statements, @typescript-eslint/no-magic-numbers, functional/no-conditional-statements, no-bitwise, functional/no-throw-statements */
export const getEmbeddedSecp256k1Binary = () =>
base64ToBin(secp256k1Base64Bytes).buffer;
diff --git a/src/lib/compiler/compiler-bch/compiler-bch-operations.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch-operations.spec.ts
index decb6b03..a5ccfc4f 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch-operations.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch-operations.spec.ts
@@ -13,13 +13,13 @@ test('compilerOperationSigningSerializationFullBCH: requires an algorithm', (t)
sha256: { hash: () => Uint8Array.of() },
sourceScriptIds: ['test'],
unlockingScripts: { test: 'lock' },
- }
+ },
),
{
error:
'Invalid signing serialization operation. Include the desired component or algorithm, e.g. "signing_serialization.version".',
status: 'error',
- }
+ },
);
});
test('compilerOperationSigningSerializationFullBCH: error on unknown algorithms', (t) => {
@@ -32,12 +32,12 @@ test('compilerOperationSigningSerializationFullBCH: error on unknown algorithms'
sha256: { hash: () => Uint8Array.of() },
sourceScriptIds: ['test'],
unlockingScripts: { test: 'lock' },
- }
+ },
),
{
error:
'Unknown signing serialization algorithm, "full_unknown_serialization".',
status: 'error',
- }
+ },
);
});
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.built-in-variables.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.built-in-variables.spec.ts
index 96f8d502..b94ca66a 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.built-in-variables.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.built-in-variables.spec.ts
@@ -43,7 +43,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -52,10 +52,10 @@ test(
'',
{
currentBlockTime: dateToLocktime(
- new Date('2019-10-13T00:00:00.000Z')
+ new Date('2019-10-13T00:00:00.000Z'),
) as number,
},
- { bytecode: hexToBin('040069a25d'), success: true }
+ { bytecode: hexToBin('040069a25d'), success: true },
);
test(
@@ -78,7 +78,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -86,7 +86,7 @@ test(
expectCompilationResult,
'',
{ currentBlockHeight: 1 },
- { bytecode: hexToBin('51'), success: true }
+ { bytecode: hexToBin('51'), success: true },
);
test(
@@ -115,7 +115,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{},
- { unlockingScriptTimeLockTypes: { test: 'height' } }
+ { unlockingScriptTimeLockTypes: { test: 'height' } },
);
test(
@@ -144,7 +144,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{},
- { unlockingScriptTimeLockTypes: { test: 'timestamp' } }
+ { unlockingScriptTimeLockTypes: { test: 'timestamp' } },
);
test(
@@ -182,7 +182,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{},
- { unlockingScriptTimeLockTypes: { test: 'height' } }
+ { unlockingScriptTimeLockTypes: { test: 'height' } },
);
test(
@@ -205,7 +205,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -228,7 +228,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
/**
@@ -244,10 +244,10 @@ test(
{
currentBlockHeight: 1,
currentBlockTime: dateToLocktime(
- new Date('2019-10-13T00:00:00.000Z')
+ new Date('2019-10-13T00:00:00.000Z'),
) as number,
},
- { bytecode: hexToBin('51040069a25d'), success: true }
+ { bytecode: hexToBin('51040069a25d'), success: true },
);
test(
@@ -280,7 +280,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -303,7 +303,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test.failing(
@@ -313,10 +313,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '4c9d000000001cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba214e63bf41490e67d34476778f6707aa6c8d2c8dccdf78ae11e40ee9f91e89a705050505050505050505050505050505050505050505050505050505050505050000000000000000000000000000000000c942a06c127c2c18022677e888020afb174208d299354f3ecfedb124a1f3fa450000000041000000'
+ '4c9d000000001cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba214e63bf41490e67d34476778f6707aa6c8d2c8dccdf78ae11e40ee9f91e89a705050505050505050505050505050505050505050505050505050505050505050000000000000000000000000000000000c942a06c127c2c18022677e888020afb174208d299354f3ecfedb124a1f3fa450000000041000000',
),
success: true,
- }
+ },
);
test.failing(
@@ -326,10 +326,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '4c9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005050505050505050505050505050505050505050505050505050505050505050000000000000000000000000000000000c942a06c127c2c18022677e888020afb174208d299354f3ecfedb124a1f3fa4500000000c1000000'
+ '4c9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005050505050505050505050505050505050505050505050505050505050505050000000000000000000000000000000000c942a06c127c2c18022677e888020afb174208d299354f3ecfedb124a1f3fa4500000000c1000000',
),
success: true,
- }
+ },
);
test.failing(
@@ -339,10 +339,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '4c9d000000001cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba0000000000000000000000000000000000000000000000000000000000000000050505050505050505050505050505050505050505050505050505050505050500000000000000000000000000000000009c12cfdc04c74584d787ac3d23772132c18524bc7ab28dec4219b8fc5b425f700000000043000000'
+ '4c9d000000001cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba0000000000000000000000000000000000000000000000000000000000000000050505050505050505050505050505050505050505050505050505050505050500000000000000000000000000000000009c12cfdc04c74584d787ac3d23772132c18524bc7ab28dec4219b8fc5b425f700000000043000000',
),
success: true,
- }
+ },
);
test.failing(
@@ -352,10 +352,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '4c9d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050505050505050505050505050505050505050505050505050505050505050500000000000000000000000000000000009c12cfdc04c74584d787ac3d23772132c18524bc7ab28dec4219b8fc5b425f7000000000c3000000'
+ '4c9d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050505050505050505050505050505050505050505050505050505050505050500000000000000000000000000000000009c12cfdc04c74584d787ac3d23772132c18524bc7ab28dec4219b8fc5b425f7000000000c3000000',
),
success: true,
- }
+ },
);
test.failing(
@@ -365,10 +365,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '4c9d000000001cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba00000000000000000000000000000000000000000000000000000000000000000505050505050505050505050505050505050505050505050505050505050505000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042000000'
+ '4c9d000000001cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba00000000000000000000000000000000000000000000000000000000000000000505050505050505050505050505050505050505050505050505050505050505000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042000000',
),
success: true,
- }
+ },
);
test.failing(
@@ -378,10 +378,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '4c9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005050505050505050505050505050505050505050505050505050505050505050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c2000000'
+ '4c9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005050505050505050505050505050505050505050505050505050505050505050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c2000000',
),
success: true,
- }
+ },
);
test.failing(
@@ -392,7 +392,7 @@ test.failing(
{
bytecode: hexToBin('51'),
success: true,
- }
+ },
);
test.failing(
@@ -402,10 +402,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '209c12cfdc04c74584d787ac3d23772132c18524bc7ab28dec4219b8fc5b425f70'
+ '209c12cfdc04c74584d787ac3d23772132c18524bc7ab28dec4219b8fc5b425f70',
),
success: true,
- }
+ },
);
test(
@@ -416,7 +416,7 @@ test(
{
bytecode: hexToBin('0100'),
success: true,
- }
+ },
);
test(
@@ -427,7 +427,7 @@ test(
{
bytecode: hexToBin('00'),
success: true,
- }
+ },
);
test(
@@ -438,7 +438,7 @@ test(
{
bytecode: hexToBin('0400000000'),
success: true,
- }
+ },
);
test(
@@ -449,7 +449,7 @@ test(
{
bytecode: hexToBin('0400000000'),
success: true,
- }
+ },
);
test.failing(
@@ -459,10 +459,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '200505050505050505050505050505050505050505050505050505050505050505'
+ '200505050505050505050505050505050505050505050505050505050505050505',
),
success: true,
- }
+ },
);
test.failing(
@@ -473,7 +473,7 @@ test.failing(
{
bytecode: hexToBin('080000000000000000'),
success: true,
- }
+ },
);
test(
@@ -484,7 +484,7 @@ test(
{
bytecode: hexToBin('0400000000'),
success: true,
- }
+ },
);
test.failing(
@@ -495,7 +495,7 @@ test.failing(
{
bytecode: hexToBin('52'),
success: true,
- }
+ },
);
test.failing(
@@ -505,10 +505,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '201cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba'
+ '201cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba',
),
success: true,
- }
+ },
);
test.failing(
@@ -519,7 +519,7 @@ test.failing(
{
bytecode: hexToBin('53'),
success: true,
- }
+ },
);
test.failing(
@@ -529,10 +529,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '20c942a06c127c2c18022677e888020afb174208d299354f3ecfedb124a1f3fa45'
+ '20c942a06c127c2c18022677e888020afb174208d299354f3ecfedb124a1f3fa45',
),
success: true,
- }
+ },
);
test.failing(
@@ -543,7 +543,7 @@ test.failing(
{
bytecode: hexToBin('54'),
success: true,
- }
+ },
);
test.failing(
@@ -553,10 +553,10 @@ test.failing(
{},
{
bytecode: hexToBin(
- '20214e63bf41490e67d34476778f6707aa6c8d2c8dccdf78ae11e40ee9f91e89a7'
+ '20214e63bf41490e67d34476778f6707aa6c8d2c8dccdf78ae11e40ee9f91e89a7',
),
success: true,
- }
+ },
);
test(
@@ -567,7 +567,7 @@ test(
{
bytecode: hexToBin('0400000000'),
success: true,
- }
+ },
);
test(
@@ -594,7 +594,7 @@ test(
{},
{
unlockingScripts: {},
- }
+ },
);
test(
@@ -623,7 +623,7 @@ test(
unlockingScripts: {
test: 'some_unknown_script',
},
- }
+ },
);
test(
@@ -653,7 +653,7 @@ test(
lock: 'invalid',
test: '',
},
- }
+ },
);
test(
@@ -676,7 +676,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -699,7 +699,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test.failing(
@@ -742,7 +742,7 @@ test.failing(
{
bytecode: hexToBin('510052'),
success: true,
- }
+ },
);
t.deepEqual(
@@ -753,7 +753,7 @@ test.failing(
{
bytecode: hexToBin('510052'),
success: true,
- }
+ },
);
- }
+ },
);
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.data-signatures.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.data-signatures.spec.ts
index f51914a5..a86eac41 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.data-signatures.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.data-signatures.spec.ts
@@ -19,11 +19,11 @@ test(
{ keys: { privateKeys: { owner: privkey } } },
{
bytecode: hexToBin(
- '463044022100de1a02c286421ca34e854b9a01449ff8f19c46dfa4397de563d5f694db9d3855021f55b7bf7cd14189f6e1dca08d9a7cdf9b5c38a5bddbd0168aa33d34666950a003abcdef'
+ '463044022100de1a02c286421ca34e854b9a01449ff8f19c46dfa4397de563d5f694db9d3855021f55b7bf7cd14189f6e1dca08d9a7cdf9b5c38a5bddbd0168aa33d34666950a003abcdef',
),
success: true,
},
- { owner: { type: 'Key' } }
+ { owner: { type: 'Key' } },
);
test(
@@ -33,17 +33,17 @@ test(
{
bytecode: {
'owner.data_signature.another': hexToBin(
- '3044022100de1a02c286421ca34e854b9a01449ff8f19c46dfa4397de563d5f694db9d3855021f55b7bf7cd14189f6e1dca08d9a7cdf9b5c38a5bddbd0168aa33d34666950a0'
+ '3044022100de1a02c286421ca34e854b9a01449ff8f19c46dfa4397de563d5f694db9d3855021f55b7bf7cd14189f6e1dca08d9a7cdf9b5c38a5bddbd0168aa33d34666950a0',
),
},
},
{
bytecode: hexToBin(
- '463044022100de1a02c286421ca34e854b9a01449ff8f19c46dfa4397de563d5f694db9d3855021f55b7bf7cd14189f6e1dca08d9a7cdf9b5c38a5bddbd0168aa33d34666950a003abcdef'
+ '463044022100de1a02c286421ca34e854b9a01449ff8f19c46dfa4397de563d5f694db9d3855021f55b7bf7cd14189f6e1dca08d9a7cdf9b5c38a5bddbd0168aa33d34666950a003abcdef',
),
success: true,
},
- { owner: { type: 'Key' } }
+ { owner: { type: 'Key' } },
);
test(
@@ -67,7 +67,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'Key' } }
+ { owner: { type: 'Key' } },
);
test(
@@ -91,7 +91,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'Key' } }
+ { owner: { type: 'Key' } },
);
test(
@@ -115,7 +115,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'Key' } }
+ { owner: { type: 'Key' } },
);
test(
@@ -141,7 +141,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'Key' } }
+ { owner: { type: 'Key' } },
);
test(
@@ -166,7 +166,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'Key' } },
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -191,7 +191,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'Key' } },
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -216,7 +216,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'Key' } },
- { sha256: undefined }
+ { sha256: undefined },
);
test(
@@ -240,7 +240,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'Key' } }
+ { owner: { type: 'Key' } },
);
test(
@@ -252,11 +252,11 @@ test(
},
{
bytecode: hexToBin(
- '463044022100de1a02c286421ca34e854b9a01449ff8f19c46dfa4397de563d5f694db9d3855021f55b7bf7cd14189f6e1dca08d9a7cdf9b5c38a5bddbd0168aa33d34666950a003abcdef'
+ '463044022100de1a02c286421ca34e854b9a01449ff8f19c46dfa4397de563d5f694db9d3855021f55b7bf7cd14189f6e1dca08d9a7cdf9b5c38a5bddbd0168aa33d34666950a003abcdef',
),
success: true,
},
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -280,5 +280,5 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.evaluations.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.evaluations.spec.ts
index 7a3e011c..64c23115 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.evaluations.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.evaluations.spec.ts
@@ -15,7 +15,7 @@ test(
{
bytecode: Uint8Array.of(0x03),
success: true,
- }
+ },
);
test.only(
@@ -26,7 +26,7 @@ test.only(
{
bytecode: Uint8Array.from([0xaa, 0xbb, 0xcc]),
success: true,
- }
+ },
);
test(
@@ -37,7 +37,7 @@ test(
{
bytecode: Uint8Array.of(),
success: true,
- }
+ },
);
test(
@@ -60,7 +60,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -85,7 +85,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{},
- { vm: undefined }
+ { vm: undefined },
);
test(
@@ -110,7 +110,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{},
- { createAuthenticationProgram: undefined }
+ { createAuthenticationProgram: undefined },
);
test(
@@ -133,7 +133,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -156,7 +156,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -179,7 +179,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -202,7 +202,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -225,7 +225,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -248,7 +248,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -259,7 +259,7 @@ test(
{
bytecode: Uint8Array.of(),
success: true,
- }
+ },
);
test(
@@ -270,7 +270,7 @@ test(
{
bytecode: Uint8Array.of(0x03),
success: true,
- }
+ },
);
test(
@@ -293,7 +293,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -316,7 +316,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -349,7 +349,7 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
test(
@@ -372,5 +372,5 @@ test(
},
],
success: false,
- } as BytecodeGenerationResult
+ } as BytecodeGenerationResult,
);
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.hd-key.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.hd-key.spec.ts
index ace63614..1b5b77b6 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.hd-key.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.hd-key.spec.ts
@@ -16,13 +16,13 @@ import {
* `m/0` public key push
*/
const m0PublicPush = hexToBin(
- '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
/**
* `m/0/0` public key push
*/
const m00PublicPush = hexToBin(
- '2102df61d0e0ca2d1f02670cd94941d1f3299e10a01f0cc008b695e73006e4b28bfc'
+ '2102df61d0e0ca2d1f02670cd94941d1f3299e10a01f0cc008b695e73006e4b28bfc',
);
/**
* `m/0'` HD public key
@@ -34,14 +34,14 @@ const m0HardenedHdPublicKeyTestnet =
* `m/0'/1` public key push
*/
const m0H1PublicPush = hexToBin(
- '21034f4d20bf3a18f6deb0109c20e0ab7328b22ff0d5a29ce85595344012ebca41e6'
+ '21034f4d20bf3a18f6deb0109c20e0ab7328b22ff0d5a29ce85595344012ebca41e6',
);
/**
* `m/1` public key push
*/
const m1PublicPush = hexToBin(
- '21034002efc4f44014b116a986faa63b741b0b894a45ccf3f30c671e4146fb1c1954'
+ '21034002efc4f44014b116a986faa63b741b0b894a45ccf3f30c671e4146fb1c1954',
);
test.failing(
@@ -53,11 +53,11 @@ test.failing(
},
{
bytecode: hexToBin(
- '473044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241'
+ '473044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241',
),
success: true,
},
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test.failing(
@@ -69,11 +69,11 @@ test.failing(
},
{
bytecode: hexToBin(
- '41313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41'
+ '41313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41',
),
success: true,
},
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -97,7 +97,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -108,7 +108,7 @@ test(
hdKeys: { addressIndex: 0, hdPrivateKeys: { ownerEntityId: hdPrivateKey } },
},
{ bytecode: m0PublicPush, success: true },
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -119,7 +119,7 @@ test(
hdKeys: { addressIndex: 0, hdPublicKeys: { ownerEntityId: hdPublicKey } },
},
{ bytecode: m0PublicPush, success: true },
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -129,7 +129,7 @@ test(
{ hdKeys: { addressIndex: 0, hdPublicKeys: { ownerEntityId: hdPublicKey } } },
{ bytecode: m1PublicPush, success: true },
{ owner: { type: 'HdKey' } },
- { variables: { owner: { addressOffset: 1, type: 'HdKey' } } }
+ { variables: { owner: { addressOffset: 1, type: 'HdKey' } } },
);
test(
@@ -155,7 +155,7 @@ test(
} as BytecodeGenerationResult,
{
owner: { type: 'HdKey' },
- }
+ },
);
test(
@@ -180,7 +180,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'HdKey' } },
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -190,13 +190,13 @@ test(
{
bytecode: {
'owner.public_key': hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
},
},
{ bytecode: m0PublicPush, success: true },
{ owner: { type: 'HdKey' } },
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -206,18 +206,18 @@ test(
{
bytecode: {
'owner.signature.all_outputs': hexToBin(
- '3044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241'
+ '3044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241',
),
},
},
{
bytecode: hexToBin(
- '473044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241'
+ '473044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241',
),
success: true,
},
{ owner: { type: 'HdKey' } },
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -227,18 +227,18 @@ test(
{
bytecode: {
'owner.schnorr_signature.all_outputs': hexToBin(
- '313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41'
+ '313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41',
),
},
},
{
bytecode: hexToBin(
- '41313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41'
+ '41313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41',
),
success: true,
},
{ owner: { type: 'HdKey' } },
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -264,7 +264,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -290,7 +290,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -316,7 +316,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -342,7 +342,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -367,7 +367,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -392,7 +392,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -419,7 +419,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'HdKey' } },
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -446,7 +446,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'HdKey' } },
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -473,7 +473,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'HdKey' } },
- { sha256: undefined }
+ { sha256: undefined },
);
test(
@@ -500,7 +500,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'HdKey' } },
- { sha256: undefined }
+ { sha256: undefined },
);
test(
@@ -512,7 +512,7 @@ test(
},
{ bytecode: m0PublicPush, success: true },
{ owner: { type: 'HdKey' } },
- { variables: { owner: { addressOffset: -1, type: 'HdKey' } } }
+ { variables: { owner: { addressOffset: -1, type: 'HdKey' } } },
);
test(
@@ -523,7 +523,7 @@ test(
hdKeys: { addressIndex: 1, hdPrivateKeys: { ownerEntityId: hdPrivateKey } },
},
{ bytecode: m1PublicPush, success: true },
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -535,7 +535,7 @@ test(
},
{ bytecode: m1PublicPush, success: true },
{ owner: { type: 'HdKey' } },
- { variables: { owner: { addressOffset: 1, type: 'HdKey' } } }
+ { variables: { owner: { addressOffset: 1, type: 'HdKey' } } },
);
test(
@@ -547,7 +547,7 @@ test(
},
{ bytecode: m1PublicPush, success: true },
{ owner: { type: 'HdKey' } },
- { variables: { owner: { addressOffset: -1, type: 'HdKey' } } }
+ { variables: { owner: { addressOffset: -1, type: 'HdKey' } } },
);
test(
@@ -576,7 +576,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -605,7 +605,7 @@ test(
{
owner: { type: 'HdKey' },
},
- { variables: { owner: { addressOffset: -1, type: 'HdKey' } } }
+ { variables: { owner: { addressOffset: -1, type: 'HdKey' } } },
);
test(
@@ -639,7 +639,7 @@ test(
lock: 'invalid',
test: '',
},
- }
+ },
);
test(
@@ -670,7 +670,7 @@ test(
},
{
entityOwnership: undefined,
- }
+ },
);
test(
@@ -697,7 +697,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'HdKey' } },
- { entityOwnership: {} }
+ { entityOwnership: {} },
);
test(
@@ -724,7 +724,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'HdKey' } },
- { entityOwnership: undefined }
+ { entityOwnership: undefined },
);
test(
@@ -751,7 +751,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{ owner: { type: 'HdKey' } },
- { entityOwnership: {} }
+ { entityOwnership: {} },
);
test(
@@ -777,7 +777,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -806,7 +806,7 @@ test(
],
success: false,
} as BytecodeGenerationResult,
- { owner: { type: 'HdKey' } }
+ { owner: { type: 'HdKey' } },
);
test(
@@ -828,7 +828,7 @@ test(
type: 'HdKey',
},
},
- }
+ },
);
test(
@@ -865,7 +865,7 @@ test(
type: 'HdKey',
},
},
- }
+ },
);
test(
@@ -902,7 +902,7 @@ test(
type: 'HdKey',
},
},
- }
+ },
);
test(
@@ -939,7 +939,7 @@ test(
type: 'HdKey',
},
},
- }
+ },
);
test(
@@ -961,7 +961,7 @@ test(
type: 'HdKey',
},
},
- }
+ },
);
test(
@@ -984,5 +984,5 @@ test(
type: 'HdKey',
},
},
- }
+ },
);
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.key.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.key.spec.ts
index ca6e4187..075d2b0c 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.key.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.key.spec.ts
@@ -18,13 +18,13 @@ test.failing(
{ keys: { privateKeys: { owner: privkey } } },
{
bytecode: hexToBin(
- '473044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241'
+ '473044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241',
),
success: true,
},
{
owner: { type: 'Key' },
- }
+ },
);
test.failing(
@@ -34,13 +34,13 @@ test.failing(
{ keys: { privateKeys: { owner: privkey } } },
{
bytecode: hexToBin(
- '41313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41'
+ '41313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41',
),
success: true,
},
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -50,13 +50,13 @@ test(
{ keys: { privateKeys: { owner: privkey } } },
{
bytecode: hexToBin(
- '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
success: true,
},
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -83,7 +83,7 @@ test(
{
owner: { type: 'Key' },
},
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -93,20 +93,20 @@ test(
{
bytecode: {
'owner.public_key': hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
},
},
{
bytecode: hexToBin(
- '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
success: true,
},
{
owner: { type: 'Key' },
},
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -139,7 +139,7 @@ test(
} as BytecodeGenerationResult,
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -149,21 +149,21 @@ test(
{
bytecode: {
'owner.signature.all_outputs': hexToBin(
- '3044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241'
+ '3044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241',
),
},
keys: {},
},
{
bytecode: hexToBin(
- '473044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241'
+ '473044022059e9ad8fabd511fa2ef6935dae6395d5d3ce93b929436c835c9c8372b353bd3d0220527c17e2e4ec12f7b8969a9bb80e58ab1a24e44c2e5512916d1bcb3fc4dc2f2241',
),
success: true,
},
{
owner: { type: 'Key' },
},
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -173,19 +173,19 @@ test(
{
bytecode: {
'owner.schnorr_signature.all_outputs': hexToBin(
- '313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41'
+ '313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41',
),
},
},
{
bytecode: hexToBin(
- '41313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41'
+ '41313d8a853bd82f5fe251d6b04581333800001ee7680c5e4775db3afabf4873360b3481802d8d656cc608e4625d6568bf1a8801bb1efff19a8306267681177aed41',
),
success: true,
},
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -211,7 +211,7 @@ test(
} as BytecodeGenerationResult,
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -239,7 +239,7 @@ test(
} as BytecodeGenerationResult,
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -267,7 +267,7 @@ test(
} as BytecodeGenerationResult,
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -295,7 +295,7 @@ test(
} as BytecodeGenerationResult,
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -320,7 +320,7 @@ test(
} as BytecodeGenerationResult,
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -345,7 +345,7 @@ test(
} as BytecodeGenerationResult,
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -371,7 +371,7 @@ test(
} as BytecodeGenerationResult,
{
owner: { type: 'Key' },
- }
+ },
);
test(
@@ -398,7 +398,7 @@ test(
{
owner: { type: 'Key' },
},
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -425,7 +425,7 @@ test(
{
owner: { type: 'Key' },
},
- { secp256k1: undefined }
+ { secp256k1: undefined },
);
test(
@@ -452,7 +452,7 @@ test(
{
owner: { type: 'Key' },
},
- { sha256: undefined }
+ { sha256: undefined },
);
test(
@@ -479,7 +479,7 @@ test(
{
owner: { type: 'Key' },
},
- { sha256: undefined }
+ { sha256: undefined },
);
test(
@@ -511,5 +511,5 @@ test(
lock: 'invalid',
test: '',
},
- }
+ },
);
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.langauge.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.langauge.spec.ts
index e3c1be47..41706f0a 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.langauge.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.langauge.spec.ts
@@ -13,7 +13,7 @@ test(
expectCompilationResult,
'',
{},
- { bytecode: hexToBin(''), success: true }
+ { bytecode: hexToBin(''), success: true },
);
test(
@@ -21,7 +21,7 @@ test(
expectCompilationResult,
'42 -42 2_147_483_647 -2_147_483_647',
{},
- { bytecode: hexToBin('2aaaffffff7fffffffff'), success: true }
+ { bytecode: hexToBin('2aaaffffff7fffffffff'), success: true },
);
test(
@@ -29,7 +29,7 @@ test(
expectCompilationResult,
'0b1 0b1111_1111 0b111 0b1111_1111__1111_1111__1111_1111__1111_1111____1111_1111__1111_1111__1111_1111__1111_1111_1',
{},
- { bytecode: hexToBin('01ff07ffffffffffffffff01'), success: true }
+ { bytecode: hexToBin('01ff07ffffffffffffffff01'), success: true },
);
test(
@@ -37,7 +37,7 @@ test(
expectCompilationResult,
"'abc\"`π'",
{},
- { bytecode: hexToBin('6162632260f09f918d'), success: true }
+ { bytecode: hexToBin('6162632260f09f918d'), success: true },
);
test(
@@ -45,7 +45,7 @@ test(
expectCompilationResult,
'"abc\'`π"',
{},
- { bytecode: hexToBin('6162632760f09f918d'), success: true }
+ { bytecode: hexToBin('6162632760f09f918d'), success: true },
);
test(
@@ -53,7 +53,7 @@ test(
expectCompilationResult,
'0xdead__beef',
{},
- { bytecode: hexToBin('deadbeef'), success: true }
+ { bytecode: hexToBin('deadbeef'), success: true },
);
test(
@@ -61,7 +61,7 @@ test(
expectCompilationResult,
'OP_0 OP_1 OP_ADD',
{},
- { bytecode: hexToBin('005193'), success: true }
+ { bytecode: hexToBin('005193'), success: true },
);
test(
@@ -78,7 +78,7 @@ test(
0xef
`,
{},
- { bytecode: hexToBin('abcdef'), success: true }
+ { bytecode: hexToBin('abcdef'), success: true },
);
test(
@@ -86,7 +86,7 @@ test(
expectCompilationResult,
'<>',
{},
- { bytecode: hexToBin('00'), success: true }
+ { bytecode: hexToBin('00'), success: true },
);
test(
@@ -97,7 +97,7 @@ test(
{
bytecode: hexToBin('4f005152535455565758595a5b5c5d5e5f600111'),
success: true,
- }
+ },
);
test(
@@ -108,7 +108,7 @@ test(
{
bytecode: hexToBin('4f005152535455565758595a5b5c5d5e5f600111'),
success: true,
- }
+ },
);
test(
@@ -119,7 +119,7 @@ test(
{
bytecode: hexToBin('0100'),
success: true,
- }
+ },
);
test(
@@ -130,7 +130,7 @@ test(
{
bytecode: hexToBin('03616263'),
success: true,
- }
+ },
);
test(
@@ -141,7 +141,7 @@ test(
{
bytecode: hexToBin('010001510152'),
success: true,
- }
+ },
);
test(
@@ -152,7 +152,7 @@ test(
{
bytecode: hexToBin('03020151'),
success: true,
- }
+ },
);
test(
@@ -172,7 +172,7 @@ test(
{
bytecode: hexToBin('00000000000061626327f09fa79927'),
success: true,
- }
+ },
);
test(
@@ -192,7 +192,7 @@ test(
c: '0x123456',
test: 'a',
},
- }
+ },
);
test(
@@ -224,5 +224,5 @@ test(
c: ' \n a',
test: '\na',
},
- }
+ },
);
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.p2sh.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.p2sh.spec.ts
index 693eb404..0d05d68a 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.p2sh.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.p2sh.spec.ts
@@ -29,7 +29,7 @@ test(
unlockingScripts: {
test: 'lock',
},
- }
+ },
);
test(
@@ -53,7 +53,7 @@ test(
unlockingScripts: {
test: 'lock',
},
- }
+ },
);
test(
@@ -77,7 +77,7 @@ test(
unlockingScripts: {
unlock: 'test',
},
- }
+ },
);
test(
@@ -101,7 +101,7 @@ test(
unlockingScripts: {
unlock: 'test',
},
- }
+ },
);
test(
@@ -111,7 +111,7 @@ test(
{},
{
bytecode: hexToBin(
- 'aa20cc2cfe8f87c6f8dc5a518c06c7c939a2f91d0294a59cd8d0b97a3d68700b95b287'
+ 'aa20cc2cfe8f87c6f8dc5a518c06c7c939a2f91d0294a59cd8d0b97a3d68700b95b287',
),
success: true,
},
@@ -127,7 +127,7 @@ test(
unlockingScripts: {
unlock: 'test',
},
- }
+ },
);
test(
@@ -162,7 +162,7 @@ test(
unlockingScripts: {
test: 'lock',
},
- }
+ },
);
test(
@@ -190,7 +190,7 @@ test(
lockingScriptTypes: {
test: 'p2sh20',
},
- }
+ },
);
test(
@@ -227,5 +227,5 @@ test(
unlock: 'test',
},
vm: undefined,
- }
+ },
);
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.signing-serialization-algorithms.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.signing-serialization-algorithms.spec.ts
index 3187c6a0..42fc65b3 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.signing-serialization-algorithms.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.signing-serialization-algorithms.spec.ts
@@ -81,8 +81,8 @@ const testSigningSerializationAlgorithms = test.macro<[string, string]>(
success: true,
},
`Expected bytecode:\n ${stringify(bytecodeHex)} \n\nResult: ${stringify(
- resultUnlock
- )}`
+ resultUnlock,
+ )}`,
);
const resultUnlockHd = compiler.generateBytecode({
data: {
@@ -98,94 +98,94 @@ const testSigningSerializationAlgorithms = test.macro<[string, string]>(
success: true,
},
`Expected bytecode:\n ${stringify(bytecodeHex)} \n\nResult: ${stringify(
- resultUnlockHd
- )}`
+ resultUnlockHd,
+ )}`,
);
- }
+ },
);
test.failing(
'[BCH compiler] signing serialization algorithms - ECDSA all_outputs',
testSigningSerializationAlgorithms,
' ',
- '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - ECDSA all_outputs_single_input',
testSigningSerializationAlgorithms,
' ',
- '483045022100b30fb165fa511b6ff3718a4dcc6dd25dd916620e08e207c47a54bae56a3dbd5402202cf24193d51a9cd11be879eb1da063ad22ac30b355855e5c8147bf1e5f2e2cf1c1210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '483045022100b30fb165fa511b6ff3718a4dcc6dd25dd916620e08e207c47a54bae56a3dbd5402202cf24193d51a9cd11be879eb1da063ad22ac30b355855e5c8147bf1e5f2e2cf1c1210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - ECDSA corresponding_output',
testSigningSerializationAlgorithms,
' ',
- '483045022100cea4e9fe270b4337c3c0cffdf57b2ccba11245752a860f9ff5c06cd3bfa399d902203ebef34068efe7e9bd2a334f886bc720e975fd4485df9d8b8e0b98e671c1d02243210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '483045022100cea4e9fe270b4337c3c0cffdf57b2ccba11245752a860f9ff5c06cd3bfa399d902203ebef34068efe7e9bd2a334f886bc720e975fd4485df9d8b8e0b98e671c1d02243210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - ECDSA corresponding_output_single_input',
testSigningSerializationAlgorithms,
' ',
- '473044022075bdb3381383221ea3073b2cc806b9f63ce0f1c1c5276f72a7b58922df2e69e40220075ec2497b9fa291ab028eed556fdc3591d93c52da80a35410731de40de8a0a6c3210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '473044022075bdb3381383221ea3073b2cc806b9f63ce0f1c1c5276f72a7b58922df2e69e40220075ec2497b9fa291ab028eed556fdc3591d93c52da80a35410731de40de8a0a6c3210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - ECDSA no_outputs',
testSigningSerializationAlgorithms,
' ',
- '47304402206e41f758eb74d0b679a5747c50a3e0c361dee4249ccc82ee491c862455a973e802204056bc00f207a7fb8ef3e2e068c09ca0d71f70685c66af7231a2aa0fb3e335f242210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '47304402206e41f758eb74d0b679a5747c50a3e0c361dee4249ccc82ee491c862455a973e802204056bc00f207a7fb8ef3e2e068c09ca0d71f70685c66af7231a2aa0fb3e335f242210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - ECDSA no_outputs_single_input',
testSigningSerializationAlgorithms,
' ',
- '483045022100bf73fa9557d725441b35af93ba2ae49e3afe3bd93cbddf9555e179fcc0b52d6f02203d7fb85de9ba6347ac87fe400819455c3a9f1a5c310f4e2dd32c00ae353a1981c2210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '483045022100bf73fa9557d725441b35af93ba2ae49e3afe3bd93cbddf9555e179fcc0b52d6f02203d7fb85de9ba6347ac87fe400819455c3a9f1a5c310f4e2dd32c00ae353a1981c2210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - Schnorr all_outputs',
testSigningSerializationAlgorithms,
' ',
- '419adccdbb9b0242938a08900238e302c446dcde0415cc3252c2371da1f827090171ed051c9c121030c37caacc81217b979de766b69d04f64c67219c8ebc45fd2541210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '419adccdbb9b0242938a08900238e302c446dcde0415cc3252c2371da1f827090171ed051c9c121030c37caacc81217b979de766b69d04f64c67219c8ebc45fd2541210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - Schnorr all_outputs_single_input',
testSigningSerializationAlgorithms,
' ',
- '41a8ffa79bd74f44780b6679cbc177735691d85ea86129909b4943e1541594babafab8433943b71de881d8ac6114da4c6095528d93b77cc570a61102ec6352b2ffc1210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '41a8ffa79bd74f44780b6679cbc177735691d85ea86129909b4943e1541594babafab8433943b71de881d8ac6114da4c6095528d93b77cc570a61102ec6352b2ffc1210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - Schnorr corresponding_output',
testSigningSerializationAlgorithms,
' ',
- '4157130313297ff18f71e123522f6e673258aad57b02bc963350fb59490cde160ebb9da2cdef624d6efa447a297a4d46e56b0035012de361b9902565231782aa8f43210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '4157130313297ff18f71e123522f6e673258aad57b02bc963350fb59490cde160ebb9da2cdef624d6efa447a297a4d46e56b0035012de361b9902565231782aa8f43210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - Schnorr corresponding_output_single_input',
testSigningSerializationAlgorithms,
' ',
- '41476031c21a9fe94b33135f7e7107a532de49956b0abf16a3bd941dad494b5e507274d50d2f2a67d30d2d26b76465be5bcc42a13b61d16e44068c3d1d905ac628c3210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '41476031c21a9fe94b33135f7e7107a532de49956b0abf16a3bd941dad494b5e507274d50d2f2a67d30d2d26b76465be5bcc42a13b61d16e44068c3d1d905ac628c3210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - Schnorr no_outputs',
testSigningSerializationAlgorithms,
' ',
- '41c3e465fa4b26870a817aeb29ebce6d697fa76c39454b9bd7d85875ca2a742e47660ce169087d0ac90b7ff35b7854efa1dcfe85fcf5080f6754d69585ab45875f42210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '41c3e465fa4b26870a817aeb29ebce6d697fa76c39454b9bd7d85875ca2a742e47660ce169087d0ac90b7ff35b7854efa1dcfe85fcf5080f6754d69585ab45875f42210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test.failing(
'[BCH compiler] signing serialization algorithms - Schnorr no_outputs_single_input',
testSigningSerializationAlgorithms,
' ',
- '413c24af0348f4eedba198f146fcfd3a099f67d4b17e690321bd038a3fd0ff8340200ab71722d2dd7fa3a513902c04362ff5ea41e4a7548e7733b377678bddcceac2210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '413c24af0348f4eedba198f146fcfd3a099f67d4b17e690321bd038a3fd0ff8340200ab71722d2dd7fa3a513902c04362ff5ea41e4a7548e7733b377678bddcceac2210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
);
test('[BCH compiler] signing serialization algorithms - no signing serialization data', (t) => {
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.spec.helper.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.spec.helper.ts
index e9973969..3c143725 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.spec.helper.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.spec.helper.ts
@@ -52,7 +52,7 @@ export const expectCompilationResult = test.macro<
CompilationData,
BytecodeGenerationResult,
CompilerConfiguration['variables']?,
- Partial>?
+ Partial>?,
]
>(
(
@@ -61,8 +61,8 @@ export const expectCompilationResult = test.macro<
otherData,
expectedResult,
variables,
- configurationOverrides
- // eslint-disable-next-line max-params
+ configurationOverrides,
+ // eslint-disable-next-line @typescript-eslint/max-params
) => {
const compiler = compilerConfigurationToCompilerBCH<
CompilerConfigurationBCH,
@@ -105,8 +105,8 @@ export const expectCompilationResult = test.macro<
resultUnlock,
expectedResult,
`- \nResult: ${stringifyTestVector(
- resultUnlock
- )}\n\nExpected:\n ${stringifyTestVector(expectedResult)}\n`
+ resultUnlock,
+ )}\n\nExpected:\n ${stringifyTestVector(expectedResult)}\n`,
);
- }
+ },
);
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.e2e.variables.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.e2e.variables.spec.ts
index a26c9ea0..427ddc41 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.e2e.variables.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.e2e.variables.spec.ts
@@ -24,7 +24,7 @@ test(
name: 'Data',
type: 'AddressData',
},
- }
+ },
);
test(
@@ -47,7 +47,7 @@ test(
name: 'no description',
type: 'AddressData',
},
- }
+ },
);
test(
@@ -84,7 +84,7 @@ test(
{
one: { type: 'AddressData' },
two: { type: 'AddressData' },
- }
+ },
);
test(
@@ -127,7 +127,7 @@ test(
{
one: { type: 'AddressData' },
two: { type: 'AddressData' },
- }
+ },
);
test(
@@ -146,7 +146,7 @@ test(
name: 'Data',
type: 'WalletData',
},
- }
+ },
);
test(
@@ -169,7 +169,7 @@ test(
name: 'no description',
type: 'WalletData',
},
- }
+ },
);
test(
@@ -206,7 +206,7 @@ test(
{
one: { type: 'WalletData' },
two: { type: 'WalletData' },
- }
+ },
);
test(
@@ -249,7 +249,7 @@ test(
{
one: { type: 'WalletData' },
two: { type: 'WalletData' },
- }
+ },
);
test(
@@ -262,7 +262,7 @@ test(
errors: [
{
error:
- 'The "current_block_height" variable type can not be resolved because the "currentBlockHeight" operation has not been included in this compiler\'s CompilationEnvironment.',
+ 'The "current_block_height" variable type can not be resolved because the "currentBlockHeight" operation has not been included in this compiler\'s configuration.',
range: {
endColumn: 22,
endLineNumber: 1,
@@ -274,7 +274,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{},
- { operations: undefined }
+ { operations: undefined },
);
test(
@@ -287,7 +287,7 @@ test(
errors: [
{
error:
- 'The "current_block_time" variable type can not be resolved because the "currentBlockTime" operation has not been included in this compiler\'s CompilationEnvironment.',
+ 'The "current_block_time" variable type can not be resolved because the "currentBlockTime" operation has not been included in this compiler\'s configuration.',
range: {
endColumn: 20,
endLineNumber: 1,
@@ -299,7 +299,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{},
- { operations: undefined }
+ { operations: undefined },
);
test(
@@ -312,7 +312,7 @@ test(
errors: [
{
error:
- 'The "signing_serialization" variable type can not be resolved because the "signingSerialization" operation has not been included in this compiler\'s CompilationEnvironment.',
+ 'The "signing_serialization" variable type can not be resolved because the "signingSerialization" operation has not been included in this compiler\'s configuration.',
range: {
endColumn: 31,
endLineNumber: 1,
@@ -324,7 +324,7 @@ test(
success: false,
} as BytecodeGenerationResult,
{},
- { operations: undefined }
+ { operations: undefined },
);
test(
@@ -337,7 +337,7 @@ test(
errors: [
{
error:
- 'The "a" variable type can not be resolved because the "addressData" operation has not been included in this compiler\'s CompilationEnvironment.',
+ 'The "a" variable type can not be resolved because the "addressData" operation has not been included in this compiler\'s configuration.',
range: {
endColumn: 3,
endLineNumber: 1,
@@ -351,7 +351,7 @@ test(
{
a: { type: 'AddressData' },
},
- { operations: undefined }
+ { operations: undefined },
);
test(
@@ -364,7 +364,7 @@ test(
errors: [
{
error:
- 'The "a" variable type can not be resolved because the "hdKey" operation has not been included in this compiler\'s CompilationEnvironment.',
+ 'The "a" variable type can not be resolved because the "hdKey" operation has not been included in this compiler\'s configuration.',
range: {
endColumn: 3,
endLineNumber: 1,
@@ -378,7 +378,7 @@ test(
{
a: { type: 'HdKey' },
},
- { operations: undefined }
+ { operations: undefined },
);
test(
@@ -391,7 +391,7 @@ test(
errors: [
{
error:
- 'The "a" variable type can not be resolved because the "key" operation has not been included in this compiler\'s CompilationEnvironment.',
+ 'The "a" variable type can not be resolved because the "key" operation has not been included in this compiler\'s configuration.',
range: {
endColumn: 3,
endLineNumber: 1,
@@ -405,7 +405,7 @@ test(
{
a: { type: 'Key' },
},
- { operations: undefined }
+ { operations: undefined },
);
test(
@@ -418,7 +418,7 @@ test(
errors: [
{
error:
- 'The "a" variable type can not be resolved because the "walletData" operation has not been included in this compiler\'s CompilationEnvironment.',
+ 'The "a" variable type can not be resolved because the "walletData" operation has not been included in this compiler\'s configuration.',
range: {
endColumn: 3,
endLineNumber: 1,
@@ -432,5 +432,5 @@ test(
{
a: { type: 'WalletData' },
},
- { operations: undefined }
+ { operations: undefined },
);
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.spec.ts b/src/lib/compiler/compiler-bch/compiler-bch.spec.ts
index 81174f8f..83448548 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.spec.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.spec.ts
@@ -42,7 +42,7 @@ test.failing('[BCH compiler] createCompilerBCH: generateBytecode', (t) => {
bytecode: hexToBin('76a91415d16c84669ab46059313bf0747e781f1d13936d88ac'),
success: true,
},
- stringifyTestVector(resultLock)
+ stringifyTestVector(resultLock),
);
const resultUnlock = compiler.generateBytecode({
@@ -56,11 +56,11 @@ test.failing('[BCH compiler] createCompilerBCH: generateBytecode', (t) => {
resultUnlock,
{
bytecode: hexToBin(
- '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
success: true,
},
- stringifyTestVector(resultUnlock)
+ stringifyTestVector(resultUnlock),
);
});
@@ -293,7 +293,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
},
reduce: {
bytecode: hexToBin(
- '76a91415d16c84669ab46059313bf0747e781f1d13936d88ac'
+ '76a91415d16c84669ab46059313bf0747e781f1d13936d88ac',
),
range: {
endColumn: 76,
@@ -333,7 +333,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
script: [
{
bytecode: hexToBin(
- '15d16c84669ab46059313bf0747e781f1d13936d'
+ '15d16c84669ab46059313bf0747e781f1d13936d',
),
range: {
endColumn: 48,
@@ -343,7 +343,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
},
source: {
bytecode: hexToBin(
- '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5a9'
+ '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5a9',
),
range: {
endColumn: 47,
@@ -354,11 +354,11 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
script: [
{
bytecode: hexToBin(
- '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
push: {
bytecode: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
range: {
endColumn: 35,
@@ -369,7 +369,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
script: [
{
bytecode: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
range: {
endColumn: 35,
@@ -417,7 +417,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
instructions: [
{
data: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
opcode: 33,
},
@@ -439,7 +439,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
instructions: [
{
data: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
opcode: 33,
},
@@ -455,7 +455,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
signedMessages: [],
stack: [
hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
],
},
@@ -465,7 +465,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
instructions: [
{
data: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
opcode: 33,
},
@@ -489,7 +489,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
instructions: [
{
data: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
opcode: 33,
},
@@ -597,7 +597,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
},
type: 'bytecode',
value: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
variable: 'a.public_key',
},
@@ -643,7 +643,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
],
success: true,
},
- stringifyTestVector(resultLock)
+ stringifyTestVector(resultLock),
);
const resultUnlock = compiler.generateBytecode({
@@ -658,7 +658,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
resultUnlock,
{
bytecode: hexToBin(
- '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
parse: {
end: {
@@ -761,7 +761,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
},
reduce: {
bytecode: hexToBin(
- '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
range: {
endColumn: 41,
@@ -772,11 +772,11 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
script: [
{
bytecode: hexToBin(
- '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141'
+ '47304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141',
),
push: {
bytecode: hexToBin(
- '304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141'
+ '304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141',
),
range: {
endColumn: 25,
@@ -787,7 +787,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
script: [
{
bytecode: hexToBin(
- '304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141'
+ '304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141',
),
range: {
endColumn: 25,
@@ -807,11 +807,11 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
},
{
bytecode: hexToBin(
- '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '210376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
push: {
bytecode: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
range: {
endColumn: 40,
@@ -822,7 +822,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
script: [
{
bytecode: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
range: {
endColumn: 40,
@@ -861,12 +861,12 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
},
signature: {
serialization: hexToBin(
- '000000001cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba214e63bf41490e67d34476778f6707aa6c8d2c8dccdf78ae11e40ee9f91e89a70505050505050505050505050505050505050505050505050505050505050505000000001976a91415d16c84669ab46059313bf0747e781f1d13936d88ac000000000000000000000000c942a06c127c2c18022677e888020afb174208d299354f3ecfedb124a1f3fa450000000041000000'
+ '000000001cc3adea40ebfd94433ac004777d68150cce9db4c771bc7de1b297a7b795bbba214e63bf41490e67d34476778f6707aa6c8d2c8dccdf78ae11e40ee9f91e89a70505050505050505050505050505050505050505050505050505050505050505000000001976a91415d16c84669ab46059313bf0747e781f1d13936d88ac000000000000000000000000c942a06c127c2c18022677e888020afb174208d299354f3ecfedb124a1f3fa450000000041000000',
),
},
type: 'bytecode',
value: hexToBin(
- '304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141'
+ '304402200bda982d5b1a2a42d4568cf180ea1e4042397b02a77d5039b4b620dbc5ba1141022008f2a4f13ff538221cbf79d676f55fbe0c05617dea57877b648037b8dae939f141',
),
variable: 'a.signature.all_outputs',
},
@@ -890,7 +890,7 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
},
type: 'bytecode',
value: hexToBin(
- '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5'
+ '0376ea9e36a75d2ecf9c93a0be76885e36f822529db22acfdc761c9b5b4544f5c5',
),
variable: 'a.public_key',
},
@@ -899,6 +899,6 @@ test.failing('[BCH compiler] createCompilerBCH: debug', (t) => {
],
success: true,
},
- stringifyTestVector(resultUnlock)
+ stringifyTestVector(resultUnlock),
);
});
diff --git a/src/lib/compiler/compiler-bch/compiler-bch.ts b/src/lib/compiler/compiler-bch/compiler-bch.ts
index 97bfc6c6..76d21f78 100644
--- a/src/lib/compiler/compiler-bch/compiler-bch.ts
+++ b/src/lib/compiler/compiler-bch/compiler-bch.ts
@@ -8,12 +8,12 @@ import {
import type {
AnyCompilerConfiguration,
AuthenticationProgramStateBCH,
- AuthenticationTemplate,
CompilationContextBCH,
CompilationData,
CompilerConfiguration,
CompilerOperationResult,
Sha256,
+ WalletTemplate,
} from '../../lib.js';
import {
createVirtualMachineBCH,
@@ -33,9 +33,9 @@ import {
} from '../compiler-operation-helpers.js';
import { compilerOperationsCommon } from '../compiler-operations.js';
import {
- authenticationTemplateToCompilerConfiguration,
compilerConfigurationToCompilerBCH,
createAuthenticationProgramEvaluationCommon,
+ walletTemplateToCompilerConfiguration,
} from '../compiler-utils.js';
export type CompilerOperationsKeyBCH =
@@ -109,7 +109,7 @@ export enum SigningSerializationAlgorithmIdentifier {
// eslint-disable-next-line complexity
const getSigningSerializationType = (
algorithmIdentifier: string,
- prefix = ''
+ prefix = '',
) => {
switch (algorithmIdentifier) {
case `${prefix}${SigningSerializationAlgorithmIdentifier.allOutputs}`:
@@ -125,17 +125,17 @@ const getSigningSerializationType = (
SigningSerializationFlag.allOutputs |
SigningSerializationFlag.singleInput |
SigningSerializationFlag.utxos |
- SigningSerializationFlag.forkId
+ SigningSerializationFlag.forkId,
);
case `${prefix}${SigningSerializationAlgorithmIdentifier.correspondingOutput}`:
return Uint8Array.of(SigningSerializationTypeBCH.correspondingOutput);
case `${prefix}${SigningSerializationAlgorithmIdentifier.correspondingOutputAllUtxos}`:
return Uint8Array.of(
- SigningSerializationTypeBCH.correspondingOutputAllUtxos
+ SigningSerializationTypeBCH.correspondingOutputAllUtxos,
);
case `${prefix}${SigningSerializationAlgorithmIdentifier.correspondingOutputSingleInput}`:
return Uint8Array.of(
- SigningSerializationTypeBCH.correspondingOutputSingleInput
+ SigningSerializationTypeBCH.correspondingOutputSingleInput,
);
case `${prefix}${SigningSerializationAlgorithmIdentifier.correspondingOutputSingleInputInvalidAllUtxos}`:
return Uint8Array.of(
@@ -143,7 +143,7 @@ const getSigningSerializationType = (
SigningSerializationFlag.correspondingOutput |
SigningSerializationFlag.singleInput |
SigningSerializationFlag.utxos |
- SigningSerializationFlag.forkId
+ SigningSerializationFlag.forkId,
);
case `${prefix}${SigningSerializationAlgorithmIdentifier.noOutputs}`:
return Uint8Array.of(SigningSerializationTypeBCH.noOutputs);
@@ -157,7 +157,7 @@ const getSigningSerializationType = (
SigningSerializationFlag.noOutputs |
SigningSerializationFlag.singleInput |
SigningSerializationFlag.utxos |
- SigningSerializationFlag.forkId
+ SigningSerializationFlag.forkId,
);
default:
return undefined;
@@ -180,7 +180,7 @@ export const compilerOperationHelperComputeSignatureBCH = ({
operationName: string;
sign: (
privateKey: Uint8Array,
- messageHash: Uint8Array
+ messageHash: Uint8Array,
) => Uint8Array | string;
sha256: { hash: Sha256['hash'] };
}): CompilerOperationResult => {
@@ -212,7 +212,7 @@ export const compilerOperationHelperComputeSignatureBCH = ({
const serialization = generateSigningSerializationBCH(
compilationContext,
{ coveredBytecode, signingSerializationType },
- sha256
+ sha256,
);
const digest = hash256(serialization, sha256);
const bitcoinEncodedSignature = Uint8Array.from([
@@ -282,7 +282,7 @@ export const compilerOperationHelperHdKeySignatureBCH = ({
sign: secp256k1[secp256k1Method],
});
},
- })
+ }),
);
export const compilerOperationHdKeyEcdsaSignatureBCH =
@@ -354,7 +354,7 @@ export const compilerOperationHelperKeySignatureBCH = ({
sign: secp256k1[secp256k1Method],
});
},
- })
+ }),
);
export const compilerOperationKeyEcdsaSignatureBCH =
@@ -370,7 +370,7 @@ export const compilerOperationKeySchnorrSignatureBCH =
export const compilerOperationHelperComputeDataSignatureBCH = <
Data extends CompilationData,
- Configuration extends AnyCompilerConfiguration