diff --git a/apps/node/src/index.ts b/apps/node/src/index.ts index 9965c8ca..7375b0bc 100644 --- a/apps/node/src/index.ts +++ b/apps/node/src/index.ts @@ -1,9 +1,9 @@ import DeviceConnection, { - updateLogger as updateLoggerHid, + updateLogger as updateLoggerHid, } from '@cypherock/sdk-hw-hid'; import DeviceConnectionSerialport from '@cypherock/sdk-hw-serialport'; import { ManagerApp, updateLogger } from '@cypherock/sdk-app-manager'; -import { SDK, updateLogger as updateLoggerCore } from '@cypherock/sdk-core'; +import { updateLogger as updateLoggerCore } from '@cypherock/sdk-core'; import { IDeviceConnection } from '@cypherock/sdk-interfaces'; import * as bitcoinJsLib from 'bitcoinjs-lib'; import * as nearApiJs from 'near-api-js'; @@ -13,71 +13,71 @@ import { setEthersLib } from '@cypherock/sdk-app-evm'; import { setNearApiJs } from '@cypherock/sdk-app-near'; import { setSolanaWeb3 } from '@cypherock/sdk-app-solana'; import { ethers } from 'ethers'; -import { createServiceLogger } from './logger'; import { InheritanceApp } from '@cypherock/sdk-app-inheritance'; +import { createServiceLogger } from './logger'; const run = async () => { - updateLogger(createServiceLogger); - updateLoggerCore(createServiceLogger); - updateLoggerHid(createServiceLogger); + updateLogger(createServiceLogger); + updateLoggerCore(createServiceLogger); + updateLoggerHid(createServiceLogger); - setBitcoinJSLib(bitcoinJsLib); - setEthersLib(ethers); - setNearApiJs(nearApiJs); - setSolanaWeb3(solanaWeb3); + setBitcoinJSLib(bitcoinJsLib); + setEthersLib(ethers); + setNearApiJs(nearApiJs); + setSolanaWeb3(solanaWeb3); - let connection: IDeviceConnection; + let connection: IDeviceConnection; - try { - connection = await DeviceConnection.create(); - } catch (error) { - connection = await DeviceConnectionSerialport.create(); - } + try { + connection = await DeviceConnection.create(); + } catch (error) { + connection = await DeviceConnectionSerialport.create(); + } - console.log('started'); + console.log('started'); - const managerApp = await ManagerApp.create(connection); + const managerApp = await ManagerApp.create(connection); - const { walletList } = await managerApp.getWallets(); + const { walletList } = await managerApp.getWallets(); - const inheritanceApp = await InheritanceApp.create(connection); + const inheritanceApp = await InheritanceApp.create(connection); - setTimeout(async () => { - //console.log('aborting'); - //await inheritanceApp.abort(); - //console.log('aborted'); - }, 3000); + setTimeout(async () => { + // console.log('aborting'); + // await inheritanceApp.abort(); + // console.log('aborted'); + }, 3000); - //console.log(walletList[1].id.join(',')); - const walletId = walletList[1].id; + // console.log(walletList[1].id.join(',')); + const walletId = walletList[1].id; - //await inheritanceApp.authWallet({ - // challenge: walletId, - // walletId: walletId, - // withPublicKey: true, - // type: 'wallet-based', - //}); + // await inheritanceApp.authWallet({ + // challenge: walletId, + // walletId: walletId, + // withPublicKey: true, + // type: 'wallet-based', + // }); - await inheritanceApp.testSessionStart(); + await inheritanceApp.startSession(); - const thing = await inheritanceApp.encryptMessagesWithPin({ - walletId: walletId, - messages: { - 2: { - value: 'test value', - verifyOnDevice: true, - }, - }, - }); + const thing = await inheritanceApp.encryptMessagesWithPin({ + walletId, + messages: { + 2: { + value: 'test value', + verifyOnDevice: true, + }, + }, + }); - const output = await inheritanceApp.decryptMessagesWithPin({ - walletId: walletId, - encryptedData: thing.encryptedPacket, - }); + const output = await inheritanceApp.decryptMessagesWithPin({ + walletId, + encryptedData: thing.encryptedPacket, + }); - await inheritanceApp.testSessionStop(); + await inheritanceApp.closeSession(); - console.log(JSON.stringify(output)); + console.log(JSON.stringify(output)); }; run(); diff --git a/packages/app-inheritance/src/app.ts b/packages/app-inheritance/src/app.ts index 196b697e..e79560f6 100644 --- a/packages/app-inheritance/src/app.ts +++ b/packages/app-inheritance/src/app.ts @@ -36,11 +36,11 @@ export class InheritanceApp { return this.sdk.runOperation(() => operations.authWallet(this.sdk, params)); } - public async testSessionStart() { + public async startSession() { return this.sdk.runOperation(() => this.sdk.startSession()); } - public async testSessionStop() { + public async closeSession() { return this.sdk.runOperation(() => this.sdk.closeSession()); } diff --git a/packages/core/src/commands/startSession.ts b/packages/core/src/commands/startSession.ts index 5885bb97..82de42e8 100644 --- a/packages/core/src/commands/startSession.ts +++ b/packages/core/src/commands/startSession.ts @@ -25,6 +25,11 @@ export interface IStartSessionParams { getNewSequenceNumber: () => Promise; } +export interface IStartSessionResult { + sessionId: string; + sessionAge: number; +} + const sendSessionCommand = async ( params: IStartSessionParams, data: DeepPartial, @@ -83,7 +88,7 @@ const waitForSessionResult = async ( export const startSession = async ( params: IStartSessionParams, -): Promise => { +): Promise => { assert(params.connection, 'Invalid connection'); assert(params.getNewSequenceNumber, 'Invalid getNewSequenceNumber'); @@ -115,5 +120,11 @@ export const startSession = async ( const { confirmationStart } = await waitForSessionResult(params); assertOrThrowInvalidResult(confirmationStart); - return ''; + assert(serverInitiateResponse.sessionId, 'Invalid session ID from server'); + assert(serverInitiateResponse.sessionAge, 'Invalid session age from server'); + + return { + sessionId: serverInitiateResponse.sessionId, + sessionAge: serverInitiateResponse.sessionAge, + }; }; diff --git a/packages/core/src/sdk.ts b/packages/core/src/sdk.ts index 1f210e55..d56bda6c 100644 --- a/packages/core/src/sdk.ts +++ b/packages/core/src/sdk.ts @@ -481,7 +481,7 @@ export class SDK implements ISDK { public async startSession( onStatus?: commands.IStartSessionParams['onStatus'], options?: commands.IStartSessionParams['options'], - ): Promise { + ): Promise { await this.validateNotInBootloaderMode(); assert( this.packetVersion, diff --git a/packages/core/src/services/types.ts b/packages/core/src/services/types.ts index 266e3904..0af7230c 100644 --- a/packages/core/src/services/types.ts +++ b/packages/core/src/services/types.ts @@ -10,4 +10,5 @@ export interface IInitiateServerSessionResult { publicKey?: string; sessionAge?: number; signature?: string; + sessionId?: string; } diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 52906968..c0bf1cba 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -130,7 +130,7 @@ export interface ISDK { startSession( onStatus?: commands.IStartSessionParams['onStatus'], options?: commands.IStartSessionParams['options'], - ): Promise; + ): Promise; closeSession( onStatus?: commands.ICloseSessionParams['onStatus'], options?: commands.ICloseSessionParams['options'], diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fcaf26ef..6cfc3288 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '6.0' +lockfileVersion: '6.1' settings: autoInstallPeers: true @@ -5200,7 +5200,7 @@ packages: dependencies: confusing-browser-globals: 1.0.11 eslint: 7.32.0 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@7.32.0) object.assign: 4.1.5 object.entries: 1.1.8 semver: 6.3.1 @@ -5334,41 +5334,6 @@ packages: - eslint-import-resolver-webpack - supports-color - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@7.32.0): - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5) - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 - debug: 3.2.7 - doctrine: 2.1.0 - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@7.32.0) - hasown: 2.0.2 - is-core-module: 2.15.0 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.fromentries: 2.0.8 - object.groupby: 1.0.3 - object.values: 1.2.0 - semver: 6.3.1 - tsconfig-paths: 3.15.0 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - dev: true - /eslint-plugin-jsx-a11y@6.9.0(eslint@7.32.0): resolution: {integrity: sha512-nOFOCaJG2pYqORjK19lqPqxMO/JpvdCZdPtNdxY3kvom3jTvkAbOvQvD8wuD0G8BYR0IGAGYDlzqWJOh/ybn2g==} engines: {node: '>=4.0'} @@ -8294,7 +8259,6 @@ packages: engines: {node: '>=0.6.0', teleport: '>=0.2.0'} deprecated: |- You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. - (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) dev: true @@ -10069,5062 +10033,3 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} dev: true - -snapshots: - '@adraffy/ens-normalize@1.9.2': {} - '@ampproject/remapping@2.2.1': - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - '@aws-crypto/ie11-detection@4.0.0': - dependencies: - tslib: 1.14.1 - '@aws-crypto/sha256-browser@4.0.0': - dependencies: - '@aws-crypto/ie11-detection': 4.0.0 - '@aws-crypto/sha256-js': 4.0.0 - '@aws-crypto/supports-web-crypto': 4.0.0 - '@aws-crypto/util': 4.0.0 - '@aws-sdk/types': 3.342.0 - '@aws-sdk/util-locate-window': 3.310.0 - '@aws-sdk/util-utf8-browser': 3.259.0 - tslib: 1.14.1 - '@aws-crypto/sha256-js@4.0.0': - dependencies: - '@aws-crypto/util': 4.0.0 - '@aws-sdk/types': 3.342.0 - tslib: 1.14.1 - '@aws-crypto/supports-web-crypto@4.0.0': - dependencies: - tslib: 1.14.1 - '@aws-crypto/util@4.0.0': - dependencies: - '@aws-sdk/types': 3.342.0 - '@aws-sdk/util-utf8-browser': 3.259.0 - tslib: 1.14.1 - '@aws-sdk/types@3.342.0': - dependencies: - tslib: 2.5.0 - '@aws-sdk/util-locate-window@3.310.0': - dependencies: - tslib: 2.5.0 - '@aws-sdk/util-utf8-browser@3.259.0': - dependencies: - tslib: 2.5.0 - '@babel/code-frame@7.12.11': - dependencies: - '@babel/highlight': 7.23.4 - '@babel/code-frame@7.23.5': - dependencies: - '@babel/highlight': 7.23.4 - chalk: 2.4.2 - '@babel/compat-data@7.23.5': {} - '@babel/core@7.20.12': - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.20.12) - '@babel/helpers': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/core@7.23.5': - dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helpers': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 - convert-source-map: 2.0.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/generator@7.20.14': - dependencies: - '@babel/types': 7.23.5 - '@jridgewell/gen-mapping': 0.3.3 - jsesc: 2.5.2 - '@babel/generator@7.23.5': - dependencies: - '@babel/types': 7.23.5 - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - jsesc: 2.5.2 - '@babel/helper-annotate-as-pure@7.18.6': - dependencies: - '@babel/types': 7.23.5 - '@babel/helper-compilation-targets@7.22.15': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/helper-validator-option': 7.23.5 - browserslist: 4.22.1 - lru-cache: 5.1.1 - semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.21.0 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.20.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/helper-split-export-declaration': 7.22.6 - transitivePeerDependencies: - - supports-color - '@babel/helper-environment-visitor@7.22.20': {} - '@babel/helper-function-name@7.23.0': - dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.5 - '@babel/helper-hoist-variables@7.22.5': - dependencies: - '@babel/types': 7.23.5 - '@babel/helper-member-expression-to-functions@7.21.0': - dependencies: - '@babel/types': 7.23.5 - '@babel/helper-module-imports@7.22.15': - dependencies: - '@babel/types': 7.23.5 - '@babel/helper-module-transforms@7.23.3(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 - '@babel/helper-optimise-call-expression@7.18.6': - dependencies: - '@babel/types': 7.23.5 - '@babel/helper-plugin-utils@7.20.2': {} - '@babel/helper-replace-supers@7.20.7': - dependencies: - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.21.0 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 - transitivePeerDependencies: - - supports-color - '@babel/helper-simple-access@7.22.5': - dependencies: - '@babel/types': 7.23.5 - '@babel/helper-skip-transparent-expression-wrappers@7.20.0': - dependencies: - '@babel/types': 7.23.5 - '@babel/helper-split-export-declaration@7.18.6': - dependencies: - '@babel/types': 7.23.5 - '@babel/helper-split-export-declaration@7.22.6': - dependencies: - '@babel/types': 7.23.5 - '@babel/helper-string-parser@7.23.4': {} - '@babel/helper-validator-identifier@7.22.20': {} - '@babel/helper-validator-option@7.18.6': {} - '@babel/helper-validator-option@7.23.5': {} - '@babel/helpers@7.23.5': - dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 - transitivePeerDependencies: - - supports-color - '@babel/highlight@7.23.4': - dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - '@babel/parser@7.20.15': - dependencies: - '@babel/types': 7.23.5 - '@babel/parser@7.23.5': - dependencies: - '@babel/types': 7.23.5 - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.20.2 - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-decorators@7.20.13(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.20.7 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.21.0(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.20.2 - transitivePeerDependencies: - - supports-color - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-decorators@7.21.0(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-transform-typescript@7.21.3(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.20.12) - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - '@babel/preset-typescript@7.18.6(@babel/core@7.20.12)': - dependencies: - '@babel/core': 7.20.12 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.20.12) - transitivePeerDependencies: - - supports-color - '@babel/runtime@7.20.13': - dependencies: - regenerator-runtime: 0.13.11 - '@babel/runtime@7.23.5': - dependencies: - regenerator-runtime: 0.14.0 - '@babel/template@7.22.15': - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 - '@babel/traverse@7.20.13': - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - '@babel/traverse@7.23.5': - dependencies: - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - '@babel/types@7.21.3': - dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 - '@babel/types@7.23.5': - dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 - to-fast-properties: 2.0.0 - '@bcoe/v8-coverage@0.2.3': {} - '@bitcoin-js/tiny-secp256k1-asmjs@2.2.3': - dependencies: - uint8array-tools: 0.0.7 - '@changesets/apply-release-plan@6.1.3': - dependencies: - '@babel/runtime': 7.20.13 - '@changesets/config': 2.3.0 - '@changesets/get-version-range-type': 0.3.2 - '@changesets/git': 2.0.0 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - detect-indent: 6.1.0 - fs-extra: 7.0.1 - lodash.startcase: 4.4.0 - outdent: 0.5.0 - prettier: 2.8.8 - resolve-from: 5.0.0 - semver: 5.7.1 - '@changesets/assemble-release-plan@5.2.3': - dependencies: - '@babel/runtime': 7.20.13 - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.5 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - semver: 5.7.1 - '@changesets/changelog-git@0.1.14': - dependencies: - '@changesets/types': 5.2.1 - '@changesets/changelog-github@0.4.8': - dependencies: - '@changesets/get-github-info': 0.5.2 - '@changesets/types': 5.2.1 - dotenv: 8.6.0 - transitivePeerDependencies: - - encoding - '@changesets/cli@2.26.1': - dependencies: - '@babel/runtime': 7.20.13 - '@changesets/apply-release-plan': 6.1.3 - '@changesets/assemble-release-plan': 5.2.3 - '@changesets/changelog-git': 0.1.14 - '@changesets/config': 2.3.0 - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.5 - '@changesets/get-release-plan': 3.0.16 - '@changesets/git': 2.0.0 - '@changesets/logger': 0.0.5 - '@changesets/pre': 1.0.14 - '@changesets/read': 0.5.9 - '@changesets/types': 5.2.1 - '@changesets/write': 0.2.3 - '@manypkg/get-packages': 1.1.3 - '@types/is-ci': 3.0.0 - '@types/semver': 6.2.3 - ansi-colors: 4.1.3 - chalk: 2.4.2 - enquirer: 2.3.6 - external-editor: 3.1.0 - fs-extra: 7.0.1 - human-id: 1.0.2 - is-ci: 3.0.1 - meow: 6.1.1 - outdent: 0.5.0 - p-limit: 2.3.0 - preferred-pm: 3.0.3 - resolve-from: 5.0.0 - semver: 5.7.1 - spawndamnit: 2.0.0 - term-size: 2.2.1 - tty-table: 4.2.1 - '@changesets/config@2.3.0': - dependencies: - '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.5 - '@changesets/logger': 0.0.5 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - micromatch: 4.0.5 - '@changesets/errors@0.1.4': - dependencies: - extendable-error: 0.1.7 - '@changesets/get-dependents-graph@1.3.5': - dependencies: - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - chalk: 2.4.2 - fs-extra: 7.0.1 - semver: 5.7.1 - '@changesets/get-github-info@0.5.2': - dependencies: - dataloader: 1.4.0 - node-fetch: 2.6.11 - transitivePeerDependencies: - - encoding - '@changesets/get-release-plan@3.0.16': - dependencies: - '@babel/runtime': 7.20.13 - '@changesets/assemble-release-plan': 5.2.3 - '@changesets/config': 2.3.0 - '@changesets/pre': 1.0.14 - '@changesets/read': 0.5.9 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - '@changesets/get-version-range-type@0.3.2': {} - '@changesets/git@2.0.0': - dependencies: - '@babel/runtime': 7.20.13 - '@changesets/errors': 0.1.4 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - is-subdir: 1.2.0 - micromatch: 4.0.5 - spawndamnit: 2.0.0 - '@changesets/logger@0.0.5': - dependencies: - chalk: 2.4.2 - '@changesets/parse@0.3.16': - dependencies: - '@changesets/types': 5.2.1 - js-yaml: 3.14.1 - '@changesets/pre@1.0.14': - dependencies: - '@babel/runtime': 7.20.13 - '@changesets/errors': 0.1.4 - '@changesets/types': 5.2.1 - '@manypkg/get-packages': 1.1.3 - fs-extra: 7.0.1 - '@changesets/read@0.5.9': - dependencies: - '@babel/runtime': 7.20.13 - '@changesets/git': 2.0.0 - '@changesets/logger': 0.0.5 - '@changesets/parse': 0.3.16 - '@changesets/types': 5.2.1 - chalk: 2.4.2 - fs-extra: 7.0.1 - p-filter: 2.1.0 - '@changesets/types@4.1.0': {} - '@changesets/types@5.2.1': {} - '@changesets/write@0.2.3': - dependencies: - '@babel/runtime': 7.20.13 - '@changesets/types': 5.2.1 - fs-extra: 7.0.1 - human-id: 1.0.2 - prettier: 2.8.8 - '@colors/colors@1.6.0': {} - '@commitlint/cli@17.4.4': - dependencies: - '@commitlint/format': 17.4.4 - '@commitlint/lint': 17.4.4 - '@commitlint/load': 17.4.4 - '@commitlint/read': 17.4.4 - '@commitlint/types': 17.4.4 - execa: 5.1.1 - lodash.isfunction: 3.0.9 - resolve-from: 5.0.0 - resolve-global: 1.0.0 - yargs: 17.6.2 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - '@commitlint/config-conventional@17.4.4': - dependencies: - conventional-changelog-conventionalcommits: 5.0.0 - '@commitlint/config-validator@17.4.4': - dependencies: - '@commitlint/types': 17.4.4 - ajv: 8.12.0 - '@commitlint/ensure@17.4.4': - dependencies: - '@commitlint/types': 17.4.4 - lodash.camelcase: 4.3.0 - lodash.kebabcase: 4.1.1 - lodash.snakecase: 4.1.1 - lodash.startcase: 4.4.0 - lodash.upperfirst: 4.3.1 - '@commitlint/execute-rule@17.4.0': {} - '@commitlint/format@17.4.4': - dependencies: - '@commitlint/types': 17.4.4 - chalk: 4.1.2 - '@commitlint/is-ignored@17.4.4': - dependencies: - '@commitlint/types': 17.4.4 - semver: 7.3.8 - '@commitlint/lint@17.4.4': - dependencies: - '@commitlint/is-ignored': 17.4.4 - '@commitlint/parse': 17.4.4 - '@commitlint/rules': 17.4.4 - '@commitlint/types': 17.4.4 - '@commitlint/load@17.4.4': - dependencies: - '@commitlint/config-validator': 17.4.4 - '@commitlint/execute-rule': 17.4.0 - '@commitlint/resolve-extends': 17.4.4 - '@commitlint/types': 17.4.4 - '@types/node': 18.11.18 - chalk: 4.1.2 - cosmiconfig: 8.1.0 - cosmiconfig-typescript-loader: 4.3.0(@types/node@18.11.18)(cosmiconfig@8.1.0)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5))(typescript@4.9.5) - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - lodash.uniq: 4.5.0 - resolve-from: 5.0.0 - ts-node: 10.9.1(@types/node@18.11.18)(typescript@4.9.5) - typescript: 4.9.5 - transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - '@commitlint/message@17.4.2': {} - '@commitlint/parse@17.4.4': - dependencies: - '@commitlint/types': 17.4.4 - conventional-changelog-angular: 5.0.13 - conventional-commits-parser: 3.2.4 - '@commitlint/read@17.4.4': - dependencies: - '@commitlint/top-level': 17.4.0 - '@commitlint/types': 17.4.4 - fs-extra: 11.1.0 - git-raw-commits: 2.0.11 - minimist: 1.2.7 - '@commitlint/resolve-extends@17.4.4': - dependencies: - '@commitlint/config-validator': 17.4.4 - '@commitlint/types': 17.4.4 - import-fresh: 3.3.0 - lodash.mergewith: 4.6.2 - resolve-from: 5.0.0 - resolve-global: 1.0.0 - '@commitlint/rules@17.4.4': - dependencies: - '@commitlint/ensure': 17.4.4 - '@commitlint/message': 17.4.2 - '@commitlint/to-lines': 17.4.0 - '@commitlint/types': 17.4.4 - execa: 5.1.1 - '@commitlint/to-lines@17.4.0': {} - '@commitlint/top-level@17.4.0': - dependencies: - find-up: 5.0.0 - '@commitlint/types@17.4.4': - dependencies: - chalk: 4.1.2 - '@cspotcode/source-map-support@0.8.1': - dependencies: - '@jridgewell/trace-mapping': 0.3.9 - '@dabh/diagnostics@2.0.3': - dependencies: - colorspace: 1.1.4 - enabled: 2.0.0 - kuler: 2.0.0 - '@eslint/eslintrc@0.4.3': - dependencies: - ajv: 6.12.6 - debug: 4.3.4 - espree: 7.3.1 - globals: 13.19.0 - ignore: 4.0.6 - import-fresh: 3.3.0 - js-yaml: 3.14.1 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - '@ethersproject/abi@5.7.0': - dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/abstract-provider@5.7.0': - dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/properties': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/web': 5.7.1 - '@ethersproject/abstract-signer@5.7.0': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/address@5.7.0': - dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/base64@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/bignumber@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - bn.js: 5.2.1 - '@ethersproject/bytes@5.7.0': - dependencies: - '@ethersproject/logger': 5.7.0 - '@ethersproject/constants@5.7.0': - dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/hash@5.7.0': - dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/keccak256@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - js-sha3: 0.8.0 - '@ethersproject/logger@5.7.0': {} - '@ethersproject/networks@5.7.1': - dependencies: - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties@5.7.0': - dependencies: - '@ethersproject/logger': 5.7.0 - '@ethersproject/rlp@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/signing-key@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - bn.js: 5.2.1 - elliptic: 6.5.4 - hash.js: 1.1.7 - '@ethersproject/strings@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/transactions@5.7.0': - dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/web@5.7.1': - dependencies: - '@ethersproject/base64': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@findeth/abi@0.3.1': - dependencies: - keccak: 3.0.3 - '@humanwhocodes/config-array@0.5.0': - dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - '@humanwhocodes/object-schema@1.2.1': {} - '@istanbuljs/load-nyc-config@1.1.0': - dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 - '@istanbuljs/schema@0.1.3': {} - '@jest/console@29.4.1': - dependencies: - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - chalk: 4.1.2 - jest-message-util: 29.4.1 - jest-util: 29.4.1 - slash: 3.0.0 - '@jest/core@29.4.1(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4))': - dependencies: - '@jest/console': 29.4.1 - '@jest/reporters': 29.4.1 - '@jest/test-result': 29.4.1 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.7.1 - exit: 0.1.2 - graceful-fs: 4.2.10 - jest-changed-files: 29.4.0 - jest-config: 29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)) - jest-haste-map: 29.4.1 - jest-message-util: 29.4.1 - jest-regex-util: 29.2.0 - jest-resolve: 29.4.1 - jest-resolve-dependencies: 29.4.1 - jest-runner: 29.4.1 - jest-runtime: 29.4.1 - jest-snapshot: 29.4.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 - jest-watcher: 29.4.1 - micromatch: 4.0.5 - pretty-format: 29.4.1 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - supports-color - - ts-node - '@jest/core@29.4.1(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5))': - dependencies: - '@jest/console': 29.4.1 - '@jest/reporters': 29.4.1 - '@jest/test-result': 29.4.1 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.7.1 - exit: 0.1.2 - graceful-fs: 4.2.10 - jest-changed-files: 29.4.0 - jest-config: 29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)) - jest-haste-map: 29.4.1 - jest-message-util: 29.4.1 - jest-regex-util: 29.2.0 - jest-resolve: 29.4.1 - jest-resolve-dependencies: 29.4.1 - jest-runner: 29.4.1 - jest-runtime: 29.4.1 - jest-snapshot: 29.4.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 - jest-watcher: 29.4.1 - micromatch: 4.0.5 - pretty-format: 29.4.1 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - supports-color - - ts-node - '@jest/environment@29.4.1': - dependencies: - '@jest/fake-timers': 29.4.1 - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - jest-mock: 29.4.1 - '@jest/expect-utils@29.4.1': - dependencies: - jest-get-type: 29.2.0 - '@jest/expect@29.4.1': - dependencies: - expect: 29.4.1 - jest-snapshot: 29.4.1 - transitivePeerDependencies: - - supports-color - '@jest/fake-timers@29.4.1': - dependencies: - '@jest/types': 29.4.1 - '@sinonjs/fake-timers': 10.0.2 - '@types/node': 18.11.18 - jest-message-util: 29.4.1 - jest-mock: 29.4.1 - jest-util: 29.4.1 - '@jest/globals@29.4.1': - dependencies: - '@jest/environment': 29.4.1 - '@jest/expect': 29.4.1 - '@jest/types': 29.4.1 - jest-mock: 29.4.1 - transitivePeerDependencies: - - supports-color - '@jest/reporters@29.4.1': - dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.4.1 - '@jest/test-result': 29.4.1 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 - '@jridgewell/trace-mapping': 0.3.17 - '@types/node': 18.11.18 - chalk: 4.1.2 - collect-v8-coverage: 1.0.1 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.10 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.1 - istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.5 - jest-message-util: 29.4.1 - jest-util: 29.4.1 - jest-worker: 29.4.1 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - v8-to-istanbul: 9.0.1 - transitivePeerDependencies: - - supports-color - '@jest/schemas@29.4.0': - dependencies: - '@sinclair/typebox': 0.25.21 - '@jest/source-map@29.2.0': - dependencies: - '@jridgewell/trace-mapping': 0.3.20 - callsites: 3.1.0 - graceful-fs: 4.2.10 - '@jest/test-result@29.4.1': - dependencies: - '@jest/console': 29.4.1 - '@jest/types': 29.4.1 - '@types/istanbul-lib-coverage': 2.0.4 - collect-v8-coverage: 1.0.1 - '@jest/test-sequencer@29.4.1': - dependencies: - '@jest/test-result': 29.4.1 - graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 - slash: 3.0.0 - '@jest/transform@29.4.1': - dependencies: - '@babel/core': 7.23.5 - '@jest/types': 29.4.1 - '@jridgewell/trace-mapping': 0.3.20 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 2.0.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 - jest-regex-util: 29.2.0 - jest-util: 29.4.1 - micromatch: 4.0.5 - pirates: 4.0.5 - slash: 3.0.0 - write-file-atomic: 5.0.0 - transitivePeerDependencies: - - supports-color - '@jest/types@29.4.1': - dependencies: - '@jest/schemas': 29.4.0 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.18 - '@types/yargs': 17.0.22 - chalk: 4.1.2 - '@jridgewell/gen-mapping@0.3.3': - dependencies: - '@jridgewell/set-array': 1.1.2 - '@jridgewell/sourcemap-codec': 1.4.14 - '@jridgewell/trace-mapping': 0.3.20 - '@jridgewell/resolve-uri@3.1.0': {} - '@jridgewell/resolve-uri@3.1.1': {} - '@jridgewell/set-array@1.1.2': {} - '@jridgewell/sourcemap-codec@1.4.14': {} - '@jridgewell/sourcemap-codec@1.4.15': {} - '@jridgewell/trace-mapping@0.3.17': - dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 - '@jridgewell/trace-mapping@0.3.20': - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping@0.3.9': - dependencies: - '@jridgewell/resolve-uri': 3.1.1 - '@jridgewell/sourcemap-codec': 1.4.15 - '@manypkg/find-root@1.1.0': - dependencies: - '@babel/runtime': 7.20.13 - '@types/node': 12.20.55 - find-up: 4.1.0 - fs-extra: 8.1.0 - '@manypkg/get-packages@1.1.3': - dependencies: - '@babel/runtime': 7.20.13 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 - fs-extra: 8.1.0 - globby: 11.1.0 - read-yaml-file: 1.1.0 - '@near-js/accounts@0.1.4': - dependencies: - '@near-js/crypto': 0.0.5 - '@near-js/providers': 0.0.7 - '@near-js/signers': 0.0.5 - '@near-js/transactions': 0.2.1 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.4 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - bn.js: 5.2.1 - borsh: 0.7.0 - depd: 2.0.0 - near-abi: 0.1.1 - transitivePeerDependencies: - - encoding - '@near-js/crypto@0.0.5': - dependencies: - '@near-js/types': 0.0.4 - bn.js: 5.2.1 - borsh: 0.7.0 - tweetnacl: 1.0.3 - '@near-js/keystores-browser@0.0.5': - dependencies: - '@near-js/crypto': 0.0.5 - '@near-js/keystores': 0.0.5 - '@near-js/keystores-node@0.0.5': - dependencies: - '@near-js/crypto': 0.0.5 - '@near-js/keystores': 0.0.5 - '@near-js/keystores@0.0.5': - dependencies: - '@near-js/crypto': 0.0.5 - '@near-js/types': 0.0.4 - '@near-js/providers@0.0.7': - dependencies: - '@near-js/transactions': 0.2.1 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.4 - bn.js: 5.2.1 - borsh: 0.7.0 - http-errors: 1.8.1 - optionalDependencies: - node-fetch: 2.7.0 - transitivePeerDependencies: - - encoding - '@near-js/signers@0.0.5': - dependencies: - '@near-js/crypto': 0.0.5 - '@near-js/keystores': 0.0.5 - js-sha256: 0.9.0 - '@near-js/transactions@0.2.1': - dependencies: - '@near-js/crypto': 0.0.5 - '@near-js/signers': 0.0.5 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.4 - bn.js: 5.2.1 - borsh: 0.7.0 - js-sha256: 0.9.0 - '@near-js/types@0.0.4': - dependencies: - bn.js: 5.2.1 - '@near-js/utils@0.0.4': - dependencies: - '@near-js/types': 0.0.4 - bn.js: 5.2.1 - depd: 2.0.0 - mustache: 4.2.0 - '@near-js/wallet-account@0.0.7': - dependencies: - '@near-js/accounts': 0.1.4 - '@near-js/crypto': 0.0.5 - '@near-js/keystores': 0.0.5 - '@near-js/signers': 0.0.5 - '@near-js/transactions': 0.2.1 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.4 - bn.js: 5.2.1 - borsh: 0.7.0 - transitivePeerDependencies: - - encoding - '@next/env@13.1.6': {} - '@next/eslint-plugin-next@13.1.6': - dependencies: - glob: 7.1.7 - '@next/font@13.1.6': {} - '@next/swc-android-arm-eabi@13.1.6': - optional: true - '@next/swc-android-arm64@13.1.6': - optional: true - '@next/swc-darwin-arm64@13.1.6': - optional: true - '@next/swc-darwin-x64@13.1.6': - optional: true - '@next/swc-freebsd-x64@13.1.6': - optional: true - '@next/swc-linux-arm-gnueabihf@13.1.6': - optional: true - '@next/swc-linux-arm64-gnu@13.1.6': - optional: true - '@next/swc-linux-arm64-musl@13.1.6': - optional: true - '@next/swc-linux-x64-gnu@13.1.6': - optional: true - '@next/swc-linux-x64-musl@13.1.6': - optional: true - '@next/swc-win32-arm64-msvc@13.1.6': - optional: true - '@next/swc-win32-ia32-msvc@13.1.6': - optional: true - '@next/swc-win32-x64-msvc@13.1.6': - optional: true - '@noble/curves@1.2.0': - dependencies: - '@noble/hashes': 1.3.2 - '@noble/curves@1.3.0': - dependencies: - '@noble/hashes': 1.3.3 - '@noble/hashes@1.1.2': {} - '@noble/hashes@1.3.1': {} - '@noble/hashes@1.3.2': {} - '@noble/hashes@1.3.3': {} - '@noble/secp256k1@1.7.1': {} - '@nodelib/fs.scandir@2.1.5': - dependencies: - '@nodelib/fs.stat': 2.0.5 - run-parallel: 1.2.0 - '@nodelib/fs.stat@2.0.5': {} - '@nodelib/fs.walk@1.2.8': - dependencies: - '@nodelib/fs.scandir': 2.1.5 - fastq: 1.15.0 - '@pkgr/utils@2.3.1': - dependencies: - cross-spawn: 7.0.3 - is-glob: 4.0.3 - open: 8.4.0 - picocolors: 1.0.0 - tiny-glob: 0.2.9 - tslib: 2.5.0 - '@protobufjs/aspromise@1.1.2': {} - '@protobufjs/base64@1.1.2': {} - '@protobufjs/codegen@2.0.4': {} - '@protobufjs/eventemitter@1.1.0': {} - '@protobufjs/fetch@1.1.0': - dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/inquire': 1.1.0 - '@protobufjs/float@1.0.2': {} - '@protobufjs/inquire@1.1.0': {} - '@protobufjs/path@1.1.2': {} - '@protobufjs/pool@1.1.0': {} - '@protobufjs/utf8@1.1.0': {} - '@rushstack/eslint-patch@1.2.0': {} - '@scure/base@1.1.6': {} - '@scure/bip32@1.3.3': - dependencies: - '@noble/curves': 1.3.0 - '@noble/hashes': 1.3.3 - '@scure/base': 1.1.6 - '@scure/bip39@1.2.2': - dependencies: - '@noble/hashes': 1.3.3 - '@scure/base': 1.1.6 - '@serialport/binding-abstract@10.0.0': - dependencies: - debug: 4.3.4 - transitivePeerDependencies: - - supports-color - '@serialport/binding-mock@10.0.0': - dependencies: - '@serialport/binding-abstract': 10.0.0 - debug: 4.3.4 - transitivePeerDependencies: - - supports-color - '@serialport/bindings@10.0.0': - dependencies: - '@serialport/binding-abstract': 10.0.0 - '@serialport/parser-readline': 10.0.0 - bindings: 1.5.0 - debug: 4.3.4 - node-addon-api: 4.2.0 - prebuild-install: 7.1.1 - transitivePeerDependencies: - - supports-color - '@serialport/parser-byte-length@10.0.0': {} - '@serialport/parser-cctalk@10.0.0': {} - '@serialport/parser-delimiter@10.0.0': {} - '@serialport/parser-inter-byte-timeout@10.0.0': {} - '@serialport/parser-readline@10.0.0': - dependencies: - '@serialport/parser-delimiter': 10.0.0 - '@serialport/parser-ready@10.0.0': {} - '@serialport/parser-regex@10.0.0': {} - '@serialport/stream@10.0.0': - dependencies: - debug: 4.3.4 - transitivePeerDependencies: - - supports-color - '@sinclair/typebox@0.25.21': {} - '@sinonjs/commons@2.0.0': - dependencies: - type-detect: 4.0.8 - '@sinonjs/fake-timers@10.0.2': - dependencies: - '@sinonjs/commons': 2.0.0 - '@solana/buffer-layout@4.0.1': - dependencies: - buffer: 6.0.3 - '@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.23.5 - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@solana/buffer-layout': 4.0.1 - agentkeepalive: 4.5.0 - bigint-buffer: 1.1.5 - bn.js: 5.2.1 - borsh: 0.7.0 - bs58: 4.0.1 - buffer: 6.0.3 - fast-stable-stringify: 1.0.0 - jayson: 4.1.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - node-fetch: 2.7.0 - rpc-websockets: 7.8.0 - superstruct: 0.14.2 - transitivePeerDependencies: - - bufferutil - - encoding - - utf-8-validate - '@stryker-mutator/api@6.4.1': - dependencies: - mutation-testing-metrics: 1.7.14 - mutation-testing-report-schema: 1.7.14 - tslib: 2.5.0 - '@stryker-mutator/core@6.4.1': - dependencies: - '@stryker-mutator/api': 6.4.1 - '@stryker-mutator/instrumenter': 6.4.1 - '@stryker-mutator/util': 6.4.1 - ajv: 8.12.0 - chalk: 5.2.0 - commander: 10.0.0 - diff-match-patch: 1.0.5 - emoji-regex: 10.2.1 - execa: 7.0.0 - file-url: 4.0.0 - get-port: 6.1.2 - glob: 8.1.0 - inquirer: 9.1.5 - lodash.flatmap: 4.5.0 - lodash.groupby: 4.6.0 - log4js: 6.7.1 - minimatch: 5.1.6 - mkdirp: 2.1.5 - mutation-testing-elements: 1.7.14 - mutation-testing-metrics: 1.7.14 - mutation-testing-report-schema: 1.7.14 - npm-run-path: 5.1.0 - progress: 2.0.3 - rimraf: 3.0.2 - rxjs: 7.8.0 - semver: 7.5.4 - source-map: 0.7.4 - tree-kill: 1.2.2 - tslib: 2.5.0 - typed-inject: 3.0.1 - typed-rest-client: 1.8.9 - transitivePeerDependencies: - - supports-color - '@stryker-mutator/instrumenter@6.4.1': - dependencies: - '@babel/core': 7.20.12 - '@babel/generator': 7.20.14 - '@babel/parser': 7.20.15 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-proposal-decorators': 7.20.13(@babel/core@7.20.12) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.12) - '@babel/preset-typescript': 7.18.6(@babel/core@7.20.12) - '@stryker-mutator/api': 6.4.1 - '@stryker-mutator/util': 6.4.1 - angular-html-parser: 4.0.1 - weapon-regex: 1.0.3 - transitivePeerDependencies: - - supports-color - '@stryker-mutator/jest-runner@6.4.1(@stryker-mutator/core@6.4.1)': - dependencies: - '@stryker-mutator/api': 6.4.1 - '@stryker-mutator/core': 6.4.1 - '@stryker-mutator/util': 6.4.1 - semver: 7.3.8 - tslib: 2.5.0 - '@stryker-mutator/typescript-checker@6.4.1(@stryker-mutator/core@6.4.1)(typescript@4.9.5)': - dependencies: - '@stryker-mutator/api': 6.4.1 - '@stryker-mutator/core': 6.4.1 - '@stryker-mutator/util': 6.4.1 - semver: 7.3.8 - typescript: 4.9.5 - '@stryker-mutator/util@6.4.1': - dependencies: - lodash.flatmap: 4.5.0 - '@swc/helpers@0.4.14': - dependencies: - tslib: 2.5.0 - '@tronweb3/google-protobuf@3.21.2': {} - '@tsconfig/node10@1.0.9': {} - '@tsconfig/node12@1.0.11': {} - '@tsconfig/node14@1.0.3': {} - '@tsconfig/node16@1.0.3': {} - '@types/babel__core@7.20.0': - dependencies: - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 - '@types/babel__generator': 7.6.4 - '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.18.3 - '@types/babel__generator@7.6.4': - dependencies: - '@babel/types': 7.23.5 - '@types/babel__template@7.4.1': - dependencies: - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 - '@types/babel__traverse@7.18.3': - dependencies: - '@babel/types': 7.23.5 - '@types/connect@3.4.38': - dependencies: - '@types/node': 18.11.18 - '@types/events@3.0.0': {} - '@types/graceful-fs@4.1.6': - dependencies: - '@types/node': 18.11.18 - '@types/is-ci@3.0.0': - dependencies: - ci-info: 3.7.1 - '@types/istanbul-lib-coverage@2.0.4': {} - '@types/istanbul-lib-report@3.0.0': - dependencies: - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports@3.0.1': - dependencies: - '@types/istanbul-lib-report': 3.0.0 - '@types/jest@29.4.0': - dependencies: - expect: 29.4.1 - pretty-format: 29.4.1 - '@types/json-schema@7.0.11': {} - '@types/json5@0.0.29': {} - '@types/long@4.0.2': {} - '@types/minimist@1.2.2': {} - '@types/node@12.20.55': {} - '@types/node@18.11.18': {} - '@types/node@18.15.13': {} - '@types/normalize-package-data@2.4.1': {} - '@types/object-hash@1.3.4': {} - '@types/prettier@2.7.2': {} - '@types/prop-types@15.7.5': {} - '@types/react-dom@18.0.10': - dependencies: - '@types/react': 18.0.27 - '@types/react@18.0.27': - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.2 - csstype: 3.1.1 - '@types/scheduler@0.16.2': {} - '@types/semver@6.2.3': {} - '@types/semver@7.5.0': {} - '@types/serialport@8.0.1': - dependencies: - '@types/node': 18.11.18 - '@types/stack-utils@2.0.1': {} - '@types/triple-beam@1.3.5': {} - '@types/uuid@9.0.0': {} - '@types/w3c-web-usb@1.0.6': {} - '@types/ws@7.4.7': - dependencies: - '@types/node': 18.11.18 - '@types/yargs-parser@21.0.0': {} - '@types/yargs@17.0.22': - dependencies: - '@types/yargs-parser': 21.0.0 - '@typescript-eslint/eslint-plugin@5.49.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0)(typescript@4.9.5)': - dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5) - '@typescript-eslint/scope-manager': 5.49.0 - '@typescript-eslint/type-utils': 5.49.0(eslint@7.32.0)(typescript@4.9.5) - '@typescript-eslint/utils': 5.49.0(eslint@7.32.0)(typescript@4.9.5) - debug: 4.3.4 - eslint: 7.32.0 - ignore: 5.2.4 - natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.5.2 - tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/parser@5.49.0(eslint@7.32.0)(typescript@4.9.5)': - dependencies: - '@typescript-eslint/scope-manager': 5.49.0 - '@typescript-eslint/types': 5.49.0 - '@typescript-eslint/typescript-estree': 5.49.0(typescript@4.9.5) - debug: 4.3.4 - eslint: 7.32.0 - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5)': - dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) - debug: 4.3.4 - eslint: 7.32.0 - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/scope-manager@5.49.0': - dependencies: - '@typescript-eslint/types': 5.49.0 - '@typescript-eslint/visitor-keys': 5.49.0 - '@typescript-eslint/scope-manager@5.62.0': - dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - '@typescript-eslint/type-utils@5.49.0(eslint@7.32.0)(typescript@4.9.5)': - dependencies: - '@typescript-eslint/typescript-estree': 5.49.0(typescript@4.9.5) - '@typescript-eslint/utils': 5.49.0(eslint@7.32.0)(typescript@4.9.5) - debug: 4.3.4 - eslint: 7.32.0 - tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/types@5.49.0': {} - '@typescript-eslint/types@5.62.0': {} - '@typescript-eslint/typescript-estree@5.49.0(typescript@4.9.5)': - dependencies: - '@typescript-eslint/types': 5.49.0 - '@typescript-eslint/visitor-keys': 5.49.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': - dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.5) - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/utils@5.49.0(eslint@7.32.0)(typescript@4.9.5)': - dependencies: - '@types/json-schema': 7.0.11 - '@types/semver': 7.5.0 - '@typescript-eslint/scope-manager': 5.49.0 - '@typescript-eslint/types': 5.49.0 - '@typescript-eslint/typescript-estree': 5.49.0(typescript@4.9.5) - eslint: 7.32.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@7.32.0) - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - - typescript - '@typescript-eslint/visitor-keys@5.49.0': - dependencies: - '@typescript-eslint/types': 5.49.0 - eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@5.62.0': - dependencies: - '@typescript-eslint/types': 5.62.0 - eslint-visitor-keys: 3.4.3 - JSONStream@1.3.5: - dependencies: - jsonparse: 1.3.1 - through: 2.3.8 - acorn-jsx@5.3.2(acorn@7.4.1): - dependencies: - acorn: 7.4.1 - acorn-node@1.8.2: - dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 - xtend: 4.0.2 - acorn-walk@7.2.0: {} - acorn-walk@8.2.0: {} - acorn@7.4.1: {} - acorn@8.8.2: {} - aes-js@4.0.0-beta.5: {} - agentkeepalive@4.5.0: - dependencies: - humanize-ms: 1.2.1 - aggregate-error@3.1.0: - dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 - ajv-formats@2.1.1(ajv@8.12.0): - optionalDependencies: - ajv: 8.12.0 - ajv@6.12.6: - dependencies: - fast-deep-equal: 3.1.3 - fast-json-stable-stringify: 2.1.0 - json-schema-traverse: 0.4.1 - uri-js: 4.4.1 - ajv@8.12.0: - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - angular-html-parser@4.0.1: - dependencies: - tslib: 2.5.0 - ansi-colors@4.1.3: {} - ansi-escapes@4.3.2: - dependencies: - type-fest: 0.21.3 - ansi-escapes@6.1.0: - dependencies: - type-fest: 3.6.1 - ansi-regex@5.0.1: {} - ansi-regex@6.0.1: {} - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 - ansi-styles@4.3.0: - dependencies: - color-convert: 2.0.1 - ansi-styles@5.2.0: {} - ansi-styles@6.2.1: {} - anymatch@3.1.3: - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 - arg@4.1.3: {} - argparse@1.0.10: - dependencies: - sprintf-js: 1.0.3 - argparse@2.0.1: {} - aria-query@5.1.3: - dependencies: - deep-equal: 2.2.0 - array-buffer-byte-length@1.0.0: - dependencies: - call-bind: 1.0.5 - is-array-buffer: 3.0.2 - array-ify@1.0.0: {} - array-includes@3.1.6: - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.1 - get-intrinsic: 1.2.0 - is-string: 1.0.7 - array-includes@3.1.7: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - is-string: 1.0.7 - array-union@2.1.0: {} - array.prototype.findlastindex@1.2.3: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - es-shim-unscopables: 1.0.2 - get-intrinsic: 1.2.2 - array.prototype.flat@1.3.1: - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.1 - es-shim-unscopables: 1.0.0 - array.prototype.flat@1.3.2: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - es-shim-unscopables: 1.0.2 - array.prototype.flatmap@1.3.1: - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.1 - es-shim-unscopables: 1.0.0 - array.prototype.flatmap@1.3.2: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - es-shim-unscopables: 1.0.2 - array.prototype.tosorted@1.1.1: - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.1 - es-shim-unscopables: 1.0.0 - get-intrinsic: 1.2.0 - arraybuffer.prototype.slice@1.0.2: - dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - is-array-buffer: 3.0.2 - is-shared-array-buffer: 1.0.2 - arrify@1.0.1: {} - asn1.js@5.4.1: - dependencies: - bn.js: 4.12.0 - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - safer-buffer: 2.1.2 - assert@1.5.0: - dependencies: - object-assign: 4.1.1 - util: 0.10.3 - ast-types-flow@0.0.7: {} - astral-regex@2.0.0: {} - async@3.2.5: {} - asynckit@0.4.0: {} - available-typed-arrays@1.0.5: {} - axe-core@4.6.3: {} - axios@1.3.4: - dependencies: - follow-redirects: 1.15.2 - form-data: 4.0.0 - proxy-from-env: 1.1.0 - transitivePeerDependencies: - - debug - axios@1.7.0: - dependencies: - follow-redirects: 1.15.6 - form-data: 4.0.0 - proxy-from-env: 1.1.0 - transitivePeerDependencies: - - debug - axobject-query@3.1.1: - dependencies: - deep-equal: 2.2.0 - babel-jest@29.4.1(@babel/core@7.23.5): - dependencies: - '@babel/core': 7.23.5 - '@jest/transform': 29.4.1 - '@types/babel__core': 7.20.0 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.4.0(@babel/core@7.23.5) - chalk: 4.1.2 - graceful-fs: 4.2.10 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - babel-plugin-istanbul@6.1.1: - dependencies: - '@babel/helper-plugin-utils': 7.20.2 - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-instrument: 5.2.1 - test-exclude: 6.0.0 - transitivePeerDependencies: - - supports-color - babel-plugin-jest-hoist@29.4.0: - dependencies: - '@babel/template': 7.22.15 - '@babel/types': 7.23.5 - '@types/babel__core': 7.20.0 - '@types/babel__traverse': 7.18.3 - babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.12): - dependencies: - '@babel/core': 7.20.12 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.12) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.12) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.20.12) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.12) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.12) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.12) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.12) - babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.5): - dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5) - babel-preset-jest@29.4.0(@babel/core@7.23.5): - dependencies: - '@babel/core': 7.23.5 - babel-plugin-jest-hoist: 29.4.0 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5) - balanced-match@1.0.2: {} - base-x@3.0.9: - dependencies: - safe-buffer: 5.2.1 - base-x@4.0.0: {} - base64-js@1.5.1: {} - bech32@2.0.0: {} - better-path-resolve@1.0.0: - dependencies: - is-windows: 1.0.2 - bigint-buffer@1.1.5: - dependencies: - bindings: 1.5.0 - bignumber.js@9.1.2: {} - bindings@1.5.0: - dependencies: - file-uri-to-path: 1.0.0 - bip174@2.1.0: {} - bip66@1.1.5: - dependencies: - safe-buffer: 5.2.1 - bitcoinjs-lib@6.1.3: - dependencies: - '@noble/hashes': 1.3.1 - bech32: 2.0.0 - bip174: 2.1.0 - bs58check: 3.0.1 - typeforce: 1.18.0 - varuint-bitcoin: 1.1.2 - bl@4.1.0: - dependencies: - buffer: 5.7.1 - inherits: 2.0.4 - readable-stream: 3.6.0 - bl@5.1.0: - dependencies: - buffer: 6.0.3 - inherits: 2.0.4 - readable-stream: 3.6.0 - bn.js@4.12.0: {} - bn.js@5.2.1: {} - borsh@0.7.0: - dependencies: - bn.js: 5.2.1 - bs58: 4.0.1 - text-encoding-utf-8: 1.0.2 - brace-expansion@1.1.11: - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - brace-expansion@2.0.1: - dependencies: - balanced-match: 1.0.2 - braces@3.0.2: - dependencies: - fill-range: 7.0.1 - breakword@1.0.5: - dependencies: - wcwidth: 1.0.1 - brorand@1.1.0: {} - browser-pack@6.1.0: - dependencies: - JSONStream: 1.3.5 - combine-source-map: 0.8.0 - defined: 1.0.1 - safe-buffer: 5.2.1 - through2: 2.0.5 - umd: 3.0.3 - browser-resolve@2.0.0: - dependencies: - resolve: 1.22.1 - browserify-aes@1.2.0: - dependencies: - buffer-xor: 1.0.3 - cipher-base: 1.0.4 - create-hash: 1.2.0 - evp_bytestokey: 1.0.3 - inherits: 2.0.4 - safe-buffer: 5.2.1 - browserify-cipher@1.0.1: - dependencies: - browserify-aes: 1.2.0 - browserify-des: 1.0.2 - evp_bytestokey: 1.0.3 - browserify-des@1.0.2: - dependencies: - cipher-base: 1.0.4 - des.js: 1.1.0 - inherits: 2.0.4 - safe-buffer: 5.2.1 - browserify-rsa@4.1.0: - dependencies: - bn.js: 5.2.1 - randombytes: 2.1.0 - browserify-sign@4.2.1: - dependencies: - bn.js: 5.2.1 - browserify-rsa: 4.1.0 - create-hash: 1.2.0 - create-hmac: 1.1.7 - elliptic: 6.5.4 - inherits: 2.0.4 - parse-asn1: 5.1.6 - readable-stream: 3.6.0 - safe-buffer: 5.2.1 - browserify-zlib@0.2.0: - dependencies: - pako: 1.0.11 - browserify@17.0.0: - dependencies: - JSONStream: 1.3.5 - assert: 1.5.0 - browser-pack: 6.1.0 - browser-resolve: 2.0.0 - browserify-zlib: 0.2.0 - buffer: 5.2.1 - cached-path-relative: 1.1.0 - concat-stream: 1.6.2 - console-browserify: 1.2.0 - constants-browserify: 1.0.0 - crypto-browserify: 3.12.0 - defined: 1.0.1 - deps-sort: 2.0.1 - domain-browser: 1.2.0 - duplexer2: 0.1.4 - events: 3.3.0 - glob: 7.2.3 - has: 1.0.3 - htmlescape: 1.1.1 - https-browserify: 1.0.0 - inherits: 2.0.4 - insert-module-globals: 7.2.1 - labeled-stream-splicer: 2.0.2 - mkdirp-classic: 0.5.3 - module-deps: 6.2.3 - os-browserify: 0.3.0 - parents: 1.0.1 - path-browserify: 1.0.1 - process: 0.11.10 - punycode: 1.4.1 - querystring-es3: 0.2.1 - read-only-stream: 2.0.0 - readable-stream: 2.3.8 - resolve: 1.22.1 - shasum-object: 1.0.0 - shell-quote: 1.8.1 - stream-browserify: 3.0.0 - stream-http: 3.2.0 - string_decoder: 1.3.0 - subarg: 1.0.0 - syntax-error: 1.4.0 - through2: 2.0.5 - timers-browserify: 1.4.2 - tty-browserify: 0.0.1 - url: 0.11.1 - util: 0.12.5 - vm-browserify: 1.1.2 - xtend: 4.0.2 - browserslist@4.22.1: - dependencies: - caniuse-lite: 1.0.30001565 - electron-to-chromium: 1.4.597 - node-releases: 2.0.13 - update-browserslist-db: 1.0.13(browserslist@4.22.1) - bs-logger@0.2.6: - dependencies: - fast-json-stable-stringify: 2.1.0 - bs58@4.0.1: - dependencies: - base-x: 3.0.9 - bs58@5.0.0: - dependencies: - base-x: 4.0.0 - bs58check@3.0.1: - dependencies: - '@noble/hashes': 1.3.3 - bs58: 5.0.0 - bser@2.1.1: - dependencies: - node-int64: 0.4.0 - buffer-from@1.1.2: {} - buffer-xor@1.0.3: {} - buffer@5.2.1: - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - buffer@5.7.1: - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - buffer@6.0.3: - dependencies: - base64-js: 1.5.1 - ieee754: 1.2.1 - bufferutil@4.0.8: - dependencies: - node-gyp-build: 4.6.1 - optional: true - builtin-status-codes@3.0.0: {} - cached-path-relative@1.1.0: {} - call-bind@1.0.2: - dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.0 - call-bind@1.0.5: - dependencies: - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.2.0 - callsites@3.1.0: {} - camelcase-keys@6.2.2: - dependencies: - camelcase: 5.3.1 - map-obj: 4.3.0 - quick-lru: 4.0.1 - camelcase@5.3.1: {} - camelcase@6.3.0: {} - caniuse-lite@1.0.30001450: {} - caniuse-lite@1.0.30001565: {} - capability@0.2.5: {} - case-anything@2.1.10: {} - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - chalk@5.2.0: {} - char-regex@1.0.2: {} - chardet@0.7.0: {} - chownr@1.1.4: {} - ci-info@3.7.1: {} - cipher-base@1.0.4: - dependencies: - inherits: 2.0.4 - safe-buffer: 5.2.1 - cjs-module-lexer@1.2.2: {} - clean-stack@2.2.0: {} - cli-cursor@3.1.0: - dependencies: - restore-cursor: 3.1.0 - cli-cursor@4.0.0: - dependencies: - restore-cursor: 4.0.0 - cli-spinners@2.7.0: {} - cli-truncate@2.1.0: - dependencies: - slice-ansi: 3.0.0 - string-width: 4.2.3 - cli-truncate@3.1.0: - dependencies: - slice-ansi: 5.0.0 - string-width: 5.1.2 - cli-width@4.0.0: {} - client-only@0.0.1: {} - cliui@6.0.0: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 6.2.0 - cliui@8.0.1: - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 - clone@1.0.4: {} - co@4.6.0: {} - collect-v8-coverage@1.0.1: {} - color-convert@1.9.3: - dependencies: - color-name: 1.1.3 - color-convert@2.0.1: - dependencies: - color-name: 1.1.4 - color-name@1.1.3: {} - color-name@1.1.4: {} - color-string@1.9.1: - dependencies: - color-name: 1.1.4 - simple-swizzle: 0.2.2 - color@3.2.1: - dependencies: - color-convert: 1.9.3 - color-string: 1.9.1 - colorette@2.0.19: {} - colorspace@1.1.4: - dependencies: - color: 3.2.1 - text-hex: 1.0.0 - combine-source-map@0.8.0: - dependencies: - convert-source-map: 1.1.3 - inline-source-map: 0.6.2 - lodash.memoize: 3.0.4 - source-map: 0.5.7 - combined-stream@1.0.8: - dependencies: - delayed-stream: 1.0.0 - commander@10.0.0: {} - commander@2.20.3: {} - compare-func@2.0.0: - dependencies: - array-ify: 1.0.0 - dot-prop: 5.3.0 - compare-versions@6.0.0-rc.1: {} - concat-map@0.0.1: {} - concat-stream@1.6.2: - dependencies: - buffer-from: 1.1.2 - inherits: 2.0.4 - readable-stream: 2.3.8 - typedarray: 0.0.6 - confusing-browser-globals@1.0.11: {} - console-browserify@1.2.0: {} - constants-browserify@1.0.0: {} - conventional-changelog-angular@5.0.13: - dependencies: - compare-func: 2.0.0 - q: 1.5.1 - conventional-changelog-conventionalcommits@5.0.0: - dependencies: - compare-func: 2.0.0 - lodash: 4.17.21 - q: 1.5.1 - conventional-commits-parser@3.2.4: - dependencies: - JSONStream: 1.3.5 - is-text-path: 1.0.1 - lodash: 4.17.21 - meow: 8.1.2 - split2: 3.2.2 - through2: 4.0.2 - convert-source-map@1.1.3: {} - convert-source-map@1.9.0: {} - convert-source-map@2.0.0: {} - core-util-is@1.0.3: {} - cosmiconfig-typescript-loader@4.3.0(@types/node@18.11.18)(cosmiconfig@8.1.0)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5))(typescript@4.9.5): - dependencies: - '@types/node': 18.11.18 - cosmiconfig: 8.1.0 - ts-node: 10.9.1(@types/node@18.11.18)(typescript@4.9.5) - typescript: 4.9.5 - cosmiconfig@8.1.0: - dependencies: - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - path-type: 4.0.0 - create-ecdh@4.0.4: - dependencies: - bn.js: 4.12.0 - elliptic: 6.5.4 - create-hash@1.2.0: - dependencies: - cipher-base: 1.0.4 - inherits: 2.0.4 - md5.js: 1.3.5 - ripemd160: 2.0.2 - sha.js: 2.4.11 - create-hmac@1.1.7: - dependencies: - cipher-base: 1.0.4 - create-hash: 1.2.0 - inherits: 2.0.4 - ripemd160: 2.0.2 - safe-buffer: 5.2.1 - sha.js: 2.4.11 - create-require@1.1.1: {} - cross-env@7.0.3: - dependencies: - cross-spawn: 7.0.3 - cross-spawn@5.1.0: - dependencies: - lru-cache: 4.1.5 - shebang-command: 1.2.0 - which: 1.3.1 - cross-spawn@7.0.3: - dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 - crypto-browserify@3.12.0: - dependencies: - browserify-cipher: 1.0.1 - browserify-sign: 4.2.1 - create-ecdh: 4.0.4 - create-hash: 1.2.0 - create-hmac: 1.1.7 - diffie-hellman: 5.0.3 - inherits: 2.0.4 - pbkdf2: 3.1.2 - public-encrypt: 4.0.3 - randombytes: 2.1.0 - randomfill: 1.0.4 - crypto-js@4.1.1: {} - csstype@3.1.1: {} - csv-generate@3.4.3: {} - csv-parse@4.16.3: {} - csv-stringify@5.6.5: {} - csv@5.5.3: - dependencies: - csv-generate: 3.4.3 - csv-parse: 4.16.3 - csv-stringify: 5.6.5 - stream-transform: 2.1.3 - damerau-levenshtein@1.0.8: {} - dargs@7.0.0: {} - dash-ast@1.0.0: {} - dataloader@1.4.0: {} - date-format@4.0.14: {} - debug@3.2.7: - dependencies: - ms: 2.1.3 - debug@4.3.4: - dependencies: - ms: 2.1.2 - decamelize-keys@1.1.1: - dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - decamelize@1.2.0: {} - decompress-response@6.0.0: - dependencies: - mimic-response: 3.1.0 - dedent@0.7.0: {} - deep-equal@2.2.0: - dependencies: - call-bind: 1.0.5 - es-get-iterator: 1.1.3 - get-intrinsic: 1.2.2 - is-arguments: 1.1.1 - is-array-buffer: 3.0.1 - is-date-object: 1.0.5 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - isarray: 2.0.5 - object-is: 1.1.5 - object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.4.3 - side-channel: 1.0.4 - which-boxed-primitive: 1.0.2 - which-collection: 1.0.1 - which-typed-array: 1.1.9 - deep-extend@0.6.0: {} - deep-is@0.1.4: {} - deepmerge@4.3.0: {} - defaults@1.0.4: - dependencies: - clone: 1.0.4 - define-data-property@1.1.1: - dependencies: - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - define-lazy-prop@2.0.0: {} - define-properties@1.1.4: - dependencies: - has-property-descriptors: 1.0.0 - object-keys: 1.1.1 - define-properties@1.2.1: - dependencies: - define-data-property: 1.1.1 - has-property-descriptors: 1.0.1 - object-keys: 1.1.1 - defined@1.0.1: {} - delay@5.0.0: {} - delayed-stream@1.0.0: {} - depd@1.1.2: {} - depd@2.0.0: {} - deps-sort@2.0.1: - dependencies: - JSONStream: 1.3.5 - shasum-object: 1.0.0 - subarg: 1.0.0 - through2: 2.0.5 - des.js@1.1.0: - dependencies: - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - detect-indent@6.1.0: {} - detect-libc@1.0.3: {} - detect-libc@2.0.1: {} - detect-newline@3.1.0: {} - detective@5.2.1: - dependencies: - acorn-node: 1.8.2 - defined: 1.0.1 - minimist: 1.2.8 - diff-match-patch@1.0.5: {} - diff-sequences@29.3.1: {} - diff@4.0.2: {} - diffie-hellman@5.0.3: - dependencies: - bn.js: 4.12.0 - miller-rabin: 4.0.1 - randombytes: 2.1.0 - dir-glob@3.0.1: - dependencies: - path-type: 4.0.0 - doctrine@2.1.0: - dependencies: - esutils: 2.0.3 - doctrine@3.0.0: - dependencies: - esutils: 2.0.3 - domain-browser@1.2.0: {} - dot-prop@5.3.0: - dependencies: - is-obj: 2.0.0 - dotenv@8.6.0: {} - dprint-node@1.0.7: - dependencies: - detect-libc: 1.0.3 - duplexer2@0.1.4: - dependencies: - readable-stream: 2.3.8 - eastasianwidth@0.2.0: {} - eip-712@1.0.0: - dependencies: - '@findeth/abi': 0.3.1 - '@noble/hashes': 1.3.1 - superstruct: 0.15.5 - electron-to-chromium@1.4.597: {} - elliptic@6.5.4: - dependencies: - bn.js: 4.12.0 - brorand: 1.1.0 - hash.js: 1.1.7 - hmac-drbg: 1.0.1 - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - minimalistic-crypto-utils: 1.0.1 - emittery@0.13.1: {} - emoji-regex@10.2.1: {} - emoji-regex@8.0.0: {} - emoji-regex@9.2.2: {} - enabled@2.0.0: {} - end-of-stream@1.4.4: - dependencies: - once: 1.4.0 - enhanced-resolve@5.12.0: - dependencies: - graceful-fs: 4.2.10 - tapable: 2.2.1 - enquirer@2.3.6: - dependencies: - ansi-colors: 4.1.3 - error-ex@1.3.2: - dependencies: - is-arrayish: 0.2.1 - error-polyfill@0.1.3: - dependencies: - capability: 0.2.5 - o3: 1.0.3 - u3: 0.1.1 - es-abstract@1.21.1: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 - es-to-primitive: 1.2.1 - function-bind: 1.1.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.0 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 - has-proto: 1.0.1 - has-symbols: 1.0.3 - internal-slot: 1.0.4 - is-array-buffer: 3.0.1 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.10 - is-weakref: 1.0.2 - object-inspect: 1.13.1 - object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.4.3 - safe-regex-test: 1.0.0 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.9 - es-abstract@1.22.3: - dependencies: - array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.2 - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - es-set-tostringtag: 2.0.2 - es-to-primitive: 1.2.1 - function.prototype.name: 1.1.6 - get-intrinsic: 1.2.2 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - internal-slot: 1.0.6 - is-array-buffer: 3.0.2 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.12 - is-weakref: 1.0.2 - object-inspect: 1.13.1 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.1 - safe-array-concat: 1.1.0 - safe-regex-test: 1.0.2 - string.prototype.trim: 1.2.8 - string.prototype.trimend: 1.0.7 - string.prototype.trimstart: 1.0.7 - typed-array-buffer: 1.0.0 - typed-array-byte-length: 1.0.0 - typed-array-byte-offset: 1.0.0 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 - es-get-iterator@1.1.3: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - has-symbols: 1.0.3 - is-arguments: 1.1.1 - is-map: 2.0.2 - is-set: 2.0.2 - is-string: 1.0.7 - isarray: 2.0.5 - stop-iteration-iterator: 1.0.0 - es-set-tostringtag@2.0.1: - dependencies: - get-intrinsic: 1.2.2 - has: 1.0.3 - has-tostringtag: 1.0.0 - es-set-tostringtag@2.0.2: - dependencies: - get-intrinsic: 1.2.2 - has-tostringtag: 1.0.0 - hasown: 2.0.0 - es-shim-unscopables@1.0.0: - dependencies: - has: 1.0.3 - es-shim-unscopables@1.0.2: - dependencies: - hasown: 2.0.0 - es-to-primitive@1.2.1: - dependencies: - is-callable: 1.2.7 - is-date-object: 1.0.5 - is-symbol: 1.0.4 - es6-promise@4.2.8: {} - es6-promisify@5.0.0: - dependencies: - es6-promise: 4.2.8 - escalade@3.1.1: {} - escape-string-regexp@1.0.5: {} - escape-string-regexp@2.0.0: {} - escape-string-regexp@4.0.0: {} - escape-string-regexp@5.0.0: {} - eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0))(eslint@7.32.0): - dependencies: - confusing-browser-globals: 1.0.11 - eslint: 7.32.0 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0) - object.assign: 4.1.4 - object.entries: 1.1.6 - semver: 6.3.0 - eslint-config-next@13.1.6(eslint@7.32.0)(typescript@4.9.5): - dependencies: - '@next/eslint-plugin-next': 13.1.6 - '@rushstack/eslint-patch': 1.2.0 - '@typescript-eslint/parser': 5.49.0(eslint@7.32.0)(typescript@4.9.5) - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5(eslint@7.32.0))(eslint@7.32.0) - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.49.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5(eslint@7.32.0))(eslint@7.32.0))(eslint@7.32.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@7.32.0) - eslint-plugin-react: 7.32.2(eslint@7.32.0) - eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0) - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - eslint-import-resolver-webpack - - supports-color - eslint-config-prettier@8.6.0(eslint@7.32.0): - dependencies: - eslint: 7.32.0 - eslint-import-resolver-node@0.3.7: - dependencies: - debug: 3.2.7 - is-core-module: 2.11.0 - resolve: 1.22.1 - transitivePeerDependencies: - - supports-color - eslint-import-resolver-node@0.3.9: - dependencies: - debug: 3.2.7 - is-core-module: 2.13.1 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5(eslint@7.32.0))(eslint@7.32.0): - dependencies: - debug: 4.3.4 - enhanced-resolve: 5.12.0 - eslint: 7.32.0 - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.49.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5(eslint@7.32.0))(eslint@7.32.0))(eslint@7.32.0) - get-tsconfig: 4.3.0 - globby: 13.1.3 - is-core-module: 2.11.0 - is-glob: 4.0.3 - synckit: 0.8.5 - transitivePeerDependencies: - - supports-color - eslint-module-utils@2.7.4(@typescript-eslint/parser@5.49.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5(eslint@7.32.0))(eslint@7.32.0))(eslint@7.32.0): - dependencies: - debug: 3.2.7 - optionalDependencies: - '@typescript-eslint/parser': 5.49.0(eslint@7.32.0)(typescript@4.9.5) - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.5.3(eslint-plugin-import@2.27.5(eslint@7.32.0))(eslint@7.32.0) - transitivePeerDependencies: - - supports-color - eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0): - dependencies: - debug: 3.2.7 - optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5) - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.9 - transitivePeerDependencies: - - supports-color - eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.49.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5(eslint@7.32.0))(eslint@7.32.0))(eslint@7.32.0): - dependencies: - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - array.prototype.flatmap: 1.3.1 - debug: 3.2.7 - doctrine: 2.1.0 - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.49.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5(eslint@7.32.0))(eslint@7.32.0))(eslint@7.32.0) - has: 1.0.3 - is-core-module: 2.11.0 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.values: 1.1.6 - resolve: 1.22.1 - semver: 6.3.1 - tsconfig-paths: 3.14.1 - optionalDependencies: - '@typescript-eslint/parser': 5.49.0(eslint@7.32.0)(typescript@4.9.5) - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint@7.32.0): - dependencies: - array-includes: 3.1.7 - array.prototype.findlastindex: 1.2.3 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 - debug: 3.2.7 - doctrine: 2.1.0 - eslint: 7.32.0 - eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0(eslint@7.32.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.9)(eslint@7.32.0) - hasown: 2.0.0 - is-core-module: 2.13.1 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.fromentries: 2.0.7 - object.groupby: 1.0.1 - object.values: 1.1.7 - semver: 6.3.1 - tsconfig-paths: 3.15.0 - optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@4.9.5) - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - eslint-plugin-jsx-a11y@6.7.1(eslint@7.32.0): - dependencies: - '@babel/runtime': 7.20.13 - aria-query: 5.1.3 - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - ast-types-flow: 0.0.7 - axe-core: 4.6.3 - axobject-query: 3.1.1 - damerau-levenshtein: 1.0.8 - emoji-regex: 9.2.2 - eslint: 7.32.0 - has: 1.0.3 - jsx-ast-utils: 3.3.3 - language-tags: 1.0.5 - minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - semver: 6.3.1 - eslint-plugin-react-hooks@4.6.0(eslint@7.32.0): - dependencies: - eslint: 7.32.0 - eslint-plugin-react@7.32.2(eslint@7.32.0): - dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 - doctrine: 2.1.0 - eslint: 7.32.0 - estraverse: 5.3.0 - jsx-ast-utils: 3.3.3 - minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 - prop-types: 15.8.1 - resolve: 2.0.0-next.4 - semver: 6.3.1 - string.prototype.matchall: 4.0.8 - eslint-scope@5.1.1: - dependencies: - esrecurse: 4.3.0 - estraverse: 4.3.0 - eslint-utils@2.1.0: - dependencies: - eslint-visitor-keys: 1.3.0 - eslint-utils@3.0.0(eslint@7.32.0): - dependencies: - eslint: 7.32.0 - eslint-visitor-keys: 2.1.0 - eslint-visitor-keys@1.3.0: {} - eslint-visitor-keys@2.1.0: {} - eslint-visitor-keys@3.4.3: {} - eslint@7.32.0: - dependencies: - '@babel/code-frame': 7.12.11 - '@eslint/eslintrc': 0.4.3 - '@humanwhocodes/config-array': 0.5.0 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4 - doctrine: 3.0.0 - enquirer: 2.3.6 - escape-string-regexp: 4.0.0 - eslint-scope: 5.1.1 - eslint-utils: 2.1.0 - eslint-visitor-keys: 2.1.0 - espree: 7.3.1 - esquery: 1.4.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 - functional-red-black-tree: 1.0.1 - glob-parent: 5.1.2 - globals: 13.19.0 - ignore: 4.0.6 - import-fresh: 3.3.0 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - js-yaml: 3.14.1 - json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 - natural-compare: 1.4.0 - optionator: 0.9.1 - progress: 2.0.3 - regexpp: 3.2.0 - semver: 7.5.4 - strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 - table: 6.8.1 - text-table: 0.2.0 - v8-compile-cache: 2.3.0 - transitivePeerDependencies: - - supports-color - espree@7.3.1: - dependencies: - acorn: 7.4.1 - acorn-jsx: 5.3.2(acorn@7.4.1) - eslint-visitor-keys: 1.3.0 - esprima@4.0.1: {} - esquery@1.4.0: - dependencies: - estraverse: 5.3.0 - esrecurse@4.3.0: - dependencies: - estraverse: 5.3.0 - estraverse@4.3.0: {} - estraverse@5.3.0: {} - esutils@2.0.3: {} - ethereum-cryptography@2.1.3: - dependencies: - '@noble/curves': 1.3.0 - '@noble/hashes': 1.3.3 - '@scure/bip32': 1.3.3 - '@scure/bip39': 1.2.2 - ethers@6.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): - dependencies: - '@adraffy/ens-normalize': 1.9.2 - '@noble/hashes': 1.1.2 - '@noble/secp256k1': 1.7.1 - '@types/node': 18.15.13 - aes-js: 4.0.0-beta.5 - tslib: 2.4.0 - ws: 8.5.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - eventemitter3@3.1.2: {} - eventemitter3@4.0.7: {} - events@3.3.0: {} - evp_bytestokey@1.0.3: - dependencies: - md5.js: 1.3.5 - safe-buffer: 5.2.1 - execa@5.1.1: - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - execa@7.0.0: - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 4.3.0 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 3.0.7 - strip-final-newline: 3.0.0 - execa@7.1.1: - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 4.3.0 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 3.0.7 - strip-final-newline: 3.0.0 - exit@0.1.2: {} - expand-template@2.0.3: {} - expect@29.4.1: - dependencies: - '@jest/expect-utils': 29.4.1 - jest-get-type: 29.2.0 - jest-matcher-utils: 29.4.1 - jest-message-util: 29.4.1 - jest-util: 29.4.1 - extendable-error@0.1.7: {} - external-editor@3.1.0: - dependencies: - chardet: 0.7.0 - iconv-lite: 0.4.24 - tmp: 0.0.33 - eyes@0.1.8: {} - fast-deep-equal@3.1.3: {} - fast-glob@3.2.12: - dependencies: - '@nodelib/fs.stat': 2.0.5 - '@nodelib/fs.walk': 1.2.8 - glob-parent: 5.1.2 - merge2: 1.4.1 - micromatch: 4.0.5 - fast-json-stable-stringify@2.1.0: {} - fast-levenshtein@2.0.6: {} - fast-safe-stringify@2.1.1: {} - fast-stable-stringify@1.0.0: {} - fastq@1.15.0: - dependencies: - reusify: 1.0.4 - fb-watchman@2.0.2: - dependencies: - bser: 2.1.1 - fecha@4.2.3: {} - figures@5.0.0: - dependencies: - escape-string-regexp: 5.0.0 - is-unicode-supported: 1.3.0 - file-entry-cache@6.0.1: - dependencies: - flat-cache: 3.0.4 - file-uri-to-path@1.0.0: {} - file-url@4.0.0: {} - fill-range@7.0.1: - dependencies: - to-regex-range: 5.0.1 - find-up@4.1.0: - dependencies: - locate-path: 5.0.0 - path-exists: 4.0.0 - find-up@5.0.0: - dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 - find-yarn-workspace-root2@1.2.16: - dependencies: - micromatch: 4.0.5 - pkg-dir: 4.2.0 - flat-cache@3.0.4: - dependencies: - flatted: 3.2.7 - rimraf: 3.0.2 - flatted@3.2.7: {} - fn.name@1.1.0: {} - follow-redirects@1.15.2: {} - follow-redirects@1.15.6: {} - for-each@0.3.3: - dependencies: - is-callable: 1.2.7 - form-data@4.0.0: - dependencies: - asynckit: 0.4.0 - combined-stream: 1.0.8 - mime-types: 2.1.35 - fs-constants@1.0.0: {} - fs-extra@11.1.0: - dependencies: - graceful-fs: 4.2.10 - jsonfile: 6.1.0 - universalify: 2.0.0 - fs-extra@7.0.1: - dependencies: - graceful-fs: 4.2.10 - jsonfile: 4.0.0 - universalify: 0.1.2 - fs-extra@8.1.0: - dependencies: - graceful-fs: 4.2.10 - jsonfile: 4.0.0 - universalify: 0.1.2 - fs.realpath@1.0.0: {} - fsevents@2.3.3: - optional: true - function-bind@1.1.1: {} - function-bind@1.1.2: {} - function.prototype.name@1.1.5: - dependencies: - call-bind: 1.0.5 - define-properties: 1.1.4 - es-abstract: 1.21.1 - functions-have-names: 1.2.3 - function.prototype.name@1.1.6: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - functions-have-names: 1.2.3 - functional-red-black-tree@1.0.1: {} - functions-have-names@1.2.3: {} - gensync@1.0.0-beta.2: {} - get-assigned-identifiers@1.2.0: {} - get-caller-file@2.0.5: {} - get-intrinsic@1.2.0: - dependencies: - function-bind: 1.1.2 - has: 1.0.3 - has-symbols: 1.0.3 - get-intrinsic@1.2.2: - dependencies: - function-bind: 1.1.2 - has-proto: 1.0.1 - has-symbols: 1.0.3 - hasown: 2.0.0 - get-package-type@0.1.0: {} - get-port@6.1.2: {} - get-stream@6.0.1: {} - get-symbol-description@1.0.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - get-tsconfig@4.3.0: {} - git-raw-commits@2.0.11: - dependencies: - dargs: 7.0.0 - lodash: 4.17.21 - meow: 8.1.2 - split2: 3.2.2 - through2: 4.0.2 - github-from-package@0.0.0: {} - glob-parent@5.1.2: - dependencies: - is-glob: 4.0.3 - glob@7.1.7: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - glob@7.2.3: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - glob@8.1.0: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 5.1.6 - once: 1.4.0 - global-dirs@0.1.1: - dependencies: - ini: 1.3.8 - globals@11.12.0: {} - globals@13.19.0: - dependencies: - type-fest: 0.20.2 - globalthis@1.0.3: - dependencies: - define-properties: 1.1.4 - globalyzer@0.1.0: {} - globby@11.1.0: - dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.2.12 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 3.0.0 - globby@13.1.3: - dependencies: - dir-glob: 3.0.1 - fast-glob: 3.2.12 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 4.0.0 - globrex@0.1.2: {} - gopd@1.0.1: - dependencies: - get-intrinsic: 1.2.2 - graceful-fs@4.2.10: {} - grapheme-splitter@1.0.4: {} - hard-rejection@2.1.0: {} - has-bigints@1.0.2: {} - has-flag@3.0.0: {} - has-flag@4.0.0: {} - has-property-descriptors@1.0.0: - dependencies: - get-intrinsic: 1.2.2 - has-property-descriptors@1.0.1: - dependencies: - get-intrinsic: 1.2.2 - has-proto@1.0.1: {} - has-symbols@1.0.3: {} - has-tostringtag@1.0.0: - dependencies: - has-symbols: 1.0.3 - has@1.0.3: - dependencies: - function-bind: 1.1.1 - hash-base@3.1.0: - dependencies: - inherits: 2.0.4 - readable-stream: 3.6.0 - safe-buffer: 5.2.1 - hash.js@1.1.7: - dependencies: - inherits: 2.0.4 - minimalistic-assert: 1.0.1 - hasown@2.0.0: - dependencies: - function-bind: 1.1.2 - hmac-drbg@1.0.1: - dependencies: - hash.js: 1.1.7 - minimalistic-assert: 1.0.1 - minimalistic-crypto-utils: 1.0.1 - hosted-git-info@2.8.9: {} - hosted-git-info@4.1.0: - dependencies: - lru-cache: 6.0.0 - html-escaper@2.0.2: {} - htmlescape@1.1.1: {} - http-errors@1.8.1: - dependencies: - depd: 1.1.2 - inherits: 2.0.4 - setprototypeof: 1.2.0 - statuses: 1.5.0 - toidentifier: 1.0.1 - https-browserify@1.0.0: {} - human-id@1.0.2: {} - human-signals@2.1.0: {} - human-signals@4.3.0: {} - humanize-ms@1.2.1: - dependencies: - ms: 2.1.3 - husky@8.0.3: {} - iconv-lite@0.4.24: - dependencies: - safer-buffer: 2.1.2 - ieee754@1.2.1: {} - ignore@4.0.6: {} - ignore@5.2.4: {} - import-fresh@3.3.0: - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - import-local@3.1.0: - dependencies: - pkg-dir: 4.2.0 - resolve-cwd: 3.0.0 - imurmurhash@0.1.4: {} - indent-string@4.0.0: {} - inflight@1.0.6: - dependencies: - once: 1.4.0 - wrappy: 1.0.2 - inherits@2.0.1: {} - inherits@2.0.4: {} - ini@1.3.8: {} - injectpromise@1.0.0: {} - inline-source-map@0.6.2: - dependencies: - source-map: 0.5.7 - inquirer@9.1.5: - dependencies: - ansi-escapes: 6.1.0 - chalk: 5.2.0 - cli-cursor: 4.0.0 - cli-width: 4.0.0 - external-editor: 3.1.0 - figures: 5.0.0 - lodash: 4.17.21 - mute-stream: 1.0.0 - ora: 6.2.0 - run-async: 2.4.1 - rxjs: 7.8.0 - string-width: 5.1.2 - strip-ansi: 7.0.1 - through: 2.3.8 - wrap-ansi: 8.1.0 - insert-module-globals@7.2.1: - dependencies: - JSONStream: 1.3.5 - acorn-node: 1.8.2 - combine-source-map: 0.8.0 - concat-stream: 1.6.2 - is-buffer: 1.1.6 - path-is-absolute: 1.0.1 - process: 0.11.10 - through2: 2.0.5 - undeclared-identifiers: 1.1.3 - xtend: 4.0.2 - internal-slot@1.0.4: - dependencies: - get-intrinsic: 1.2.2 - has: 1.0.3 - side-channel: 1.0.4 - internal-slot@1.0.6: - dependencies: - get-intrinsic: 1.2.2 - hasown: 2.0.0 - side-channel: 1.0.4 - is-arguments@1.1.1: - dependencies: - call-bind: 1.0.2 - has-tostringtag: 1.0.0 - is-array-buffer@3.0.1: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.10 - is-array-buffer@3.0.2: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 - is-arrayish@0.2.1: {} - is-arrayish@0.3.2: {} - is-bigint@1.0.4: - dependencies: - has-bigints: 1.0.2 - is-boolean-object@1.1.2: - dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - is-buffer@1.1.6: {} - is-callable@1.2.7: {} - is-ci@3.0.1: - dependencies: - ci-info: 3.7.1 - is-core-module@2.11.0: - dependencies: - has: 1.0.3 - is-core-module@2.13.1: - dependencies: - hasown: 2.0.0 - is-date-object@1.0.5: - dependencies: - has-tostringtag: 1.0.0 - is-docker@2.2.1: {} - is-extglob@2.1.1: {} - is-fullwidth-code-point@3.0.0: {} - is-fullwidth-code-point@4.0.0: {} - is-generator-fn@2.1.0: {} - is-generator-function@1.0.10: - dependencies: - has-tostringtag: 1.0.0 - is-glob@4.0.3: - dependencies: - is-extglob: 2.1.1 - is-interactive@2.0.0: {} - is-map@2.0.2: {} - is-negative-zero@2.0.2: {} - is-number-object@1.0.7: - dependencies: - has-tostringtag: 1.0.0 - is-number@7.0.0: {} - is-obj@2.0.0: {} - is-plain-obj@1.1.0: {} - is-regex@1.1.4: - dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - is-set@2.0.2: {} - is-shared-array-buffer@1.0.2: - dependencies: - call-bind: 1.0.5 - is-stream@2.0.1: {} - is-stream@3.0.0: {} - is-string@1.0.7: - dependencies: - has-tostringtag: 1.0.0 - is-subdir@1.2.0: - dependencies: - better-path-resolve: 1.0.0 - is-symbol@1.0.4: - dependencies: - has-symbols: 1.0.3 - is-text-path@1.0.1: - dependencies: - text-extensions: 1.9.0 - is-typed-array@1.1.10: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - is-typed-array@1.1.12: - dependencies: - which-typed-array: 1.1.13 - is-unicode-supported@1.3.0: {} - is-weakmap@2.0.1: {} - is-weakref@1.0.2: - dependencies: - call-bind: 1.0.5 - is-weakset@2.0.2: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-windows@1.0.2: {} - is-wsl@2.2.0: - dependencies: - is-docker: 2.2.1 - isarray@1.0.0: {} - isarray@2.0.5: {} - isexe@2.0.0: {} - isomorphic-ws@4.0.1(ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)): - dependencies: - ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - istanbul-lib-coverage@3.2.0: {} - istanbul-lib-instrument@5.2.1: - dependencies: - '@babel/core': 7.23.5 - '@babel/parser': 7.23.5 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.0 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - istanbul-lib-report@3.0.0: - dependencies: - istanbul-lib-coverage: 3.2.0 - make-dir: 3.1.0 - supports-color: 7.2.0 - istanbul-lib-source-maps@4.0.1: - dependencies: - debug: 4.3.4 - istanbul-lib-coverage: 3.2.0 - source-map: 0.6.1 - transitivePeerDependencies: - - supports-color - istanbul-reports@3.1.5: - dependencies: - html-escaper: 2.0.2 - istanbul-lib-report: 3.0.0 - jayson@4.1.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): - dependencies: - '@types/connect': 3.4.38 - '@types/node': 12.20.55 - '@types/ws': 7.4.7 - JSONStream: 1.3.5 - commander: 2.20.3 - delay: 5.0.0 - es6-promisify: 5.0.0 - eyes: 0.1.8 - isomorphic-ws: 4.0.1(ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - json-stringify-safe: 5.0.1 - uuid: 8.3.2 - ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - jest-changed-files@29.4.0: - dependencies: - execa: 5.1.1 - p-limit: 3.1.0 - jest-circus@29.4.1: - dependencies: - '@jest/environment': 29.4.1 - '@jest/expect': 29.4.1 - '@jest/test-result': 29.4.1 - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - chalk: 4.1.2 - co: 4.6.0 - dedent: 0.7.0 - is-generator-fn: 2.1.0 - jest-each: 29.4.1 - jest-matcher-utils: 29.4.1 - jest-message-util: 29.4.1 - jest-runtime: 29.4.1 - jest-snapshot: 29.4.1 - jest-util: 29.4.1 - p-limit: 3.1.0 - pretty-format: 29.4.1 - slash: 3.0.0 - stack-utils: 2.0.6 - transitivePeerDependencies: - - supports-color - jest-cli@29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)): - dependencies: - '@jest/core': 29.4.1(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)) - '@jest/test-result': 29.4.1 - '@jest/types': 29.4.1 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.10 - import-local: 3.1.0 - jest-config: 29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)) - jest-util: 29.4.1 - jest-validate: 29.4.1 - prompts: 2.4.2 - yargs: 17.7.2 - transitivePeerDependencies: - - '@types/node' - - supports-color - - ts-node - jest-cli@29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)): - dependencies: - '@jest/core': 29.4.1(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)) - '@jest/test-result': 29.4.1 - '@jest/types': 29.4.1 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.10 - import-local: 3.1.0 - jest-config: 29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)) - jest-util: 29.4.1 - jest-validate: 29.4.1 - prompts: 2.4.2 - yargs: 17.7.2 - transitivePeerDependencies: - - '@types/node' - - supports-color - - ts-node - jest-config@29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)): - dependencies: - '@babel/core': 7.23.5 - '@jest/test-sequencer': 29.4.1 - '@jest/types': 29.4.1 - babel-jest: 29.4.1(@babel/core@7.23.5) - chalk: 4.1.2 - ci-info: 3.7.1 - deepmerge: 4.3.0 - glob: 7.2.3 - graceful-fs: 4.2.10 - jest-circus: 29.4.1 - jest-environment-node: 29.4.1 - jest-get-type: 29.2.0 - jest-regex-util: 29.2.0 - jest-resolve: 29.4.1 - jest-runner: 29.4.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 29.4.1 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 18.11.18 - ts-node: 10.9.1(@types/node@18.11.18)(typescript@4.9.4) - transitivePeerDependencies: - - supports-color - jest-config@29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)): - dependencies: - '@babel/core': 7.23.5 - '@jest/test-sequencer': 29.4.1 - '@jest/types': 29.4.1 - babel-jest: 29.4.1(@babel/core@7.23.5) - chalk: 4.1.2 - ci-info: 3.7.1 - deepmerge: 4.3.0 - glob: 7.2.3 - graceful-fs: 4.2.10 - jest-circus: 29.4.1 - jest-environment-node: 29.4.1 - jest-get-type: 29.2.0 - jest-regex-util: 29.2.0 - jest-resolve: 29.4.1 - jest-runner: 29.4.1 - jest-util: 29.4.1 - jest-validate: 29.4.1 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 29.4.1 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 18.11.18 - ts-node: 10.9.1(@types/node@18.11.18)(typescript@4.9.5) - transitivePeerDependencies: - - supports-color - jest-diff@29.4.1: - dependencies: - chalk: 4.1.2 - diff-sequences: 29.3.1 - jest-get-type: 29.2.0 - pretty-format: 29.4.1 - jest-docblock@29.2.0: - dependencies: - detect-newline: 3.1.0 - jest-each@29.4.1: - dependencies: - '@jest/types': 29.4.1 - chalk: 4.1.2 - jest-get-type: 29.2.0 - jest-util: 29.4.1 - pretty-format: 29.4.1 - jest-environment-node@29.4.1: - dependencies: - '@jest/environment': 29.4.1 - '@jest/fake-timers': 29.4.1 - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - jest-mock: 29.4.1 - jest-util: 29.4.1 - jest-get-type@29.2.0: {} - jest-haste-map@29.4.1: - dependencies: - '@jest/types': 29.4.1 - '@types/graceful-fs': 4.1.6 - '@types/node': 18.11.18 - anymatch: 3.1.3 - fb-watchman: 2.0.2 - graceful-fs: 4.2.10 - jest-regex-util: 29.2.0 - jest-util: 29.4.1 - jest-worker: 29.4.1 - micromatch: 4.0.5 - walker: 1.0.8 - optionalDependencies: - fsevents: 2.3.3 - jest-leak-detector@29.4.1: - dependencies: - jest-get-type: 29.2.0 - pretty-format: 29.4.1 - jest-matcher-utils@29.4.1: - dependencies: - chalk: 4.1.2 - jest-diff: 29.4.1 - jest-get-type: 29.2.0 - pretty-format: 29.4.1 - jest-message-util@29.4.1: - dependencies: - '@babel/code-frame': 7.23.5 - '@jest/types': 29.4.1 - '@types/stack-utils': 2.0.1 - chalk: 4.1.2 - graceful-fs: 4.2.10 - micromatch: 4.0.5 - pretty-format: 29.4.1 - slash: 3.0.0 - stack-utils: 2.0.6 - jest-mock@29.4.1: - dependencies: - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - jest-util: 29.4.1 - jest-pnp-resolver@1.2.3(jest-resolve@29.4.1): - optionalDependencies: - jest-resolve: 29.4.1 - jest-regex-util@29.2.0: {} - jest-resolve-dependencies@29.4.1: - dependencies: - jest-regex-util: 29.2.0 - jest-snapshot: 29.4.1 - transitivePeerDependencies: - - supports-color - jest-resolve@29.4.1: - dependencies: - chalk: 4.1.2 - graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 - jest-pnp-resolver: 1.2.3(jest-resolve@29.4.1) - jest-util: 29.4.1 - jest-validate: 29.4.1 - resolve: 1.22.8 - resolve.exports: 2.0.0 - slash: 3.0.0 - jest-runner@29.4.1: - dependencies: - '@jest/console': 29.4.1 - '@jest/environment': 29.4.1 - '@jest/test-result': 29.4.1 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - chalk: 4.1.2 - emittery: 0.13.1 - graceful-fs: 4.2.10 - jest-docblock: 29.2.0 - jest-environment-node: 29.4.1 - jest-haste-map: 29.4.1 - jest-leak-detector: 29.4.1 - jest-message-util: 29.4.1 - jest-resolve: 29.4.1 - jest-runtime: 29.4.1 - jest-util: 29.4.1 - jest-watcher: 29.4.1 - jest-worker: 29.4.1 - p-limit: 3.1.0 - source-map-support: 0.5.13 - transitivePeerDependencies: - - supports-color - jest-runtime@29.4.1: - dependencies: - '@jest/environment': 29.4.1 - '@jest/fake-timers': 29.4.1 - '@jest/globals': 29.4.1 - '@jest/source-map': 29.2.0 - '@jest/test-result': 29.4.1 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - chalk: 4.1.2 - cjs-module-lexer: 1.2.2 - collect-v8-coverage: 1.0.1 - glob: 7.2.3 - graceful-fs: 4.2.10 - jest-haste-map: 29.4.1 - jest-message-util: 29.4.1 - jest-mock: 29.4.1 - jest-regex-util: 29.2.0 - jest-resolve: 29.4.1 - jest-snapshot: 29.4.1 - jest-util: 29.4.1 - semver: 7.5.4 - slash: 3.0.0 - strip-bom: 4.0.0 - transitivePeerDependencies: - - supports-color - jest-snapshot@29.4.1: - dependencies: - '@babel/core': 7.20.12 - '@babel/generator': 7.20.14 - '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.12) - '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.20.12) - '@babel/traverse': 7.20.13 - '@babel/types': 7.21.3 - '@jest/expect-utils': 29.4.1 - '@jest/transform': 29.4.1 - '@jest/types': 29.4.1 - '@types/babel__traverse': 7.18.3 - '@types/prettier': 2.7.2 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.12) - chalk: 4.1.2 - expect: 29.4.1 - graceful-fs: 4.2.10 - jest-diff: 29.4.1 - jest-get-type: 29.2.0 - jest-haste-map: 29.4.1 - jest-matcher-utils: 29.4.1 - jest-message-util: 29.4.1 - jest-util: 29.4.1 - natural-compare: 1.4.0 - pretty-format: 29.4.1 - semver: 7.5.4 - transitivePeerDependencies: - - supports-color - jest-util@29.4.1: - dependencies: - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - chalk: 4.1.2 - ci-info: 3.7.1 - graceful-fs: 4.2.10 - picomatch: 2.3.1 - jest-validate@29.4.1: - dependencies: - '@jest/types': 29.4.1 - camelcase: 6.3.0 - chalk: 4.1.2 - jest-get-type: 29.2.0 - leven: 3.1.0 - pretty-format: 29.4.1 - jest-watcher@29.4.1: - dependencies: - '@jest/test-result': 29.4.1 - '@jest/types': 29.4.1 - '@types/node': 18.11.18 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - emittery: 0.13.1 - jest-util: 29.4.1 - string-length: 4.0.2 - jest-worker@29.4.1: - dependencies: - '@types/node': 18.11.18 - jest-util: 29.4.1 - merge-stream: 2.0.0 - supports-color: 8.1.1 - jest@29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)): - dependencies: - '@jest/core': 29.4.1(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)) - '@jest/types': 29.4.1 - import-local: 3.1.0 - jest-cli: 29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)) - transitivePeerDependencies: - - '@types/node' - - supports-color - - ts-node - jest@29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)): - dependencies: - '@jest/core': 29.4.1(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)) - '@jest/types': 29.4.1 - import-local: 3.1.0 - jest-cli: 29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)) - transitivePeerDependencies: - - '@types/node' - - supports-color - - ts-node - js-sha256@0.9.0: {} - js-sha3@0.8.0: {} - js-tokens@4.0.0: {} - js-yaml@3.14.1: - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - js-yaml@4.1.0: - dependencies: - argparse: 2.0.1 - jsesc@2.5.2: {} - json-parse-even-better-errors@2.3.1: {} - json-schema-traverse@0.4.1: {} - json-schema-traverse@1.0.0: {} - json-stable-stringify-without-jsonify@1.0.1: {} - json-stringify-safe@5.0.1: {} - json5@1.0.2: - dependencies: - minimist: 1.2.8 - json5@2.2.3: {} - jsonfile@4.0.0: - optionalDependencies: - graceful-fs: 4.2.10 - jsonfile@6.1.0: - dependencies: - universalify: 2.0.0 - optionalDependencies: - graceful-fs: 4.2.10 - jsonparse@1.3.1: {} - jsx-ast-utils@3.3.3: - dependencies: - array-includes: 3.1.6 - object.assign: 4.1.4 - keccak@3.0.3: - dependencies: - node-addon-api: 2.0.2 - node-gyp-build: 4.6.1 - readable-stream: 3.6.0 - kind-of@6.0.3: {} - kleur@3.0.3: {} - kleur@4.1.5: {} - kuler@2.0.0: {} - labeled-stream-splicer@2.0.2: - dependencies: - inherits: 2.0.4 - stream-splicer: 2.0.1 - language-subtag-registry@0.3.22: {} - language-tags@1.0.5: - dependencies: - language-subtag-registry: 0.3.22 - leven@3.1.0: {} - levn@0.4.1: - dependencies: - prelude-ls: 1.2.1 - type-check: 0.4.0 - lilconfig@2.1.0: {} - lines-and-columns@1.2.4: {} - lint-staged@13.2.0(enquirer@2.3.6): - dependencies: - chalk: 5.2.0 - cli-truncate: 3.1.0 - commander: 10.0.0 - debug: 4.3.4 - execa: 7.1.1 - lilconfig: 2.1.0 - listr2: 5.0.8(enquirer@2.3.6) - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-inspect: 1.13.1 - pidtree: 0.6.0 - string-argv: 0.3.1 - yaml: 2.2.1 - transitivePeerDependencies: - - enquirer - - supports-color - listr2@5.0.8(enquirer@2.3.6): - dependencies: - cli-truncate: 2.1.0 - colorette: 2.0.19 - log-update: 4.0.0 - p-map: 4.0.0 - rfdc: 1.3.0 - rxjs: 7.8.0 - through: 2.3.8 - wrap-ansi: 7.0.0 - optionalDependencies: - enquirer: 2.3.6 - load-yaml-file@0.2.0: - dependencies: - graceful-fs: 4.2.10 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 - locate-path@5.0.0: - dependencies: - p-locate: 4.1.0 - locate-path@6.0.0: - dependencies: - p-locate: 5.0.0 - lodash.camelcase@4.3.0: {} - lodash.flatmap@4.5.0: {} - lodash.groupby@4.6.0: {} - lodash.isfunction@3.0.9: {} - lodash.isplainobject@4.0.6: {} - lodash.kebabcase@4.1.1: {} - lodash.memoize@3.0.4: {} - lodash.memoize@4.1.2: {} - lodash.merge@4.6.2: {} - lodash.mergewith@4.6.2: {} - lodash.snakecase@4.1.1: {} - lodash.startcase@4.4.0: {} - lodash.truncate@4.4.2: {} - lodash.uniq@4.5.0: {} - lodash.upperfirst@4.3.1: {} - lodash@4.17.21: {} - log-symbols@5.1.0: - dependencies: - chalk: 5.2.0 - is-unicode-supported: 1.3.0 - log-update@4.0.0: - dependencies: - ansi-escapes: 4.3.2 - cli-cursor: 3.1.0 - slice-ansi: 4.0.0 - wrap-ansi: 6.2.0 - log4js@6.7.1: - dependencies: - date-format: 4.0.14 - debug: 4.3.4 - flatted: 3.2.7 - rfdc: 1.3.0 - streamroller: 3.1.5 - transitivePeerDependencies: - - supports-color - logform@2.6.0: - dependencies: - '@colors/colors': 1.6.0 - '@types/triple-beam': 1.3.5 - fecha: 4.2.3 - ms: 2.1.3 - safe-stable-stringify: 2.4.3 - triple-beam: 1.4.1 - long@4.0.0: {} - long@5.2.1: {} - loose-envify@1.4.0: - dependencies: - js-tokens: 4.0.0 - lru-cache@4.1.5: - dependencies: - pseudomap: 1.0.2 - yallist: 2.1.2 - lru-cache@5.1.1: - dependencies: - yallist: 3.1.1 - lru-cache@6.0.0: - dependencies: - yallist: 4.0.0 - make-dir@3.1.0: - dependencies: - semver: 6.3.1 - make-error@1.3.6: {} - makeerror@1.0.12: - dependencies: - tmpl: 1.0.5 - map-obj@1.0.1: {} - map-obj@4.3.0: {} - md5.js@1.3.5: - dependencies: - hash-base: 3.1.0 - inherits: 2.0.4 - safe-buffer: 5.2.1 - meow@6.1.1: - dependencies: - '@types/minimist': 1.2.2 - camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 2.5.0 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.13.1 - yargs-parser: 18.1.3 - meow@8.1.2: - dependencies: - '@types/minimist': 1.2.2 - camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 3.0.3 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.18.1 - yargs-parser: 20.2.9 - merge-stream@2.0.0: {} - merge2@1.4.1: {} - micromatch@4.0.5: - dependencies: - braces: 3.0.2 - picomatch: 2.3.1 - miller-rabin@4.0.1: - dependencies: - bn.js: 4.12.0 - brorand: 1.1.0 - mime-db@1.52.0: {} - mime-types@2.1.35: - dependencies: - mime-db: 1.52.0 - mimic-fn@2.1.0: {} - mimic-fn@4.0.0: {} - mimic-response@3.1.0: {} - min-indent@1.0.1: {} - minimalistic-assert@1.0.1: {} - minimalistic-crypto-utils@1.0.1: {} - minimatch@3.1.2: - dependencies: - brace-expansion: 1.1.11 - minimatch@5.1.6: - dependencies: - brace-expansion: 2.0.1 - minimist-options@4.1.0: - dependencies: - arrify: 1.0.1 - is-plain-obj: 1.1.0 - kind-of: 6.0.3 - minimist@1.2.7: {} - minimist@1.2.8: {} - mixme@0.5.9: {} - mkdirp-classic@0.5.3: {} - mkdirp@2.1.5: {} - module-deps@6.2.3: - dependencies: - JSONStream: 1.3.5 - browser-resolve: 2.0.0 - cached-path-relative: 1.1.0 - concat-stream: 1.6.2 - defined: 1.0.1 - detective: 5.2.1 - duplexer2: 0.1.4 - inherits: 2.0.4 - parents: 1.0.1 - readable-stream: 2.3.8 - resolve: 1.22.1 - stream-combiner2: 1.1.1 - subarg: 1.0.0 - through2: 2.0.5 - xtend: 4.0.2 - ms@2.1.2: {} - ms@2.1.3: {} - mustache@4.2.0: {} - mutation-testing-elements@1.7.14: {} - mutation-testing-metrics@1.7.14: - dependencies: - mutation-testing-report-schema: 1.7.14 - mutation-testing-report-schema@1.7.14: {} - mute-stream@1.0.0: {} - nanoid@3.3.4: {} - napi-build-utils@1.0.2: {} - natural-compare-lite@1.4.0: {} - natural-compare@1.4.0: {} - near-abi@0.1.1: - dependencies: - '@types/json-schema': 7.0.11 - near-api-js@2.1.4: - dependencies: - '@near-js/accounts': 0.1.4 - '@near-js/crypto': 0.0.5 - '@near-js/keystores': 0.0.5 - '@near-js/keystores-browser': 0.0.5 - '@near-js/keystores-node': 0.0.5 - '@near-js/providers': 0.0.7 - '@near-js/signers': 0.0.5 - '@near-js/transactions': 0.2.1 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.4 - '@near-js/wallet-account': 0.0.7 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - bn.js: 5.2.1 - borsh: 0.7.0 - depd: 2.0.0 - error-polyfill: 0.1.3 - http-errors: 1.8.1 - near-abi: 0.1.1 - node-fetch: 2.6.11 - tweetnacl: 1.0.3 - transitivePeerDependencies: - - encoding - next@13.1.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - '@next/env': 13.1.6 - '@swc/helpers': 0.4.14 - caniuse-lite: 1.0.30001450 - postcss: 8.4.14 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(react@18.2.0) - optionalDependencies: - '@next/swc-android-arm-eabi': 13.1.6 - '@next/swc-android-arm64': 13.1.6 - '@next/swc-darwin-arm64': 13.1.6 - '@next/swc-darwin-x64': 13.1.6 - '@next/swc-freebsd-x64': 13.1.6 - '@next/swc-linux-arm-gnueabihf': 13.1.6 - '@next/swc-linux-arm64-gnu': 13.1.6 - '@next/swc-linux-arm64-musl': 13.1.6 - '@next/swc-linux-x64-gnu': 13.1.6 - '@next/swc-linux-x64-musl': 13.1.6 - '@next/swc-win32-arm64-msvc': 13.1.6 - '@next/swc-win32-ia32-msvc': 13.1.6 - '@next/swc-win32-x64-msvc': 13.1.6 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - node-abi@3.31.0: - dependencies: - semver: 7.5.4 - node-addon-api@2.0.2: {} - node-addon-api@3.2.1: {} - node-addon-api@4.2.0: {} - node-addon-api@7.0.0: {} - node-fetch@2.6.11: - dependencies: - whatwg-url: 5.0.0 - node-fetch@2.7.0: - dependencies: - whatwg-url: 5.0.0 - node-gyp-build@4.6.1: {} - node-hid@3.0.0: - dependencies: - node-addon-api: 3.2.1 - pkg-prebuilds: 0.2.1 - node-int64@0.4.0: {} - node-releases@2.0.13: {} - normalize-package-data@2.5.0: - dependencies: - hosted-git-info: 2.8.9 - resolve: 1.22.8 - semver: 5.7.1 - validate-npm-package-license: 3.0.4 - normalize-package-data@3.0.3: - dependencies: - hosted-git-info: 4.1.0 - is-core-module: 2.13.1 - semver: 7.5.4 - validate-npm-package-license: 3.0.4 - normalize-path@3.0.0: {} - npm-run-path@4.0.1: - dependencies: - path-key: 3.1.1 - npm-run-path@5.1.0: - dependencies: - path-key: 4.0.0 - o3@1.0.3: - dependencies: - capability: 0.2.5 - object-assign@4.1.1: {} - object-hash@1.3.1: {} - object-inspect@1.13.1: {} - object-is@1.1.5: - dependencies: - call-bind: 1.0.5 - define-properties: 1.1.4 - object-keys@1.1.1: {} - object.assign@4.1.4: - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - has-symbols: 1.0.3 - object-keys: 1.1.1 - object.assign@4.1.5: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - has-symbols: 1.0.3 - object-keys: 1.1.1 - object.entries@1.1.6: - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.1 - object.fromentries@2.0.6: - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.1 - object.fromentries@2.0.7: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - object.groupby@1.0.1: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 - object.hasown@1.1.2: - dependencies: - define-properties: 1.1.4 - es-abstract: 1.21.1 - object.values@1.1.6: - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.1 - object.values@1.1.7: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - once@1.4.0: - dependencies: - wrappy: 1.0.2 - one-time@1.0.0: - dependencies: - fn.name: 1.1.0 - onetime@5.1.2: - dependencies: - mimic-fn: 2.1.0 - onetime@6.0.0: - dependencies: - mimic-fn: 4.0.0 - open@8.4.0: - dependencies: - define-lazy-prop: 2.0.0 - is-docker: 2.2.1 - is-wsl: 2.2.0 - optionator@0.9.1: - dependencies: - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.4.1 - prelude-ls: 1.2.1 - type-check: 0.4.0 - word-wrap: 1.2.3 - ora@6.2.0: - dependencies: - chalk: 5.2.0 - cli-cursor: 4.0.0 - cli-spinners: 2.7.0 - is-interactive: 2.0.0 - is-unicode-supported: 1.3.0 - log-symbols: 5.1.0 - stdin-discarder: 0.1.0 - strip-ansi: 7.0.1 - wcwidth: 1.0.1 - os-browserify@0.3.0: {} - os-tmpdir@1.0.2: {} - outdent@0.5.0: {} - p-filter@2.1.0: - dependencies: - p-map: 2.1.0 - p-limit@2.3.0: - dependencies: - p-try: 2.2.0 - p-limit@3.1.0: - dependencies: - yocto-queue: 0.1.0 - p-locate@4.1.0: - dependencies: - p-limit: 2.3.0 - p-locate@5.0.0: - dependencies: - p-limit: 3.1.0 - p-map@2.1.0: {} - p-map@4.0.0: - dependencies: - aggregate-error: 3.1.0 - p-try@2.2.0: {} - pako@1.0.11: {} - parent-module@1.0.1: - dependencies: - callsites: 3.1.0 - parents@1.0.1: - dependencies: - path-platform: 0.11.15 - parse-asn1@5.1.6: - dependencies: - asn1.js: 5.4.1 - browserify-aes: 1.2.0 - evp_bytestokey: 1.0.3 - pbkdf2: 3.1.2 - safe-buffer: 5.2.1 - parse-json@5.2.0: - dependencies: - '@babel/code-frame': 7.23.5 - error-ex: 1.3.2 - json-parse-even-better-errors: 2.3.1 - lines-and-columns: 1.2.4 - path-browserify@1.0.1: {} - path-exists@4.0.0: {} - path-is-absolute@1.0.1: {} - path-key@3.1.1: {} - path-key@4.0.0: {} - path-parse@1.0.7: {} - path-platform@0.11.15: {} - path-type@4.0.0: {} - pbkdf2@3.1.2: - dependencies: - create-hash: 1.2.0 - create-hmac: 1.1.7 - ripemd160: 2.0.2 - safe-buffer: 5.2.1 - sha.js: 2.4.11 - picocolors@1.0.0: {} - picomatch@2.3.1: {} - pidtree@0.6.0: {} - pify@4.0.1: {} - pirates@4.0.5: {} - pkg-dir@4.2.0: - dependencies: - find-up: 4.1.0 - pkg-prebuilds@0.2.1: - dependencies: - yargs: 17.7.2 - postcss@8.4.14: - dependencies: - nanoid: 3.3.4 - picocolors: 1.0.0 - source-map-js: 1.0.2 - prebuild-install@7.1.1: - dependencies: - detect-libc: 2.0.1 - expand-template: 2.0.3 - github-from-package: 0.0.0 - minimist: 1.2.8 - mkdirp-classic: 0.5.3 - napi-build-utils: 1.0.2 - node-abi: 3.31.0 - pump: 3.0.0 - rc: 1.2.8 - simple-get: 4.0.1 - tar-fs: 2.1.1 - tunnel-agent: 0.6.0 - preferred-pm@3.0.3: - dependencies: - find-up: 5.0.0 - find-yarn-workspace-root2: 1.2.16 - path-exists: 4.0.0 - which-pm: 2.0.0 - prelude-ls@1.2.1: {} - prettier@2.8.8: {} - prettier@3.2.4: {} - pretty-format@29.4.1: - dependencies: - '@jest/schemas': 29.4.0 - ansi-styles: 5.2.0 - react-is: 18.2.0 - process-nextick-args@2.0.1: {} - process@0.11.10: {} - progress@2.0.3: {} - prompts@2.4.2: - dependencies: - kleur: 3.0.3 - sisteransi: 1.0.5 - prop-types@15.8.1: - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react-is: 16.13.1 - protobufjs@6.11.3: - dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/base64': 1.1.2 - '@protobufjs/codegen': 2.0.4 - '@protobufjs/eventemitter': 1.1.0 - '@protobufjs/fetch': 1.1.0 - '@protobufjs/float': 1.0.2 - '@protobufjs/inquire': 1.1.0 - '@protobufjs/path': 1.1.2 - '@protobufjs/pool': 1.1.0 - '@protobufjs/utf8': 1.1.0 - '@types/long': 4.0.2 - '@types/node': 18.11.18 - long: 4.0.0 - protobufjs@7.2.2: - dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/base64': 1.1.2 - '@protobufjs/codegen': 2.0.4 - '@protobufjs/eventemitter': 1.1.0 - '@protobufjs/fetch': 1.1.0 - '@protobufjs/float': 1.0.2 - '@protobufjs/inquire': 1.1.0 - '@protobufjs/path': 1.1.2 - '@protobufjs/pool': 1.1.0 - '@protobufjs/utf8': 1.1.0 - '@types/node': 18.11.18 - long: 5.2.1 - proxy-from-env@1.1.0: {} - pseudomap@1.0.2: {} - public-encrypt@4.0.3: - dependencies: - bn.js: 4.12.0 - browserify-rsa: 4.1.0 - create-hash: 1.2.0 - parse-asn1: 5.1.6 - randombytes: 2.1.0 - safe-buffer: 5.2.1 - pump@3.0.0: - dependencies: - end-of-stream: 1.4.4 - once: 1.4.0 - punycode@1.4.1: {} - punycode@2.3.0: {} - q@1.5.1: {} - qs@6.11.1: - dependencies: - side-channel: 1.0.4 - querystring-es3@0.2.1: {} - queue-microtask@1.2.3: {} - quick-lru@4.0.1: {} - randombytes@2.1.0: - dependencies: - safe-buffer: 5.2.1 - randomfill@1.0.4: - dependencies: - randombytes: 2.1.0 - safe-buffer: 5.2.1 - rc@1.2.8: - dependencies: - deep-extend: 0.6.0 - ini: 1.3.8 - minimist: 1.2.8 - strip-json-comments: 2.0.1 - react-dom@18.2.0(react@18.2.0): - dependencies: - loose-envify: 1.4.0 - react: 18.2.0 - scheduler: 0.23.0 - react-is@16.13.1: {} - react-is@18.2.0: {} - react@18.2.0: - dependencies: - loose-envify: 1.4.0 - read-only-stream@2.0.0: - dependencies: - readable-stream: 2.3.8 - read-pkg-up@7.0.1: - dependencies: - find-up: 4.1.0 - read-pkg: 5.2.0 - type-fest: 0.8.1 - read-pkg@5.2.0: - dependencies: - '@types/normalize-package-data': 2.4.1 - normalize-package-data: 2.5.0 - parse-json: 5.2.0 - type-fest: 0.6.0 - read-yaml-file@1.1.0: - dependencies: - graceful-fs: 4.2.10 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 - readable-stream@2.3.8: - dependencies: - core-util-is: 1.0.3 - inherits: 2.0.4 - isarray: 1.0.0 - process-nextick-args: 2.0.1 - safe-buffer: 5.1.2 - string_decoder: 1.1.1 - util-deprecate: 1.0.2 - readable-stream@3.6.0: - dependencies: - inherits: 2.0.4 - string_decoder: 1.3.0 - util-deprecate: 1.0.2 - redent@3.0.0: - dependencies: - indent-string: 4.0.0 - strip-indent: 3.0.0 - regenerator-runtime@0.13.11: {} - regenerator-runtime@0.14.0: {} - regexp.prototype.flags@1.4.3: - dependencies: - call-bind: 1.0.5 - define-properties: 1.1.4 - functions-have-names: 1.2.3 - regexp.prototype.flags@1.5.1: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - set-function-name: 2.0.1 - regexpp@3.2.0: {} - require-directory@2.1.1: {} - require-from-string@2.0.2: {} - require-main-filename@2.0.0: {} - resolve-cwd@3.0.0: - dependencies: - resolve-from: 5.0.0 - resolve-from@4.0.0: {} - resolve-from@5.0.0: {} - resolve-global@1.0.0: - dependencies: - global-dirs: 0.1.1 - resolve.exports@2.0.0: {} - resolve@1.22.1: - dependencies: - is-core-module: 2.11.0 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - resolve@1.22.8: - dependencies: - is-core-module: 2.13.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - resolve@2.0.0-next.4: - dependencies: - is-core-module: 2.11.0 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - restore-cursor@3.1.0: - dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 - restore-cursor@4.0.0: - dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 - reusify@1.0.4: {} - rfdc@1.3.0: {} - rimraf@3.0.2: - dependencies: - glob: 7.2.3 - rimraf@4.1.2: {} - ripemd160@2.0.2: - dependencies: - hash-base: 3.1.0 - inherits: 2.0.4 - rpc-websockets@7.8.0: - dependencies: - '@babel/runtime': 7.23.5 - eventemitter3: 4.0.7 - uuid: 8.3.2 - ws: 8.5.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - optionalDependencies: - bufferutil: 4.0.8 - utf-8-validate: 5.0.10 - run-async@2.4.1: {} - run-parallel@1.2.0: - dependencies: - queue-microtask: 1.2.3 - rxjs@7.8.0: - dependencies: - tslib: 2.5.0 - safe-array-concat@1.1.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - has-symbols: 1.0.3 - isarray: 2.0.5 - safe-buffer@5.1.2: {} - safe-buffer@5.2.1: {} - safe-regex-test@1.0.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-regex: 1.1.4 - safe-regex-test@1.0.2: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-regex: 1.1.4 - safe-stable-stringify@2.4.3: {} - safer-buffer@2.1.2: {} - scheduler@0.23.0: - dependencies: - loose-envify: 1.4.0 - semver@5.7.1: {} - semver@6.3.0: {} - semver@6.3.1: {} - semver@7.3.8: - dependencies: - lru-cache: 6.0.0 - semver@7.5.2: - dependencies: - lru-cache: 6.0.0 - semver@7.5.4: - dependencies: - lru-cache: 6.0.0 - serialport@10.0.0: - dependencies: - '@serialport/binding-mock': 10.0.0 - '@serialport/bindings': 10.0.0 - '@serialport/parser-byte-length': 10.0.0 - '@serialport/parser-cctalk': 10.0.0 - '@serialport/parser-delimiter': 10.0.0 - '@serialport/parser-inter-byte-timeout': 10.0.0 - '@serialport/parser-readline': 10.0.0 - '@serialport/parser-ready': 10.0.0 - '@serialport/parser-regex': 10.0.0 - '@serialport/stream': 10.0.0 - debug: 4.3.4 - transitivePeerDependencies: - - supports-color - set-blocking@2.0.0: {} - set-function-length@1.2.0: - dependencies: - define-data-property: 1.1.1 - function-bind: 1.1.2 - get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - set-function-name@2.0.1: - dependencies: - define-data-property: 1.1.1 - functions-have-names: 1.2.3 - has-property-descriptors: 1.0.1 - setprototypeof@1.2.0: {} - sha.js@2.4.11: - dependencies: - inherits: 2.0.4 - safe-buffer: 5.2.1 - shasum-object@1.0.0: - dependencies: - fast-safe-stringify: 2.1.1 - shebang-command@1.2.0: - dependencies: - shebang-regex: 1.0.0 - shebang-command@2.0.0: - dependencies: - shebang-regex: 3.0.0 - shebang-regex@1.0.0: {} - shebang-regex@3.0.0: {} - shell-quote@1.8.1: {} - side-channel@1.0.4: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - object-inspect: 1.13.1 - signal-exit@3.0.7: {} - simple-concat@1.0.1: {} - simple-get@4.0.1: - dependencies: - decompress-response: 6.0.0 - once: 1.4.0 - simple-concat: 1.0.1 - simple-swizzle@0.2.2: - dependencies: - is-arrayish: 0.3.2 - sisteransi@1.0.5: {} - slash@3.0.0: {} - slash@4.0.0: {} - slice-ansi@3.0.0: - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 - slice-ansi@4.0.0: - dependencies: - ansi-styles: 4.3.0 - astral-regex: 2.0.0 - is-fullwidth-code-point: 3.0.0 - slice-ansi@5.0.0: - dependencies: - ansi-styles: 6.2.1 - is-fullwidth-code-point: 4.0.0 - smartwrap@2.0.2: - dependencies: - array.prototype.flat: 1.3.1 - breakword: 1.0.5 - grapheme-splitter: 1.0.4 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 15.4.1 - source-map-js@1.0.2: {} - source-map-support@0.5.13: - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 - source-map@0.5.7: {} - source-map@0.6.1: {} - source-map@0.7.4: {} - spawndamnit@2.0.0: - dependencies: - cross-spawn: 5.1.0 - signal-exit: 3.0.7 - spdx-correct@3.2.0: - dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 - spdx-exceptions@2.3.0: {} - spdx-expression-parse@3.0.1: - dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 - spdx-license-ids@3.0.13: {} - split2@3.2.2: - dependencies: - readable-stream: 3.6.0 - sprintf-js@1.0.3: {} - stack-trace@0.0.10: {} - stack-utils@2.0.6: - dependencies: - escape-string-regexp: 2.0.0 - statuses@1.5.0: {} - stdin-discarder@0.1.0: - dependencies: - bl: 5.1.0 - stop-iteration-iterator@1.0.0: - dependencies: - internal-slot: 1.0.4 - stream-browserify@3.0.0: - dependencies: - inherits: 2.0.4 - readable-stream: 3.6.0 - stream-combiner2@1.1.1: - dependencies: - duplexer2: 0.1.4 - readable-stream: 2.3.8 - stream-http@3.2.0: - dependencies: - builtin-status-codes: 3.0.0 - inherits: 2.0.4 - readable-stream: 3.6.0 - xtend: 4.0.2 - stream-splicer@2.0.1: - dependencies: - inherits: 2.0.4 - readable-stream: 2.3.8 - stream-transform@2.1.3: - dependencies: - mixme: 0.5.9 - streamroller@3.1.5: - dependencies: - date-format: 4.0.14 - debug: 4.3.4 - fs-extra: 8.1.0 - transitivePeerDependencies: - - supports-color - string-argv@0.3.1: {} - string-length@4.0.2: - dependencies: - char-regex: 1.0.2 - strip-ansi: 6.0.1 - string-width@4.2.3: - dependencies: - emoji-regex: 8.0.0 - is-fullwidth-code-point: 3.0.0 - strip-ansi: 6.0.1 - string-width@5.1.2: - dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.0.1 - string.prototype.matchall@4.0.8: - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.1 - get-intrinsic: 1.2.0 - has-symbols: 1.0.3 - internal-slot: 1.0.4 - regexp.prototype.flags: 1.4.3 - side-channel: 1.0.4 - string.prototype.trim@1.2.8: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - string.prototype.trimend@1.0.6: - dependencies: - call-bind: 1.0.5 - define-properties: 1.1.4 - es-abstract: 1.21.1 - string.prototype.trimend@1.0.7: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - string.prototype.trimstart@1.0.6: - dependencies: - call-bind: 1.0.5 - define-properties: 1.1.4 - es-abstract: 1.21.1 - string.prototype.trimstart@1.0.7: - dependencies: - call-bind: 1.0.5 - define-properties: 1.2.1 - es-abstract: 1.22.3 - string_decoder@1.1.1: - dependencies: - safe-buffer: 5.1.2 - string_decoder@1.3.0: - dependencies: - safe-buffer: 5.2.1 - strip-ansi@6.0.1: - dependencies: - ansi-regex: 5.0.1 - strip-ansi@7.0.1: - dependencies: - ansi-regex: 6.0.1 - strip-bom@3.0.0: {} - strip-bom@4.0.0: {} - strip-final-newline@2.0.0: {} - strip-final-newline@3.0.0: {} - strip-indent@3.0.0: - dependencies: - min-indent: 1.0.1 - strip-json-comments@2.0.1: {} - strip-json-comments@3.1.1: {} - styled-jsx@5.1.1(react@18.2.0): - dependencies: - client-only: 0.0.1 - react: 18.2.0 - subarg@1.0.0: - dependencies: - minimist: 1.2.7 - superstruct@0.14.2: {} - superstruct@0.15.5: {} - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - supports-color@7.2.0: - dependencies: - has-flag: 4.0.0 - supports-color@8.1.1: - dependencies: - has-flag: 4.0.0 - supports-preserve-symlinks-flag@1.0.0: {} - synckit@0.8.5: - dependencies: - '@pkgr/utils': 2.3.1 - tslib: 2.5.0 - syntax-error@1.4.0: - dependencies: - acorn-node: 1.8.2 - table@6.8.1: - dependencies: - ajv: 8.12.0 - lodash.truncate: 4.4.2 - slice-ansi: 4.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - tapable@2.2.1: {} - tar-fs@2.1.1: - dependencies: - chownr: 1.1.4 - mkdirp-classic: 0.5.3 - pump: 3.0.0 - tar-stream: 2.2.0 - tar-stream@2.2.0: - dependencies: - bl: 4.1.0 - end-of-stream: 1.4.4 - fs-constants: 1.0.0 - inherits: 2.0.4 - readable-stream: 3.6.0 - term-size@2.2.1: {} - test-exclude@6.0.0: - dependencies: - '@istanbuljs/schema': 0.1.3 - glob: 7.2.3 - minimatch: 3.1.2 - text-encoding-utf-8@1.0.2: {} - text-extensions@1.9.0: {} - text-hex@1.0.0: {} - text-table@0.2.0: {} - through2@2.0.5: - dependencies: - readable-stream: 2.3.8 - xtend: 4.0.2 - through2@4.0.2: - dependencies: - readable-stream: 3.6.0 - through@2.3.8: {} - timers-browserify@1.4.2: - dependencies: - process: 0.11.10 - tiny-glob@0.2.9: - dependencies: - globalyzer: 0.1.0 - globrex: 0.1.2 - tmp@0.0.33: - dependencies: - os-tmpdir: 1.0.2 - tmpl@1.0.5: {} - to-fast-properties@2.0.0: {} - to-regex-range@5.0.1: - dependencies: - is-number: 7.0.0 - toidentifier@1.0.1: {} - tr46@0.0.3: {} - tree-kill@1.2.2: {} - trim-newlines@3.0.1: {} - triple-beam@1.4.1: {} - tronweb@5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10): - dependencies: - '@babel/runtime': 7.23.5 - '@ethersproject/abi': 5.7.0 - '@tronweb3/google-protobuf': 3.21.2 - axios: 1.7.0 - bignumber.js: 9.1.2 - ethereum-cryptography: 2.1.3 - ethers: 6.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - eventemitter3: 3.1.2 - injectpromise: 1.0.0 - lodash: 4.17.21 - querystring-es3: 0.2.1 - semver: 5.7.1 - validator: 13.12.0 - transitivePeerDependencies: - - bufferutil - - debug - - utf-8-validate - ts-jest@29.0.5(@babel/core@7.23.5)(@jest/types@29.4.1)(babel-jest@29.4.1(@babel/core@7.23.5))(jest@29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)))(typescript@4.9.4): - dependencies: - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4)) - jest-util: 29.4.1 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.5.4 - typescript: 4.9.4 - yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.23.5 - '@jest/types': 29.4.1 - babel-jest: 29.4.1(@babel/core@7.23.5) - ts-jest@29.0.5(@babel/core@7.23.5)(@jest/types@29.4.1)(babel-jest@29.4.1(@babel/core@7.23.5))(jest@29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)))(typescript@4.9.5): - dependencies: - bs-logger: 0.2.6 - fast-json-stable-stringify: 2.1.0 - jest: 29.4.1(@types/node@18.11.18)(ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5)) - jest-util: 29.4.1 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.5.4 - typescript: 4.9.5 - yargs-parser: 21.1.1 - optionalDependencies: - '@babel/core': 7.23.5 - '@jest/types': 29.4.1 - babel-jest: 29.4.1(@babel/core@7.23.5) - ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.4): - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.3 - '@types/node': 18.11.18 - acorn: 8.8.2 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.9.4 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - optional: true - ts-node@10.9.1(@types/node@18.11.18)(typescript@4.9.5): - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.3 - '@types/node': 18.11.18 - acorn: 8.8.2 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.9.5 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - ts-poet@6.3.0: - dependencies: - dprint-node: 1.0.7 - ts-proto-descriptors@1.7.1: - dependencies: - long: 4.0.0 - protobufjs: 6.11.3 - ts-proto@1.139.0: - dependencies: - '@types/object-hash': 1.3.4 - case-anything: 2.1.10 - dataloader: 1.4.0 - object-hash: 1.3.1 - protobufjs: 6.11.3 - ts-poet: 6.3.0 - ts-proto-descriptors: 1.7.1 - tsconfig-paths@3.14.1: - dependencies: - '@types/json5': 0.0.29 - json5: 1.0.2 - minimist: 1.2.8 - strip-bom: 3.0.0 - tsconfig-paths@3.15.0: - dependencies: - '@types/json5': 0.0.29 - json5: 1.0.2 - minimist: 1.2.8 - strip-bom: 3.0.0 - tslib@1.14.1: {} - tslib@2.4.0: {} - tslib@2.5.0: {} - tsutils@3.21.0(typescript@4.9.5): - dependencies: - tslib: 1.14.1 - typescript: 4.9.5 - tty-browserify@0.0.1: {} - tty-table@4.2.1: - dependencies: - chalk: 4.1.2 - csv: 5.5.3 - kleur: 4.1.5 - smartwrap: 2.0.2 - strip-ansi: 6.0.1 - wcwidth: 1.0.1 - yargs: 17.7.2 - tunnel-agent@0.6.0: - dependencies: - safe-buffer: 5.2.1 - dev: false - /tunnel@0.0.6: - resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} - engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} - dev: true - /turbo-darwin-64@1.13.4: - resolution: {integrity: sha512-A0eKd73R7CGnRinTiS7txkMElg+R5rKFp9HV7baDiEL4xTG1FIg/56Vm7A5RVgg8UNgG2qNnrfatJtb+dRmNdw==} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /turbo-darwin-arm64@1.13.4: - resolution: {integrity: sha512-eG769Q0NF6/Vyjsr3mKCnkG/eW6dKMBZk6dxWOdrHfrg6QgfkBUk0WUUujzdtVPiUIvsh4l46vQrNVd9EOtbyA==} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - /turbo-linux-64@1.13.4: - resolution: {integrity: sha512-Bq0JphDeNw3XEi+Xb/e4xoKhs1DHN7OoLVUbTIQz+gazYjigVZvtwCvgrZI7eW9Xo1eOXM2zw2u1DGLLUfmGkQ==} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /turbo-linux-arm64@1.13.4: - resolution: {integrity: sha512-BJcXw1DDiHO/okYbaNdcWN6szjXyHWx9d460v6fCHY65G8CyqGU3y2uUTPK89o8lq/b2C8NK0yZD+Vp0f9VoIg==} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - /turbo-windows-64@1.13.4: - resolution: {integrity: sha512-OFFhXHOFLN7A78vD/dlVuuSSVEB3s9ZBj18Tm1hk3aW1HTWTuAw0ReN6ZNlVObZUHvGy8d57OAGGxf2bT3etQw==} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /turbo-windows-arm64@1.13.4: - resolution: {integrity: sha512-u5A+VOKHswJJmJ8o8rcilBfU5U3Y1TTAfP9wX8bFh8teYF1ghP0EhtMRLjhtp6RPa+XCxHHVA2CiC3gbh5eg5g==} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - /turbo@1.13.4: - resolution: {integrity: sha512-1q7+9UJABuBAHrcC4Sxp5lOqYS5mvxRrwa33wpIyM18hlOCpRD/fTJNxZ0vhbMcJmz15o9kkVm743mPn7p6jpQ==} - hasBin: true - optionalDependencies: - turbo-darwin-64: 1.13.4 - turbo-darwin-arm64: 1.13.4 - turbo-linux-64: 1.13.4 - turbo-linux-arm64: 1.13.4 - turbo-windows-64: 1.13.4 - turbo-windows-arm64: 1.13.4 - dev: true - tweetnacl@1.0.3: {} - type-check@0.4.0: - dependencies: - prelude-ls: 1.2.1 - type-detect@4.0.8: {} - type-fest@0.13.1: {} - type-fest@0.18.1: {} - type-fest@0.20.2: {} - type-fest@0.21.3: {} - type-fest@0.6.0: {} - type-fest@0.8.1: {} - type-fest@3.6.1: {} - typed-array-buffer@1.0.0: - dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 - typed-array-byte-length@1.0.0: - dependencies: - call-bind: 1.0.5 - for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 - typed-array-byte-offset@1.0.0: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 - typed-array-length@1.0.4: - dependencies: - call-bind: 1.0.5 - for-each: 0.3.3 - is-typed-array: 1.1.10 - typed-inject@3.0.1: {} - typed-rest-client@1.8.9: - dependencies: - qs: 6.11.1 - tunnel: 0.0.6 - underscore: 1.13.6 - typedarray@0.0.6: {} - typeforce@1.18.0: {} - typescript@4.9.4: {} - typescript@4.9.5: {} - u3@0.1.1: {} - uint8array-tools@0.0.7: {} - umd@3.0.3: {} - unbox-primitive@1.0.2: - dependencies: - call-bind: 1.0.5 - has-bigints: 1.0.2 - has-symbols: 1.0.3 - which-boxed-primitive: 1.0.2 - undeclared-identifiers@1.1.3: - dependencies: - acorn-node: 1.8.2 - dash-ast: 1.0.0 - get-assigned-identifiers: 1.2.0 - simple-concat: 1.0.1 - xtend: 4.0.2 - underscore@1.13.6: {} - universalify@0.1.2: {} - universalify@2.0.0: {} - update-browserslist-db@1.0.13(browserslist@4.22.1): - dependencies: - browserslist: 4.22.1 - escalade: 3.1.1 - picocolors: 1.0.0 - uri-js@4.4.1: - dependencies: - punycode: 2.3.0 - url@0.11.1: - dependencies: - punycode: 1.4.1 - qs: 6.11.1 - usb@2.11.0: - dependencies: - '@types/w3c-web-usb': 1.0.6 - node-addon-api: 7.0.0 - node-gyp-build: 4.6.1 - utf-8-validate@5.0.10: - dependencies: - node-gyp-build: 4.6.1 - optional: true - util-deprecate@1.0.2: {} - util@0.10.3: - dependencies: - inherits: 2.0.1 - util@0.12.5: - dependencies: - inherits: 2.0.4 - is-arguments: 1.1.1 - is-generator-function: 1.0.10 - is-typed-array: 1.1.10 - which-typed-array: 1.1.9 - uuid@8.3.2: {} - uuid@9.0.0: {} - v8-compile-cache-lib@3.0.1: {} - v8-compile-cache@2.3.0: {} - v8-to-istanbul@9.0.1: - dependencies: - '@jridgewell/trace-mapping': 0.3.20 - '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.9.0 - validate-npm-package-license@3.0.4: - dependencies: - spdx-correct: 3.2.0 - spdx-expression-parse: 3.0.1 - validator@13.12.0: {} - varuint-bitcoin@1.1.2: - dependencies: - safe-buffer: 5.2.1 - vm-browserify@1.1.2: {} - walker@1.0.8: - dependencies: - makeerror: 1.0.12 - wcwidth@1.0.1: - dependencies: - defaults: 1.0.4 - weapon-regex@1.0.3: {} - webidl-conversions@3.0.1: {} - whatwg-url@5.0.0: - dependencies: - tr46: 0.0.3 - webidl-conversions: 3.0.1 - which-boxed-primitive@1.0.2: - dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 - which-collection@1.0.1: - dependencies: - is-map: 2.0.2 - is-set: 2.0.2 - is-weakmap: 2.0.1 - is-weakset: 2.0.2 - which-module@2.0.1: {} - which-pm@2.0.0: - dependencies: - load-yaml-file: 0.2.0 - path-exists: 4.0.0 - which-typed-array@1.1.13: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - which-typed-array@1.1.9: - dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 - which@1.3.1: - dependencies: - isexe: 2.0.0 - which@2.0.2: - dependencies: - isexe: 2.0.0 - winston-transport@4.7.0: - dependencies: - logform: 2.6.0 - readable-stream: 3.6.0 - triple-beam: 1.4.1 - winston@3.11.0: - dependencies: - '@colors/colors': 1.6.0 - '@dabh/diagnostics': 2.0.3 - async: 3.2.5 - is-stream: 2.0.1 - logform: 2.6.0 - one-time: 1.0.0 - readable-stream: 3.6.0 - safe-stable-stringify: 2.4.3 - stack-trace: 0.0.10 - triple-beam: 1.4.1 - winston-transport: 4.7.0 - word-wrap@1.2.3: {} - wrap-ansi@6.2.0: - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi@7.0.0: - dependencies: - ansi-styles: 4.3.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi@8.1.0: - dependencies: - ansi-styles: 6.2.1 - string-width: 5.1.2 - strip-ansi: 7.0.1 - wrappy@1.0.2: {} - write-file-atomic@5.0.0: - dependencies: - imurmurhash: 0.1.4 - signal-exit: 3.0.7 - ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10): - optionalDependencies: - bufferutil: 4.0.8 - utf-8-validate: 5.0.10 - ws@8.5.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): - optionalDependencies: - bufferutil: 4.0.8 - utf-8-validate: 5.0.10 - xtend@4.0.2: {} - y18n@4.0.3: {} - y18n@5.0.8: {} - yallist@2.1.2: {} - yallist@3.1.1: {} - yallist@4.0.0: {} - yaml@2.2.1: {} - yargs-parser@18.1.3: - dependencies: - camelcase: 5.3.1 - decamelize: 1.2.0 - yargs-parser@20.2.9: {} - yargs-parser@21.1.1: {} - yargs@15.4.1: - dependencies: - cliui: 6.0.0 - decamelize: 1.2.0 - find-up: 4.1.0 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - require-main-filename: 2.0.0 - set-blocking: 2.0.0 - string-width: 4.2.3 - which-module: 2.0.1 - y18n: 4.0.3 - yargs-parser: 18.1.3 - yargs@17.6.2: - dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - yargs@17.7.2: - dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - yn@3.1.1: {} - yocto-queue@0.1.0: {}